General options required for creating a wallet instance
type WalletOptions<TOpts extends Record<string, any> = {}> = { analytics?: "enabled" | "disabled"; chains?: Array<Chain>; clientId?: string; dappMetadata?: DAppMetaData; walletId?: string; walletStorage?: AsyncStorage;} & TOpts;