gmsol-sdk 0.9.0

GMX-Solana is an extension of GMX on the Solana blockchain.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![allow(deprecated)]

/// Order execution simulation.
pub mod order;

/// Options for simulation.
#[derive(Debug, Default, Clone)]
pub struct SimulationOptions {
    /// Whether to prefer swap in token update.
    pub prefer_swap_in_token_update: bool,
}