Accept crypto.
Keep more.

A multi-chain payment gateway that detects on-chain payments in real time and settles to your wallet — for a flat fee that's half the industry standard.

Monocurrency
0.25%
Pay a coin, receive the same coin. Flat fee — no turnover tiers.
With conversion
0.5%
Pay any coin, settle in the coin you choose. Excludes network fees.

One integration, every major coin

Bitcoin, Litecoin, Monero, Solana, Tron, and Ethereum + 6 EVM chains.

BTC Bitcoin LTC Litecoin ETH Ethereum USDT 7 chains USDC 7 chains DAI SOL Solana XMR Monero USDT Tron BNB POL AVAX

Built detection-first

The hard part of a payment processor is reliable detection. That's where we started.

🛰️

Real-time detection

Reorg-safe, confirmation-aware engine, fuzz-tested across 50,000 randomized chains.

🏦

Pooled wallets

One wallet per coin. Payers are separated by a unique amount or a private subaddress.

🔔

Signed webhooks

HMAC-signed status updates with automatic retries and backoff.

🔁

Auto-conversion

Let customers pay any coin and settle in the coin you want, at the live market rate.

🕵️

Monero support

Privacy-preserving detection via per-invoice subaddresses — all pooled into one wallet.

Hosted checkout

Drop-in payment page with QR, exact amount, and live status. No frontend to build.

How it works

From integration to settled funds in three steps.

1

Create an invoice

One API call returns a deposit address and the exact amount to pay.

2

Customer pays

Send them to the hosted checkout — we detect the payment on-chain in real time.

3

You get paid

Settle in the same coin or convert, with instant or scheduled payouts.

Two API calls to get paid

Create an invoice, redirect the customer to the hosted checkout. Done.

# 1. create an invoice
curl -X POST https://your-host/v1/invoices \
  -H "authorization: Bearer $WE_API_KEY" \
  -H "content-type: application/json" \
  -d '{"asset":"USDT.ETH","amount":"49.99","settle_as":"USDT.TRON"}'

# -> { "id": "inv_…", "pay_address": "0x…", "pay_amount": "49.990001",
#      "settle_asset": "USDT.TRON", "settle_amount": "49.74" }

# 2. send the customer to the hosted checkout
https://your-host/pay/inv_…