1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#[cfg(test)]
use solana_program::declare_id;
#[cfg(test)]
declare_id!("11111111111111111111111111111111");
mod accounts;
mod borsh_size;
pub mod checks;
mod declare_id_with_central_state;
pub mod fp_math;
pub mod pyth;
pub use accounts::InstructionsAccount;
pub use bonfida_macros::{declare_id_with_central_state, BorshSize, InstructionsAccount};
pub use borsh_size::BorshSize;
#[cfg(feature = "benchmarking")]
pub mod bench;