@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.
@@ -2,5 +2,7 @@
2
2
  "address": "0xaf33DcB6E8c5c4D9dDF579f53031b514d19449CA",
3
3
  "block": 3044431,
4
4
  "notes": null,
5
- "arbitrators": {}
5
+ "arbitrators": {
6
+ "0x05b942faecfb3924970e3a28e0f230910cedff45": "Kleros"
7
+ }
6
8
  }
@@ -59,7 +59,8 @@
59
59
  },
60
60
  "137": {
61
61
  "explorerURL": "https://polygonscan.com/",
62
- "graphURL": "https://api.thegraph.com/subgraphs/name/realityeth/realityeth-polygon",
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": {
@@ -244,7 +244,7 @@
244
244
  "https://polygon-bor.publicnode.com"
245
245
  ],
246
246
  "hostedRPC": "https://polygon-rpc.com/",
247
- "graphURL": "https://api.thegraph.com/subgraphs/name/realityeth/realityeth-polygon",
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/"
@@ -499,7 +499,9 @@
499
499
  "address": "0xaf33DcB6E8c5c4D9dDF579f53031b514d19449CA",
500
500
  "block": 3044431,
501
501
  "notes": null,
502
- "arbitrators": {}
502
+ "arbitrators": {
503
+ "0x05b942faecfb3924970e3a28e0f230910cedff45": "Kleros"
504
+ }
503
505
  }
504
506
  }
505
507
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reality.eth/contracts",
3
- "version": "3.0.38",
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": "a47ec2ab40f9ff4a8cbc65894f50c21b2f7b7f51",
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