Interface NetworkConfig

Contains the configuration details for a specific Sei network, including endpoints for various services and supported explorers.

interface NetworkConfig {
    chainId: string;
    evm_rpc?: Endpoint[];
    evm_ws?: Endpoint[];
    explorers?: Explorer[];
    faucets?: Endpoint[];
    grpc?: Endpoint[];
    network_type: "mainnet" | "testnet" | "devnet";
    rest: Endpoint[];
    rpc: Endpoint[];
}

Properties

chainId: string

The unique identifier of the Sei network.

evm_rpc?: Endpoint[]

Optional array of Ethereum Virtual Machine (EVM) compatible RPC endpoints.

evm_ws?: Endpoint[]

Optional array of WebSocket endpoints for EVM, supporting real-time data streaming.

explorers?: Explorer[]

Optional array of blockchain explorer that support this network.

faucets?: Endpoint[]

An array of faucet endpoints for obtaining test tokens on networks like testnets or devnets.

grpc?: Endpoint[]

Optional array of gRPC endpoints, providing efficient, low-latency network communication.

network_type: "mainnet" | "testnet" | "devnet"

The type of the network, which can be mainnet, testnet, or devnet.

rest: Endpoint[]

An array of REST endpoints for accessing the network's RESTful services.

rpc: Endpoint[]

An array of RPC endpoints available for the network.