Skip to content

Commit d97a04f

Browse files
authored
updated links for samples-kotlin (#110)
1 parent a5bb030 commit d97a04f

File tree

34 files changed

+49
-49
lines changed

34 files changed

+49
-49
lines changed

Accounts/tictacthor/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Tic Tac Thor
2-
This CorDapp recreates the game of Tic Tac Toe via Corda. It primarilly demonstrates how you can have [LinearState](https://docs.r3.com/en/platform/corda/4.9/community/api-states.html#linearstate) transactions between cross-node accounts.
2+
This CorDapp recreates the game of Tic Tac Toe via Corda. It primarilly demonstrates how you can have [LinearState](https://docs.r3.com/en/platform/corda/4.12/community/api-states.html#linearstate) transactions between cross-node accounts.
33
<p align="center">
44
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/3/32/Tic_tac_toe.svg/1024px-Tic_tac_toe.svg.png" alt="Corda" width="200">
55
</p>

Advanced/auction-cordapp/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Auction CorDapp
22

33
This CorDapp serves as a demo of building an auction application on Corda. It leverages
4-
different features of Corda like [SchedulableState](https://docs.r3.com/en/platform/corda/4.9/community/api-states.html#the-queryablestate-and-schedulablestate-interfaces), [StatePointer](https://docs.r3.com/en/platform/corda/4.9/community/api-states.html#state-pointers) and [OwnableState](https://docs.r3.com/en/platform/corda/4.9/community/api-states.html#ownablestate). It also demonstrates
4+
different features of Corda like [SchedulableState](https://docs.r3.com/en/platform/corda/4.12/community/api-states.html#the-queryablestate-and-schedulablestate-interfaces), [StatePointer](https://docs.r3.com/en/platform/corda/4.12/community/api-states.html#state-pointers) and [OwnableState](https://docs.r3.com/en/platform/corda/4.12/community/api-states.html#ownablestate). It also demonstrates
55
how to perform a DvP (Delivery vs Payment) transaction on Corda.
66

77
It has a full-functional client included and an angular UI to interact with the nodes.
@@ -48,7 +48,7 @@ internally triggers two flows:
4848
flow can also be triggered to exit an auction which did not receive any bid till its deadline.
4949

5050
## Pre-requisites:
51-
[Set up for CorDapp development](https://docs.r3.com/en/platform/corda/4.9/community/getting-set-up.html)
51+
[Set up for CorDapp development](https://docs.r3.com/en/platform/corda/4.12/community/getting-set-up.html)
5252

5353
## Running the nodes:
5454
Open a terminal and go to the project root directory and type: (to deploy the nodes using bootstrapper)

Advanced/duediligence-cordapp/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Note: another key feature of this app is whitelisting trusted auditors. It is do
1313

1414

1515
## Pre-Requisites
16-
[Set up for CorDapp development](https://docs.r3.com/en/platform/corda/4.9/community/getting-set-up.html)
16+
[Set up for CorDapp development](https://docs.r3.com/en/platform/corda/4.12/community/getting-set-up.html)
1717

1818
## Running the nodes
1919

Advanced/negotiation-cordapp/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ In the `AcceptanceFlow.java`, we receive the modified ProposalState and it's con
2929
## Usage
3030

3131
### Pre-Requisites
32-
[Set up for CorDapp development](https://docs.r3.com/en/platform/corda/4.9/community/getting-set-up.html)
32+
[Set up for CorDapp development](https://docs.r3.com/en/platform/corda/4.12/community/getting-set-up.html)
3333

3434

3535

Advanced/obligation-cordapp/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Finally, once we have the ability to transfer assets, we just need to settle up.
1818

1919

2020
## Pre-Requisites
21-
[Set up for CorDapp development](https://docs.r3.com/en/platform/corda/4.9/community/getting-set-up.html)
21+
[Set up for CorDapp development](https://docs.r3.com/en/platform/corda/4.12/community/getting-set-up.html)
2222

2323
## Usage
2424

Advanced/secretsanta-cordapp/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ There's essentially five processes you'll need to be aware of.
2121

2222
#### Pre-Requisites
2323

24-
[Set up for CorDapp development](https://docs.r3.com/en/platform/corda/4.9/community/getting-set-up.html)
24+
[Set up for CorDapp development](https://docs.r3.com/en/platform/corda/4.12/community/getting-set-up.html)
2525

2626

2727
### Running these services

Advanced/snakesandladders-cordapp/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Each player can create an account to participate. Players can either be on the s
1717
Oracle node is used to obtain the player dice rolls.
1818

1919
## Pre-Requisites
20-
[Set up for CorDapp development](https://docs.r3.com/en/platform/corda/4.9/community/getting-set-up.html)
20+
[Set up for CorDapp development](https://docs.r3.com/en/platform/corda/4.12/community/getting-set-up.html)
2121

2222

2323
## Running the nodes

Advanced/superyacht-cordapp/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ There are 4 main parties in this example:
1111

1212

1313
## State
14-
* `YachtState`: This is an [OwnableState](https://docs.r3.com/en/platform/corda/4.9/community/api-states.html#ownablestate) and a [LinearState](https://docs.r3.com/en/platform/corda/4.9/community/api-states.html#linearstate) that represents a Yacht that can be issued by the Yacht Issuer to the Yacht Owner (Party A).
14+
* `YachtState`: This is an [OwnableState](https://docs.r3.com/en/platform/corda/4.12/community/api-states.html#ownablestate) and a [LinearState](https://docs.r3.com/en/platform/corda/4.12/community/api-states.html#linearstate) that represents a Yacht that can be issued by the Yacht Issuer to the Yacht Owner (Party A).
1515

1616
## Contract
1717
* `YachtContract`: This is used to govern the evolution of a `YachtState`. This file includes validation rules governing the `Create` and `Purchase` command for YachtState
@@ -23,7 +23,7 @@ There are 4 main parties in this example:
2323

2424
## Pre-Requisites
2525

26-
[Please ensure that your device is set up for CorDapp development](https://docs.r3.com/en/platform/corda/4.9/community/getting-set-up.html)
26+
[Please ensure that your device is set up for CorDapp development](https://docs.r3.com/en/platform/corda/4.12/community/getting-set-up.html)
2727

2828

2929
## Running the nodes

Advanced/syndicated-lending/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ and agreeing on loan terms.
1212

1313
# Pre-Requisites
1414

15-
[Set up for CorDapp development](https://docs.r3.com/en/platform/corda/4.9/community/getting-set-up.html)
15+
[Set up for CorDapp development](https://docs.r3.com/en/platform/corda/4.12/community/getting-set-up.html)
1616

1717
# Usage
1818

Basic/cordapp-example/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This cordapp-example application allows a party (lender) to issue an IOU to anot
55

66
## States
77

8-
* `IOUState`: This is a [LinearState](https://docs.r3.com/en/platform/corda/4.9/community/api-states.html#linearstate) and a [QueryableState](https://docs.r3.com/en/platform/corda/4.9/community/api-states.html#the-queryablestate-and-schedulablestate-interfaces) that represents an IOU that can be issued by one party (lender) to another party (borrower).
8+
* `IOUState`: This is a [LinearState](https://docs.r3.com/en/platform/corda/4.12/community/api-states.html#linearstate) and a [QueryableState](https://docs.r3.com/en/platform/corda/4.12/community/api-states.html#the-queryablestate-and-schedulablestate-interfaces) that represents an IOU that can be issued by one party (lender) to another party (borrower).
99

1010
## Contracts
1111

@@ -16,7 +16,7 @@ This cordapp-example application allows a party (lender) to issue an IOU to anot
1616
* `ExampleFlow`: This flow is used to create an `IOUState`. It takes 2 arguments as the parameters: the `iouValue` (Int) and the `otherParty` (Party).
1717

1818
## Pre-requisites:
19-
[Set up for CorDapp development](https://docs.r3.com/en/platform/corda/4.9/community/getting-set-up.html)
19+
[Set up for CorDapp development](https://docs.r3.com/en/platform/corda/4.12/community/getting-set-up.html)
2020

2121
## Running the nodes:
2222
1. Open a terminal and go to the project root directory and type: (to deploy the nodes using bootstrapper)

0 commit comments

Comments
 (0)