watcher-ts/packages/util/package.json
Ashwin Phatak 4f8f1d8cd7
Update code for log_cids change in vdb core (#243)
* Remove fields no longer present in schema.

* Refactor code to work with log_cids change in eth-server.

* Refactor process event to save events from logs.

* Use constants for erc20 event names.

* Implement watch blocks in erc20-watcher similar to uni-watcher.

* Moved common methods to util.

* Implement eventsInRange query in erc20-watcher.

* Filter unknown event in database query.

* Change dependencies version to be same in all packages.

Co-authored-by: nabarun <nabarun@deepstacksoft.com>
2021-09-21 16:43:55 +05:30

41 lines
1.1 KiB
JSON

{
"name": "@vulcanize/util",
"version": "0.1.0",
"main": "dist/index.js",
"license": "AGPL-3.0",
"dependencies": {
"@vulcanize/solidity-mapper": "^0.1.0",
"debug": "^4.3.1",
"ethers": "^5.2.0",
"fs-extra": "^10.0.0",
"pg-boss": "^6.1.0",
"toml": "^3.0.0"
},
"devDependencies": {
"@types/fs-extra": "^9.0.11",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"@vulcanize/cache": "^0.1.0",
"@vulcanize/ipld-eth-client": "^0.1.0",
"@uniswap/v3-periphery": "1.0.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",
"eslint-plugin-standard": "^5.0.0",
"hardhat": "^2.3.0",
"typeorm": "^0.2.32",
"typeorm-naming-strategies": "^2.0.0",
"lodash": "^4.17.21",
"apollo-server-express": "^2.25.0",
"decimal.js": "^10.3.1"
},
"scripts": {
"lint": "eslint .",
"build": "tsc",
"build:contracts": "hardhat compile"
}
}