Transactions and states

The two fundamental concepts at the heart of the Diem Blockchain are

  • Transactions: Transactions represent the exchange of data and Diem Coins between any two accounts on the Diem Blockchain.
  • States: The ledger state (state) represents the current snapshot of data on the blockchain. At any point in time, the blockchain has a ledger state.

When a submitted transaction is executed, the state of the Diem Blockchain changes.

Transactions#

When a Diem Blockchain participant submits a transaction, they are requesting the ledger state to be updated with their transaction information.

A signed transaction on the blockchain contains the following information:

  • Signature: The sender uses a digital signature to verify that they signed the transaction.
  • Sender address: The sender's account address.
  • Sender public key: The public authentication key that corresponds to the private authentication key used to sign the transaction.
  • Program: The program comprises:
    • A Move bytecode transaction script: The Move transaction script is an arbitrary program that encodes transaction logic and interacts with resources published in the blockchain's distributed database. Move is a next generation language for secure, sandboxed, and formally verified programming.
    • An optional list of inputs to the script. For a peer-to-peer transaction, these inputs contain the recipient's information and the amount transferred to them.
    • An optional list of Move bytecode modules to publish.
  • Gas price (in specified currency/gas units): This is the amount the sender is willing to pay per unit of gas to execute the transaction. Gas is a way to pay for computation and storage. A gas unit is an abstract measurement of computation with no inherent real-world value.
  • Maximum gas amount: The maximum gas amount is the maximum gas units the transaction is allowed to consume.
  • Gas currency code: The currency code used to pay for gas.
  • Sequence number: This is an unsigned integer that must be equal to the sender's account sequence number at the time of execution.
  • Expiration time: The transaction ceases to be valid after this time.

Ledger state#

The Diem Blockchain's ledger state or global state comprises the state of all accounts in the blockchain. Each validator node in the blockchain must know the global state of the latest version of the blockchain's distributed database (versioned database) to execute any transaction.

Versioned database#

All of the data in the Diem Blockchain is persisted in a single-versioned distributed database. A version number is an unsigned 64-bit integer that corresponds to the number of transactions the system has executed.

This versioned database allows validator nodes to:

  • Execute a transaction against the ledger state at the latest version.
  • Respond to client queries about ledger history at both current and previous versions.

Transactions change state#

FIGURE 1.0 TRANSACTIONS CHANGE STATE

FIGURE 1.0 TRANSACTIONS CHANGE STATE

Figure 1.0 represents how executing transaction TN changes the state of the Diem Blockchain from SN-1 to SN.

In the figure:

NameDescription
Accounts A and BRepresent Alice's and Bob's accounts on the Diem Blockchain
SN-1Represents the (N-1)th state of the blockchain. In this state, Alice's account A has a balance of 110 Diem Coins, and Bob's account B has a balance of 52 Diem Coins.
TNThis is the n-th transaction executed on the blockchain. In this example, it represents Alice sending 10 Diem Coins to Bob.
FIt is a deterministic function. F always returns the same final state for a specific initial state and a specific transaction. If the current state of the blockchain is SN-1, and transaction TN is executed on state SN-1, the new state of the blockchain is always SN. The Diem Blockchain uses the Move language to implement the deterministic execution function F.
SNThis is the n-th state of the blockchain. When the transaction TN is applied to the blockchain, it generates the new state SN (an outcome of applying F to SN-1 and TN). This causes Alice’s account balance to be reduced by 10 to 100 Diem Coins and Bob’s account balance to be increased by 10 to 62 Diem Coins. The new state SN shows these updated balances.