mirror of
https://github.com/darkrenaissance/darkfi.git
synced 2026-01-09 06:38:12 -05:00
12 lines
322 B
Rust
12 lines
322 B
Rust
use lazy_static::lazy_static;
|
|
use pasta_curves::{group::ff::Field, pallas};
|
|
use rand::rngs::OsRng;
|
|
|
|
pub mod validate;
|
|
pub mod wallet;
|
|
pub use wallet::{Builder, BuilderClearInputInfo, BuilderInputInfo, BuilderOutputInfo, Note};
|
|
|
|
lazy_static! {
|
|
pub static ref FUNC_ID: pallas::Base = pallas::Base::random(&mut OsRng);
|
|
}
|