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