ibc-relayer 0.32.2

Implementation of an IBC Relayer in Rust, as a library
1
2
3
4
5
6
7
8
9
10
11
12
//! Data structures related to the denomination of coins used by the relayer.

use serde::{Deserialize, Serialize};

/// The denom trace
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct DenomTrace {
    /// The chain of port/channel identifiers used for tracing the source of the coin.
    pub path: String,
    /// The base denomination for that coin
    pub base_denom: String,
}