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;