@@ -10,7 +10,7 @@ smart contract programming language designed for the Flow Blockchain.
10
10
11
11
### What is NBA Top Shot
12
12
13
- NBA Top Shot is the official digital collecitibles
13
+ NBA Top Shot is the official digital collectibles
14
14
game for the National Basketball Association. Players collect and trade
15
15
digital collectibles that represent highlights from the best players
16
16
in the world. See more at nbatopshot.com
@@ -89,11 +89,11 @@ The directories here are organized into contracts, scripts, and transactions.
89
89
Contracts contain the source code for the Top Shot contracts that are deployed to Flow.
90
90
91
91
Scripts contain read-only transactions to get information about
92
- the state of someones Collection or about the state of the TopShot contract.
92
+ the state of someone's Collection or about the state of the TopShot contract.
93
93
94
94
Transactions contain the transactions that various admins and users can use
95
95
to perform actions in the smart contract like creating plays and sets,
96
- minting Moments, and transfering Moments.
96
+ minting Moments, and transferring Moments.
97
97
98
98
- ` contracts/ ` : Where the Top Shot related smart contracts live.
99
99
- ` transactions/ ` : This directory contains all the transactions and scripts
@@ -137,7 +137,7 @@ pub resource Moment {
137
137
pub let playID: UInt32
138
138
139
139
// the place in the edition that this Moment was minted
140
- // Otherwise know as the serial number
140
+ // Otherwise known as the serial number
141
141
pub let serialNumber: UInt32
142
142
}
143
143
```
@@ -162,7 +162,7 @@ The other types that are defined in `TopShot` are as follows:
162
162
withdraw and deposit from this collection and get information about the
163
163
contained Moments.
164
164
- ` Admin ` : This is a resource type that can be used by admins to perform
165
- various acitions in the smart contract like starting a new series,
165
+ various actions in the smart contract like starting a new series,
166
166
creating a new play or set, and getting a reference to an existing set.
167
167
- ` QuerySetData ` : A struct that contains the metadata associated with a set.
168
168
This is currently the only way to access the metadata of a set.
0 commit comments