zcash_primitives 0.9.1

Rust implementations of the Zcash primitives
Documentation
//! Structs representing the components within Zcash transactions.

pub mod amount;
pub mod orchard;
pub mod sapling;
pub mod sprout;
pub mod transparent;
pub mod tze;
pub use self::{
    amount::Amount,
    sapling::{OutputDescription, SpendDescription},
    sprout::JsDescription,
    transparent::{OutPoint, TxIn, TxOut},
};

#[cfg(feature = "zfuture")]
pub use self::tze::{TzeIn, TzeOut};

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