8 lines
339 B
TypeScript
8 lines
339 B
TypeScript
import { Network } from "@ethersproject/networks";
|
|
import { UrlJsonRpcProvider } from "./url-json-rpc-provider";
|
|
export declare class CloudflareProvider extends UrlJsonRpcProvider {
|
|
static getApiKey(apiKey: any): any;
|
|
static getUrl(network: Network, apiKey?: any): string;
|
|
perform(method: string, params: any): Promise<any>;
|
|
}
|