Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mint and approve tokens #2

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ pub static ARBITRAGEUR_ADDRESS_BASE: u64 = 2_u64;
pub static FEE_BPS: u16 = 10;
pub static VOLATILITY_F: f64 = 0.1;
pub static BASIS_POINT_DIVISOR: u16 = 10_000;
pub static SECONDS_PER_YEAR: u64 = 31556953;
pub static SECONDS_PER_YEAR: u64 = 31556953;
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
mod cli;
mod setup;
mod bindings;
mod cli;
mod common;
mod setup;
/// # Proto Sim
/// Proof of concept simulation of EVM execution with an arbitrageur agent,
/// price process, "centralized" exchange, and the Portfolio protocol.
Expand Down
Loading