cosm-orc 4.0.0

Cosmwasm smart contract orchestration and gas profiling library
Documentation
1
2
3
4
5
6
7
8
9
use thiserror::Error;

pub use config::ConfigError as BuilderError;

#[derive(Error, Debug)]
pub enum ConfigError {
    #[error(transparent)]
    Config(#[from] BuilderError),
}