Skip to main content
Version: v2

ChainMetadata

explorer objectnullablerequired

Block explorer configuration for this chain.

namestringnullable

Display name of the block explorer.

Example: Etherscan
urlstringnullable

Base URL of the block explorer for this chain.

Example: https://etherscan.io
txPathstringnullable

URL prefix for transaction pages on the block explorer.

Example: https://etherscan.io/tx
addressPathstringnullable

URL prefix for address pages on the block explorer.

Example: https://etherscan.io/address
tokenPathstringnullable

URL prefix for token pages on the block explorer.

Example: https://etherscan.io/token
nativeCurrency objectnullablerequired

Native currency of the blockchain network.

namestringnullable

Full name of the native currency.

Example: Ether
symbolstringnullable

Ticker symbol of the native currency.

Example: ETH
decimalsintegernullable

Decimal precision of the native currency.

Example: 18
JSON
ChainMetadata
{
"explorer": {
"name": "Etherscan",
"url": "https://etherscan.io",
"txPath": "https://etherscan.io/tx",
"addressPath": "https://etherscan.io/address",
"tokenPath": "https://etherscan.io/token"
},
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
}
}