UNPKG

saepenatus

Version:

Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardised spec compliant web3 providers for all supported wallets, framework agnostic modern javascript UI with code splitting, CSS customization, mul

17 lines 868 B
import { Network, Networkish } from "@ethersproject/networks"; import { ConnectionInfo } from "@ethersproject/web"; import { CommunityResourcable } from "./formatter"; import { WebSocketProvider } from "./websocket-provider"; import { UrlJsonRpcProvider } from "./url-json-rpc-provider"; export declare class AlchemyWebSocketProvider extends WebSocketProvider implements CommunityResourcable { readonly apiKey: string; constructor(network?: Networkish, apiKey?: any); isCommunityResource(): boolean; } export declare class AlchemyProvider extends UrlJsonRpcProvider { static getWebSocketProvider(network?: Networkish, apiKey?: any): AlchemyWebSocketProvider; static getApiKey(apiKey: any): any; static getUrl(network: Network, apiKey: string): ConnectionInfo; isCommunityResource(): boolean; } //# sourceMappingURL=alchemy-provider.d.ts.map