miden-protocol 0.16.0-alpha.4

Core components of the Miden protocol
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod patch_operation;
pub use patch_operation::StoragePatchOperation;

mod storage_patch;
pub use storage_patch::AccountStoragePatch;

mod slot_patch;
pub use slot_patch::StorageSlotPatch;

mod value_patch;
pub use value_patch::StorageValuePatch;

mod map_patch;
pub use map_patch::{StorageMapPatch, StorageMapPatchEntries};

#[cfg(test)]
mod tests;