Accept USDC stablecoin payments via Beep Pay on WooCommerce. Supports QR code and direct wallet payments on the Sui blockchain .
Accept USDC payments - Customers can pay with stablecoins on Sui
QR Code support - Scan and pay with any Sui-compatible wallet
Direct wallet connection - "Pay with Wallet" button opens wallet directly
Real-time payment detection - Automatic payment verification and order completion
Multi-currency exchange rate - Configure your own store currency to USDC rate
Classic checkout support - Seamlessly integrated with WooCommerce classic checkout
Cart page button - Quick checkout option directly from cart
Mini cart widget - Payment option in mini cart sidebar
USDC total display - Shows equivalent USDC amount at checkout
Onboarding wizard - Step-by-step setup for first-time users
Dedicated settings page - Centralized configuration under Beep Pay menu
Order meta box - View payment details on order edit page
Manual payment verification - Verify on-chain payments for pending orders
Wallet balance display - View merchant wallet USDC balance in admin
Debug logging - Comprehensive logging for troubleshooting
Sui RPC integration - Direct on-chain payment verification
Payment Kit registry - Verify payments via Sui Payment Kit
Transaction verification - Validate transaction digests directly
Multi-method validation - Invoice API, Widget API, and on-chain fallback
Light theme - Clean, bright payment interface
Dark theme - Modern dark mode support
Custom theme - Disable default themes for custom CSS
Responsive design - Mobile-friendly payment page
Download the plugin ZIP file
Go to Plugins β Add New β Upload Plugin
Choose the ZIP file and click Install Now
Activate the plugin
Upload the beep-pay-woocommerce folder to /wp-content/plugins/
Activate the plugin through the Plugins menu in WordPress
Complete the onboarding wizard, or go to Beep Pay β Settings to configure
Quick Setup (Onboarding Wizard)
When first activating the plugin, you'll be guided through an onboarding wizard:
API Keys - Enter your Beep Pay Publishable Key
Exchange Rate - Set your currency to USDC exchange rate
Display Settings - Choose theme and customize appearance
Test Payment - Verify everything works correctly
Setting
Description
Example
Publishable Key
Your Beep Pay publishable key (required)
beep_pk_...
Secret Key
For advanced server-side features (optional)
beep_sk_...
API Base URL
Beep Pay API endpoint
https://api.justbeep.it
Setting
Description
Default
Title
Payment method title at checkout
Beep Pay (USDC)
Description
Payment method description
Pay with USDC on Sui
Exchange Rate
Store currency to USDC rate
27000 (for VND)
Setting
Description
Options
Theme
Payment page theme
Light, Dark, None
Poll Interval
Payment status check interval
3000 ms
Timeout
Maximum payment wait time
15 minutes
Setting
Description
Debug Log
Enable detailed logging for troubleshooting
Sui RPC URL
Custom Sui RPC endpoint (filterable)
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β Customer Checkout Flow β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
β β
β 1. Customer adds items to cart β
β β β
β 2. Proceeds to checkout β
β β β
β 3. Selects "Beep Pay (USDC)" as payment method β
β β β
β 4. Places order β Order created with "Pending" status β
β β β
β 5. Redirected to payment page showing: β
β β’ Amount in USDC β
β β’ QR code (scan with any Sui wallet) β
β β’ "Pay with Wallet" button β
β β’ Countdown timer β
β β β
β 6. Plugin polls for payment status β
β β β
β 7. Payment detected β Order status β "Processing" β
β β β
β 8. Customer redirected to Thank You page β
β β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
Payment Verification Methods
The plugin uses multiple verification methods in order:
Invoice API - GET /v1/invoices/{invoiceId}
Widget API - GET /v1/widget/payment-status/{referenceKey}
On-Chain Verification - Query Sui Payment Kit registry directly
beep-pay-woocommerce/
βββ beep-pay-woocommerce.php # Main plugin file
βββ includes/
β βββ class-wc-gateway-beep-pay.php # WooCommerce gateway
β βββ class-beep-pay-api-client.php # Beep API client
β βββ class-beep-pay-rest-api.php # REST API endpoints
β βββ class-beep-pay-admin.php # Admin settings
β βββ class-beep-pay-onboarding.php # Setup wizard
βββ assets/
β βββ css/
β β βββ beep-pay.css # Main styles
β β βββ admin.css # Admin styles
β β βββ onboarding.css # Wizard styles
β β βββ themes/
β β βββ light.css # Light theme
β β βββ dark.css # Dark theme
β βββ js/ # JavaScript files
β βββ src/ # Source TypeScript files
β βββ images/ # Plugin images
βββ templates/
β βββ admin/
β βββ onboarding/ # Onboarding wizard templates
βββ docs/ # Documentation
cd wp-content/plugins/beep-pay-woocommerce
pnpm install
pnpm build
Endpoint
Method
Description
/wp-json/beep-pay/v1/session
POST
Create payment session
/wp-json/beep-pay/v1/status
GET
Check payment status
/wp-json/beep-pay/v1/confirm
POST
Confirm payment
/wp-json/beep-pay/v1/order-status
GET
Check if order can be paid
/wp-json/beep-pay/v1/wallet-balance
GET
Get merchant wallet balance (admin)
/wp-json/beep-pay/v1/admin/invoice-history
POST
Add invoice to order history (admin)
The plugin stores the following order meta:
Meta Key
Description
_beep_reference_key
Unique payment reference key
_beep_payment_url
Payment URL for wallet redirect
_beep_qr_code
QR code image URL
_beep_expires_at
Session expiration timestamp
_beep_amount_usdc
Amount in USDC
_beep_rate
Exchange rate used
_beep_invoice_id
Beep Invoice ID
_beep_tx_digest
Sui transaction digest
_beep_invoice_ids
Historical invoice IDs (JSON array)
// Customize Sui RPC URL
add_filter ('beep_pay_sui_rpc_url ' , function ($ url ) {
return 'https://your-custom-rpc.com ' ;
});
// Customize Payment Kit Package ID
add_filter ('beep_pay_payment_kit_package_id ' , function ($ id ) {
return 'your_package_id ' ;
});
// Customize Payment Registry Object ID
add_filter ('beep_pay_payment_registry_object_id ' , function ($ id ) {
return 'your_registry_id ' ;
});
Requirement
Version
WordPress
5.8+
WooCommerce
5.0+
PHP
7.4+
WC tested up to
8.4
β
WooCommerce HPOS (High-Performance Order Storage)
β
Classic Checkout
β
Mobile browsers
β
All major Sui wallets
All API keys are sanitized and stored securely
Nonce verification on all AJAX requests
Capability checks for admin endpoints
Input sanitization and output escaping
Go to Beep Pay β Settings
Enable Debug Log
Check wp-content/plugins/beep-pay-woocommerce/beep-pay-debug.log
Issue
Solution
Payment not detected
Enable debug log, check RPC connectivity
QR code not showing
Verify Publishable Key is correct
Exchange rate wrong
Check exchange rate in settings
Order stuck on pending
Use admin "Verify On-Chain" action
For support and questions:
This plugin is licensed under GPL-2.0+. See LICENSE for details.
Made with β€οΈ by Beep Pay