📄️ What are Accounts?Accounts are the primary actors in Miden — they store code, state, and assets, and execute transactions locally with private state.📄️ ComponentsDefine Miden account components using the #[component] macro — storage, methods, and auto-generated bindings.📄️ StoragePersistent state management with Value slots and StorageMaps in Miden smart contracts.📄️ Custom TypesExport custom structs and enums for use in public component methods with #[export_type].📄️ Account OperationsQuery account state with active_account and mutate the vault with native_account.📄️ CryptographyRPO-Falcon512 signature verification and hashing primitives in Miden contracts.📄️ AuthenticationAuthentication component pattern and nonce management for Miden accounts.
📄️ What are Accounts?Accounts are the primary actors in Miden — they store code, state, and assets, and execute transactions locally with private state.
📄️ ComponentsDefine Miden account components using the #[component] macro — storage, methods, and auto-generated bindings.
📄️ Custom TypesExport custom structs and enums for use in public component methods with #[export_type].
📄️ Account OperationsQuery account state with active_account and mutate the vault with native_account.