interface Network {
    aliases?: string[];
    apiUrls?: APIURL[];
    caip2Id: string;
    docsUrl?: string;
    explorerUrls?: string[];
    firehose?: Firehose;
    fullName: string;
    genesis?: Genesis;
    graphNode?: GraphNode;
    icon?: Icon;
    id: string;
    indexerDocsUrls?: IndexerDocsURL[];
    issuanceRewards: boolean;
    nativeToken?: string;
    networkType: NetworkType;
    relations?: Relation[];
    rpcUrls?: string[];
    secondName?: string;
    services: Services;
    shortName: string;
}

Properties

aliases?: string[]

[optional] List of possible aliases for the network id, e.g. ethereum, eth, mainnet, eth-mainnet

apiUrls?: APIURL[]

List of API URLs for the network, i.e. Etherescan-like API to get ABI. Use {CUSTOM_API_KEY} as a placeholder for a private API key

caip2Id: string

CAIP-2 Chain ID, e.g. eip155:1, bip122:000000000019d6689c085ae165831e93

docsUrl?: string

URL to the chain documentation

explorerUrls?: string[]

URLs for the block explorers

firehose?: Firehose

Firehose block information

fullName: string

Display name of the network, e.g. Ethereum Mainnet, Bitcoin Testnet

genesis?: Genesis

Genesis block information

graphNode?: GraphNode

Graph Node specific configuration information

icon?: Icon

Icons for the network

id: string

Established name of the network in The Graph ecosystem, e.g. mainnet, btc, arweave-mainnet, near-testnet

indexerDocsUrls?: IndexerDocsURL[]

Documentation to run indexer components for this network

issuanceRewards: boolean

Issuance rewards on the Graph Network for this chain

nativeToken?: string

Symbol of the native token

networkType: NetworkType

Whether the network is a mainnet/testnet/devnet

relations?: Relation[]

Relations to other networks in the registry

rpcUrls?: string[]

List of RPC URLs for the chain. Use {CUSTOM_API_KEY} as a placeholder for a private API key

secondName?: string

Second display name of the network, e.g. Sepolia, Nova

services: Services

Services available for the network in the ecosystem

shortName: string

Short display name of the network, e.g. Ethereum, BNB