Skip to main content
GET
/
chains
Get the list of supported and deprecated chains
curl --request GET \
  --url https://sourcify.dev/server/chains
[
  {
    "name": "Ethereum Mainnet",
    "chainId": 1,
    "rpc": [
      "https://rpc.mainnet.ethpandaops.io"
    ],
    "traceSupportedRPCs": [
      {
        "type": "trace_transaction",
        "index": 0
      }
    ],
    "supported": true,
    "etherscanAPI": true,
    "title": "Ethereum Mainnet"
  }
]

Documentation Index

Fetch the complete documentation index at: https://hedera-0c6e0218-update-sourcify-migration-issue-508-luke.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Response

200 - application/json

List of supported chains

name
string
required

Chain name

Example:

"Ethereum Mainnet"

chainId
integer
required

Chain ID

Example:

1

rpc
string[]
required

List of RPC endpoints

Example:
["https://rpc.mainnet.ethpandaops.io"]
traceSupportedRPCs
object[]
required

RPCs that support tracing

supported
boolean
required

Whether the chain is supported for verification

Example:

true

etherscanAPI
boolean
required

Whether Etherscan API is available for this chain

Example:

true

title
string

Chain title (optional)

Example:

"Ethereum Mainnet"