The official OrvexPay WooCommerce payment gateway plugin. Install in minutes, start accepting Bitcoin, Ethereum, USDT and 50+ cryptocurrencies — zero chargebacks, instant settlement.
Upload the ZIP, enter your API Key and Webhook Secret — done. No coding required.
Every webhook is signed with HMAC-SHA256 so you always know the payment confirmation is authentic.
BTC, ETH, USDT (TRC20/ERC20/BEP20), USDC, BNB, TRX, LTC, DOGE and more. One integration, all coins.
Crypto transactions are irreversible — no dispute risk, no fraud losses, no surprise reversals.
Go to WordPress Admin → Plugins → Add New → Upload Plugin, select the orvexpay-payment-gateway.zip file and click Install Now.
Alternatively, extract the plugin folder to /wp-content/plugins/orvexpay-payment-gateway/ via FTP/SSH.
Activate the plugin, then go to WooCommerce → Settings → Payments → OrvexPay → Manage.
| Setting | Where to find |
|---|---|
| API Key | OrvexPay Dashboard → API Keys → Create Key |
| Webhook Secret | API Key detail page → whsec_... value |
| Pay Currency | Select from dropdown — USDT TRC20 recommended |
In OrvexPay Dashboard → API Keys → Edit your key, set the Webhook URL to:
https://yourstore.com/wc-api/orvexpay_webhookEvery webhook is signed using HMAC-SHA256. The plugin verifies the signature automatically using your Webhook Secret.
// Webhook header: // X-OrvexPay-Signature: abcdef1234... $expected = hash_hmac('sha256', $rawBody, $webhookSecret); $isValid = hash_equals($expected, $receivedSignature); // Plugin does this automatically ✅