wp_solana_jupiter_vaults_client/
lib.rs1#![allow(ambiguous_glob_reexports)]
7#![allow(clippy::io_other_error)]
8#![allow(unused_imports)]
9
10pub mod constants;
11pub mod error;
12pub mod gpa;
13pub mod pda;
14pub mod state;
15
16pub mod generated;
18
19pub use constants::*;
21pub use error::{Result, VaultsError};
22#[cfg(feature = "fetch")]
23pub use generated::shared::*;
24#[cfg(feature = "fetch")]
25pub(crate) use generated::*;
26pub use generated::{accounts::*, instructions::*, programs::*, types::*};
27#[cfg(feature = "fetch")]
28pub use gpa::*;
29pub use pda::*;
30pub use state::*;