The supported asset object
Each supported asset object represents a single (asset, chain) pair the platform currently supports. The same asset on a different chain — for example USDT on ethereum vs. USDT on tron — is a distinct object.
Attributes
Chain slug. One of ethereum, tron, bitcoin. Use this value as the chain parameter on the create endpoints.
Token contract address on this chain. null for native assets (e.g. ETH on ethereum).
Endpoints
GET /v1/assets— list every supported pair.
The supported asset object
{
"object": "asset",
"asset": "USDT",
"asset_name": "Tether USD",
"asset_type": "stablecoin",
"chain": "ethereum",
"chain_name": "Ethereum",
"chain_kind": "evm",
"decimals": 6,
"contract_address": "0xdAC17F958D2ee523a2206206994597C13D831ec7",
"is_native_gas": false,
"min_confirmations": 12,
"explorer_url": "https://etherscan.io",
"deposit_enabled": true,
"withdrawal_enabled": true,
"min_withdrawal": "5.00000000"
}