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