metaboss_lib 0.24.0

The core library for the metaboss cli.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use anyhow::{bail, Result};
use mpl_token_metadata::types::TokenStandard;
use solana_client::rpc_client::RpcClient;
use solana_sdk::{
    signature::{Keypair, Signature},
    signer::Signer,
};

use crate::{data::Asset, decode::ToPubkey};

mod collection;
mod creator;

pub use collection::*;
pub use creator::*;