@reality.eth/contracts 3.0.14 → 3.0.16
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/deployments/280/ETH/RealityETH-3.0.json +2 -2
- package/generated/contracts.json +2 -12
- package/generated/tokens.json +0 -7
- package/index.js +105 -4
- package/non_standard_deployments/zksync2/hardhat.config.ts +1 -1
- package/non_standard_deployments/zksync2/package.json +1 -1
- package/non_standard_deployments/zksync2/yarn.lock +59 -59
- package/package.json +2 -2
- package/chains/deployments/4/LINK/RealityETH_ERC20-3.0.json +0 -8
- package/tokens/LINK.json +0 -7
package/generated/contracts.json
CHANGED
|
@@ -122,16 +122,6 @@
|
|
|
122
122
|
}
|
|
123
123
|
}
|
|
124
124
|
},
|
|
125
|
-
"LINK": {
|
|
126
|
-
"RealityETH_ERC20-3.0": {
|
|
127
|
-
"address": "0x4a38a9EdE2f997E97Cac2D7BF8e002Ec20d2c2Ca",
|
|
128
|
-
"block": 11107294,
|
|
129
|
-
"token_address": "0x01be23585060835e02b77ef475b0cc51aa1e0709",
|
|
130
|
-
"notes": null,
|
|
131
|
-
"arbitrators": {},
|
|
132
|
-
"factory_address": "0x9e862794f4f80386185b9d3baa532668e988c530"
|
|
133
|
-
}
|
|
134
|
-
},
|
|
135
125
|
"TRST": {
|
|
136
126
|
"Arbitrator": {
|
|
137
127
|
"address": "0xa682C58333F4959cbF728c2a871548E3D8978Fa2",
|
|
@@ -374,8 +364,8 @@
|
|
|
374
364
|
"280": {
|
|
375
365
|
"ETH": {
|
|
376
366
|
"RealityETH-3.0": {
|
|
377
|
-
"address": "
|
|
378
|
-
"block":
|
|
367
|
+
"address": "0xd5b938870ecdA94a5284830D0C3d2f55B98eF13F",
|
|
368
|
+
"block": 1022506,
|
|
379
369
|
"notes": null,
|
|
380
370
|
"arbitrators": {}
|
|
381
371
|
}
|
package/generated/tokens.json
CHANGED
|
@@ -100,13 +100,6 @@
|
|
|
100
100
|
"100": "0x9C58BAcC331c9aa871AFD802DB6379a98e80CEdb"
|
|
101
101
|
}
|
|
102
102
|
},
|
|
103
|
-
"LINK": {
|
|
104
|
-
"decimals": 18,
|
|
105
|
-
"small_number": 1000000000000000000,
|
|
106
|
-
"erc20_chains": {
|
|
107
|
-
"4": "0x01be23585060835e02b77ef475b0cc51aa1e0709"
|
|
108
|
-
}
|
|
109
|
-
},
|
|
110
103
|
"POLK": {
|
|
111
104
|
"decimals": 18,
|
|
112
105
|
"small_number": 1000000000000000000,
|
package/index.js
CHANGED
|
@@ -1,9 +1,27 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
let all_config = require('./generated/contracts.json');
|
|
2
|
+
let token_info = require('./generated/tokens.json');
|
|
3
3
|
const chain_info = require('./generated/chains.json');
|
|
4
4
|
const template_config = require('./config/templates.json');
|
|
5
5
|
const factory_config = require('./generated/factories.json');
|
|
6
6
|
|
|
7
|
+
function populateImports(imported_contracts, chain_id) {
|
|
8
|
+
for(var ctr in imported_contracts) {
|
|
9
|
+
let to_imp = imported_contracts[ctr];
|
|
10
|
+
to_imp.realityETH= ctr;
|
|
11
|
+
const imp = tokenAndContractConfigFromFactory(to_imp, chain_id);
|
|
12
|
+
const token = imp.token.ticker;
|
|
13
|
+
if (!all_config[chain_id][token]) {
|
|
14
|
+
all_config[chain_id][token] = {};
|
|
15
|
+
}
|
|
16
|
+
const ver = imp.contract.version_number;
|
|
17
|
+
all_config[chain_id][token][ver] = imp.contract;
|
|
18
|
+
|
|
19
|
+
if (!token_info[token]) {
|
|
20
|
+
token_info[token] = imp.token;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
7
25
|
function realityETHInstance(config) {
|
|
8
26
|
const abis = {
|
|
9
27
|
'RealityETH-2.0': require('./abi/solc-0.8.6/RealityETH-2.0.abi.json'),
|
|
@@ -36,7 +54,7 @@ function arbitratorInstance(chain_id) {
|
|
|
36
54
|
function erc20Instance(config) {
|
|
37
55
|
const abi = require('./abi/solc-0.4.25/ERC20.abi.json');
|
|
38
56
|
if (!config.token_address) {
|
|
39
|
-
console.log('config', config);
|
|
57
|
+
// console.log('config', config);
|
|
40
58
|
throw new Error("token address for erc20 instance not found");
|
|
41
59
|
return null;
|
|
42
60
|
}
|
|
@@ -166,7 +184,7 @@ function isChainSupported(chain_id) {
|
|
|
166
184
|
function walletAddParameters(chain_id) {
|
|
167
185
|
var params = ['chainId', 'chainName', 'nativeCurrency', 'rpcUrls', 'blockExplorerUrls']
|
|
168
186
|
var ret = {};
|
|
169
|
-
console.log('looking for config for chain', chain_id);
|
|
187
|
+
// console.log('looking for config for chain', chain_id);
|
|
170
188
|
var config = chain_info[""+chain_id];
|
|
171
189
|
for (var i=0; i<params.length; i++) {
|
|
172
190
|
var item = params[i];
|
|
@@ -210,6 +228,49 @@ function versionHasFeature(vernum, feature_name) {
|
|
|
210
228
|
}
|
|
211
229
|
}
|
|
212
230
|
|
|
231
|
+
function factoryConfigForAddress(address, chain_id) {
|
|
232
|
+
|
|
233
|
+
for(var cid in factory_config) {
|
|
234
|
+
if (chain_id && cid != chain_id) {
|
|
235
|
+
continue;
|
|
236
|
+
}
|
|
237
|
+
for(var ver in factory_config[cid]) {
|
|
238
|
+
const config = factory_config[cid][ver];
|
|
239
|
+
if (address.toLowerCase() == config.address.toLowerCase()) {
|
|
240
|
+
return config;
|
|
241
|
+
}
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
return null;
|
|
245
|
+
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
function configForAddress(addr, chain_id) {
|
|
249
|
+
for(var cid in all_config) {
|
|
250
|
+
if (chain_id && cid != chain_id) {
|
|
251
|
+
continue;
|
|
252
|
+
}
|
|
253
|
+
for(var ticker in all_config[cid]) {
|
|
254
|
+
for(var ver in all_config[cid][ticker]) {
|
|
255
|
+
const config = all_config[cid][ticker][ver];
|
|
256
|
+
if (addr.toLowerCase() == config.address.toLowerCase()) {
|
|
257
|
+
if (!config.arbitrators) {
|
|
258
|
+
config.arbitrators = [];
|
|
259
|
+
}
|
|
260
|
+
const [contract_name, contract_version] = ver.split('-');
|
|
261
|
+
config.version_number = ver;
|
|
262
|
+
config.chain_id = cid;
|
|
263
|
+
config.contract_name = contract_name;
|
|
264
|
+
config.contract_version = contract_version;
|
|
265
|
+
return config;
|
|
266
|
+
}
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
}
|
|
270
|
+
return null;
|
|
271
|
+
|
|
272
|
+
}
|
|
273
|
+
|
|
213
274
|
function factoryList(chain_id) {
|
|
214
275
|
if (!factory_config[chain_id]) {
|
|
215
276
|
return {};
|
|
@@ -217,6 +278,43 @@ function factoryList(chain_id) {
|
|
|
217
278
|
return factory_config[chain_id];
|
|
218
279
|
}
|
|
219
280
|
|
|
281
|
+
function tokenAndContractConfigFromFactory(factory_data, chain_id) {
|
|
282
|
+
// Get the library for the factory
|
|
283
|
+
const factory_config = factoryConfigForAddress(factory_data.factory, chain_id);
|
|
284
|
+
|
|
285
|
+
const template_orig = configForAddress(factory_config.library_address, chain_id);
|
|
286
|
+
let template = {};
|
|
287
|
+
for (let k in template_orig) {
|
|
288
|
+
template[k] = template_orig[k];
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
if (!template) {
|
|
292
|
+
console.log('no template found for', factory_data, factory_config, chain_id);
|
|
293
|
+
return null;
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
template.address = factory_data.realityETH;
|
|
297
|
+
template.block = parseInt(factory_data.createdBlock);
|
|
298
|
+
template.token_address = factory_data.token_address;
|
|
299
|
+
template.token_ticker = factory_data.token_symbol;
|
|
300
|
+
|
|
301
|
+
const erc20_chains_val = {};
|
|
302
|
+
erc20_chains_val[chain_id] = factory_data.token_address;
|
|
303
|
+
|
|
304
|
+
return {
|
|
305
|
+
'token': {
|
|
306
|
+
'ticker': factory_data.token_symbol,
|
|
307
|
+
'decimals': factory_data.token_decimals,
|
|
308
|
+
'is_native': false,
|
|
309
|
+
'small_number': 1000000000000000000,
|
|
310
|
+
'erc20_chains': erc20_chains_val
|
|
311
|
+
},
|
|
312
|
+
'contract': template
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
|
|
220
318
|
module.exports.realityETHConfig = realityETHConfig;
|
|
221
319
|
module.exports.realityETHConfigs = realityETHConfigs;
|
|
222
320
|
module.exports.realityETHInstance = realityETHInstance;
|
|
@@ -231,3 +329,6 @@ module.exports.defaultTokenForChain = defaultTokenForChain;
|
|
|
231
329
|
module.exports.versionHasFeature = versionHasFeature;
|
|
232
330
|
module.exports.isChainSupported = isChainSupported;
|
|
233
331
|
module.exports.factoryList = factoryList;
|
|
332
|
+
module.exports.tokenAndContractConfigFromFactory = tokenAndContractConfigFromFactory;
|
|
333
|
+
module.exports.configForAddress = configForAddress;
|
|
334
|
+
module.exports.populateImports = populateImports;
|
|
@@ -9,14 +9,14 @@
|
|
|
9
9
|
dependencies:
|
|
10
10
|
"@jridgewell/trace-mapping" "0.3.9"
|
|
11
11
|
|
|
12
|
-
"@ethereumjs/block@^3.5.0", "@ethereumjs/block@^3.6.2":
|
|
13
|
-
version "3.6.
|
|
14
|
-
resolved "https://registry.yarnpkg.com/@ethereumjs/block/-/block-3.6.
|
|
15
|
-
integrity sha512-
|
|
12
|
+
"@ethereumjs/block@^3.5.0", "@ethereumjs/block@^3.6.2", "@ethereumjs/block@^3.6.3":
|
|
13
|
+
version "3.6.3"
|
|
14
|
+
resolved "https://registry.yarnpkg.com/@ethereumjs/block/-/block-3.6.3.tgz#d96cbd7af38b92ebb3424223dbf773f5ccd27f84"
|
|
15
|
+
integrity sha512-CegDeryc2DVKnDkg5COQrE0bJfw/p0v3GBk2W5/Dj5dOVfEmb50Ux0GLnSPypooLnfqjwFaorGuT9FokWB3GRg==
|
|
16
16
|
dependencies:
|
|
17
|
-
"@ethereumjs/common" "^2.6.
|
|
18
|
-
"@ethereumjs/tx" "^3.5.
|
|
19
|
-
ethereumjs-util "^7.1.
|
|
17
|
+
"@ethereumjs/common" "^2.6.5"
|
|
18
|
+
"@ethereumjs/tx" "^3.5.2"
|
|
19
|
+
ethereumjs-util "^7.1.5"
|
|
20
20
|
merkle-patricia-tree "^4.2.4"
|
|
21
21
|
|
|
22
22
|
"@ethereumjs/blockchain@^5.5.2", "@ethereumjs/blockchain@^5.5.3":
|
|
@@ -33,13 +33,13 @@
|
|
|
33
33
|
lru-cache "^5.1.1"
|
|
34
34
|
semaphore-async-await "^1.5.1"
|
|
35
35
|
|
|
36
|
-
"@ethereumjs/common@^2.6.
|
|
37
|
-
version "2.6.
|
|
38
|
-
resolved "https://registry.yarnpkg.com/@ethereumjs/common/-/common-2.6.
|
|
39
|
-
integrity sha512-
|
|
36
|
+
"@ethereumjs/common@^2.6.4", "@ethereumjs/common@^2.6.5":
|
|
37
|
+
version "2.6.5"
|
|
38
|
+
resolved "https://registry.yarnpkg.com/@ethereumjs/common/-/common-2.6.5.tgz#0a75a22a046272579d91919cb12d84f2756e8d30"
|
|
39
|
+
integrity sha512-lRyVQOeCDaIVtgfbowla32pzeDv2Obr8oR8Put5RdUBNRGr1VGPGQNGP6elWIpgK3YdpzqTOh4GyUGOureVeeA==
|
|
40
40
|
dependencies:
|
|
41
41
|
crc-32 "^1.2.0"
|
|
42
|
-
ethereumjs-util "^7.1.
|
|
42
|
+
ethereumjs-util "^7.1.5"
|
|
43
43
|
|
|
44
44
|
"@ethereumjs/ethash@^1.1.0":
|
|
45
45
|
version "1.1.0"
|
|
@@ -61,13 +61,13 @@
|
|
|
61
61
|
ethereumjs-util "^7.1.5"
|
|
62
62
|
|
|
63
63
|
"@ethereumjs/vm@^5.9.0":
|
|
64
|
-
version "5.9.
|
|
65
|
-
resolved "https://registry.yarnpkg.com/@ethereumjs/vm/-/vm-5.9.
|
|
66
|
-
integrity sha512-
|
|
64
|
+
version "5.9.3"
|
|
65
|
+
resolved "https://registry.yarnpkg.com/@ethereumjs/vm/-/vm-5.9.3.tgz#6d69202e4c132a4a1e1628ac246e92062e230823"
|
|
66
|
+
integrity sha512-Ha04TeF8goEglr8eL7hkkYyjhzdZS0PsoRURzYlTF6I0VVId5KjKb0N7MrA8GMgheN+UeTncfTgYx52D/WhEmg==
|
|
67
67
|
dependencies:
|
|
68
|
-
"@ethereumjs/block" "^3.6.
|
|
68
|
+
"@ethereumjs/block" "^3.6.3"
|
|
69
69
|
"@ethereumjs/blockchain" "^5.5.3"
|
|
70
|
-
"@ethereumjs/common" "^2.6.
|
|
70
|
+
"@ethereumjs/common" "^2.6.5"
|
|
71
71
|
"@ethereumjs/tx" "^3.5.2"
|
|
72
72
|
async-eventemitter "^0.2.4"
|
|
73
73
|
core-js-pure "^3.0.1"
|
|
@@ -420,14 +420,14 @@
|
|
|
420
420
|
"@ethersproject/strings" "^5.6.1"
|
|
421
421
|
|
|
422
422
|
"@jridgewell/resolve-uri@^3.0.3":
|
|
423
|
-
version "3.0
|
|
424
|
-
resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.0.
|
|
425
|
-
integrity sha512-
|
|
423
|
+
version "3.1.0"
|
|
424
|
+
resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78"
|
|
425
|
+
integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==
|
|
426
426
|
|
|
427
427
|
"@jridgewell/sourcemap-codec@^1.4.10":
|
|
428
|
-
version "1.4.
|
|
429
|
-
resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.
|
|
430
|
-
integrity sha512-
|
|
428
|
+
version "1.4.14"
|
|
429
|
+
resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24"
|
|
430
|
+
integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==
|
|
431
431
|
|
|
432
432
|
"@jridgewell/trace-mapping@0.3.9":
|
|
433
433
|
version "0.3.9"
|
|
@@ -468,10 +468,10 @@
|
|
|
468
468
|
resolved "https://registry.yarnpkg.com/@noble/hashes/-/hashes-1.1.2.tgz#e9e035b9b166ca0af657a7848eb2718f0f22f183"
|
|
469
469
|
integrity sha512-KYRCASVTv6aeUi1tsF8/vpyR7zpfs3FUzy2Jqm+MU+LmUKhQ0y2FpfwqkCcxSg2ua4GALJd8k2R76WxwZGbQpA==
|
|
470
470
|
|
|
471
|
-
"@noble/secp256k1@1.6.
|
|
472
|
-
version "1.6.
|
|
473
|
-
resolved "https://registry.yarnpkg.com/@noble/secp256k1/-/secp256k1-1.6.
|
|
474
|
-
integrity sha512-
|
|
471
|
+
"@noble/secp256k1@1.6.3", "@noble/secp256k1@~1.6.0":
|
|
472
|
+
version "1.6.3"
|
|
473
|
+
resolved "https://registry.yarnpkg.com/@noble/secp256k1/-/secp256k1-1.6.3.tgz#7eed12d9f4404b416999d0c87686836c4c5c9b94"
|
|
474
|
+
integrity sha512-T04e4iTurVy7I8Sw4+c5OSN9/RkPlo1uKxAomtxQNLq8j1uPAqnsqG1bqvY3Jv7c13gyr6dui0zmh/I3+f/JaQ==
|
|
475
475
|
|
|
476
476
|
"@nomiclabs/hardhat-docker@^2.0.0":
|
|
477
477
|
version "2.0.2"
|
|
@@ -638,9 +638,9 @@
|
|
|
638
638
|
integrity sha512-ssE3Vlrys7sdIzs5LOxCzTVMsU7i9oa/IaW92wF32JFb3CVczqOkru2xspuKczHEbG3nvmPY7IFqVmGGHdNbYw==
|
|
639
639
|
|
|
640
640
|
"@types/node@*":
|
|
641
|
-
version "18.
|
|
642
|
-
resolved "https://registry.yarnpkg.com/@types/node/-/node-18.
|
|
643
|
-
integrity sha512-
|
|
641
|
+
version "18.7.2"
|
|
642
|
+
resolved "https://registry.yarnpkg.com/@types/node/-/node-18.7.2.tgz#22306626110c459aedd2cdf131c749ec781e3b34"
|
|
643
|
+
integrity sha512-ce7MIiaYWCFv6A83oEultwhBXb22fxwNOQf5DIxWA4WXvDQ7K+L0fbWl/YOfCzlR5B/uFkSnVBhPcOfOECcWvA==
|
|
644
644
|
|
|
645
645
|
"@types/pbkdf2@^3.0.0":
|
|
646
646
|
version "3.1.0"
|
|
@@ -704,9 +704,9 @@ acorn-walk@^8.1.1:
|
|
|
704
704
|
integrity sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==
|
|
705
705
|
|
|
706
706
|
acorn@^8.4.1:
|
|
707
|
-
version "8.
|
|
708
|
-
resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.
|
|
709
|
-
integrity sha512-
|
|
707
|
+
version "8.8.0"
|
|
708
|
+
resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.0.tgz#88c0187620435c7f6015803f5539dae05a9dbea8"
|
|
709
|
+
integrity sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==
|
|
710
710
|
|
|
711
711
|
adm-zip@^0.4.16:
|
|
712
712
|
version "0.4.16"
|
|
@@ -1124,9 +1124,9 @@ cookie@^0.4.1:
|
|
|
1124
1124
|
integrity sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==
|
|
1125
1125
|
|
|
1126
1126
|
core-js-pure@^3.0.1:
|
|
1127
|
-
version "3.
|
|
1128
|
-
resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.
|
|
1129
|
-
integrity sha512-
|
|
1127
|
+
version "3.24.1"
|
|
1128
|
+
resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.24.1.tgz#8839dde5da545521bf282feb7dc6d0b425f39fd3"
|
|
1129
|
+
integrity sha512-r1nJk41QLLPyozHUUPmILCEMtMw24NG4oWK6RbsDdjzQgg9ZvrUsPBj1MnG0wXXp1DCDU6j+wUvEmBSrtRbLXg==
|
|
1130
1130
|
|
|
1131
1131
|
core-util-is@~1.0.0:
|
|
1132
1132
|
version "1.0.3"
|
|
@@ -1246,9 +1246,9 @@ dockerode@^2.5.8:
|
|
|
1246
1246
|
tar-fs "~1.16.3"
|
|
1247
1247
|
|
|
1248
1248
|
dockerode@^3.3.1:
|
|
1249
|
-
version "3.3.
|
|
1250
|
-
resolved "https://registry.yarnpkg.com/dockerode/-/dockerode-3.3.
|
|
1251
|
-
integrity sha512-
|
|
1249
|
+
version "3.3.3"
|
|
1250
|
+
resolved "https://registry.yarnpkg.com/dockerode/-/dockerode-3.3.3.tgz#7504db10d23866c6f267e7b0b7b4a75fc2203e8d"
|
|
1251
|
+
integrity sha512-lvKV6/NGf2/CYLt5V4c0fd6Fl9XZSCo1Z2HBT9ioKrKLMB2o+gA62Uza8RROpzGvYv57KJx2dKu+ZwSpB//OIA==
|
|
1252
1252
|
dependencies:
|
|
1253
1253
|
docker-modem "^3.0.0"
|
|
1254
1254
|
tar-fs "~2.0.1"
|
|
@@ -1344,12 +1344,12 @@ ethereum-cryptography@^0.1.3:
|
|
|
1344
1344
|
setimmediate "^1.0.5"
|
|
1345
1345
|
|
|
1346
1346
|
ethereum-cryptography@^1.0.3:
|
|
1347
|
-
version "1.1.
|
|
1348
|
-
resolved "https://registry.yarnpkg.com/ethereum-cryptography/-/ethereum-cryptography-1.1.
|
|
1349
|
-
integrity sha512-
|
|
1347
|
+
version "1.1.2"
|
|
1348
|
+
resolved "https://registry.yarnpkg.com/ethereum-cryptography/-/ethereum-cryptography-1.1.2.tgz#74f2ac0f0f5fe79f012c889b3b8446a9a6264e6d"
|
|
1349
|
+
integrity sha512-XDSJlg4BD+hq9N2FjvotwUET9Tfxpxc3kWGE2AqUG5vcbeunnbImVk3cj6e/xT3phdW21mE8R5IugU4fspQDcQ==
|
|
1350
1350
|
dependencies:
|
|
1351
1351
|
"@noble/hashes" "1.1.2"
|
|
1352
|
-
"@noble/secp256k1" "1.6.
|
|
1352
|
+
"@noble/secp256k1" "1.6.3"
|
|
1353
1353
|
"@scure/bip32" "1.1.0"
|
|
1354
1354
|
"@scure/bip39" "1.1.0"
|
|
1355
1355
|
|
|
@@ -2157,9 +2157,9 @@ node-fetch@^2.6.0:
|
|
|
2157
2157
|
whatwg-url "^5.0.0"
|
|
2158
2158
|
|
|
2159
2159
|
node-gyp-build@^4.2.0:
|
|
2160
|
-
version "4.
|
|
2161
|
-
resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.
|
|
2162
|
-
integrity sha512-
|
|
2160
|
+
version "4.5.0"
|
|
2161
|
+
resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.5.0.tgz#7a64eefa0b21112f89f58379da128ac177f20e40"
|
|
2162
|
+
integrity sha512-2iGbaQBV+ITgCz76ZEjmhUKAKVf7xfY1sRl4UiKQspfZMH2h06SyhNsnSVy50cwkFQDGLyif6m/6uFXHkOZ6rg==
|
|
2163
2163
|
|
|
2164
2164
|
normalize-path@^3.0.0, normalize-path@~3.0.0:
|
|
2165
2165
|
version "3.0.0"
|
|
@@ -2291,9 +2291,9 @@ pump@^3.0.0:
|
|
|
2291
2291
|
once "^1.3.1"
|
|
2292
2292
|
|
|
2293
2293
|
qs@^6.7.0:
|
|
2294
|
-
version "6.
|
|
2295
|
-
resolved "https://registry.yarnpkg.com/qs/-/qs-6.
|
|
2296
|
-
integrity sha512-
|
|
2294
|
+
version "6.11.0"
|
|
2295
|
+
resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.0.tgz#fd0d963446f7a65e1367e01abd85429453f0c37a"
|
|
2296
|
+
integrity sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==
|
|
2297
2297
|
dependencies:
|
|
2298
2298
|
side-channel "^1.0.4"
|
|
2299
2299
|
|
|
@@ -2752,9 +2752,9 @@ typescript@^4.7.4:
|
|
|
2752
2752
|
integrity sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==
|
|
2753
2753
|
|
|
2754
2754
|
undici@^5.4.0:
|
|
2755
|
-
version "5.
|
|
2756
|
-
resolved "https://registry.yarnpkg.com/undici/-/undici-5.
|
|
2757
|
-
integrity sha512-
|
|
2755
|
+
version "5.8.2"
|
|
2756
|
+
resolved "https://registry.yarnpkg.com/undici/-/undici-5.8.2.tgz#071fc8a6a5d24db0ad510ad442f607d9b09d5eec"
|
|
2757
|
+
integrity sha512-3KLq3pXMS0Y4IELV045fTxqz04Nk9Ms7yfBBHum3yxsTR4XNn+ZCaUbf/mWitgYDAhsplQ0B1G4S5D345lMO3A==
|
|
2758
2758
|
|
|
2759
2759
|
universalify@^0.1.0:
|
|
2760
2760
|
version "0.1.2"
|
|
@@ -2819,9 +2819,9 @@ ws@7.4.6:
|
|
|
2819
2819
|
integrity sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A==
|
|
2820
2820
|
|
|
2821
2821
|
ws@^7.4.6:
|
|
2822
|
-
version "7.5.
|
|
2823
|
-
resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.
|
|
2824
|
-
integrity sha512-
|
|
2822
|
+
version "7.5.9"
|
|
2823
|
+
resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.9.tgz#54fa7db29f4c7cec68b1ddd3a89de099942bb591"
|
|
2824
|
+
integrity sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==
|
|
2825
2825
|
|
|
2826
2826
|
xtend@^4.0.0, xtend@^4.0.1, xtend@^4.0.2, xtend@~4.0.0:
|
|
2827
2827
|
version "4.0.2"
|
|
@@ -2881,7 +2881,7 @@ yocto-queue@^0.1.0:
|
|
|
2881
2881
|
resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b"
|
|
2882
2882
|
integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==
|
|
2883
2883
|
|
|
2884
|
-
zksync-web3@^0.7.
|
|
2885
|
-
version "0.7.
|
|
2886
|
-
resolved "https://registry.yarnpkg.com/zksync-web3/-/zksync-web3-0.7.
|
|
2887
|
-
integrity sha512-
|
|
2884
|
+
zksync-web3@^0.7.11:
|
|
2885
|
+
version "0.7.11"
|
|
2886
|
+
resolved "https://registry.yarnpkg.com/zksync-web3/-/zksync-web3-0.7.11.tgz#1d829eda9b220b94a3d7e3ab29a2b37ab789a276"
|
|
2887
|
+
integrity sha512-CdIHw+8BirGnYCXGIhF6NL7Ge30k/Sdvm8vmN/cV7WRaLcSOEYVfb9B7uYpcuzAwR44YTZ8yv1izcKCa1EGOtg==
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reality.eth/contracts",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.16",
|
|
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": "bf4b54cd772d0763ab0a88ee631415d8ee90b2bb",
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"ethers": "^5.6.8"
|
|
36
36
|
}
|