nft_collection 0.1.1

A collection protocol for the Token program on the Solana blockchain.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![forbid(unsafe_code)]
//! A Collection program for the Metaplex NFT.

mod entrypoint;
pub mod processor;
pub mod utils;
pub mod instruction;
pub mod error; 
pub mod state;

solana_program::declare_id!("co111CrRL738X8TKrqmLcNBstgLFZjuMtZRBW2FGpbC");