Interface SupportedChain

Represents a supported blockchain chain

interface SupportedChain {
    chainId: string;
    name: string;
}

Properties

Properties

chainId: string

Chain identifier

Example

"1" // Ethereum Mainnet

Example

"137" // Polygon
name: string

Human-readable chain name

Example

"Ethereum Mainnet"

Example

"Polygon"