@reality.eth/contracts 3.2.3 → 3.2.5
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 +0 -1
- package/package.json +2 -2
- package/scripts/deploy.js +0 -6
package/README.md
CHANGED
|
@@ -90,4 +90,3 @@ Once the deployment is complete, run `npm run-script generate`. You should never
|
|
|
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
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.
|
|
93
|
-
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reality.eth/contracts",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.5",
|
|
4
4
|
"description": "Collection of smart contracts for the Realitio fact verification platform",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"generate-chains": "node scripts/generate_chains_json.js",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"url": "https://github.com/RealityETH/monorepo/issues"
|
|
35
35
|
},
|
|
36
36
|
"homepage": "https://reality.eth.link",
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "1b6316bde7fd1739ece635a754d2c1ed1ae6610c",
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"ethers": "^5.8.0"
|
|
40
40
|
}
|
package/scripts/deploy.js
CHANGED
|
@@ -221,12 +221,6 @@ function store_deployed_factory_contract(template, chain_id, out_json) {
|
|
|
221
221
|
console.log('wrote file', file);
|
|
222
222
|
}
|
|
223
223
|
|
|
224
|
-
function chain_config_for_name(chain_name) {
|
|
225
|
-
for (cc in chain_configs) {
|
|
226
|
-
|
|
227
|
-
}
|
|
228
|
-
}
|
|
229
|
-
|
|
230
224
|
function provider_for_chain() {
|
|
231
225
|
if (non_infura_chains[chain]) {
|
|
232
226
|
console.log('Using chain', non_infura_chains[chain]);
|