Transactions
Understanding blockchain abstractions and concepts
Last updated
Understanding blockchain abstractions and concepts
Last updated
Transactions are events that are recorded and persisted on the public ledger. These transactions are organised into blocks, a group of events that occur over a period of time, time-stamped together.
Transactions are made up of inputs and outputs. Typically, an input will unlock the tokens it intends to spend, which transfers ownership of funds from one owner to another, and an output will lock tokens to the new Owner. Transactions can also be considered electronic contracts that move funds from one owner to another.
To illustrate this, let’s look at some transactions between Alice, Bob, Carol and Dave. These transactions can be in the same or different blocks and can happen at any time, as shown in the following diagram.
Alice is represented in the ledger by her public/private key pair, but her identity is not published. When funds are transferred from Alice to Bob an electronic contract (a transaction) is created where Alice provides her digital signature stating that she owns the funds (source of funds for Alice), and she is transferring them to Bob by assigning them to Bob’s public key. The transaction itself does not have any identifying information associated with Alice or Bob, but the contract signing aspect is kept outside the blockchain. The diagram then shows that Bob, who has received funds from Alice, now has the private key to be able to spend the funds. He uses transaction T2 to transfer the funds to Carol. Carol then is shown to transfer the funds to Dave using transaction T3.
The first transaction of every block is called a "Coinbase transaction". This transaction does not have an input and has a single output connected to a process of distributing new tokens to the network known as Proof of Work. The coinbase transaction contains a reward for the effort expended by the miner on the Proof of Work process. This reward consists of two components: a block subsidy and transaction fees. See Network Policies and Transaction Lifecycle for further details.
Transaction outputs that have not been used as inputs (yet), i.e., spent, are called UTXOs (unspent transaction outputs). Just as in a bank where the total account balance of all accounts represents the total funds present in the bank, in a blockchain these UTXOs collectively represent all the tokens present in the system at a given point in time.
The following diagram illustrates this comparison while also describing UTXO creation and end of existence. Blockchains maintain a UTXO database, which stores the current state of all UTXOs that exist at any point in time.
There is a significant difference in terms of processing when it comes to Accounts vs UTXO. A single owner can have multiple UTXOs for a single key or even have one keypair per UTXO. Unlike an account, the Identity of the owner is not attached to the UTXO and there is no need to maintain account balances (which is quite normal in account-based systems).
The UTXO model allows a blockchain to parallelise transaction processing, which is a critical factor in scaling a blockchain.
As an analogy, think of a UTXO as being like a banknote; when you have a $100 bill, and you use it to buy something for $50, the original note is handed over and is, therefore, no longer in your possession. In return, you will receive a change of $50, which will be a new note, but the original $100 with your ownership is gone.
In the same way, when you spend a UTXO with 100 satoshis, this will transfer 50 satoshis to the new owner, you may perhaps incur 10 satoshis in fees, and a new UTXO of 40 satoshis will be created, which might even be assigned to the same public key that it was spent from originally, but it becomes a new UTXO as the attributes of UTXO change (location of UTXO in a new transaction).
In traditional payment systems, a transaction will have a single input and single output due to the usage of account-based ledgers (Credit, Debit). Bitcoin's UTXO-based ledger allows a transaction to be like an envelope containing information. It can have many inputs and outputs. In each output, there is an option to add code to program how the value (tokens) associated with that output will be spent. This property makes every transaction an electronic contract when used in conjunction with the public ledger. The programming of UTXOs uses a native programming language called Script, allowing a large variety of electronic contracts to be supported natively.
These transactions effectively form a chain where the coins start their journey from the time they come into circulation (the first transaction in any block) to where they currently are assigned in terms of ownership (public keys of owners of these coins). This structure is what makes a coin effectively a chain of digital signatures.