Skip to main content
Yativo Crypto supports 9 blockchains. 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
EthereumMainnetethereumETH
SolanaMainnetsolanaSOL
BitcoinMainnetbitcoinBTC
PolygonMainnetpolygonPOL (MATIC)
BNB Smart ChainMainnetbscBNB
BaseMainnetbaseETH
Arbitrum OneMainnetarbitrumETH
OptimismMainnetoptimismETH
XDC NetworkMainnetxdcXDC

Supported Tokens by Chain

Ethereum

TickerTokenType
ETHEtherNative
USDCUSD CoinERC-20
USDTTetherERC-20
DAIDaiERC-20

Solana

TickerTokenType
SOLSolanaNative
USDC_SOLUSD Coin (Solana)SPL Token
USDT_SOLTether (Solana)SPL Token

Bitcoin

TickerTokenType
BTCBitcoinNative

Polygon

TickerTokenType
POLPolygon (MATIC)Native
USDC_POLYGONUSD Coin (Polygon)ERC-20
USDT_POLYGONTether (Polygon)ERC-20

BNB Smart Chain

TickerTokenType
BNBBNBNative
USDC_BSCUSD Coin (BSC)BEP-20
USDT_BSCTether (BSC)BEP-20

Base

TickerTokenType
ETH_BASEEther (Base)Native
USDC_BASEUSD Coin (Base)ERC-20

Arbitrum One

TickerTokenType
ETH_ARBITRUMEther (Arbitrum)Native
USDC_ARBITRUMUSD Coin (Arbitrum)ERC-20
USDT_ARBITRUMTether (Arbitrum)ERC-20

Optimism

TickerTokenType
ETH_OPTIMISMEther (Optimism)Native
USDC_OPTIMISMUSD Coin (Optimism)ERC-20
USDT_OPTIMISMTether (Optimism)ERC-20

XDC Network

TickerTokenType
XDCXDCNative
USDC_XDCUSD Coin (XDC)XRC-20
USDT_XDCTether (XDC)XRC-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
EthereumETHGas costs vary significantly with network congestion
PolygonPOLLow gas costs, fast finality
BSCBNBLow gas costs
BaseETHL2 — gas costs are a fraction of Ethereum mainnet
ArbitrumETHL2 — significantly cheaper than Ethereum mainnet
OptimismETHL2 — significantly cheaper than Ethereum mainnet
XDCXDCVery low gas costs
SolanaSOLFlat, very low fees per transaction
BitcoinBTCFee is included in the transaction amount; set priority accordingly
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/assets/get-all-assets \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"

# Get supported chains
curl -X GET https://crypto-api.yativo.com/api/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.