pub fn get_storage() -> Vec<Felt>Expand description
Returns the storage of the currently executing note.
§Examples
Parse a note storage layout into domain types:
ⓘ
use miden::{active_note, AccountId, Asset};
let storage = active_note::get_storage();
// Example layout: first two values store a target `AccountId`.
let target = AccountId::from(storage[0], storage[1]);