import { Network } from '../types/types'; export declare const DEFAULT_ALCHEMY_API_KEY = "demo"; export declare const DEFAULT_NETWORK = Network.ETH_MAINNET; /** * Returns the base URL for making Alchemy API requests. The `alchemy.com` * endpoints only work with non eth json-rpc requests. * * @internal */ export declare function getAlchemyHttpUrl(network: Network, apiKey: string): string;