Interface EVMChainData

interface EVMChainData {
    chainId: number;
    chainName: string;
    chainType: "evm";
    icon: string;
    txExplorer: {
        mainnet: ExplorerConfig;
        testnet?: ExplorerConfig;
    };
}

Hierarchy (view full)

Properties

chainId: number
chainName: string
chainType: "evm"
icon: string
txExplorer: {
    mainnet: ExplorerConfig;
    testnet?: ExplorerConfig;
}

Type declaration