banner
Ming202

Ming202

区块链科普,加密投研,零撸。微信:BQ221859,微博:QuarkMing202,推X特:QuarkMing202
email
x
github
telegram

Web3 Popular Science | What is the UTXO Model

The full name of the "UTXO" model is the "Unspent Transaction Output" model, which is used to record, store, and execute transactions, and was first used in Bitcoin for accounting.

How the UTXO Model Works#

"UTXO" accounts for transactions using the remaining cryptocurrency amount after the transaction is executed (i.e., unspent cryptocurrency). Therefore, in the UTXO model, there are no "accounts" and "balances," which is the biggest difference from the "account model." In other words, "in the UTXO model, the balance that a user can transfer is the amount that has not been spent in their previous transactions."

In the UTXO model, each transaction consists of inputs and outputs represented as UTXOs. An input consumes an existing UTXO, while an output creates a new UTXO. After the transaction is completed, any unused outputs are recorded as inputs in the database and can be used for future transactions.

Example of the UTXO Model#

Wallet A has 5 bitcoins (UTXO_0). Wallet B has an empty wallet. Now, A wants to send 3.15 BTC to B's wallet. A's 5 BTC will be recorded as an input, then consumed, and at the same time, 3.15 BTC and 1.85 BTC (UTXO_1 and UTXO_2) will be created as outputs of the transaction. UTXO_2 will go to A's wallet, and UTXO_1 will go to B's wallet. After the transaction is completed, A's wallet will have an unused balance of 1.85 BTC, and B's wallet will have an unused balance of 3.15 BTC.

Characteristics of UTXO#

The core design principle of UTXO is statelessness. It records transaction events rather than the final state, and users need to calculate balances based on the transaction history.

Loading...
Ownership of this post data is guaranteed by blockchain and smart contracts to the creator alone.