7 lines
283 B
TypeScript
7 lines
283 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;
|
|
}
|