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

8 lines
317 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;
static getApiKey(apiKey: string): string;
static getUrl(network: Network, apiKey: string): string;
}