gpl_governance/
lib.rs

1#![deny(missing_docs)]
2//! A Governance program for the Gemachain blockchain.
3
4pub mod addins;
5pub mod entrypoint;
6pub mod error;
7pub mod instruction;
8pub mod processor;
9pub mod state;
10pub mod tools;
11
12// Export current sdk types for downstream users building with a different sdk version
13pub use gemachain_program;
14
15/// Seed prefix for Governance  PDAs
16pub const PROGRAM_AUTHORITY_SEED: &[u8] = b"governance";