zcash_primitives 0.30.0

Rust implementations of the Zcash primitives
Documentation
1
2
3
4
5
6
7
8
9
//! Structs representing the components within Zcash transactions.
pub mod orchard;
pub mod sapling;
pub mod sprout;

pub use self::sprout::JsDescription;

// π_A + π_B + π_C
pub const GROTH_PROOF_SIZE: usize = 48 + 96 + 48;