11 lines
454 B
TypeScript
11 lines
454 B
TypeScript
|
import { Network } from "@ethersproject/networks";
|
||
|
import { ConnectionInfo } from "@ethersproject/web";
|
||
|
import { UrlJsonRpcProvider } from "./url-json-rpc-provider";
|
||
|
export declare class PocketProvider extends UrlJsonRpcProvider {
|
||
|
readonly applicationId: string;
|
||
|
readonly applicationSecretKey: string;
|
||
|
static getApiKey(apiKey: any): any;
|
||
|
static getUrl(network: Network, apiKey: any): ConnectionInfo;
|
||
|
isCommunityResource(): boolean;
|
||
|
}
|