Skip to main content

ScriptHashTxsSummary

Type Alias ScriptHashTxsSummary 

Source
pub type ScriptHashTxsSummary = AddressTxsSummary;
Expand description

A summary of Transactions for a particular scripthash.

Aliased Type§

pub struct ScriptHashTxsSummary {
    pub funded_txo_count: u32,
    pub funded_txo_sum: Amount,
    pub spent_txo_count: u32,
    pub spent_txo_sum: Amount,
    pub tx_count: u32,
}

Fields§

§funded_txo_count: u32

The current number of funded TxOuts for this Address.

§funded_txo_sum: Amount

The total Amount of funded TxOuts for this Address.

§spent_txo_count: u32

The number of spent TxOuts for this Address.

§spent_txo_sum: Amount

The total Amount of spent TxOuts for this Address.

§tx_count: u32

The total number of Transactions for this Address.