mod.rs 229 B

12345678910
  1. use lazy_static::lazy_static;
  2. use pasta_curves::{group::ff::Field, pallas};
  3. use rand::rngs::OsRng;
  4. pub mod validate;
  5. pub mod wallet;
  6. lazy_static! {
  7. pub static ref FUNC_ID: pallas::Base = pallas::Base::random(&mut OsRng);
  8. }