tokenomics_simulator/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![forbid(unsafe_code)]

pub mod engine;
pub mod report;
pub mod token;
pub mod user;

pub use engine::*;
pub use report::*;
pub use token::*;
pub use user::*;

/// Precision of the decimal numbers used in the simulation.
const DECIMAL_PRECISION: u32 = 4;