Docs

WalletOptions

General options required for creating a wallet instance

type WalletOptions<TOpts extends Record<string, any> = {}> = {
  analytics?: "enabled" | "disabled";
  chains?: Chain[];
  clientId?: string;
  dappMetadata?: DAppMetaData;
  walletId?: string;
  walletStorage?: AsyncStorage;
} & TOpts;