metabob 0.5.0

The Metaplex NFT-standard assortment of tools for very specific tasks that are unrelated. Inspired HEAVILY by Metaboss.
Documentation
1
2
3
4
5
6
7
8
9
10
use thiserror::Error;

#[derive(Error, Debug)]
pub enum DecodeError {
    #[error("failed to decode token mint data")]
    DecodeMintFailed(String),

    #[error("failed to decode token metadata data")]
    DecodeMetadataDataFailed(String),
}