Chains GET
This endpoint returns a comprehensive list of all blockchain networks currently supported by the Stargate protocol. Use this endpoint to discover available networks for token transfers and to retrieve their configuration parameters.
GET /chains
Response Params
Array of chain objects supported by the Stargate protocol.
Unique identifier for the blockchain "ethereum", "arbitrum"
.
Type of blockchain "evm"
, "solana"
etc.
Numeric chain identifier.
Short display name for the chain.
Full name of the blockchain.
Information about the chain’s native currency.
Chain identifier for the native currency.
Full name of the native currency.
Symbol of the native currency.
Number of decimal places for the native currency.
Contract address of the native currency.
curl -X GET "https://stargate.finance/api/v1/chains"
{
"chains": [
{
"chainKey": "ethereum",
"chainType": "evm",
"chainId": 1,
"shortName": "Ethereum",
"name": "Ethereum",
"nativeCurrency": {
"chainKey": "ethereum",
"name": "ETH",
"symbol": "ETH",
"decimals": 18,
"address": "0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE"
}
},
{
"chainKey": "arbitrum",
"chainType": "evm",
"chainId": 42161,
"shortName": "Arbitrum",
"name": "Arbitrum",
"nativeCurrency": {
"chainKey": "arbitrum",
"name": "ETH",
"symbol": "ETH",
"decimals": 18,
"address": "0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE"
}
},
...
]
}
This list is automatically updated whenever a new network is added to the Stargate, for both Pool and Hydra chains.