ore_lst_api/lib.rs
1//! API for the ORE liquid staking token (stORE) program.
2//!
3//! This crate provides constants, instructions, state definitions, and SDK helpers
4//! for interacting with the ORE LST program on Solana.
5
6pub mod consts;
7pub mod error;
8pub mod instruction;
9pub mod sdk;
10pub mod state;
11
12/// Re-exports all public types for convenient imports.
13pub mod prelude {
14 pub use crate::consts::*;
15 pub use crate::error::*;
16 pub use crate::instruction::*;
17 pub use crate::sdk::*;
18 pub use crate::state::*;
19}
20
21use steel::*;
22
23declare_id!("LStwN2E5Uw6MCtuxHRLhy8RY9hxqW2XRpLzettb696y");