UNPKG

@thirdweb-dev/wallets

Version:

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

23 lines 905 B
import { SmartWallet } from "./smart-wallet"; import type { TokenBoundSmartWalletConnector as TokenBoundSmartWalletConnectorType } from "../connectors/token-bound-smart-wallet"; import type { TokenBoundSmartWalletConfig } from "../connectors/token-bound-smart-wallet/types"; import { WalletOptions } from "./base"; /** * A smart wallet controlled by the holder of a particular NFT. */ /** * @wallet */ export declare class TokenBoundSmartWallet extends SmartWallet { tbaConnector?: TokenBoundSmartWalletConnectorType; tbaOptions: TokenBoundSmartWalletConfig; static meta: { name: string; iconURL: string; }; static id: "tokenBoundSmartWallet"; get walletName(): string; constructor(options: WalletOptions<TokenBoundSmartWalletConfig>); getConnector(): Promise<TokenBoundSmartWalletConnectorType>; } //# sourceMappingURL=token-bound-smart-wallet.d.ts.map