v8

latestOpenAPI 3.1.1raw.githubusercontent.com2026-08-01124480.3 KB
V1

List supported chains

Returns the chains supported by Delora. Use the optional chainTypes query parameter to filter by EVM or SVM networks.

get/v1/chains

Query parameters

chainTypesstring
Example:EVM,SVM

Comma-separated chain types to include. Supported values: EVM, SVM.

Headers

x-api-keystring

Optional API key for higher rate limits and fee rules.

Response

Supported chains response.

Example response

{
  "chains": [
    {
      "key": "base",
      "name": "Base",
      "chainType": "EVM",
      "id": 8453,
      "idHex": "0x2105",
      "mainnet": true,
      "logoURI": "https://example.com/base.png",
      "tokenlistUrl": "https://tokens.example.com/base.json",
      "multicallAddress": "0xcA11bde05977b3631167028862bE2a173976CA11",
      "rpcUrls": [
        "https://mainnet.base.org"
      ],
      "blockExplorerUrls": "https://basescan.org",
      "nativeToken": {
        "address": "0x0000000000000000000000000000000000000000",
        "decimals": 18,
        "symbol": "ETH",
        "chainId": 8453,
        "coinKey": "ETH",
        "name": "Ether",
        "logoURI": "https://example.com/eth.png"
      },
      "DeloraDiamond": "0x1111111111111111111111111111111111111111"
    }
  ]
}