solana_loader_v4_interface/lib.rs
1//! The v4 built-in loader program.
2//!
3//! This is the loader of the program runtime v2.
4#![cfg_attr(feature = "frozen-abi", feature(min_specialization))]
5#![cfg_attr(docsrs, feature(doc_auto_cfg))]
6
7pub mod instruction;
8pub mod state;
9
10/// Cooldown before a program can be un-/redeployed again
11pub const DEPLOYMENT_COOLDOWN_IN_SLOTS: u64 = 1;