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
//!
//! To avoid dependency conflicts, some parts of the `squads_multisig` SDK are reimplemented
//! with the help of [`declare_program!`](anchor_lang::declare_program!).
//! The implementation is based on: https://crates.io/crates/squads-multisig/2.1.0

pub(crate) mod pda;
pub(crate) mod small_vec;

anchor_lang::declare_program!(squads_multisig_v4);

pub use pda::{get_proposal_pda, get_transaction_pda, get_vault_pda};