clone-spl-token-group-interface 0.6.0

Solana Program Library Token Group Interface
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 = "clone_spl_token_group_interface";