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
12
13
14
use cfg_aliases::cfg_aliases;

fn main() {
    cfg_aliases! {
        tracing: { feature = "tracing" },
        serde: { feature = "serde" },
        js: { feature = "js" },
        treasury: { feature = "treasury" },
        timelock: { feature = "timelock" },
        competition: { feature = "competition" },
        liquidity_provider: { feature = "liquidity-provider" },
        simulation: { feature = "simulation" },
    }
}