switchboard-on-demand 0.11.1

A Rust library to interact with the Switchboard Solana program.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// Re-export from on_demand/accounts which have the complete definitions
pub use crate::on_demand::accounts::{
    OracleAccountData, State, StateEpochInfo, PullFeedAccountData, QueueAccountData,
};
pub use crate::on_demand::types::Quote;

// Client-specific extensions remain in this module
mod oracle_ext;
mod pull_feed_ext;
mod queue_ext;
mod state_ext;

pub use queue_ext::{Queue}; // Export the Queue wrapper struct