Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.yativo.com/llms.txt

Use this file to discover all available pages before exploring further.

Yativo Crypto supports the following blockchains and tokens. Each chain has a set of native and token assets you can use when creating wallets and initiating transactions.

Supported Networks

ChainNetworkChain ID / IdentifierNative Gas Token
Binance Smart ChainMainnetBSC (56)BNB
XDC NetworkMainnetXDC (50)XDC
BitcoinMainnetBTCBTC
SolanaMainnetSOLSOL
PolygonMainnetPOL (137)POL
BaseMainnetBase (8453)ETH
OptimismMainnetOP (10)ETH
ArbitrumMainnetARB (42161)ETH
TronMainnetTRONTRX
AvalancheMainnetAVAX (43114)AVAX
Gnosis Chain (xDAI)MainnetGNO (100)xDAI

Supported Tokens by Chain

Binance Smart Chain (BSC)

TickerTokenType
BNBBinance CoinNative

XDC Network

TickerTokenType
XDCXDCNative
USDC_XDCUSD Coin (XDC)XRC20
TIVO_XDCTIVOXRC-20

Bitcoin

TickerTokenType
BTCBitcoinNative

Solana

TickerTokenType
SOLSolanaNative
USDC_SOLUSD Coin (Solana)SPL
USDT_SOLTether (Solana)SPL
EURC_SOLEURO CoinSPL
PYUSD_SOLPayPal USDSPL
USDG_SOLGlobal DollarSPL

Polygon

TickerTokenType
POLPolygonNative
USDC_POLUSD Coin (Polygon)ERC-20
USDT_POLTether (Polygon)ERC-20

Base

TickerTokenType
ETH_BaseEthereum on BaseNative
USDC_BASEUSD Coin (Base)ERC-20
USDT_BASETether (Base)ERC-20
EURC_BASEEURC (Base)ERC-20

Optimism

TickerTokenType
ETH_OPEthereum on OptimismNative (L2 gas)
OPOptimismERC-20 (governance)
USDC_OPUSD Coin (Optimism)ERC-20
USDT_OPTether (Optimism)ERC-20

Arbitrum

TickerTokenType
ETH_ARBEthereum on ArbitrumNative (L2 gas)
ARBArbitrumERC-20 (governance)
USDC_ARBUSD Coin (Arbitrum)ERC-20
USDT_ARBTether (Arbitrum)ERC-20

Tron

TickerTokenType
TRXTronNative
USDT_TRONTether (Tron)TRC-20
USDC on TRON is not supported. Circle deprecated USDC on TRON — use USDT_TRON instead.

Avalanche

TickerTokenType
AVAXAvalancheNative
USDC_AVAXUSD Coin (Avalanche)ERC-20
USDT_AVAXTether (Avalanche)ERC-20
EURC_AVAXEURC (Avalanche)ERC-20

Gnosis Chain (xDAI)

TickerTokenType
xDAIGnosis ChainNative
GNOGnosisERC-20
USDCe_GNOUSD Coin Bridged (GNO)ERC-20
GBPe_GNOPound Sterling Bridged (GNO)ERC-20
EURe_GNOEuro Bridged (GNO)ERC-20

Chiado Testnet

TickerTokenType
EURe_CHIADOEuro e-money (Chiado Testnet)ERC-20

Gas Tokens

Every transaction on an EVM-compatible chain requires the native gas token to pay for network fees. Make sure your wallets (or your Gas Station) hold sufficient native token for the chain you’re using.
ChainGas TokenNotes
Binance Smart ChainBNBLow gas costs
XDC NetworkXDCVery low gas costs
BitcoinBTCFee is included in the transaction amount; set priority accordingly
SolanaSOLFlat, very low fees per transaction
PolygonPOLLow gas costs, fast finality
BaseETHL2 — gas costs are a fraction of Ethereum mainnet
OptimismOPL2 — significantly cheaper than Ethereum mainnet
ArbitrumARBL2 — significantly cheaper than Ethereum mainnet
TronTRXLow gas costs
AvalancheAVAXLow gas costs
Gnosis Chain (xDAI)xDAIVery low gas costs
Use the Gas Station to pre-fund native token reserves. This lets the platform cover gas fees on behalf of your users so they only need to hold the token they want to transfer.

Fetching Supported Assets via API

You can also retrieve the current list of supported chains and assets programmatically:
# Get all supported assets
curl -X GET https://crypto-api.yativo.com/api/v1/assets/get-all-assets \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"

# Get supported chains
curl -X GET https://crypto-api.yativo.com/api/v1/assets/get-chains \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
Use these endpoints to dynamically populate chain and token selectors in your UI rather than hardcoding values.