@reality.eth/contracts 3.0.42 → 3.0.43
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
|
@@ -86,6 +86,11 @@
|
|
|
86
86
|
"explorerURL": "https://zkevm.polygonscan.com/",
|
|
87
87
|
"network_name": "polygon-zkevm"
|
|
88
88
|
},
|
|
89
|
+
"17000": {
|
|
90
|
+
"hostedRPC": "https://rpc.holesky.ethpandaops.io",
|
|
91
|
+
"explorerURL": "https://holesky.etherscan.io/",
|
|
92
|
+
"network_name": "holesky"
|
|
93
|
+
},
|
|
89
94
|
"42161": {
|
|
90
95
|
"hostedRPC": "https://arb1.arbitrum.io/rpc",
|
|
91
96
|
"graphURL": "https://api.thegraph.com/subgraphs/name/realityeth/realityeth-arbitrum",
|
package/generated/contracts.json
CHANGED
|
@@ -388,6 +388,16 @@
|
|
|
388
388
|
}
|
|
389
389
|
}
|
|
390
390
|
},
|
|
391
|
+
"17000": {
|
|
392
|
+
"ETH": {
|
|
393
|
+
"RealityETH-3.0": {
|
|
394
|
+
"address": "0xd3575b215EC1c3875ad7890982f95EA729DF9537",
|
|
395
|
+
"block": 62519,
|
|
396
|
+
"notes": null,
|
|
397
|
+
"arbitrators": {}
|
|
398
|
+
}
|
|
399
|
+
}
|
|
400
|
+
},
|
|
391
401
|
"42161": {
|
|
392
402
|
"ARETH": {
|
|
393
403
|
"Arbitrator": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reality.eth/contracts",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.43",
|
|
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": "b83dfa84c958db08f3e5fb041c2b708a992badae",
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"ethers": "^5.6.8"
|
|
36
36
|
}
|
package/scripts/deploy.js
CHANGED
|
@@ -58,6 +58,7 @@ const chains = {
|
|
|
58
58
|
'scroll-alpha-testnet': 534353,
|
|
59
59
|
'polygon': 137,
|
|
60
60
|
'polygon-zkevm': 1101,
|
|
61
|
+
'holesky': 17000,
|
|
61
62
|
'mumbai': 80001,
|
|
62
63
|
'ava': 43114,
|
|
63
64
|
'arbitrum': 42161,
|
|
@@ -86,6 +87,7 @@ const non_infura_chains = {
|
|
|
86
87
|
'kintsugi': 'https://rpc.kintsugi.themerge.dev',
|
|
87
88
|
'mumbai': 'https://matic-mumbai.chainstacklabs.com',
|
|
88
89
|
'sepolia': 'https://rpc.sepolia.org',
|
|
90
|
+
'holesky': 'https://ethereum-holesky.publicnode.com ',
|
|
89
91
|
'telosevm': 'https://mainnet.telos.net/evm',
|
|
90
92
|
}
|
|
91
93
|
|