mithril_stm/circuits/halo2/
types.rs

1//! Reexports and type aliases for the Halo2 prototype (kept close to mithril-circuits to minimize diff).
2
3pub use midnight_curves::{
4    Bls12, Fq as JubjubBase, Fr as JubjubScalar, JubjubAffine, JubjubExtended as Jubjub,
5    JubjubSubgroup,
6};
7
8pub type Target = JubjubBase;
9pub type Msg = JubjubBase;
10pub type MerkleRoot = JubjubBase;
11pub type LotteryIndex = u32;