switchboard-on-demand 0.1.2

A Rust library to interact with the Switchboard Solana program.
1
2
3
4
5
6
7
8
9
10
11
mod error;
pub use error::*;

pub mod accounts;
pub use accounts::*;

pub mod instructions;
pub use instructions::*;

pub mod types;
pub use types::*;