ibc-relayer-cli 1.2.0

Hermes is an IBC Relayer written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! `update` subcommand

use abscissa_core::clap::Parser;
use abscissa_core::{Command, Runnable};

use crate::commands::tx::client::TxUpdateClientCmd;

#[derive(Command, Debug, Parser, Runnable)]
pub enum UpdateCmds {
    /// Update an IBC client
    Client(TxUpdateClientCmd),
}