Transactions heading-link-icon

You can not edit the Corda ledger. The only way to change it is to add new transactions to it. A transaction updates the ledger by consuming existing input states An immutable object representing a fact known by one or more participants at a specific point in time. You can use states to represent any type of data, and any kind of fact. and outputting new states. The states that the transaction consumes are marked “consumed”. Every state is immutable. It can not be changed. This is called an UTXO Unspent Transaction Output. The unspent output of a cryptocurrency transaction, representing the amount of digital currency that has not been spent and is available for use in future transactions. model.

The following is an example of a transaction with two inputs and two outputs:

Basic Transaction

A transaction can contain any number of inputs, outputs, and references of any type. Transactions can:

  • include different types of states representing multiple financial instruments, such as cash or bonds.
  • issue states, by creating a transaction without inputs. These states do not replace any existing states because none are marked “consumed”.
  • exit states by creating transactions without outputs. This does not create any new states to replace the ones consumed.
  • merge or split fungible assets. For example, they may combine a $2 state and a $5 state into a $7 cash state.

Transactions are atomic. Either all of a transaction’s proposed changes are accepted or none are.

There are two basic types of transactions:

  • Notary-change transactions, to change a state’s notary.
  • General transactions, for everything else.

Transaction backchains enable a participant to verify that each input was generated from a valid series of transactions. This is called backchain verification. If you need to break this chain (for example, because you want to increase performance by reducing the number of transactions the node has to check, or because you want to keep previous transactions private) you can reissue states.

Backchains are created as input state references (StateRefs) linked together over time. StateRefs enable you to use the outputs of previous transactions as the inputs of new transactions.

Input StateRefs consist of:

  • The hash of the transaction that created the input.
  • The input’s index (location in the backchain) in the outputs of the previous transaction.

The following example transaction shows how this works:

Transaction Backchain Example

Initially, a transaction is only a proposal to update the ledger. It represents the future state of the ledger desired by the transaction builders. It is only committed to the ledger if it:

  • does not contain double-spends.
  • is contractually valid.
  • is signed by the required parties.

To be committed to the ledger, the transaction must receive signatures from all of the required signatories. Each required signatory appends their signature to the transaction to approve the proposal. For example, the following shows a proposed transaction:

Proposed Signed Transaction

The transaction has the required signatures and so the inputs may be marked as consumed, and cannot be used in any future transactions. If otherwise valid, the transaction’s outputs become part of the current state of the ledger:

Just gathering the required signatures is not enough to commit a transaction to the ledger. It must also be:

  • Valid — the proposed transaction and every transaction on the backchain of the proposed inputs must be contractually valid.
  • Unique — no other committed transaction has consumed any of the inputs to the proposed transaction. Uniqueness is determined by a notary.

If the transaction gathers all of the required signatures without meeting these conditions, the transaction’s outputs are not valid and will not be accepted as inputs to subsequent transactions.

Some states need to be referred to by the contracts of other input or output states but not updated/consumed. These are known as reference states. When a state is added to the references list of a transaction, instead of the inputs or outputs list, it is treated as a reference state. There are two important differences between regular input states and reference states:

  • The specified notary for the transaction does check whether the reference states are current. However, reference states are not consumed when the transaction containing them is committed to the ledger.
  • The contracts for reference states are not executed for the transaction containing them.

As well as input states and output states, transactions contain:

For example, suppose Alice uses $5 cash to pay off $5 of an IOU with Bob. This transaction contains a settlement command which reduces the amount outstanding on the IOU, and a payment command which changes the ownership of $5 from Alice to Bob. It is notarized by NotaryClusterA if the notary pool receives it within the specified time window:

Transaction Backchain Example

Commands enable you to make adjustments to rules. Including a command in a transaction indicates the transaction’s intent, affecting how you check the validity of the transaction. For example, if you had a transaction with a cash state and a bond state as inputs, and a cash state and a bond state as outputs, it could represent either a bond purchase or a coupon payment on a bond. Different rules are required to define what constitutes a valid transaction depending on whether it is a purchase or a coupon payment. For example, in the case of a purchase, you would require a change in the bond’s current owner, but not for a coupon payment.

Commands

Each transaction requires a defined time window during which it can be approved and completed. The minimum requirement is an end date by which the transaction validation and notarization must be complete. You may also want a proposed transaction to be approved during a certain period of time. For example:

  • An option that can only be exercised after a certain date.
  • A bond that may only be redeemed before its expiry date.

This is enforced by adding a time window to the transaction, which specifies when the transaction can be committed. The notary enforces time window validity.

Notaries provide uniqueness consensus An agreement that a proposed transaction is valid is required before you can add it to the ledger. by attesting that, for a given transaction, it has not already signed other transactions that consume any of the proposed transaction’s input states. This is the final check before a transaction is committed to the ledger. Every transaction must be notarized, even if you are creating an issuance transaction that does not consume any other states and cannot double-spend, as this is required to enforce the time window validity. This allows for a much more efficient notary protocol where the notary tracks valid input states rather than spent states. For more information, see the Notary section.

Was this page helpful?

Thanks for your feedback!

Chat with us

Chat with us on our #docs channel on slack. You can also join a lot of other slack channels there and have access to 1-on-1 communication with members of the R3 team and the online community.

Propose documentation improvements directly

Help us to improve the docs by contributing directly. It's simple - just fork this repository and raise a PR of your own - R3's Technical Writers will review it and apply the relevant suggestions.

We're sorry this page wasn't helpful. Let us know how we can make it better!

Chat with us

Chat with us on our #docs channel on slack. You can also join a lot of other slack channels there and have access to 1-on-1 communication with members of the R3 team and the online community.

Create an issue

Create a new GitHub issue in this repository - submit technical feedback, draw attention to a potential documentation bug, or share ideas for improvement and general feedback.

Propose documentation improvements directly

Help us to improve the docs by contributing directly. It's simple - just fork this repository and raise a PR of your own - R3's Technical Writers will review it and apply the relevant suggestions.