ephemeral_rollups_sdk/
consts.rs

1use crate::solana_compat::solana::Pubkey;
2
3pub use dlp::consts::*;
4use magicblock_magic_program_api::MAGIC_CONTEXT_PUBKEY;
5
6/// The magic program ID.
7pub const MAGIC_PROGRAM_ID: Pubkey =
8    Pubkey::new_from_array(magicblock_magic_program_api::ID.to_bytes());
9
10/// The magic context ID.
11pub const MAGIC_CONTEXT_ID: Pubkey = Pubkey::new_from_array(MAGIC_CONTEXT_PUBKEY.to_bytes());