Skip to content

Commit

Permalink
chore: update deprecated commands (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandre-abrioux authored Aug 11, 2023
1 parent 315b1ba commit 5fd20c1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ docker-compose up -d
- Create the subgraph. Do this only once (or each time you clear the Graph node)

```
yarn create-local ./subgraph-private.yaml
yarn create-local
```

- Generate types for the subgraph. Do this again if you modify the [indexer's code](./src/mapping.ts) or the [graphql schema](./schema.graphql)
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
"build": "graph build",
"test": "graph test",
"deploy": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ RequestNetwork/request-storage",
"create-local": "graph create --node http://localhost:8020/ RequestNetwork/request-storage --access-token ''",
"remove-local": "graph remove --node http://localhost:8020/ RequestNetwork/request-storage --access-token ''",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 RequestNetwork/request-storage --access-token ''",
"create-local": "graph create --node http://localhost:8020/ RequestNetwork/request-storage",
"remove-local": "graph remove --node http://localhost:8020/ RequestNetwork/request-storage",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 RequestNetwork/request-storage",
"monitor-deployment-local": "ts-node cli/monitor.ts"
},
"dependencies": {
Expand Down

0 comments on commit 5fd20c1

Please sign in to comment.