export declare enum NetworkId { BASE_MAINNET = 8453, BASE_SEPOLIA = 84532 } export interface NetworkConfig { id: NetworkId; name: string; rpcUrl: string; blockExplorer: string; nativeCurrency: { name: string; symbol: string; decimals: number; }; maxPriorityFeePerGas: string; contracts?: { videoPayment?: string; contentNFT?: string; erc6551Registry?: string; mockERC20?: string; }; } export declare const NETWORKS: Partial>; export declare function getNetworkByName(name: string): NetworkConfig | undefined; export declare function getNetworkById(id: number): NetworkConfig | undefined; //# sourceMappingURL=networks.d.ts.map