@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
12 lines • 378 B
TypeScript
/**
* @internal
*/
export type Ecosystem = "evm";
export interface GenericAuthWallet {
type: Ecosystem;
getAddress(): Promise<string>;
getChainId?(): Promise<number>;
signMessage(message: string): Promise<string>;
verifySignature(message: string, signature: string, address: string, chainId?: number): Promise<boolean>;
}
//# sourceMappingURL=auth.d.ts.map