UNPKG

@thirdweb-dev/wallets

Version:

<p align="center"> <br /> <a href="https://thirdweb.com"><img src="https://github.com/thirdweb-dev/js/blob/main/packages/sdk/logo.svg?raw=true" width="200" alt=""/></a> <br /> </p> <h1 align="center">thirdweb Wallet SDK</h1> <p align="center"> <a href="ht

24 lines 903 B
import type { WalletConnectConnector as WalletConnectConnectorType } from "../connectors/wallet-connect"; import { Connector } from "../interfaces/connector"; import { AbstractClientWallet, WalletOptions } from "./base"; import type { PhantomConnector as PhantomConnectorType } from "../connectors/phantom"; type PhantomWalletOptions = WalletOptions; export declare class PhantomWallet extends AbstractClientWallet { connector?: Connector; walletConnectConnector?: WalletConnectConnectorType; phantomConnector?: PhantomConnectorType; isInjected: boolean; static meta: { name: string; iconURL: string; urls: { chrome: string; }; }; static id: string; get walletName(): "Phantom"; constructor(options: PhantomWalletOptions); protected getConnector(): Promise<Connector>; } export {}; //# sourceMappingURL=phantom.d.ts.map