spl_token_group_interface/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
//! Crate defining the SPL Token Group Interface

#![deny(missing_docs)]
#![cfg_attr(not(test), forbid(unsafe_code))]

pub mod error;
pub mod instruction;
pub mod state;

/// Namespace for all programs implementing spl-token-group
pub const NAMESPACE: &str = "spl_token_group_interface";