getServerWallets

List all server wallets.

Example

import { Engine } from "thirdweb";
const serverWallets = await Engine.getServerWallets({
client,
});
console.log(serverWallets);
function getServerWallets(
): Promise<Array<{ address: string; smartAccountAddress?: string }>>;

Parameters

The parameters for the server wallet.

Type

let params: { client: ThirdwebClient };

Returns

let returnType: Promise<
Array<{ address: string; smartAccountAddress?: string }>
>;

an array of server wallets with their signer address and predicted smart account address.