You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 9, 2026. It is now read-only.
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.
329
329
330
330
```json
331
331
{
@@ -334,7 +334,7 @@ The following sample `chainweb.config.json` file demonstrates the configuration
334
334
"chainwebChainIdOffset": 20,
335
335
"chainIdOffset": 62600
336
336
},
337
-
"sandbox": {
337
+
"evm-local": {
338
338
"numberOfChains": 2,
339
339
"chainwebChainIdOffset": 20,
340
340
"chainIdOffset": 1789,
@@ -349,10 +349,10 @@ The following sample `chainweb.config.json` file demonstrates the configuration
349
349
}
350
350
```
351
351
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:
@@ -491,7 +491,7 @@ If you attempt to verify a contract with the same bytecode as a contract that ha
491
491
[address] is already verified. Skipping verification.
492
492
```
493
493
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.
495
495
496
496
You can change the bytecode by adding a constant at the top of the contract like this:
0 commit comments