atlas-config-interface 3.0.0

Atlas config program interface.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
#![allow(clippy::arithmetic_side_effects)]

//! Atlas config program interface.
//! 
//! This crate provides the interface for the Atlas configuration program.

pub mod types;

/// The Atlas config program ID
pub const ID: [u8; 32] = [
    0x03, 0x06, 0x44, 0x6e, 0xb5, 0x4a, 0x3c, 0x4d,
    0x0f, 0x61, 0x79, 0x47, 0x3f, 0x6f, 0x6c, 0x71,
    0x42, 0xc8, 0x6f, 0xdd, 0x58, 0x90, 0x22, 0xa8,
    0x42, 0x0c, 0xe6, 0x69, 0x0d, 0x05, 0x00, 0x00,
];