ethers.js/packages/providers/lib/url-json-rpc-provider.d.ts
2020-05-03 17:53:58 -04:00

14 lines
615 B
TypeScript

import { Network, Networkish } from "@ethersproject/networks";
import { ConnectionInfo } from "@ethersproject/web";
import { JsonRpcProvider, JsonRpcSigner } from "./json-rpc-provider";
export declare abstract class UrlJsonRpcProvider extends JsonRpcProvider {
readonly apiKey: any;
constructor(network?: Networkish, apiKey?: any);
detectNetwork(): Promise<Network>;
_startPending(): void;
getSigner(address?: string): JsonRpcSigner;
listAccounts(): Promise<Array<string>>;
static getApiKey(apiKey: any): any;
static getUrl(network: Network, apiKey: any): string | ConnectionInfo;
}