Skip to content

Supported Networks

IronixPay supports stablecoin payments (USDT & USDC) across 8 blockchain networks in production, with TRON Nile testnet available for sandbox development.

Production (sk_live_)

NetworkUSDTUSDCExplorer
TRONTR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6tTronscan
BSC0x55d398326f99059fF775485246999027B31979550x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580dBscScan
Ethereum0xdAC17F958D2ee523a2206206994597C13D831ec70xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48Etherscan
Polygon0xc2132D05D31c914a87C6611C10748AEb04B58e8F0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359PolygonScan
Arbitrum0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb90xaf88d065e77c8cC2239327C5EDb3A432268e5831Arbiscan
Optimism0x94b008aA00579c1307B0EF2c499aD98a8ce58e580x0b2C639c533813f4Aa9D7837CAf62653d097Ff85OP Etherscan
Base0xfde4C96c8593536E31F229EA8f37b2ADa2699bb20x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913BaseScan
SolanaEs9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYBEPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1vSolscan

USDC on TRON

USDC is not available on TRON. If you need USDC, use Solana, BSC, or any EVM chain.

Sandbox (sk_test_)

NetworkTokensContractExplorer
TRON NileUSDT (TRC-20 testnet)TXYZopYRdj2D9XRtbG411XZZ3kM5VkAeBfNile Tronscan

Getting Test Tokens

Get free TRX and test USDT from the Nile Faucet. You'll need a small amount of TRX for gas fees before sending USDT.

Sandbox Limitation

Sandbox currently only supports TRON (Nile testnet). Passing other networks with a sk_test_ key will return an error. More sandbox networks are planned.

How network Works

Pass the network value (e.g. "TRON", "BSC") when creating a session. The API automatically selects mainnet or testnet based on your API key:

  • sk_live_ + network: "TRON" → TRON Mainnet
  • sk_test_ + network: "TRON" → TRON Nile (testnet)
  • sk_live_ + network: "BSC" → BSC Mainnet
bash
curl -X POST https://api.ironixpay.com/v1/checkout/sessions \
  -H "Authorization: Bearer sk_live_..." \
  -H "Content-Type: application/json" \
  -d '{"pricing_amount": "10.50", "pricing_currency": "USDT", "currency": "USDT", "network": "BSC", ...}'