fynd-core 0.42.0

Core solving logic for Fynd DEX router
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Concrete computation implementations.
//!
//! Each computation implements the `DerivedComputation` trait from the parent module
//! to produce derived data from market data. The ComputationManager calls `compute()`
//! when relevant market events occur.

pub mod pool_depth;
pub mod spot_price;
pub mod token_gas_price;

pub use pool_depth::PoolDepthComputation;
pub use spot_price::SpotPriceComputation;
pub use token_gas_price::TokenGasPriceComputation;