/** * Internal registry mapping chain IDs to Alchemy RPC base URLs. * This replaces the need for custom chain exports with embedded Alchemy URLs. * * Auto-generated by the ws-tools CLI — do not manually edit. */ export declare const ALCHEMY_RPC_MAPPING: Record; /** * Gets the Alchemy RPC base URL for a given chain ID. * * @param {number} chainId The chain ID to lookup * @returns {string | undefined} The Alchemy RPC base URL or undefined if not supported * * @example * ```ts * const rpcUrl = getAlchemyRpcUrl(1); // "https://eth-mainnet.g.alchemy.com/v2" * ``` */ export declare function getAlchemyRpcUrl(chainId: number): string | undefined; /** * Checks if a chain ID is supported by the Alchemy RPC registry. * * @param {number} chainId The chain ID to check * @returns {boolean} True if the chain is supported, false otherwise */ export declare function isChainSupported(chainId: number): boolean; /** * Gets all supported chain IDs from the registry. * * @returns {number[]} Array of supported chain IDs */ export declare function getSupportedChainIds(): number[]; //# sourceMappingURL=chainRegistry.d.ts.map