spl_binary_oracle_pair/lib.rs
1//! binary oracle pair
2#![deny(missing_docs)]
3
4pub mod error;
5pub mod instruction;
6pub mod processor;
7pub mod state;
8
9#[cfg(not(feature = "no-entrypoint"))]
10mod entrypoint;
11
12// Export current sdk types for downstream users building with a different sdk version
13pub use solana_program;
14
15// Binary Oracle Pair id
16solana_program::declare_id!("Fd7btgySsrjuo25CJCj7oE7VPMyezDhnx7pZkj2v69Nk");