miraplex-sugar-cli 2.1.1

Command line tool for creating and managing Miraplex Candy Machines. Derived/Forked from Metaplex.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use thiserror::Error;

#[derive(Debug, Error)]
pub enum DeployError {
    #[error("Missing metadata link for cache item {0}")]
    MissingMetadataLink(String),
    #[error("Missing name for cache item {0}")]
    MissingName(String),
    #[error("{0}")]
    AddConfigLineFailed(String),
    #[error(
        "Your current wallet balance of {0} MLN is not enough. {1} MLN is needed to deploy the candy machine."
    )]
    BalanceTooLow(String, String),
}