mirror of
https://github.com/cerc-io/watcher-ts
synced 2025-01-09 21:08:06 +00:00
nikugogoi
43d64f9e4b
* Invoke subgraph handler in watcher event processing * Fix error when invoking subgraph handler * Parse events using event signature specified in subgraph yaml * Use contract abi to parse event params * Invoke event handler based on event signature * Fill event with block and transaction data * Comment missing fields in block and transaction data
17 lines
632 B
JSON
17 lines
632 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#ng-add-exports",
|
|
"@graphprotocol/graph-ts": "^0.22.1"
|
|
}
|
|
}
|