@reality.eth/contracts 3.0.38 → 3.0.40
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/chains/supported.json
CHANGED
|
@@ -59,7 +59,8 @@
|
|
|
59
59
|
},
|
|
60
60
|
"137": {
|
|
61
61
|
"explorerURL": "https://polygonscan.com/",
|
|
62
|
-
"
|
|
62
|
+
"graphURLHosted": "https://api.thegraph.com/subgraphs/name/realityeth/realityeth-polygon",
|
|
63
|
+
"graphURLStudio": "https://gateway-arbitrum.network.thegraph.com/api/f6970cba825cf1195898e217ea967e3d/subgraphs/id/AWx6jkeKZ3xKRzkrzgfCAMPT7d6Jc3AMcqB8koN3QEqE",
|
|
63
64
|
"network_name": "matic"
|
|
64
65
|
},
|
|
65
66
|
"324": {
|
package/generated/chains.json
CHANGED
|
@@ -244,7 +244,7 @@
|
|
|
244
244
|
"https://polygon-bor.publicnode.com"
|
|
245
245
|
],
|
|
246
246
|
"hostedRPC": "https://polygon-rpc.com/",
|
|
247
|
-
"graphURL": "https://
|
|
247
|
+
"graphURL": "https://gateway-arbitrum.network.thegraph.com/api/f6970cba825cf1195898e217ea967e3d/subgraphs/id/AWx6jkeKZ3xKRzkrzgfCAMPT7d6Jc3AMcqB8koN3QEqE",
|
|
248
248
|
"blockExplorerUrls": [
|
|
249
249
|
"https://polygonscan.com",
|
|
250
250
|
"https://polygonscan.com/"
|
package/generated/contracts.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reality.eth/contracts",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.40",
|
|
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",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"url": "https://github.com/RealityETH/monorepo/issues"
|
|
31
31
|
},
|
|
32
32
|
"homepage": "https://reality.eth.link",
|
|
33
|
-
"gitHead": "
|
|
33
|
+
"gitHead": "37e9b8c8b2078eb79c1c66f37754b420ec4fb3ad",
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"ethers": "^5.6.8"
|
|
36
36
|
}
|
|
@@ -63,6 +63,10 @@ for (var ci = 0; ci< chain_id_list.length; ci++) {
|
|
|
63
63
|
|
|
64
64
|
if (our_data['graphURL']) {
|
|
65
65
|
chainparams['graphURL'] = our_data['graphURL'];
|
|
66
|
+
} else if (our_data['graphURLStudio']) {
|
|
67
|
+
chainparams['graphURL'] = our_data['graphURLStudio'];
|
|
68
|
+
} else if (our_data['graphURLHosted']) {
|
|
69
|
+
chainparams['graphURL'] = our_data['graphURLHosted'];
|
|
66
70
|
}
|
|
67
71
|
|
|
68
72
|
// Sometimes this is "mainnet" and we have to override it, there's "shortname" but that doesn't seem quite right either
|