Skip to main content

Multi-Chain Support

Paratro provides a unified interface for managing digital assets across multiple blockchains. Create wallets, initiate transfers, and monitor balances across chains — all through a single API.

Supported Chains

ChainChain IDNative AssetToken Standards
EthereumethereumETHERC-20
BNB Smart ChainbscBNBBEP-20
TRONtronTRXTRC-20
BitcoinbitcoinBTC
PolygonpolygonMATICERC-20
ArbitrumarbitrumETHERC-20
OptimismoptimismETHERC-20

Supported Assets

Common tokens available across chains:
AssetEthereumBSCTRONPolygon
USDTERC-20BEP-20TRC-20ERC-20
USDCERC-20BEP-20ERC-20

Cross-Chain Wallet Management

Create wallets on any supported chain using the same API:
curl -X POST https://api.paratro.com/v1/wallets \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{"name": "ETH Ops", "chain": "ethereum", "type": "mpc"}'

Unified Balance View

Query balances across all chains for your organization:
curl https://api.paratro.com/v1/wallets?include=balance \
  -H "Authorization: Bearer YOUR_API_KEY"
Response:
{
  "wallets": [
    {
      "id": "wal_eth01",
      "chain": "ethereum",
      "address": "0x742d...bD18",
      "balances": [
        { "asset": "ETH", "amount": "12.5" },
        { "asset": "USDT", "amount": "150000.00" }
      ]
    },
    {
      "id": "wal_trx01",
      "chain": "tron",
      "address": "TJYs...K7xj",
      "balances": [
        { "asset": "TRX", "amount": "500000" },
        { "asset": "USDT", "amount": "80000.00" }
      ]
    }
  ]
}

Gas Management

Paratro handles gas estimation and fee management automatically. You can also set gas preferences:
{
  "gas_strategy": "standard",  // "slow" | "standard" | "fast"
  "max_fee_usd": "50"
}