ibc-relayer-cli 1.13.2

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

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

mod events;

/// `query tx` subcommand
#[derive(Command, Debug, Parser, Runnable)]
pub enum QueryTxCmd {
    /// Query the events emitted by transaction
    Events(events::QueryTxEventsCmd),
}