forked from propeller-heads/tycho-simulation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlib.rs
More file actions
23 lines (20 loc) · 693 Bytes
/
lib.rs
File metadata and controls
23 lines (20 loc) · 693 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//! Tycho Simulation: a decentralized exchange simulation library
//!
//! This library allows to simulate trades against a wide range
//! of different protocols, including uniswap-v2 and uniswap-v3.
//! It allows to simulate chained trades over different venues
//! together to exploit price differences by using token prices
//! calculated from the protocol's state.
extern crate core;
// Reexports
pub use tycho_client;
pub use tycho_common;
pub use tycho_common as tycho_core; // Use `tycho_common` directly instead of `tycho_core`.
pub use tycho_ethereum;
#[cfg(feature = "evm")]
pub mod evm;
pub mod protocol;
#[cfg(feature = "rfq")]
pub mod rfq;
pub mod serde_helpers;
pub mod utils;