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

14 lines
615 B
TypeScript
Raw Permalink Normal View History

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