pub type ScriptHashTxsSummary = AddressTxsSummary;Expand description
Contains a summary of the Transactions for a particular Script hash.
Aliased Type§
pub struct ScriptHashTxsSummary {
pub funded_txo_count: u32,
pub funded_txo_sum: u64,
pub spent_txo_count: u32,
pub spent_txo_sum: u64,
pub tx_count: u32,
}Fields§
§funded_txo_count: u32The number of funded TxOuts.
funded_txo_sum: u64The sum of the funded TxOuts, in satoshis.
spent_txo_count: u32The number of spent TxOuts.
spent_txo_sum: u64The sum of the spent TxOuts, in satoshis.
tx_count: u32The total number of Transactions.