Creates a smart wallet.
import { smartWallet } from "thirdweb/wallets"; const wallet = smartWallet({ chain: sepolia, gasless: true,}); const account = await wallet.connect({ client, personalAccount: account,});
function smartWallet( createOptions: SmartWalletOptions,): Wallet<"smart">;
The options for creating the wallet.
let createOptions: SmartWalletOptions;
let returnType: Wallet<"smart">;
The created smart wallet.