UTXO Storage
The UTXO set represents the current state of ownership of all Satoshi tokens in existence.
Last updated
The UTXO set represents the current state of ownership of all Satoshi tokens in existence.
Last updated
Except for Coinbase transactions, every other valid transaction spends at least one UTXO and creates zero or more new UTXOs, plus zero or more unspendable outputs. The UTXOs that are being ‘spent’ obviously must come from previously successful transactions, and these may be recorded in the current or a previous block.
An unspent output may be created and spent in a few milli-seconds, or it may remain unspent for decades, depending on when they are used in a transaction. This means that the unspent outputs must be persisted for as long as they remain unspent.
UTXOStorage comprises of set of components which handle storage (short term and long term) of UTXOs. Due to the nature of the storage which would sometime have requirement of some UTXOs being maintained in cache, short term memory or some in long term memory so the storage itself is designed in such a manner that it supports the needed access of these UTXOs based on how active they have been. It also is used by most of the node components to get status of the UTXOs as described in the diagram below.
A UTXO can be in various possible states at any point in time in the database. Each of the processes does its own set of interactions with UTXO Storage.
When a new transaction goes through the validation process, this will initiate the creation of new UTXOs (present in this transaction's Output).
When the TxValidator is validating a transaction, it will fetch the UTXOs which are being spent in the input of the transaction it is validating. It will iterate through every input present in the transaction and fetch the UTXO, while the UTXO entry in the database itself will be locked so that no other transaction can now spend the UTXO (in a way, this is how the first-seen rule is implemented in the node)
Once validated by the script engine and posted to mempool, the locked UTXO status will be changed to Spent.
The new UTXOs created by this transaction will then become available for spending by a later received transaction.
Error scenarios are possible where the UTXOs are not found or are unspendable due to incorrect script or sometimes even missing. These will be handled accordingly, resulting in an invalid transaction error.
UTXOs are always created based on a Tip ID. So, if the Tip-ID changes, the state of UTXO changes as well. This is kept in sync by interacting with the chain tracker.
Block Validator and Assembler also use UTXO storage services to ensure the validity of the UTXOs that they are consuming.