4 releases

0.1.3 Apr 19, 2024
0.1.2 Mar 19, 2024
0.1.1 Mar 1, 2024
0.1.0 Feb 21, 2024

#1748 in Magic Beans

Download history 126/week @ 2024-02-18 160/week @ 2024-02-25 65/week @ 2024-03-03 35/week @ 2024-03-10 179/week @ 2024-03-17 6/week @ 2024-03-24 49/week @ 2024-03-31 41/week @ 2024-04-07 189/week @ 2024-04-14 57/week @ 2024-04-21

336 downloads per month

MIT/Apache

2MB
48K SLoC

Rust 28K SLoC // 0.1% comments Assembly 20K SLoC Pest 35 SLoC

Proof generator

Library for generating proofs from proof IR.

General Usage (Extremely rough, will change)

In proof_gen.rs, there are three core functions:

  • generate_txn_proof
  • generate_agg_proof
  • generate_block_proof

Both libraries are currently targeting the latest plonky2. One noteworthy piece of data that all proofs need is this:

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct BlockHashes {
    pub prev_hashes: Vec<H256>,
    pub cur_hash: H256,
}

Note that prev_hashes is going to be 256 elements long (!) most of the time.

generate_txn_proof takes in the output from the parser lib (GenerationInputs).

generate_agg_proof takes in the two child proofs (wrapped in `AggregatableProof`` to support txn or agg proofs).

generate_block_proof is a bit less obvious. You give it an agg proof that contains all txns in the entire block, but also pass in an optional previous block proof. The previous block proof is able to be None on checkpoint heights.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~13–21MB
~304K SLoC