tpl-token-metadata-interface 3.2.2

Trezoa Program Library Token Metadata Interface
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Crate defining an interface for token-metadata

#![allow(clippy::arithmetic_side_effects)]
#![deny(missing_docs)]
#![cfg_attr(not(test), forbid(unsafe_code))]

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

// Export current sdk types for downstream users building with a different sdk
// version Export borsh for downstream users
pub use {borsh, trezoa_borsh, trezoa_instruction, trezoa_program_error};

/// Namespace for all programs implementing token-metadata
pub const NAMESPACE: &str = "tpl_token_metadata_interface";