ethers.js/packages/providers/lib.esm/url-json-rpc-provider.d.ts

14 lines
615 B
TypeScript
Raw Normal View History

2019-05-15 01:48:48 +03:00
import { Network, Networkish } from "@ethersproject/networks";
2019-11-20 12:57:38 +03:00
import { ConnectionInfo } from "@ethersproject/web";
2019-05-15 01:48:48 +03:00
import { JsonRpcProvider, JsonRpcSigner } from "./json-rpc-provider";
2019-11-20 12:57:38 +03:00
export declare abstract class UrlJsonRpcProvider extends JsonRpcProvider {
2020-01-21 03:43:50 +03:00
readonly apiKey: any;
2019-11-20 12:57:38 +03:00
constructor(network?: Networkish, apiKey?: any);
2020-05-04 00:53:58 +03:00
detectNetwork(): Promise<Network>;
2019-05-15 01:48:48 +03:00
_startPending(): void;
getSigner(address?: string): JsonRpcSigner;
listAccounts(): Promise<Array<string>>;
2019-11-20 12:57:38 +03:00
static getApiKey(apiKey: any): any;
static getUrl(network: Network, apiKey: any): string | ConnectionInfo;
2019-05-15 01:48:48 +03:00
}