11 lines
250 B
Rust
11 lines
250 B
Rust
use crate::pubkey::Pubkey;
|
|
|
|
pub const BPF_LOADER_PROGRAM_ID: [u8; 32] = [
|
|
128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0,
|
|
];
|
|
|
|
pub fn id() -> Pubkey {
|
|
Pubkey::new(&BPF_LOADER_PROGRAM_ID)
|
|
}
|