8 lines
317 B
TypeScript
8 lines
317 B
TypeScript
|
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;
|
||
|
}
|