List supported chains¶
GET /api/supported-chains
List every chain this deployment can relay to, including display metadata, native currency details, and block explorer links. Only chains that are currently enabled are returned. This endpoint requires no authentication.
Each chain includes a capabilities object: {eip7702, flashBlocks, hypercore}. HyperCore chains take signed exchange actions (see the HyperCore endpoints), not EVM transactions.
Responses
| Status | Description |
|---|---|
200 |
The enabled chains. |
200 response
{
"success": true,
"data": [
{
"id": 8453,
"name": "Base",
"iconUrl": "",
"isTestnet": false,
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"blockExplorers": {
"default": {
"name": "Basescan",
"url": "https://basescan.org",
"apiUrl": "https://api.basescan.org/api"
}
}
},
{
"id": 84532,
"name": "Base Sepolia",
"iconUrl": "",
"isTestnet": true,
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"blockExplorers": {
"default": {
"name": "Basescan",
"url": "https://sepolia.basescan.org",
"apiUrl": "https://api-sepolia.basescan.org/api"
}
}
}
],
"timestamp": "2026-07-29T12:34:56.789Z"
}