export type SupportedChainIds = 1 | 8453 | 42161 | 10; export declare enum SupportedChainIdsEnum { ETHEREUM = 1, BASE = 8453, ARBITRUM = 42161, OPTIMISM = 10 } export interface ChainConfig { id: SupportedChainIds; name: string; wsUrl: string[]; } export type ChainsConfig = Record; export declare const SupportedChainIdToName: { 1: string; 8453: string; 42161: string; 10: string; }; //# sourceMappingURL=chains.d.ts.map