switchboard-on-demand 0.10.5

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
mod error;
pub use error::*;

/// Switchboard account definitions and parsers
pub mod accounts;
pub use accounts::*;

/// Switchboard instruction builders
pub mod instructions;
pub use instructions::*;

/// Oracle quote verification and data extraction
pub mod oracle_quote;
pub use oracle_quote::*;

/// Common type definitions
pub mod types;
pub use types::*;