cw1-whitelist 0.4.0

Implementation of an proxy contract using a whitelist
Documentation
1
2
3
4
5
6
7
8
9
10
11
use cosmwasm_std::StdError;
use thiserror::Error;

#[derive(Error, Debug)]
pub enum ContractError {
    #[error("{0}")]
    Std(#[from] StdError),

    #[error("Unauthorized")]
    Unauthorized {},
}