atlas_config_interface/lib.rs
1#![cfg_attr(docsrs, feature(doc_auto_cfg))]
2#![allow(clippy::arithmetic_side_effects)]
3
4//! Atlas config program interface.
5//!
6//! This crate provides the interface for the Atlas configuration program.
7
8pub mod types;
9
10/// The Atlas config program ID
11pub const ID: [u8; 32] = [
12 0x03, 0x06, 0x44, 0x6e, 0xb5, 0x4a, 0x3c, 0x4d,
13 0x0f, 0x61, 0x79, 0x47, 0x3f, 0x6f, 0x6c, 0x71,
14 0x42, 0xc8, 0x6f, 0xdd, 0x58, 0x90, 0x22, 0xa8,
15 0x42, 0x0c, 0xe6, 0x69, 0x0d, 0x05, 0x00, 0x00,
16];