Supported chains

Get supported blockchains

This endpoint returns a list of supported blockchains available for exchange and transactions in the Rubic API. Each blockchain object contains a name, an identifier, list of providers that support this blockchain, the type of blockchain and whether fee collection is available in this blockchain (proxyAvailable field)


const response = await axios.get(
    'https://api-v2.rubic.exchange/api/info/chains?includeTestnets=false'
);

Response params

FieldTypeDescriptionExample

id

number

Blockchain identifier

1

name

string

Blockchain name used by Rubic

ETH

providers

{

crossChain: string[]; onChain: string[]; }

A list of providers supported by this blockchain

{

crossChain: ['symbiosis'], onChain: ['ONE_INCH', 'OPEN_OCEAN'] }

proxyAvailable

boolean

Do we able to collect fees on network with our contracts or not

true

type

'EVM' | 'TRON' | 'SOLANA' | 'Other'

Type of blockchain

EVM

testnet

boolean

Include testnets in list or not default: false

false

Last updated