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

stringOptional

Always "asset".

stringOptional

Asset symbol. One of ETH, USDT, BTC, TRX.

stringOptional

Human-readable asset name (e.g. "Tether USD").

enumOptional

One of native, stablecoin, token.

stringOptional

Chain slug. One of ethereum, tron, bitcoin. Use this value as the chain parameter on the create endpoints.

stringOptional

Human-readable chain name.

enumOptional

Family of the chain: evm, btc, tron, or solana.

integerOptional

Number of fractional digits the asset uses on this chain.

string | nullOptional

Token contract address on this chain. null for native assets (e.g. ETH on ethereum).

booleanOptional

true when this asset is the chain's native gas token.

integerOptional

Confirmations required before a deposit is credited.

string | nullOptional

Base URL of the chain's block explorer.

booleanOptional

Whether new deposits can currently be created for this pair.

booleanOptional

Whether new withdrawals can currently be created for this pair.

stringOptional

Smallest withdrawal amount accepted on this pair, as a decimal string.

Endpoints

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"
}