mirror of
https://github.com/cerc-io/watcher-ts
synced 2024-11-19 20:36:19 +00:00
51b200709b
* Add ipld-blocks entity generation * Populate ipld-blocks table * Rename ipld-block entity and update after each event * Move ipld-hook to hooks.ts * Change IPLD block structure * Add cid field in blocks * Fetch prev. IPLDBlock for a contract * GQL API to query IPLDBlock by CID * Save cid in blocks in existing watchers * Update codegen docs * GQL API for getting last derived state (#3) * GQL API for getting last derived state * Rename query to getState * Change query names to getState and getStateByCid * Save BigInt as string * Move function to prepare IPLDBlock to indexer * Refactor IPLDBlock hook * Add genesis hook * Call post-block hook after a block is marked as complete * Add IPLDBlock checkpointing * Use queryRunner instead of a new repo for queries * Add a query to get block in ipld-eth-client * Get latest checkpoints for all contracts for checkpointing. * Call post-block hook in a queue * Pass server config to Indexer in watch-contract cli Co-authored-by: nikugogoi <nabarun@deepstacksoft.com>
51 lines
1.5 KiB
JSON
51 lines
1.5 KiB
JSON
{
|
|
"name": "@vulcanize/codegen",
|
|
"version": "0.1.0",
|
|
"description": "Code generator",
|
|
"private": true,
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"lint": "eslint .",
|
|
"codegen": "ts-node src/generate-code.ts"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/vulcanize/watcher-ts.git"
|
|
},
|
|
"author": "",
|
|
"license": "AGPL-3.0",
|
|
"bugs": {
|
|
"url": "https://github.com/vulcanize/watcher-ts/issues"
|
|
},
|
|
"homepage": "https://github.com/vulcanize/watcher-ts#readme",
|
|
"dependencies": {
|
|
"@poanet/solidity-flattener": "https://github.com/vulcanize/solidity-flattener.git",
|
|
"@solidity-parser/parser": "^0.13.2",
|
|
"@vulcanize/util": "^0.1.0",
|
|
"gql-generator": "https://github.com/vulcanize/gql-generator.git",
|
|
"graphql": "^15.5.0",
|
|
"graphql-compose": "^9.0.3",
|
|
"handlebars": "^4.7.7",
|
|
"js-yaml": "^4.0.0",
|
|
"lodash": "^4.17.21",
|
|
"node-fetch": "^2",
|
|
"solc": "^0.8.7-fixed",
|
|
"ts-node": "^10.2.1",
|
|
"typescript": "^4.3.2",
|
|
"yargs": "^17.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@openzeppelin/contracts": "^4.3.2",
|
|
"@types/js-yaml": "^4.0.3",
|
|
"@types/node": "^16.9.0",
|
|
"@typescript-eslint/eslint-plugin": "^4.25.0",
|
|
"@typescript-eslint/parser": "^4.25.0",
|
|
"eslint": "^7.27.0",
|
|
"eslint-config-semistandard": "^15.0.1",
|
|
"eslint-config-standard": "^16.0.3",
|
|
"eslint-plugin-import": "^2.23.3",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"eslint-plugin-promise": "^5.1.0"
|
|
}
|
|
}
|