gmsol-sdk 0.9.0

GMX-Solana is an extension of GMX on the Solana blockchain.
Documentation
/// Workaround for deserializing ZeroCopy accounts.
pub mod zero_copy;

/// Fixed number convertions.
pub mod fixed;

/// Base64 utils.
pub mod base64;

/// Optional account utils.
pub mod optional;

/// Fixed str.
pub mod fixed_str;

/// Instruction serialization.
pub mod instruction_serialization;

/// Amount type definitions.
pub mod amount;

/// Utils for market.
pub mod market;

/// Utils for GLV.
pub mod glv;

/// Utils for `gmsol-decode`.
#[cfg(feature = "decode")]
pub mod decode;

/// Utils for token map.
pub mod token_map;

/// Utils for events.
pub mod events;

/// Test utils.
#[cfg(test)]
pub mod test;

pub use amount::*;
pub use fixed::*;