Official Cryptonly payment provider for Medusa v2.
Accept Bitcoin, Ethereum, stablecoins, and more in your Medusa store.
Website · Documentation · Live demo · Contact
adds crypto payments to Medusa v2 via Cryptonly's hosted checkout.
Customers pay on a secure Cryptonly page and return to your store. You keep pricing in fiat. Payment status updates automatically via signed webhooks - no manual matching, no chargebacks.
npm install @cryptonly/medusa-plugin-cryptonlyRegister the provider in :
1{2 resolve: "@medusajs/medusa/payment",3 options: {4 providers: [5 {6 resolve: "@cryptonly/medusa-plugin-cryptonly/providers/cryptonly",7 id: "cryptonly",8 options: {9 apiKey: process.env.CRYPTONLY_API_KEY,10 accountId: process.env.CRYPTONLY_ACCOUNT_ID,11 webhookSigningKey: process.env.CRYPTONLY_WEBHOOK_SIGNING_KEY,12 sandbox: process.env.CRYPTONLY_SANDBOX === "true",13 backendUrl: process.env.MEDUSA_BACKEND_URL,14 },15 },16 ],17 },18}Then enable Cryptonly on a region in Medusa Admin — done.
📘 Full setup (webhooks, storefront, testing): Medusa integration guide
🔑 Get your API keys: merchant.cryptonly.net
MIT