streak-api 0.1.2

API for interacting with the STREAK directional markets protocol on Solana
//! Shared crate for deploy id, instructions, accounts, and SDK (**Ore-aligned layout**).

pub mod consts;
pub mod error;
pub mod event;
pub mod instruction;
pub mod pyth;
pub mod sdk;
pub mod settlement;
pub mod state;

pub mod prelude {
    pub use crate::consts::*;
    pub use crate::error::*;
    pub use crate::event::*;
    pub use crate::instruction::*;
    pub use crate::sdk::*;
    pub use crate::state::*;
}

use steel::*;

// Replace with your deployed program id (`solana-keygen grind` / deploy flow).
declare_id!("DmmcW2HaSDHkH6iTfM3Cko9guyppmMAqJm6L61BbDAbZ");