Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement send_note for basic wallet #808

Merged
merged 12 commits into from
Aug 9, 2024
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
- [BREAKING] Refactored and simplified `NoteOrigin` and `NoteInclusionProof` structs (#810, #814).
- Made `miden_lib::notes::build_swap_tag()` function public (#817).
- [BREAKING] Changed the `NoteFile::NoteDetails` type to struct and added a `after_block_num` field (#823).
- Implemented `cteate_note` and `move_asset_into_note` basic wallet procedures (#808).
- [BREAKING] Interface of the `miden::tx::add_asset_to_note` procedure was changed (#808).

## 0.4.0 (2024-07-03)

Expand Down
123 changes: 82 additions & 41 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion bench-tx/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# Miden transactions benchmark

This crate contains an executable used for benchmarking transactions.
This crate contains an executable used for benchmarking transactions.

For each transaction, data is collected on the number of cycles required to complete:

- Prologue
- All notes processing
- Each note execution
Expand Down
Loading
Loading