@sei-js/evm
Version:
TypeScript library for EVM interactions on the Sei blockchain
42 lines (41 loc) • 1.44 kB
TypeScript
export declare const seiLocal: {
blockExplorers?: {
[key: string]: {
name: string;
url: string;
apiUrl?: string | undefined;
};
default: {
name: string;
url: string;
apiUrl?: string | undefined;
};
} | undefined | undefined;
contracts?: {
[x: string]: import("viem").ChainContract | {
[sourceId: number]: import("viem").ChainContract | undefined;
} | undefined;
ensRegistry?: import("viem").ChainContract | undefined;
ensUniversalResolver?: import("viem").ChainContract | undefined;
multicall3?: import("viem").ChainContract | undefined;
universalSignatureVerifier?: import("viem").ChainContract | undefined;
} | undefined;
id: 713715;
name: "Sei Local";
nativeCurrency: {
readonly name: "Sei";
readonly symbol: "SEI";
readonly decimals: 18;
};
rpcUrls: {
readonly default: {
readonly http: readonly ["http://localhost:8545"];
};
};
sourceId?: number | undefined | undefined;
testnet?: boolean | undefined | undefined;
custom?: Record<string, unknown> | undefined;
fees?: import("viem").ChainFees<undefined> | undefined;
formatters?: undefined;
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
};