Skip to content

Commit 41889d3

Browse files
authored
Update README.md
1 parent c2a663b commit 41889d3

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Tokens/bikemarket/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ This sample Cordapp demonstrate some simple flows related to the token SDK. In t
1515
- Buyer: Buy bike from the BikeCo or licensed dealership, or buy used parts from used parts agency.
1616

1717

18-
![alt text](https://github.com/corda/samples/blob/dvp-token/bikemarket-TokenSDK/diagram/pic1.png)
18+
![alt text](./diagram/pic1.png)
1919

2020
From the above chat we see that Tokens are representing the ownership and status of the physical assests, such as bike frame and bike wheels. A key point to notice here is that **a bike is represented with 2 tokens (Frame and wheels)**. This is designed in the way to be flexiable to sell or total a specific part of your bike. As can see, this bike buying/selling market is capable of mimicing multiple business logics. We will be demonstrating one of the possible logic here:
2121

@@ -34,19 +34,19 @@ Through out the sample, we will see how to create, transact, and redeem a token.
3434
We'll create bike parts using the flows for CreateFrameToken and CreateWheelToken.
3535

3636

37-
We can create the tokens with [CreateFrameToken](https://github.com/corda/samples-java/blob/master/token-cordapps/bikemarket/workflows/src/main/java/net/corda/examples/bikemarket/flows/CreateFrameToken.java) and [CreateWheelToken](https://github.com/corda/samples-java/blob/master/token-cordapps/bikemarket/workflows/src/main/java/net/corda/examples/bikemarket/flows/CreateWheelToken.java).
37+
We can create the tokens with [CreateFrameToken](./workflows/src/main/java/net/corda/examples/bikemarket/flows/CreateFrameToken.java) and [CreateWheelToken](./workflows/src/main/java/net/corda/examples/bikemarket/flows/CreateWheelToken.java).
3838

3939

40-
We'll create a bike with the [IssueNewBike](https://github.com/corda/samples-java/blob/master/token-cordapps/bikemarket/workflows/src/main/java/net/corda/examples/bikemarket/flows/IssueNewBike.java) flow.
40+
We'll create a bike with the [IssueNewBike](./workflows/src/main/java/net/corda/examples/bikemarket/flows/IssueNewBike.java) flow.
4141

4242

43-
We can transfer bike tokens using the [TransferBikeToken](https://github.com/corda/samples-java/blob/master/token-cordapps/bikemarket/workflows/src/main/java/net/corda/examples/bikemarket/flows/TransferBikeTokens.java) flow.
43+
We can transfer bike tokens using the [TransferBikeToken](./workflows/src/main/java/net/corda/examples/bikemarket/flows/TransferBikeTokens.java) flow.
4444

4545

46-
We can transfer bike tokens using the [TotalPart](https://github.com/corda/samples-java/blob/master/token-cordapps/bikemarket/workflows/src/main/java/net/corda/examples/bikemarket/flows/TotalParts.java) flow.
46+
We can transfer bike tokens using the [TotalPart](./workflows/src/main/java/net/corda/examples/bikemarket/flows/TotalParts.java) flow.
4747

4848

49-
We transfer part tokens using the [TransferPartToken](https://github.com/corda/samples-java/blob/master/token-cordapps/bikemarket/workflows/src/main/java/net/corda/examples/bikemarket/flows/TransferPartTokens.java) flow.
49+
We transfer part tokens using the [TransferPartToken](./workflows/src/main/java/net/corda/examples/bikemarket/flows/TransferPartTokens.java) flow.
5050

5151

5252
## Usage

0 commit comments

Comments
 (0)