hermes-cli 0.1.0

Hermes: IBC Relayer in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![recursion_limit = "256"]

use hermes_cli::application::HermesCli;
use hermes_cli_framework::application::boot;

fn main() {
    if let Err(e) = boot::<HermesCli>() {
        tracing::error!("{e:?}");
        std::process::exit(1);
    }
}