Skip to main content

Non EVM Chains

Non EVM chains supported:

Bitcoin

Bitcoin Native Asset

We will be supporting Bitcoin in our Buy and Sell flows in the future. To add support, add the following crypto object to your configuration crypto array:

{
id: <your btc internal id>,
network: 'bip122:000000000019d6689c085ae165831e93',
assetId: 'slip44:0'
}

Details

  • Decimal places: 8
  • Address format: Native Segwit (bc1q...)

Solana

We currently support Solana Mainnet (Chain ID: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp)

SOL — Solana Native Asset

We support SOL in our Buy flow. Sell flow will be supported in the future. To support SOL, add the following crypto object to your configuration crypto array:

{
id: <your solana internal id>,
network: 'solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp',
assetId: 'slip44:501'
}

Details

  • Decimal places: 9

Solana SPL Tokens

We support SPL Tokens in our Buy flow. Sell flow will be supported in the future. To support SPL tokens, add the following crypto object to your configuration crypto array:

{
id: <your SPL token internal id>,
network: 'solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp',
assetId: <asset_namespace + ":" + asset_reference>, // e.g: "token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v" for USDC
}

Note: concatenating network+ / + assetId will form the full CAIP-19 identifier for a token, for example: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v

Tron

TRX - Tron Native Asset

We will support TRON in our Buy flow. Sell flow will be supported in the future. To support TRON, add the following crypto object to your configuration crypto array:

{
id: <your tron internal id>,
network: 'tron:728126428',
assetId: 'slip44:195'
}

Details

  • Decimal places: 6

Tron TRC-20 Tokens

We will support TRC-20 Tokens in our Buy flow. Sell flow will be supported in the future. To support TRC-20 tokens, add the following crypto object to your configuration crypto array:

{
id: <your TRC20 token internal id>,
network: 'tron:728126428',
assetId: <asset_namespace + ":" + asset_reference>, // e.g: "trc20:TEkxiTehnzSmSe2XqrBj4w32RUN966rdz8" for USDC
}