Components
Components are the building blocks of Miden accounts. Each component defines a storage layout, exposes public methods, and can be composed with other components on the same account — for example, a wallet component + an auth component + custom logic. This modularity lets you reuse a wallet component across many accounts and test or upgrade components independently.
The #[component] macro
A component has three Rust pieces: a #[component_storage] struct for storage fields, a #[component] trait for the public interface, and a #[component] impl Trait for Storage block for behavior:
use miden::{component, component_storage, felt, Felt, StorageMap, Word};
#[component_storage]
struct CounterContractStorage {
#[storage(description = "counter contract storage map")]
count_map: StorageMap<Word, Felt>,
}
#[component]
trait CounterContract {
fn get_count(&self) -> Felt;
fn increment_count(&mut self) -> Felt;
}
#[component]
impl CounterContract for CounterContractStorage {
fn get_count(&self) -> Felt {
let key = Word::new([felt!(0), felt!(0), felt!(0), felt!(1)]);
self.count_map.get(key)
}
fn increment_count(&mut self) -> Felt {
let key = Word::new([felt!(0), felt!(0), felt!(0), felt!(1)]);
let current_value: Felt = self.count_map.get(key);
let new_value = current_value + felt!(1);
self.count_map.set(key, new_value);
new_value
}
}
The macros generate:
- Public API exports describing the component's callable methods
- Storage metadata mapping slot names to slot IDs (derived from the component package + field name)
- Runtime bindings for the Miden execution environment
Project manifest
Every account component crate also needs a miden-project.toml next to Cargo.toml:
[package]
name = "counter-contract"
version = "0.1.0"
[lib]
kind = "account-component"
namespace = "miden:counter-contract/[email protected]"
[dependencies]
miden-core = "*"
miden-protocol = "*"
The namespace interface segment must match the kebab-cased #[component] trait name. If this component calls another account or exposes generated WIT to a note script, add that dependency to both [dependencies] and [package.metadata.miden.dependencies].
Storage struct
The storage struct defines the component's storage layout:
use miden::{component_storage, StorageMap, StorageValue, Word};
#[component_storage]
struct MyContractStorage {
#[storage(description = "owner account identifier")]
owner: StorageValue<Word>,
#[storage(description = "user balances")]
balances: StorageMap<Word, Word>,
}
Storage fields
Each field must be either StorageValue<T> (single-slot) or StorageMap<K, V> (map-slot), annotated with #[storage]:
#[storage(description = "human-readable description")]
field_name: StorageValue<Word>,
#[storage(description = "human-readable description")]
field_name: StorageMap<Word, Word>,
The description is optional and becomes part of the generated metadata. Slot IDs are derived from the component package name and the field name, so renaming a field changes the slot ID. Ordering does not matter, and slot(N) is not supported.
Trait and impl block — methods
Declare public methods on the #[component] trait, then implement that trait for the storage struct.
Read methods (&self)
Methods that take &self are read-only — they can query storage and account state but cannot modify anything:
fn get_balance(&self, depositor: AccountId) -> Felt {
self.balances.get(depositor)
}
Write methods (&mut self)
Methods that take &mut self can modify state — write to storage, add/remove assets, create notes:
fn deposit(&mut self, asset: Asset) {
self.add_asset(asset);
}
Read methods (&self) produce proofs that don't include state transitions. Write methods (&mut self) produce proofs that do. The distinction is enforced by the compiler and determines which kernel operations are available.
Private methods
Helpers that are not declared on the #[component] trait are private. Define them on the storage struct with a normal inherent impl, then call them from the component trait implementation:
impl MyContractStorage {
fn require_initialized(&self) {
let state: Word = self.initialized.get();
assert!(state[0] == felt!(1));
}
}
#[component]
impl MyContract for MyContractStorage {
fn do_something(&mut self) {
self.require_initialized();
// ...
}
}
Supported parameter and return types
Public methods can use SDK types (Felt, Word, Asset, AccountId, NoteIdx) and custom types annotated with #[export_type].
Auto-generated methods
The #[component] macro automatically provides methods on self for account operations.
Mutation methods (&mut self)
// Add an asset to the account vault
self.add_asset(asset: Asset) -> Asset
// Remove an asset from the account vault
self.remove_asset(asset: Asset) -> Asset
// Increment the account nonce (replay protection)
self.incr_nonce() -> Felt
// Compute commitment of account state changes (read-only)
self.compute_delta_commitment() -> Word
// Check if a procedure was called during this transaction (read-only)
self.was_procedure_called(proc_root: Word) -> bool
Read-only methods (&self)
// Get the account ID
self.get_id() -> AccountId
// Get the account nonce
self.get_nonce() -> Felt
// Get fungible asset balance for an asset key
self.get_balance(asset_key: Word) -> Felt
// Check non-fungible asset ownership
self.has_non_fungible_asset(asset: Asset) -> bool
// Get storage and vault commitments
self.get_vault_root() -> Word
self.compute_commitment() -> Word
self.compute_storage_commitment() -> Word
// ... and more (see API Reference)
For the full list of auto-generated methods, see Account Operations. To export your own types for use in public method signatures, see Custom Types.
Full API docs on docs.rs: miden (top-level — #[component] macro)