2
0
mirror of synced 2025-02-24 20:18:07 +00:00
ethers.js/packages/providers/lib.esm/alchemy-provider.d.ts

8 lines
311 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 AlchemyProvider extends UrlJsonRpcProvider {
readonly apiKey: string;
2019-11-20 18:57:38 +09:00
static getApiKey(apiKey: any): any;
2019-05-14 18:48:48 -04:00
static getUrl(network: Network, apiKey: string): string;
}