gemachain_program/bpf_loader.rs
1//! @brief The latest Gemachain BPF loader.
2//!
3//! The BPF loader is responsible for loading, finalizing, and executing BPF
4//! programs. Not all networks may support the latest loader. You can use the
5//! command-line tools to check if this version of the loader is supported by
6//! requesting the account info for the public key below.
7//!
8//! The program format may change between loaders, and it is crucial to build
9//! your program against the proper entrypoint semantics. All programs being
10//! deployed to this BPF loader must build against the latest entrypoint version
11//! located in `entrypoint.rs`.
12//!
13//! Note: Programs built for older loaders must use a matching entrypoint
14//! version. An example is `bpf_loader_deprecated.rs` which requires
15//! `entrypoint_deprecated.rs`.
16
17crate::declare_id!("BPFLoader2111111111111111111111111111111111");