switchboard-on-demand 0.12.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
14
15
16
17
18
/// Oracle account data and verification
pub mod oracle;
/// Oracle statistics and performance tracking
pub mod oracle_stats;
/// Pull feed data structures and utilities
pub mod pull_feed;
/// Queue account for managing oracle operations
pub mod queue;
/// Randomness account for verifiable random number generation
pub mod randomness;
/// Global state account
pub mod state;
pub use oracle::*;
pub use oracle_stats::*;
pub use pull_feed::*;
pub use queue::*;
pub use randomness::*;
pub use state::*;