List all server wallets.
import { Engine } from "thirdweb"; const serverWallets = await Engine.getServerWallets({ client,});console.log(serverWallets);
function getServerWallets( params: GetServerWalletsArgs,): Promise<{ accounts: Array<{ address: string; createdAt: string; label?: string; smartAccountAddress?: string; }>; pagination: { limit: number; page: number; totalCount: number };}>;
The parameters for the server wallet.
let params: { client: ThirdwebClient; limit?: number; page?: number };
let returnType: Promise<{ accounts: Array<{ address: string; createdAt: string; label?: string; smartAccountAddress?: string; }>; pagination: { limit: number; page: number; totalCount: number };}>;
an array of server wallets with their signer address and predicted smart account address.