@reality.eth/contracts 3.2.21 → 3.2.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/chains/chainid.network.json +9233 -761
- package/chains/deployments/1/ETH/RealityETH-3.0.json +1 -0
- package/chains/deployments/11155111/ETH/RealityETH-3.0.json +2 -1
- package/chains/deployments/130/ETH/RealityETH-3.0.json +1 -1
- package/chains/deployments/143/MONAD/RealityETH-3.2.json +6 -0
- package/chains/deployments/42161/ARETH/RealityETH-3.0.json +3 -1
- package/chains/deployments/421614/ETH/RealityETH-3.0.json +2 -1
- package/chains/deployments/8453/ETH/RealityETH-3.0.json +1 -2
- package/chains/supported.json +4 -0
- package/generated/chains.json +31 -7
- package/generated/contracts.json +20 -6
- package/generated/tokens.json +7 -0
- package/package.json +2 -2
- package/scripts/deploy.js +2 -0
- package/tokens/MONAD.json +7 -0
package/README.md
CHANGED
|
@@ -83,10 +83,10 @@ If you prefer to keep your secret keys somewhere else, you can pass it as an env
|
|
|
83
83
|
|
|
84
84
|
Supported networks are hard-coded in the `deploy.js` file. You may also wish to edit it to alter gas limits, etc.
|
|
85
85
|
|
|
86
|
-
Once the deployment is complete, run `npm run-script generate`.
|
|
86
|
+
Once the deployment is complete, run `npm run-script generate`. Never edit the `generated/` files directly.
|
|
87
87
|
|
|
88
88
|
## Adding your contracts to the dapp
|
|
89
89
|
|
|
90
90
|
For a new deployment to show up in the dapp it is necessary to rebuild the dapp with the updated `packages/contracts`. For Graph support to work in the dapp, the Subgraph will also need to be republished, using the code under `packages/graph`. If the chain has not been used before, it also needs to be added to `packages/dapp/src/index.html`.
|
|
91
91
|
|
|
92
|
-
If you have added Reality.eth for a new token, or a new arbitrator, or both, please submit the changes to this repo as a PR so that we can update the dapp at reality.eth and the Subgraphs we maintain.
|
|
92
|
+
If you have added Reality.eth for a new token, or a new arbitrator, or both, please submit the changes to this repo as a PR so that we can update the dapp at reality.eth and the Subgraphs we maintain. However it is often easier for us to do the deployment ourselves rather than checking that a deployment somebody else did is correct.
|