Crypto Payment Gateway System
Generate new API keys for enhanced security. Old keys will be invalidated.
Click to generate secure random keys
Use the pre-configured demo keys to test the payment flow.
// PHP Example
$public_key = 'YOUR_PUBLIC_KEY';
$secret_key = 'YOUR_SECRET_KEY';
$data = [
'order_id' => 'ORDER_123',
'amount' => 100.00,
'currency' => 'USDT'
];
ksort($data);
$signature = hash_hmac('sha256', http_build_query($data), $secret_key);
$auth = base64_encode($public_key . ':' . $signature);
Set up webhook URL to receive payment notifications: