ore_boost_api/lib.rs
1pub mod consts;
2pub mod error;
3pub mod instruction;
4pub mod sdk;
5pub mod state;
6
7pub mod prelude {
8 pub use crate::consts::*;
9 pub use crate::error::*;
10 pub use crate::instruction::*;
11 pub use crate::sdk::*;
12 pub use crate::state::*;
13}
14
15use steel::*;
16
17declare_id!("BoostzzkNfCA9D1qNuN5xZxB5ErbK4zQuBeTHGDpXT1");