Variable seiLocalConst

seiLocal: {
    blockExplorers?: {
        default: ChainBlockExplorer;
        [key: string]: ChainBlockExplorer;
    };
    contracts?: {
        ensRegistry?: ChainContract;
        ensUniversalResolver?: ChainContract;
        multicall3?: ChainContract;
        universalSignatureVerifier?: ChainContract;
        [key: string]: | undefined
        | ChainContract
        | { [sourceId: number]: undefined
        | ChainContract };
    };
    custom?: Record<string, unknown>;
    fees?: ChainFees<undefined>;
    formatters?: undefined;
    id: 713715;
    name: "Sei Local";
    nativeCurrency: { decimals: 18; name: "Sei"; symbol: "SEI" };
    rpcUrls: { default: { http: readonly ["http://localhost:8545"] } };
    serializers?: ChainSerializers<undefined, TransactionSerializable>;
    sourceId?: number;
    testnet?: boolean;
} = ...

Type declaration

  • OptionalblockExplorers?: { default: ChainBlockExplorer; [key: string]: ChainBlockExplorer }

    Collection of block explorers

  • Optionalcontracts?: {
        ensRegistry?: ChainContract;
        ensUniversalResolver?: ChainContract;
        multicall3?: ChainContract;
        universalSignatureVerifier?: ChainContract;
        [key: string]:
            | undefined
            | ChainContract
            | { [sourceId: number]: undefined
            | ChainContract };
    }

    Collection of contracts

  • Optionalcustom?: Record<string, unknown>

    Custom chain data.

  • Optionalfees?: ChainFees<undefined>

    Modifies how fees are derived.

  • Optionalformatters?: undefined

    Modifies how data is formatted and typed (e.g. blocks and transactions)

  • id: 713715

    ID in number form

  • name: "Sei Local"

    Human-readable name

  • nativeCurrency: { decimals: 18; name: "Sei"; symbol: "SEI" }

    Currency used by chain

  • rpcUrls: { default: { http: readonly ["http://localhost:8545"] } }

    Collection of RPC endpoints

  • Optionalserializers?: ChainSerializers<undefined, TransactionSerializable>

    Modifies how data is serialized (e.g. transactions).

  • OptionalsourceId?: number

    Source Chain ID (ie. the L1 chain)

  • Optionaltestnet?: boolean

    Flag for test networks