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