Foundation

UTXO and Addresses: Reading Inputs and Outputs Before Balances

Before handling the BTCMobick wallet, build a foundation for reading transactions by distinguishing UTXOs, addresses, change, and confirmation counts.

The UTXO-based ledger does not directly modify account balances; instead, it gathers unused outputs to use as inputs for new transactions.

UTXO and Addresses: Reading Inputs and Outputs Before Balances big picture visual
big pictureUTXO and Addresses: Reading Inputs and Outputs Before Balances through the big picture

An address is a publicly shareable receiving identifier, while a private key or seed phrase is signing authority that must never be shared. Confusing these breaks wallet security explanations.

Plain words

First-time terms

UTXO
It is easiest to understand as a coin piece that has not yet been spent.
Input
A coin piece selected to be used in a transaction.
Change
The amount that returns back to you after sending.
UTXO and Addresses: Reading Inputs and Outputs Before Balances flow visual
flowUTXO and Addresses: Reading Inputs and Outputs Before Balances through the flow

Learning objectives

  • Understand the relationship between UTXO, input, output, and change.
  • Distinguish the roles of addresses, private keys, and seed phrases.
  • Separate browser queries from wallet signing actions.

UTXO is an output not yet spent

When creating a transaction, the wallet selects available UTXOs as inputs. If the sum of inputs is greater than the amount sent, the leftover value usually returns as a change output.

Beginners should not only look at the balance number but also get into the habit of seeing how many UTXOs make up that balance.

Queries are read-only; signing is done by the wallet

This site’s query function reads network information from the server in a read-only manner. The browser does not connect directly to an Electrum TCP server nor request wallet permissions.

Transaction signing must occur in the user’s wallet; the educational site does not create input screens for seed phrases or private keys.

Connecting UTXO verification to Consol and Whale Hunting

UTXO is not just a technical term but a fundamental unit for reading Consol conditions and Whale Hunting. Balances are sums of UTXOs, and each UTXO can only be spent once.

To look deeply, you must separate address balances, individual UTXOs, spent status, change outputs, and snapshot criteria. When Consol or Whale Hunting mentions 'holding,' ask which UTXO or address state it refers to.

Additional materials gather official UTXO articles, hands-on examples, and actual transaction screens from explorers. Signing proofs without private keys and private key submission are separated as distinct risk items.

Look at coin pieces before a single balance

In the UTXO model, your balance does not move as a single number. You select unused outputs as inputs, and leftover amounts can return as change outputs.

Topics like Whale Hunting or Consol assume this structure. To understand ownership proofs and holding conditions, you must know which coin pieces have not moved for a long time.

UTXO and Addresses: Reading Inputs and Outputs Before Balances practice visual
practiceUTXO and Addresses: Reading Inputs and Outputs Before Balances through the practice

Memory Points

Points to remember

Think of UTXOs like bundles of coins

In the account balance model, your balance appears to increase or decrease as one number. In the UTXO model, you select unused coin pieces to use as inputs for a new transaction.

If you use a large piece and there is leftover, a change output is created. Therefore, you must read the input sum, amount to send, fee, and change together.

Whale Hunting and Satoshi-era coin debates ultimately ask what it means for a UTXO to have not moved for a long time.

Addresses are public but not authority

Addresses can be shared when receiving coins. However, knowing an address does not mean you can move the coins at that address.

The authority to move coins lies in the private key or seed phrase. Receiving addresses and txids in educational tools is completely different from receiving seed phrases in terms of authority.

Understanding this difference allows you to safely distinguish hands-on labs, explorers, and real wallets.

Practice

01

Draw a hypothetical transaction structure

  1. Draw a simple transaction on paper with 2 inputs and 2 outputs.
  2. Distinguish and mark the recipient output and the change output.
  3. Separate which among address, private key, and seed phrase can be publicly shared and which cannot.

Learners can explain that sharing an address and transferring signing authority are completely different actions.

02

Explain change output calculation verbally

  1. Assume sending 6 from a single coin piece of 10.
  2. Write down the four words: input 10, amount to send 6, fee, change.
  3. Explain verbally why a change address can be created.

Learners understand UTXO transactions as a reconstruction of inputs and outputs, not as a balance deduction.

Key takeaways

  • UTXO is not the balance itself but an unused output unit.
  • An address is a receiving identifier; seed phrases and private keys are signing authority.
  • Educational site query functions and user wallet signing must be separated.
  • Knowing UTXOs allows more accurate understanding of balances, change, and long-unmoved coin debates.

Quiz

Quiz

0/3 answered · 0 Correct
01

What is the easiest way to initially understand UTXO?

02

When does change occur?

03

What should this site never ask for?

Evidence and statusSources connected

This localized lesson keeps the same source IDs as the Korean curriculum. Use the source library for ledger checks and official references.

  • claim-electrum-readonly
  • claim-donation-noncustodial
  • claim-education-style
Sources
Next chapter: Reading Transactions: txid, Confirmations, Explorer Links