ethers.js/packages/providers/lib.esm/alchemy-provider.d.ts

8 lines
311 B
TypeScript
Raw Normal View History

2019-05-15 01:48:48 +03:00
import { Network } from "@ethersproject/networks";
import { UrlJsonRpcProvider } from "./url-json-rpc-provider";
export declare class AlchemyProvider extends UrlJsonRpcProvider {
readonly apiKey: string;
2019-11-20 12:57:38 +03:00
static getApiKey(apiKey: any): any;
2019-05-15 01:48:48 +03:00
static getUrl(network: Network, apiKey: string): string;
}