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 accounts used by the relayer.

use serde::{Deserialize, Serialize};

/// The balance for a specific denom
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct Balance {
    /// The amount of coins in the account, as a string to allow for large amounts
    pub amount: String,
    /// The denomination for that coin
    pub denom: String,
}