mirror of
https://github.com/corda/corda.git
synced 2024-12-19 21:17:58 +00:00
1.3 KiB
1.3 KiB
Introduction
Note
This tutorial extends the CorDapp built during the Hello, World tutorial <hello-world-index>
. You can find the final version of the CorDapp produced in that tutorial here.
In the Hello, World tutorial, we built a CorDapp allowing us to model IOUs on ledger. Our CorDapp was made up of three elements:
- An
IOUState
, representing IOUs on the ledger - An
IOUContract
, controlling the evolution of IOUs over time - An
IOUFlow
, orchestrating the process of agreeing the creation of an IOU on-ledger
However, in our original CorDapp, only the IOU's borrower was required to sign transactions issuing IOUs. The lender had no say in whether the issuance of the IOU was a valid ledger update or not.
In this tutorial, we'll update our code so that the borrower requires the lender's agreement before they can issue an IOU onto the ledger. We'll need to make two changes:
- The
IOUContract
will need to be updated so that transactions involving anIOUState
will require the lender's signature (as well as the borrower's) to become valid ledger updates - The
IOUFlow
will need to be updated to allow for the gathering of the lender's signature
We'll start by updating the contract.