@@ -29,13 +29,13 @@ Then type: (to run the nodes)
2929
3030## Interacting with the CorDapp
3131
32- PartyA (as a borrower) starts the ` SubmitProjectProposalFlow ` in order to submit the project details to a group of
32+ PeterCo (as a borrower) starts the ` SubmitProjectProposalFlow ` in order to submit the project details to a group of
3333lenders and request for funds.
3434
35- Go to PartyA 's terminal and run the below command
35+ Go to PeterCo 's terminal and run the below command
3636
3737```
38- start SubmitProjectProposalFlow lenders: [PartyB, PartyC ], projectDescription: "Overseas Expansion", projectCost: 10000000, loanAmount: 8000000
38+ start SubmitProjectProposalFlow lenders: [BankOfAshu, BankOfSneha ], projectDescription: "Overseas Expansion", projectCost: 10000000, loanAmount: 8000000
3939```
4040
4141Validate the project details are created and shared with the lenders successfully by running the vaultQuery command in each
@@ -47,10 +47,10 @@ run vaultQuery contractStateType: net.corda.samples.lending.states.ProjectState
4747
4848Once the lenders have verified the project details and done their due deligence, they could submit bids for loan.
4949
50- Goto PartyB 's terminal and run the below command. The project-id can be found using the vaultQuery command shown earlier.
50+ Goto BankOfAshu 's terminal and run the below command. The project-id can be found using the vaultQuery command shown earlier.
5151
5252```
53- start SubmitLoanBidFlow borrower: PartyA , loanAmount: 8000000, tenure: 5, rateofInterest: 4.0, transactionFees: 20000, projectIdentifier: <project_id>
53+ start SubmitLoanBidFlow borrower: PeterCo , loanAmount: 8000000, tenure: 5, rateofInterest: 4.0, transactionFees: 20000, projectIdentifier: <project_id>
5454```
5555
5656Validate the loanBid is submitted successfully by running the vaultQuery command below:
@@ -61,7 +61,7 @@ run vaultQuery contractStateType: net.corda.samples.lending.states.LoanBidState
6161
6262Now the borrower can inspect the loan terms and approve the loan bid, to start the syndication process.
6363
64- Go to PartyA 's terminal and run the below command. The loanbid-identifier can be found using the vaultQuery command used earlier.
64+ Go to PeterCo 's terminal and run the below command. The loanbid-identifier can be found using the vaultQuery command used earlier.
6565
6666```
6767start ApproveLoanBidFlow bidIdentifier: <loanbid-identifier>
@@ -70,10 +70,10 @@ start ApproveLoanBidFlow bidIdentifier: <loanbid-identifier>
7070One the loan bid has been approved by the borrower, the lender can start the process of creating the syndicate by
7171acting as the lead bank and approach participating bank for funds.
7272
73- Goto PartyB 's terminal and run the below command.
73+ Goto BankOfAshu 's terminal and run the below command.
7474
7575```
76- start CreateSyndicateFlow participantBanks: [PartyC, PartyD ], projectIdentifier: <project-identifier>, loanDetailIdentifier: <loanbid-identifier>
76+ start CreateSyndicateFlow participantBanks: [BankOfSneha, BankOfTom ], projectIdentifier: <project-identifier>, loanDetailIdentifier: <loanbid-identifier>
7777```
7878
7979Verify the syndicate is created using the below command:
@@ -83,7 +83,7 @@ run vaultQuery contractStateType: net.corda.samples.lending.states.SyndicateStat
8383```
8484
8585On receiving the syndicate creation request, participating banks could verify the project and loan terms and submit
86- bids for the amount of fund they wish to lend by using the below flow.
86+ bids for the amount of fund they wish to lend by using the below flow in BankOfSneha or BankOfTom node .
8787
8888```
8989start SyndicateBidFlow$Initiator syndicateIdentifier: <syndicate-id>, bidAmount: <lending-amount>
0 commit comments