four-meme-sdk 0.1.6

four-meme-sdk for bnb
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use thiserror::Error;


#[derive(Debug, Error)]
pub enum FourMemeError {
    #[error("provider error: {0}")]
    Provider(String),
    #[error("contract error: {0}")]
    Contract(String),
    #[error("abi error: {0}")]
    Abi(String),
    #[error("other: {0}")]
    Other(String),
}