@reality.eth/graph 0.4.41 → 0.4.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.
Files changed (2) hide show
  1. package/README.md +5 -0
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -9,3 +9,8 @@ You may need to pass the GRAPH_AUTH environmental variable with the param
9
9
  We suggest keeping this in a file, eg
10
10
  GRAPH_AUTH="--access-token `cat ~/secrets/graph_auth`" yarn deploy:zksync-goerli
11
11
 
12
+ Update, 2023-08-11:
13
+ Studio now seems to want eg
14
+ GRAPH_AUTH="--deploy-key `cat ~/secrets/graph_studio_auth`" yarn deploy:zksync-goerli
15
+ ...where the deploy key is subtly different.
16
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reality.eth/graph",
3
- "version": "0.4.41",
3
+ "version": "0.4.43",
4
4
  "scripts": {
5
5
  "create-local": "graph create realityeth/realityeth --node http://127.0.0.1:8020",
6
6
  "remove-local": "graph remove realityeth/realityeth --node http://127.0.0.1:8020",
@@ -17,7 +17,7 @@
17
17
  "deploy:goerli": "yarn prepare:goerli && graph deploy $GRAPH_AUTH --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/ realityeth/realityeth-goerli",
18
18
  "deploy:mainnet": "yarn prepare:mainnet && graph deploy $GRAPH_AUTH --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/ realityeth/realityeth",
19
19
  "deploy:optimism": "yarn prepare:optimism && graph deploy $GRAPH_AUTH --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/ realityeth/realityeth-optimism",
20
- "deploy:polygon": "yarn prepare:polygon && graph deploy $GRAPH_AUTH --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/ realityeth/realityeth-polygon",
20
+ "deploy:polygon": "yarn prepare:polygon && graph deploy $GRAPH_AUTH --studio realityeth-polygon",
21
21
  "deploy:mumbai": "yarn prepare:mumbai && graph deploy $GRAPH_AUTH --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/ realityeth/realityeth-mumbai",
22
22
  "deploy:rinkeby": "yarn prepare:rinkeby && graph deploy $GRAPH_AUTH --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/ realityeth/realityeth-rinkeby",
23
23
  "deploy:sokol": "yarn prepare:sokol && graph deploy $GRAPH_AUTH --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/ realityeth/realityeth-sokol",
@@ -63,15 +63,15 @@
63
63
  "prettier-write": "prettier --write '**/*.ts'"
64
64
  },
65
65
  "dependencies": {
66
- "@reality.eth/contracts": "^3.0.39",
66
+ "@reality.eth/contracts": "^3.0.41",
67
67
  "babel-polyfill": "^6.26.0",
68
68
  "babel-register": "^6.26.0",
69
69
  "mustache": "^4.2.0",
70
70
  "truffle-hdwallet-provider": "^1.0.4"
71
71
  },
72
72
  "devDependencies": {
73
- "@graphprotocol/graph-cli": "^0.38.0",
73
+ "@graphprotocol/graph-cli": "^0.54.0",
74
74
  "@graphprotocol/graph-ts": "^0.27.0"
75
75
  },
76
- "gitHead": "f2a4a6dc13190b8b15d852c1cee1bb357ab0cd6f"
76
+ "gitHead": "ded222b407fe7b06df5928ca7e74df1823585177"
77
77
  }