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

13 lines
576 B
TypeScript
Raw 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);
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
}