wp_solana_raydium_clmm_client/
lib.rs1#![allow(ambiguous_glob_reexports)]
8#![allow(clippy::io_other_error)]
9
10pub mod constants;
11pub mod error;
12#[cfg(feature = "fetch")]
13pub mod gpa;
14pub mod pda;
15
16pub mod generated;
18
19pub use constants::{MAX_TICK_INDEX, MIN_TICK_INDEX, TICK_ARRAY_BITMAP_SIZE, TICK_ARRAY_SIZE, *};
21pub use error::{RaydiumClmmError, Result};
22pub use generated::accounts::*;
24#[cfg(feature = "fetch")]
25pub use generated::shared::*;
26#[cfg(feature = "fetch")]
27pub(crate) use generated::*;
28pub use generated::{
29 errors::*,
30 instructions::*,
31 programs::{AMM_V3_ID as ID, *},
32 types::*,
33};
34#[cfg(feature = "fetch")]
35pub use gpa::*;
36pub use pda::*;