Skip to content

Commit

Permalink
indexer-agent,-common,-cli,-service: Actions queue
Browse files Browse the repository at this point in the history
- Add action queue models and resolvers to indexer-common
- Add actions module to indexer-cli
- Add actions worker that polls and executes approved action queue
items
- Include validation of action queue inputs
- Provide control of allocation management via AlloctionManagementMode
enum (AUTO | MANUAL | OVERSIGHT)
  • Loading branch information
fordN committed Jun 7, 2022
1 parent ef0e434 commit 259d0c2
Show file tree
Hide file tree
Showing 49 changed files with 5,106 additions and 1,598 deletions.
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"release": "./scripts/release.sh",
"test": "lerna --concurrency 1 run test --stream --ignore @graphprotocol/indexer-service",
"update-common-ts": "./scripts/update-common-ts.sh 1.8.3",
"clean": "lerna run clean",
"clean": "rm -rf ./node_modules && lerna run clean",
"compile": "lerna run compile"
},
"devDependencies": {
Expand All @@ -25,13 +25,15 @@
},
"resolutions": {
"ethers": "5.6.2",
"sequelize": "6.19.0",
"@ethersproject/bignumber": "5.6.0",
"@ethersproject/providers": "5.6.2",
"@urql/core": "2.4.4",
"@urql/exchange-execute": "1.2.2"
},
"overrides": {
"ethers": "5.6.2",
"sequelize": "6.19.0",
"@ethersproject/bignumber": "5.6.0",
"@ethersproject/providers": "5.6.2",
"@urql/core": "2.4.4",
Expand Down
3 changes: 2 additions & 1 deletion packages/indexer-agent/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"graph-indexer-agent": "bin/graph-indexer-agent"
},
"dependencies": {
"@graphprotocol/common-ts": "1.8.3",
"@graphprotocol/common-ts": "1.8.4",
"@graphprotocol/contracts": "1.11.1",
"@graphprotocol/indexer-common": "^0.19.2",
"@thi.ng/heaps": "^1.3.1",
Expand Down Expand Up @@ -72,6 +72,7 @@
},
"resolutions": {
"ethers": "5.6.2",
"sequelize": "6.19.0",
"@ethersproject/bignumber": "5.6.0",
"@ethersproject/providers": "5.6.2"
},
Expand Down
Loading

0 comments on commit 259d0c2

Please sign in to comment.