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

13 lines 768 B
import { Bytes, Signer, providers, TypedDataDomain, TypedDataField, Wallet } from "ethers"; import { Deferrable } from "ethers/lib/utils"; export declare class WrappedSigner extends Signer { private signer; constructor(signer: Wallet); getAddress(): Promise<string>; signMessage(message: Bytes | string): Promise<string>; signTransaction(transaction: providers.TransactionRequest): Promise<string>; connect(provider: providers.Provider): Signer; _signTypedData(domain: TypedDataDomain, types: Record<string, Array<TypedDataField>>, value: Record<string, any>): Promise<string>; sendTransaction(transaction: Deferrable<providers.TransactionRequest>): Promise<providers.TransactionResponse>; } //# sourceMappingURL=wrapped-signer.d.ts.map