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

24 lines 856 B
import { AsyncStorage } from "../../core"; import { Connector } from "../interfaces/connector"; import { AbstractClientWallet, WalletOptions } from "./base"; import { Chain } from "@thirdweb-dev/chains"; import { Signer } from "ethers"; export type SignerWalletAdditionalOptions = { chain?: Chain; storage?: AsyncStorage; secretKey?: string; signer: Signer; }; export type SignerWalletConnectionArgs = {}; /** * @internal */ export declare class SignerWallet extends AbstractClientWallet<SignerWalletAdditionalOptions, SignerWalletConnectionArgs> { connector?: Connector; options: WalletOptions<SignerWalletAdditionalOptions>; signer?: Signer; private _storage; constructor(options: WalletOptions<SignerWalletAdditionalOptions>); protected getConnector(): Promise<Connector>; } //# sourceMappingURL=signer.d.ts.map