Change

In UTXO-based cryptocurrencies, the leftover amount from spent outputs that is returned to the sender as a new output in the transaction.

Change is the amount of cryptocurrency returned to the sender in a transaction on UTXO-based blockchains such as Bitcoin. Because coins are represented as “unspent transaction outputs” (UTXOs), you typically spend entire outputs, not partial balances, and any remainder is sent back to you as change.

How change works in the UTXO model

In a UTXO system, a transaction consumes one or more existing UTXOs as inputs and creates new UTXOs as outputs. If the total value of the inputs is larger than the amount you want to pay, the transaction must include an additional output that sends the difference back to the sender. That returned output is the change.

For example, if your wallet controls a single UTXO worth 1 coin and you want to send 0.3 coins to someone, your transaction might use the 1 coin UTXO as an input and create two outputs: 0.3 coins to the recipient and 0.699 coins back to you as change, with the remaining 0.001 paid as a transaction fee. After the transaction confirms, your original 1 coin UTXO is gone, and you now control a new change UTXO.

Change addresses, fees, and privacy

Wallets usually send change to a new “change address” that you control, rather than reusing the same address. This helps reduce address reuse, which can improve privacy, but it does not make transactions fully anonymous because UTXO linkages can still be analyzed.

Change also affects fees and wallet management. Selecting many small UTXOs can make a transaction larger in data size and potentially increase fees. Over time, frequent change outputs can create many small UTXOs, sometimes called “dust,” which wallets may later need to consolidate.

Understanding change matters because it explains why wallet balances move in non-intuitive ways, how UTXO wallets construct transactions, and how fees and privacy trade-offs emerge across the crypto ecosystem.