Interface NetworkInfo

Represents information about a network. NetworkInfo

interface NetworkInfo {
    name: string;
    chainId: number;
    nativeCurrency: TokenInfo;
    isSupported: boolean;
}

Properties

name: string

The name of the network.

chainId: number

The chain ID of the network.

nativeCurrency: TokenInfo

Information about the native currency of the network.

isSupported: boolean

Indicates whether the network is supported.