Industry
Crypto Payment Gateways for Ecommerce
For an online store crypto acceptance is an additional checkout option rather than a replacement. The work is small when a maintained plugin exists for your platform. The decisions that matter are settlement currency, refund policy and which networks you show at checkout.
On this page
How much work is it?
An afternoon if a maintained plugin exists for your platform, and a few days if you are integrating the API directly. WooCommerce has the widest gateway support of any platform in this index, followed by the other open-source carts.
Hosted checkout is the right default for a store. It moves the payment page, the countdown, network selection and the exception messaging onto the provider, and those are exactly the parts a first integration gets wrong.
What changes operationally?
Refunds. They stop being a reversal and become an outbound payment, since crypto has no chargeback mechanism. You need an address from the customer, and the value settles at the current price unless you refunded in a stablecoin. Write the policy before you need it.
Reconciliation. Settled amounts need matching against orders on a schedule rather than trusting the webhook alone. Callbacks get lost, and a scheduled comparison against the provider’s API is what catches it.
Support. Two new ticket types appear: underpayment and wrong-network sends. Both are answerable in one line once you have decided the policy, and both generate long threads when you have not.
What should you check before choosing?
Whether the plugin is maintained by the provider or by a third party. Third-party plugins for this category go unmaintained regularly, and a payment integration that stops receiving security updates is a liability rather than a feature.
Whether the checkout shows the network clearly. A dropdown default nobody reads is how wrong-network sends happen.
The WordPress shortlist lists providers with a first-party WooCommerce plugin. The full catalogue records integrations per provider.
What the integration actually looks like week to week
Quiet, once it works. Crypto acceptance is not a channel that demands ongoing attention the way a marketplace or an ad platform does. What it does demand is that somebody notices when it breaks, and the failure is silent: payments stop arriving and nothing alerts you.
Build a check that compares settled amounts against expected orders on a schedule, and route it somewhere a human reads. That single habit catches lost webhooks, expired credentials and provider-side changes long before a customer reports them.
The plugin question
First-party or nothing, in most cases. A plugin maintained by the payment provider gets security updates and follows the platform’s release cycle. A third-party plugin for a payment integration that stops being maintained is a liability sitting in your checkout.
Check when it was last updated and by whom before installing. That takes a minute and it is the single most useful thing you can do about the security surface of this integration.
What changes at scale
Reconciliation, mostly. At ten orders a month you can eyeball it. At a thousand you need the settlement report to be exportable and the amounts to match without manual work, and providers vary enormously in whether they make that possible.
The accounting guide covers what to ask a provider to produce. Ask to see a real export before signing rather than after your first quarter end, because the dashboard that looks fine in a demo is not always the thing your finance function has to live with.
Where to go next
The WordPress shortlist lists providers with a first-party WooCommerce plugin. The integration checklist covers the build, and accepting crypto payments covers the decisions that come before it.
What conversion actually looks like
Modest, and worth setting expectations about before anyone measures it. For a general retailer whose customers pay by card, crypto typically takes a low single-digit share of orders and does not grow much on its own.
Where it moves is in specific conditions: customers in markets with unreliable card acceptance, buyers who already hold crypto and prefer to spend it, and higher-ticket items where the fee difference is worth a customer’s effort. If none of those describe your buyers, treat this as removing a small objection rather than opening a channel.
The cost of finding out is low, which is the argument for trying it. A first-party plugin and an afternoon gets you real numbers from your own traffic instead of somebody else’s case study.
Which providers accept this vertical?
Providers below name this vertical on their own public pages. That is weaker than an underwriting decision and stronger than a guess, and it is the most any index can verify without applying.
Read next
Questions merchants ask
Will accepting crypto increase my sales?
For most general retailers the additional volume is modest. It is larger where your customers already transact in crypto, and where card acceptance is unreliable in your market. Treat it as serving an existing segment rather than creating one.
How do refunds work for an online store?
As an outbound payment you initiate, not a reversal. You need an address from the customer, you pay the network fee, and the amount settles at whatever the asset is worth then unless you refunded in a stablecoin.
Will crypto acceptance break my existing checkout?
No. It sits alongside your existing methods as another option, and customers who do not want it never see more than a logo. The integration risk is contained to the new path.
- Published with the index.