mirror of
https://github.com/darkrenaissance/darkfi.git
synced 2026-01-09 14:48:08 -05:00
13 lines
237 B
Rust
13 lines
237 B
Rust
use lazy_static::lazy_static;
|
|
use pasta_curves::{group::ff::Field, pallas};
|
|
use rand::rngs::OsRng;
|
|
|
|
// foo()
|
|
pub mod foo;
|
|
|
|
pub mod state;
|
|
|
|
lazy_static! {
|
|
pub static ref CONTRACT_ID: pallas::Base = pallas::Base::random(&mut OsRng);
|
|
}
|