Wallet Module
The Wallet module provides functionality for creating and managing Unlockd abstract wallets.
Last updated
The Wallet module provides functionality for creating and managing Unlockd abstract wallets.
Last updated
export type ClientOptions = {
network?: Chain
}
export type Chain = 'mainnet' | 'sepolia' | 'localhost'export const createWallet = async (
options?: ClientOptions
):Promise<void>const result = await createWallet(options?);export const getWallet = async (
options?: ClientOptions
): Promise<any>const result = await getWallet(options?);