watcher-ts/packages/graph-node/test/subgraph/example1/package.json
nikugogoi 31b302c9b5 Implement eth_call for methods returning struct type (#59)
* Handle tuple return type in ethereum host API

* Update graph-cli version to fix eth_call error

* Handle all types in struct based on abi

Co-authored-by: prathamesh0 <prathamesh.musale0@gmail.com>
2021-12-28 16:08:05 +05:30

17 lines
631 B
JSON

{
"name": "example1",
"license": "UNLICENSED",
"scripts": {
"codegen": "graph codegen",
"build": "graph build",
"deploy": "graph deploy --node https://api.studio.thegraph.com/deploy/ example1",
"create-local": "graph create --node http://localhost:8020/ example1",
"remove-local": "graph remove --node http://localhost:8020/ example1",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 example1"
},
"dependencies": {
"@graphprotocol/graph-cli": "ssh://git@github.com:vulcanize/graph-cli.git#graph-watcher",
"@graphprotocol/graph-ts": "^0.22.1"
}
}