Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

UrlJsonRpcProvider

abstract
abstract class UrlJsonRpcProvider extends StaticJsonRpcProvider implements CommunityResourcable {
constructor(network?: Networkish, apiKey?: any);
readonly apiKey: any;
 
_startPending(): void;
getSigner(address?: string): JsonRpcSigner;
isCommunityResource(): boolean;
listAccounts(): Promise<Array<string>>;
 
static getApiKey(apiKey: any): any;
static getUrl(network: Network, apiKey: any): string | ConnectionInfo;
}

§Extends

§
StaticJsonRpcProvider
[src]

§Implements

§Constructors

§
new UrlJsonRpcProvider(network?: Networkish, apiKey?: any)
[src]

§Properties

§
apiKey: any
[src]

§Methods

§
_startPending(): void
[src]
§
getSigner(address?: string): JsonRpcSigner
[src]
§
isCommunityResource(): boolean
[src]
§
listAccounts(): Promise<Array<string>>
[src]

§Static Methods

§
getApiKey(apiKey: any): any
[src]
§
getUrl(network: Network, apiKey: any): string | ConnectionInfo
[src]