pub struct Ledger<TransactionType> {Show 13 fields
pub account_hash: String,
pub close_flags: u64,
pub close_time: LedgerTimestamp,
pub close_time_human: String,
pub close_time_resolution: u32,
pub closed: bool,
pub ledger_hash: String,
pub ledger_index: String,
pub parent_close_time: LedgerTimestamp,
pub parent_hash: String,
pub total_coins: String,
pub transaction_hash: String,
pub transactions: Option<Vec<TransactionType>>,
}
Fields§
§account_hash: String
Hash of all account state information in this ledger, as hex.
close_flags: u64
§close_time: LedgerTimestamp
The time this ledger was closed, in seconds since the Ripple Epoch.
close_time_human: String
The time this ledger was closed, in human-readable format. Always uses the UTC time zone.
close_time_resolution: u32
Ledger close times are rounded to within this many seconds.
closed: bool
Whether or not this ledger has been closed.
ledger_hash: String
Unique identifying hash of the entire ledger.
ledger_index: String
The Ledger Index of this ledger, as a quoted integer.
parent_close_time: LedgerTimestamp
The time at which the previous ledger was closed.
parent_hash: String
Unique identifying hash of the ledger that came immediately before this one.
total_coins: String
Total number of XRP drops in the network, as a quoted integer. (This decreases as transaction costs destroy XRP.)
transaction_hash: String
Hash of the transaction information included in this ledger, as hex
transactions: Option<Vec<TransactionType>>
(Omitted unless requested) Transactions applied in this ledger version. By default, members are the transactions identifying Hash strings. If the request specified expand as true, members are full representations of the transactions instead, in either JSON or binary depending on whether the request specified binary as true.