Skip to main content

tengu_api/
lib.rs

1pub mod consts;
2pub mod error;
3pub mod event;
4pub mod instruction;
5pub mod sdk;
6pub mod state;
7pub mod tasks;
8pub mod utils;
9pub mod xp;
10pub mod vesting;
11
12pub use utils::*;
13pub use vesting::*;
14
15pub mod prelude {
16    pub use crate::consts::*;
17    pub use crate::error::*;
18    pub use crate::event::*;
19    pub use crate::instruction::*;
20    pub use crate::sdk::*;
21    pub use crate::state::*;
22    pub use crate::tasks::*;
23    pub use crate::utils::*;
24    pub use crate::xp::*;
25    pub use crate::vesting::*;
26}
27
28use steel::*;
29
30declare_id!("DoJoJ9HjqujEchu25BEcK1nfD9ejU27JeXmpxz5Tqnt");