Skip to main content

streak_api/
lib.rs

1//! Shared crate for deploy id, instructions, accounts, and SDK (**Ore-aligned layout**).
2
3pub mod consts;
4pub mod error;
5pub mod event;
6pub mod instruction;
7pub mod pyth;
8pub mod sdk;
9pub mod settlement;
10pub mod state;
11
12pub mod prelude {
13    pub use crate::consts::*;
14    pub use crate::error::*;
15    pub use crate::event::*;
16    pub use crate::instruction::*;
17    pub use crate::sdk::*;
18    pub use crate::state::*;
19}
20
21use steel::*;
22
23// Replace with your deployed program id (`solana-keygen grind` / deploy flow).
24declare_id!("DmmcW2HaSDHkH6iTfM3Cko9guyppmMAqJm6L61BbDAbZ");