ethers.js/packages/providers/lib/cloudflare-provider.d.ts

8 lines
339 B
TypeScript
Raw Normal View History

2019-08-21 08:52:13 +03:00
import { Network } from "@ethersproject/networks";
import { UrlJsonRpcProvider } from "./url-json-rpc-provider";
export declare class CloudflareProvider extends UrlJsonRpcProvider {
2019-11-20 12:57:38 +03:00
static getApiKey(apiKey: any): any;
static getUrl(network: Network, apiKey?: any): string;
2020-04-24 06:35:39 +03:00
perform(method: string, params: any): Promise<any>;
2019-08-21 08:52:13 +03:00
}