UNPKG

@knine-sdk/fetch

Version:
9 lines (8 loc) 391 B
import { CHAINS } from '@knine-sdk/constants'; export declare const getInfuraRPCUrl: (chainId: CHAINS, apiKey: string) => string; export declare const getAlchemyRPCUrl: (chainId: CHAINS, apiKey: string) => string; export interface RPCProvidersKeys { infura?: string; alchemy?: string; } export declare const getRPCUrls: (chainId: CHAINS, keys: RPCProvidersKeys) => string[];