lib.rs 351 B

123456789101112131415161718
  1. pub mod consts;
  2. pub mod error;
  3. pub mod instruction;
  4. pub mod sdk;
  5. pub mod state;
  6. pub mod prelude {
  7. pub use crate::consts::*;
  8. pub use crate::error::*;
  9. pub use crate::instruction::*;
  10. pub use crate::sdk::*;
  11. pub use crate::state::*;
  12. }
  13. use steel::*;
  14. // TODO Set program id
  15. declare_id!("HK5TuboXztZv7anSa3GptyCZ5wMYiqbY8kNSVEtqWDuD");