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