2
0
mirror of synced 2025-02-24 12:08:10 +00:00
ethers.js/packages/providers/infura-provider.d.ts

8 lines
319 B
TypeScript
Raw Normal View History

2019-05-14 18:48:48 -04:00
import { Network } from "@ethersproject/networks";
import { UrlJsonRpcProvider } from "./url-json-rpc-provider";
export declare class InfuraProvider extends UrlJsonRpcProvider {
readonly projectId: string;
static getApiKey(apiKey: string): string;
static getUrl(network: Network, apiKey: string): string;
}