pub use ;
declare_id!;
pub const MAGIC_CONTEXT_PUBKEY: Pubkey =
pubkey!;
/// Vault account that collects rent for ephemeral accounts.
pub const EPHEMERAL_VAULT_PUBKEY: Pubkey =
pubkey!;
/// We believe 5MB should be enough to store all scheduled commits within a
/// slot. Once we store more data in the magic context we need to reconsicer
/// this size.
/// NOTE: the default max accumulated account size per transaction is 64MB.
/// See: MAX_LOADED_ACCOUNTS_DATA_SIZE_BYTES inside program-runtime/src/compute_budget_processor.rs
pub const MAGIC_CONTEXT_SIZE: usize = 1024 * 1024 * 5; // 5 MB
/// Rent rate for ephemeral accounts: 32 lamports per byte.
/// This is ~109x cheaper than Solana's base rent (3,480 lamports/byte).
pub const EPHEMERAL_RENT_PER_BYTE: u64 = 32;