Expand description
Transparent address index UTXO queries.
In the functions in this module:
The block write task commits blocks to the finalized state before updating
chain
with a cached copy of the best non-finalized chain from
NonFinalizedState.chain_set
. Then the block commit task can commit additional blocks to
the finalized state after we’ve cloned the chain
.
This means that some blocks can be in both:
Structs§
- Address
Utxos - A convenience wrapper that efficiently stores unspent transparent outputs, and the corresponding transaction IDs.
Constants§
- ADDRESS_
HEIGHTS_ FULL_ RANGE - The full range of address heights.
Functions§
- address_
utxos - Returns the unspent transparent outputs (UTXOs) for the supplied
transparent::Address
es, in chain order; and the transaction IDs for the transactions containing those UTXOs. - apply_
utxo_ 🔒changes - Combines the supplied finalized and non-finalized UTXOs, removes the spent UTXOs, and returns the result.
- chain_
transparent_ 🔒utxo_ changes - Returns the UTXO changes for
addresses
in the non-finalized chain, matching or overlapping the UTXOs for thefinalized_tip_range
. - finalized_
address_ 🔒utxos - Returns the unspent transparent outputs (UTXOs) for
addresses
in the finalized chain, and the finalized tip heights the UTXOs were queried at. - lookup_
tx_ 🔒ids_ for_ utxos - Returns the
transaction::Hash
es containing the supplied UTXOs, from the non-finalizedchain
and finalizeddb
.