@@ -8,11 +8,11 @@ At the most basic level, applications on a blockchain network are what enable
8
8
users to **query ** a ledger (asking for specific records it contains), or to
9
9
**update ** it (adding records to it).
10
10
11
- Our application, composed in Javascript, leverages the node .js SDK to interact
11
+ Our application, composed in Javascript, leverages the Node .js SDK to interact
12
12
with the network (where our ledger exists). This tutorial will guide you through
13
13
the three steps involved in writing your first application.
14
14
15
- **1. Starting a test fabric blockchain network. ** We need some basic components
15
+ **1. Starting a test Fabric blockchain network. ** We need some basic components
16
16
in our Fabric in order to query and update the ledger. These components --
17
17
a peer node, ordering node and Certificate Authority -- serve as the backbone of
18
18
our network; we'll also have a CLI container used for a few administrative commands.
@@ -23,9 +23,9 @@ the three steps involved in writing your first application.
23
23
in different ways. For example, we can read data holistically or on a more granular
24
24
level.
25
25
26
- **3. Developing the application to be able to query and update fabric records. **
26
+ **3. Developing the application to be able to query and update Fabric records. **
27
27
We provide two sample applications -- one for querying the ledger and another for
28
- updating it. Our app will use the SDK APIs to interact with the network and
28
+ updating it. Our apps will use the SDK APIs to interact with the network and
29
29
ultimately call these functions.
30
30
31
31
After completing this tutorial, you should have a basic understanding of how
0 commit comments