@@ -129,8 +129,8 @@ _code: @lang<script>
129
129
130
130
// If MetaMask is not installed, we use the default provider,
131
131
// which is backed by a variety of third-party services (such
132
- // as INFURA). They do not have private keys installed so are
133
- // only have read-only access
132
+ // as INFURA). They do not have private keys installed,
133
+ // so they only have read-only access
134
134
console.log("MetaMask not installed; using read-only defaults")
135
135
provider = ethers.getDefaultProvider()
136
136
@@ -156,7 +156,7 @@ you can use the [[JsonRpcProvider]] directly, which communicates
156
156
using the [[link-jsonrpc]] protocol.
157
157
158
158
When using your own Ethereum node or a developer-base blockchain,
159
- such as Hardhat or Ganache, you can get access the accounts with
159
+ such as Hardhat or Ganache, you can get access to the accounts with
160
160
[[JsonRpcProvider-getSigner]].
161
161
162
162
_code: connecting to a JSON-RPC URL @lang<script>
@@ -177,7 +177,7 @@ results when performing mathematic operations.
177
177
178
178
As a result, the internal units used (e.g. wei) which are suited for
179
179
machine-readable purposes and maths are often very large and not
180
- terribly human-readable.
180
+ easily human-readable.
181
181
182
182
For example, imagine dealing with dollars and cents; you would show
183
183
values like ``"$2.56"``. In the blockchain world, we would keep all
0 commit comments