8 unstable releases (3 breaking)

new 0.4.0 Jul 4, 2024
0.3.1 Jun 12, 2024
0.3.0 May 14, 2024
0.2.3 Apr 26, 2024
0.1.0 Mar 5, 2024

#39 in No standard library

Download history 736/week @ 2024-03-11 380/week @ 2024-03-18 252/week @ 2024-03-25 481/week @ 2024-04-01 886/week @ 2024-04-08 469/week @ 2024-04-15 1004/week @ 2024-04-22 679/week @ 2024-04-29 367/week @ 2024-05-06 962/week @ 2024-05-13 350/week @ 2024-05-20 283/week @ 2024-05-27 180/week @ 2024-06-03 216/week @ 2024-06-10 36/week @ 2024-06-17 35/week @ 2024-06-24

469 downloads per month
Used in 6 crates (4 directly)

MIT license

1MB
16K SLoC

Miden Transaction

This crate contains tool for creating, executing, and proving Miden rollup transaction.

Usage

This crate exposes a few components to compile, run, and prove transactions.

The first requirement is to have a DataStore implementation. DataStore objects are responsible to load the data needed by the transactions executor, specially the account's code, the reference block data, and the note's inputs.

let store = DataStore:new();

Once a store is available, a TransactionExecutor object can be used to execute a transaction. Consuming a zero or more notes, and possibly calling some of the account's code.

let executor = TransactionExecutor::new(store);
let executed_transaction = executor.execute_transaction(account_id, block_ref, note_ids, tx_args);

With the transaction execution done, it is then possible to create a proof:

let prover = TransactionProver::new(ProvingOptions::default());
let proven_transaction = prover.prove_transaction(executed_transaction);

And to verify a proof:

let verifier = TransactionVerifier::new(SECURITY_LEVEL);
verifier.verify(proven_transaction);

Features

Features Description
std Enable usage of Rust's std, use --no-default-features for no-std support.
concurrent Enables concurrent code to speed up runtime execution.

License

This project is MIT licensed.

Dependencies

~10MB
~176K SLoC