mod.rs 237 B

123456789101112
  1. use lazy_static::lazy_static;
  2. use pasta_curves::{group::ff::Field, pallas};
  3. use rand::rngs::OsRng;
  4. // foo()
  5. pub mod foo;
  6. pub mod state;
  7. lazy_static! {
  8. pub static ref CONTRACT_ID: pallas::Base = pallas::Base::random(&mut OsRng);
  9. }