mpl_token_metadata/lib.rs
1//! A Token Metadata program for the Solana blockchain.
2//!
3//! The program attach additional data to Fungible or Non-Fungible Tokens on Solana.
4
5pub mod assertions;
6
7// (Re-)Declare modules to maintain API compatibility.
8
9pub mod escrow {
10 pub use crate::{instruction::escrow::*, processor::escrow::*};
11}
12
13pub mod entrypoint;
14pub mod error;
15pub mod instruction;
16pub mod pda;
17pub mod processor;
18pub mod state;
19pub mod utils;
20
21// Export current sdk types for downstream users building with a different sdk version
22pub use solana_program;
23
24solana_program::declare_id!("metaqbxxUerdq28cj1RbAWkYQm3ybzjb6a8bt518x1s");