ShegerPay for Dropshipping
Quick Answer: Ethiopian dropshippers use ShegerPay to verify global customer payments via PayPal, Visa, USDT, and SEPA — with same-day settlement directly into their own accounts. Non-custodial flow means no funds are held during refunds (refunds run rail-native), no settlement delay slows supplier orders, and the dropshipper keeps every dollar minus rail fees.
The problem dropshippers face today
Dropshipping margins are razor-thin: 15-25% gross is typical, and a payment processor taking 3.5% plus FX markup plus monthly fee eats half of that before you've paid the supplier. Worse, custodial processors love dropshippers as a category for "high risk" flagging — chargeback rates are slightly elevated, so processors hold reserves of 10-30% of your gross for 90-180 days. That's working capital you cannot use to order inventory, which is the entire point of dropshipping cash conversion.
The rails are also a mess. Selling globally from Ethiopia means accepting USD from Americans, EUR from Europeans, AED from Gulf customers, and USDT from crypto-native buyers — while paying suppliers in CNY or USD. Most local processors handle ETB only. Most international processors don't operate in Ethiopia. So you end up routing payments through a US LLC you don't have, a friend's Stripe account, or PayPal Personal — every option fragile, every option a freeze risk.
Then refunds. A dropshipper's refund rate is often 5-10%. Custodial processors take the refund out of your settled balance and hold the original processing fee — meaning you pay 3.5% on the sale and another 3.5% on the refund, on a transaction you made zero margin on.
How ShegerPay solves it
ShegerPay verifies global customer payments and settles them into your own accounts in real time — PayPal to PayPal, Visa to your acquiring bank, USDT to your wallet, SEPA to your IBAN. No reserve held. No 30/90/180-day rolling balance. The money is yours the moment the rail confirms.
When a customer requests a refund, ShegerPay initiates a rail-native reversal: PayPal refund through PayPal, USDT return through the blockchain, card refund through the issuer. ShegerPay doesn't sit on your funds while the refund is "processing" — you control the cash, you initiate the reversal, you don't pay processing fees twice.
For dropshippers running Shopify, WooCommerce, or custom storefronts, ShegerPay drops in as a verification webhook layer that flags orders paid the moment the rail confirms, so you can dispatch supplier orders in real time instead of waiting on settlement.
Code example
import ShegerPay from '@shegerpay/sdk';
const sp = new ShegerPay({ apiKey: 'sk_test_demo' });
// 1. Generate a payment link per customer order — global rails
const link = await sp.paymentLinks.create({
amount: 79.99,
currency: 'USD',
reference: 'ds_order_44120',
rails: ['paypal', 'visa', 'usdt_tron', 'sepa'],
successUrl: 'https://mystore.com/thanks/44120',
webhookUrl: 'https://api.mystore.com/sp',
metadata: { supplier: 'aliexpress_seller_77', cogs: 32.10 },
});
// 2. Webhook: instant order dispatch on rail confirm
app.post('/sp', async (req, res) => {
if (!sp.webhooks.verify(req.rawBody, req.headers['x-shegerpay-signature'])) return res.sendStatus(401);
const { event, data } = req.body;
if (event === 'payment.verified') {
// Funds are already in our account — dispatch supplier order immediately
await supplier.placeOrder({
orderRef: data.reference,
shipTo: data.customerAddress,
sku: data.metadata.supplier,
});
}
if (event === 'payment.refund_requested') {
// Initiate rail-native refund — no processor holding our money
await sp.payments.refund(data.paymentId, { amount: data.amount, reason: data.reason });
}
res.json({ ok: true });
});
Why non-custodial matters for dropshipping
Custody is the dropshipping killer. Custodial processors put a 10-30% reserve hold on dropshipping merchants by default — that's working capital frozen for 90+ days, on the exact business model that depends on rapid cash conversion. Add a few legitimate refunds and the reserve grows. Add one chargeback dispute and the processor can freeze your entire balance pending "investigation," which can take months.
ShegerPay's non-custodial design means no reserve. No rolling hold. No frozen balance. Customer pays, money lands in your account, you order from the supplier, done. Refunds run rail-native — PayPal refund through PayPal, USDT return on-chain — without ShegerPay taking another fee or holding inventory of your capital. For a working-capital-sensitive business, this is the difference between scaling and stalling.
Workflow features used
- Multi-rail global checkout (PayPal, Visa, USDT, SEPA)
- Real-time payment-verified webhooks
- Rail-native refund initiation
- Order metadata pass-through for supplier dispatch
- Multi-currency reporting
- No reserve holds, no rolling balance
Pricing fit
New dropshippers testing product-market fit fit on Free. Stores doing 100-1,000 orders/month sit on Starter $9. Established dropshippers with 1k+ orders/month and refund volume fit Growth $29. High-volume operations with custom supplier integrations talk Enterprise.
FAQ
Will ShegerPay flag my dropshipping store as high-risk? No reserve, no risk flagging — ShegerPay isn't custodying funds, so the "high risk merchant" classification that custodial processors apply doesn't exist here.
Can I accept payments from countries my bank doesn't support? Yes — USDT works globally and settles to your wallet regardless of buyer or seller country.
How fast can I order from my supplier after a customer pays? PayPal: same minute. USDT: 1-2 minutes. Visa: ~10 seconds for verification. Fast enough to dispatch in real time.
Are refund fees doubled like with Stripe? No. Refunds run rail-native; ShegerPay does not charge another transaction fee on refunds.
Can I use this with Shopify or WooCommerce? Yes — WooCommerce has an official plugin. Shopify uses a webhook integration (see our Shopify guide).
What if a customer charges back? Card chargebacks go through the issuer; PayPal disputes go through PayPal. ShegerPay doesn't claw back funds from other transactions.
Related: Pricing · API Docs · ShegerPay vs Chapa · Verify PayPal · Non-custodial payments explained