v1

latestOpenAPI 3.1.02026-07-17373221.0 KB
Other

Get supported blockchain chains

Returns a list of all blockchain networks supported by Sourcify

get/chains

Response

List of supported chains

namestring required

Chain name

titlestring

Chain title (optional)

chainIdinteger required

Chain ID

rpcstring[] required

List of RPC endpoints

supportedboolean required

Whether the chain is supported for verification

etherscanAPIboolean required

Whether Etherscan API is available for this chain

Example response

[
  {
    "name": "Tempo Testnet",
    "title": "Tempo Testnet",
    "chainId": 1,
    "rpc": [
      "https://rpc.mainnet.ethpandaops.io"
    ],
    "traceSupportedRPCs": [
      {
        "type": "trace_transaction"
      }
    ],
    "supported": true,
    "etherscanAPI": true
  }
]