/chains
GEThttps://api.aori.io
Retrieve information about all supported blockchain networks in the Aori protocol. Returns chain metadata including identifiers, contract addresses, and network details.
Request
No request parameters required. This endpoint returns all supported chains.
cURL
curl https://api.aori.io/chains
Response
Returns an array of chain information objects.
- Name
chainKey
- Type
- string
- Description
Human-readable chain identifier used in API requests
- Name
chainId
- Type
- number
- Description
Standard EVM chain ID used by wallets and RPC providers
- Name
eid
- Type
- number
- Description
LayerZero endpoint ID for cross-chain messaging
- Name
address
- Type
- string
- Description
Aori protocol contract address deployed on this chain
Response
[
{
"chainKey": "ethereum",
"chainId": 1,
"eid": 30101,
"address": "0x5F3CB376fb82402FcF6d917fD729542537b9C6ad"
},
{
"chainKey": "base",
"chainId": 8453,
"eid": 30184,
"address": "0xF7c908EAA65FE48B201a5CD809Df9D28BdcB2C39"
},
{
"chainKey": "arbitrum",
"chainId": 42161,
"eid": 30110,
"address": "0x0e9018EEEbA45d70A9087d5d05295843afa3160a"
},
{
"chainKey": "optimism",
"chainId": 10,
"eid": 30111,
"address": "0x684986544162a2c4cE4a6879981a4969b2c19E92"
}
]