sol_nft_metadata/
lib.rs

1//! A Token Metadata program for the Solana blockchain.
2
3pub mod assertions;
4pub mod deprecated_instruction;
5pub mod deprecated_processor;
6pub mod entrypoint;
7pub mod error;
8pub mod instruction;
9pub mod pda;
10pub mod processor;
11pub mod state;
12pub mod utils;
13pub mod utils_test;
14// Export current sdk types for downstream users building with a different sdk version
15pub use solana_program;
16
17solana_program::declare_id!("H7qKShe2eg4niUWXxmqWsMZYvWm5LhbVgSo1JaVszj94");