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

12 lines
574 B
TypeScript
Raw Normal View History

2020-05-04 00:53:58 +03:00
import { Network, Networkish } from "@ethersproject/networks";
2019-11-20 12:57:38 +03:00
import { ConnectionInfo } from "@ethersproject/web";
2020-05-04 00:53:58 +03:00
import { WebSocketProvider } from "./websocket-provider";
2019-05-15 01:48:48 +03:00
import { UrlJsonRpcProvider } from "./url-json-rpc-provider";
export declare class InfuraProvider extends UrlJsonRpcProvider {
readonly projectId: string;
2019-11-20 12:57:38 +03:00
readonly projectSecret: string;
2020-07-13 15:03:56 +03:00
static getWebSocketProvider(network?: Networkish, apiKey?: any): WebSocketProvider;
2019-11-20 12:57:38 +03:00
static getApiKey(apiKey: any): any;
static getUrl(network: Network, apiKey: any): string | ConnectionInfo;
2019-05-15 01:48:48 +03:00
}