Skip to main content

gmsol_sdk/market_graph/simulation/
mod.rs

1#![allow(deprecated)]
2
3/// Order execution simulation.
4pub mod order;
5
6/// Options for simulation.
7#[derive(Debug, Default, Clone)]
8pub struct SimulationOptions {
9    /// Whether to prefer swap in token update.
10    pub prefer_swap_in_token_update: bool,
11}