Smart Contracts heading-link-icon

 Smart contracts Digitizes agreements by turning the contract terms into code that executes automatically when the terms are met. digitize agreements by turning them into code that executes automatically if the contract terms are met. Participants do not need to trust each other to follow through on contract terms, because the terms are enforced by the code. No external enforcement is required, and contracts are always interpreted the same way. Smart contracts govern the evolution of 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. over time.

The contract code is replicated on the virtual nodes in an application network. The network members have to reach a consensus that the terms of the agreement have been met before they execute the contract.

Putting a contract on Corda gives it unique features:

  • A smart contract cannot be changed: it can only be replaced with an updated version.
  • Once executed, the results are irreversible.

Corda smart contracts must be written in Kotlin or Java.

Transactions must be digitally signed by all required signatories. However, even if a transaction A transaction is a proposal to update the ledger. gathers all the required signatures, it cannot be executed unless it is also contractually valid. A transaction that is not contractually valid is not a valid proposal to update the ledger, and can never be committed to the ledger. This means that contracts can impose rules on the evolution of states over time that are independent of the willingness of the required signatories to sign a given transaction.

Each transaction state specifies a contract type. The contract specified takes the transaction as input, and determines if the transaction is valid based on the contract’s internal rules. The contract must evaluate every input state and every output state.

Transaction Validation

The contract code can:

  • Check the number of inputs, outputs, or commands.
  • Check that the time window matches the expectations for the given transaction. For example, that a point in time mentioned in one of the states (inputs, outputs, or references) occurs within the time window.
  • Check the contents of all components.
  • Evaluate looping constructs, variable assignments, function calls, helper methods, and other aspects of the transaction code.
  • Group similar states to validate them as a group. For example, it can impose a rule on the combined value of all the cash states.

To enable the nodes on a network to reach consensus about a proposed update to the ledger, transaction verification must be deterministic. This means that contracts must always accept or always reject a particular transaction, regardless of when it is validated, or the amount of information that the node running the contract holds.

By design, contracts do not have access to information from the outside world. They can only check transactions for internal validity. For example, a contract cannot know that the transaction is in accordance with what the parties involved originally agreed.

You should check the contents of a transaction before signing it, even if the transaction is contractually valid, to ensure that you agree with the proposed ledger update. You have no obligation to sign a transaction just because it is contractually valid. For example, you may not want to take on a loan that is too large, or may disagree with the amount of cash offered for an asset.

You may want to restrict a specific state with an encumbrance. An encumbrance forces two or more output states in a transaction into a group, where either all or none of the states in that group can be consumed by another transaction.

The encumbrance state, if present, forces additional controls over the encumbered state, because the encumbrance state contract is also verified during the transaction execution. For example, a contract state could be encumbered with a time-lock contract state. In that case, the state can only be processed in a transaction that verifies that the time specified in the encumbrance time-lock has passed.

The encumbered state and its encumbrance are output states on the same transaction, and need to be in the same encumbrance group that was specified when adding the states to the transaction. Encumbered states and their encumbrances must be consumed in the same transaction, otherwise the transaction is not valid.

When you construct a transaction that generates an encumbered state, you must add the encumbered state and the encumbrance state at the same time along with an encumbrance group ID. When you consume that encumbered state, the same encumbrance state must be available in the input set of states.

Previous
Transactions
Next
Flows

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.