@reality.eth/contracts 3.0.51 → 3.0.52
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.
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"address": "
|
|
3
|
-
"block":
|
|
2
|
+
"address": "0xd05Af7EAB843aA2A04f623c18d2a1C8bB4F301a9",
|
|
3
|
+
"block": 24,
|
|
4
4
|
"notes": null,
|
|
5
|
-
"arbitrators": {
|
|
6
|
-
"0xa6F3d82f7aEF02f3f24c3fBcfD814a74fE612D85": "Fork-backed adjudication framework"
|
|
7
|
-
}
|
|
5
|
+
"arbitrators": {}
|
|
8
6
|
}
|
package/generated/contracts.json
CHANGED
|
@@ -549,7 +549,18 @@
|
|
|
549
549
|
},
|
|
550
550
|
"88558801": {
|
|
551
551
|
"ZBS": {
|
|
552
|
+
"Arbitrator": {
|
|
553
|
+
"address": "0x7dEEa9D38d429081a6761Ca1EF828A0C12c1d7bc",
|
|
554
|
+
"block": 42,
|
|
555
|
+
"reality_eth_address": "0xd05Af7EAB843aA2A04f623c18d2a1C8bB4F301a9"
|
|
556
|
+
},
|
|
552
557
|
"RealityETH-3.0": {
|
|
558
|
+
"address": "0xd05Af7EAB843aA2A04f623c18d2a1C8bB4F301a9",
|
|
559
|
+
"block": 24,
|
|
560
|
+
"notes": null,
|
|
561
|
+
"arbitrators": {}
|
|
562
|
+
},
|
|
563
|
+
"RealityETH-4.0": {
|
|
553
564
|
"address": "0x74549fdf4e00C7c564bB193a911887d8C291b13C",
|
|
554
565
|
"block": 2,
|
|
555
566
|
"notes": null,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reality.eth/contracts",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.52",
|
|
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": "f9d3cb6311dc265f3682aa4997f50e69c9799869",
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"ethers": "^5.6.8"
|
|
40
40
|
}
|
package/scripts/deploy.js
CHANGED
|
@@ -68,6 +68,7 @@ const chains = {
|
|
|
68
68
|
'kovan-optimistic': 69,
|
|
69
69
|
'kintsugi': 1337702,
|
|
70
70
|
'sepolia': 11155111,
|
|
71
|
+
'backstopTestnet1': 88558801
|
|
71
72
|
}
|
|
72
73
|
const non_infura_chains = {
|
|
73
74
|
'gnosis': 'https://rpc.ankr.com/gnosis',
|
|
@@ -89,8 +90,9 @@ const non_infura_chains = {
|
|
|
89
90
|
'kintsugi': 'https://rpc.kintsugi.themerge.dev',
|
|
90
91
|
'mumbai': 'https://matic-mumbai.chainstacklabs.com',
|
|
91
92
|
'sepolia': 'https://rpc.sepolia.org',
|
|
92
|
-
'holesky': 'https://ethereum-holesky.publicnode.com
|
|
93
|
+
'holesky': 'https://ethereum-holesky.publicnode.com',
|
|
93
94
|
'telosevm': 'https://mainnet.telos.net/evm',
|
|
95
|
+
'backstopTestnet1': 'https://testnet.rpc.backstop.technology'
|
|
94
96
|
}
|
|
95
97
|
|
|
96
98
|
function constructContractTemplate(contract_name) {
|