Skip to content
This repository was archived by the owner on Jan 9, 2026. It is now read-only.

Commit 8f142a0

Browse files
committed
Add missing backticks, fix typo, change sandbox reference
1 parent 1fed395 commit 8f142a0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ CHAINWEB=testnet forge script --multi script/Counter.s.sol:CounterScript \
325325
326326
## Sample configuration and deployment
327327
328-
The following sample `chainweb.config.json` file demonstrates the configuration settings for the default `anvil` environment, a local development `sandbox` environment, and the Chainweb EVM `testnet` network.
328+
The following sample `chainweb.config.json` file demonstrates the configuration settings for the default `anvil` environment, a local development `evm-local` environment, and the Chainweb EVM `testnet` network.
329329
330330
```json
331331
{
@@ -334,7 +334,7 @@ The following sample `chainweb.config.json` file demonstrates the configuration
334334
"chainwebChainIdOffset": 20,
335335
"chainIdOffset": 62600
336336
},
337-
"sandbox": {
337+
"evm-local": {
338338
"numberOfChains": 2,
339339
"chainwebChainIdOffset": 20,
340340
"chainIdOffset": 1789,
@@ -349,10 +349,10 @@ The following sample `chainweb.config.json` file demonstrates the configuration
349349
}
350350
```
351351
352-
To deploy the Counter contract using the `sandbox` configuration settings and the private key for one of the predefined development wallet accounts:
352+
To deploy the Counter contract using the `evm-local` configuration settings and the private key for one of the predefined development wallet accounts:
353353
354354
```bash
355-
CHAINWEB=sandbox forge script --multi script/Counter.s.sol:CounterScript \
355+
CHAINWEB=evm-local forge script --multi script/Counter.s.sol:CounterScript \
356356
--private-key "0xe711c50150f500fdebec57e5c299518c2f7b36271c138c55759e5b4515dc7161" \
357357
--broadcast --legacy
358358
```
@@ -491,7 +491,7 @@ If you attempt to verify a contract with the same bytecode as a contract that ha
491491
[address] is already verified. Skipping verification.
492492
```
493493
494-
To test contract verification on multiple chains, you must change the bytecode, redeploy, then run the verify-contract command on the redployed contract.
494+
To test contract verification on multiple chains, you must change the bytecode, redeploy, then run the `verify-contract` command on the redeployed contract.
495495
496496
You can change the bytecode by adding a constant at the top of the contract like this:
497497

0 commit comments

Comments
 (0)