Releases: graphprotocol/indexer
v0.25.9
What's Changed
- bump graph-node version requirement in feature support matrix by @incrypto32 in #1140
- fix(allocations): pass SubgraphService as rewards issuer in Horizon mode by @RembrandtK in #1195
- release: v0.25.9 by @tmigone in #1196
Full Changelog: v0.25.8...v0.25.9
v0.25.8
What's Changed
- fix(cli): preserve hex positional args as strings by re-parsing argv by @dimitrovmaksim in #1188
New Contributors
- @dimitrovmaksim made their first contribution in #1188
Full Changelog: v0.25.7...v0.25.8
v0.25.7
What's Changed
- fix(actions): add missing PRESENT_POI case to isValidActionInput by @MoonBoi9001 in #1180
- chore: release v0.25.7 by @tmigone in #1184
Full Changelog: v0.25.6...v0.25.7
v0.25.6
Release notes
-
Allocation lifecycle: new actions
resizeandpresent-poiAdded new actions to support long-lived allocations. Indexers can now present POIs on chain to collect indexing rewards without having to close their allocations (
present-poi). Additionally allocations can be resized while open with theresizecommand. These actions are available both as direct commands and through the action queue:graph indexer actions queue resize ...graph indexer actions queue present-poi ...graph indexer allocations resize ...graph indexer allocations present-poi ...
When using the agent in
AUTOorOVERSIGHTmodes, the reconciliation loop will continue to queue actions usingreallocate. This is necessary because query fees can currently only be collected once an allocation is closed (a limitation ofindexer-service-rs). Once this limitation is removed in a future update, the reconciliation loop will switch to present-poi to reduce gas costs. -
Batched RAV collection
The agent now supports batching multiple RAVs in a single collect transaction. By default the agent will batch collections in bundles of up to 50 RAVs. This behavior can be adjusted by:
- Setting the flag:
--rav-collection-max-batch-size <BATCH_SIZE> - Setting the env var:
INDEXER_AGENT_RAV_COLLECTION_MAX_BATCH_SIZE=<BATCH_SIZE>
- Setting the flag:
-
Limit batch size in action queue transaction bundles
The agent can now limit the number of actions processed per batch to prevent failures when there are many allocations (by going over the max block gas limit). Remaining actions will be processed in subsequent batches. This feature is disabled by default and can be enabled by:
- Setting the flag:
--auto-allocation-max-batch-size <BATCH_SIZE> - Setting the env var:
INDEXER_AGENT_AUTO_ALLOCATION_MAX_BATCH_SIZE=<BATCH_SIZE>
- Setting the flag:
-
Allow providing old mnemonics to collect pending pre-horizon RAVs
Before Graph Horizon RAV collection required signing a message using allocation-specific keys derived from the operator’s mnemonic. After rotating to a new operator wallet, RAVs for old allocations would fail to collect because the new operator's mnemonic cannot derive the correct signing key. This can be circumvented now by providing the old operator mnemonic by:
- Setting the flag:
--legacy-mnemonics "old mnemonic words ..." - Setting the env var:
INDEXER_AGENT_LEGACY_MNEMONICS="old mnemonic words ...”
- Setting the flag:
What's Changed
- docs: add more docs on modes and rules by @tmigone in #1155
- feat: allow providing old mnemonics to collect pending TAPv1 RAVs by @tmigone in #1159
- add --auto-allocation-max-batch-size indexer-agent option by @tmigone in #1177
- feat: batch RAV collection by @tmigone in #1176
- feat(actions): add PRESENT_POI and RESIZE action types for Horizon allocations by @MoonBoi9001 in #1162
New Contributors
- @MoonBoi9001 made their first contribution in #1162
- @nate-staked made their first contribution in #1177
Full Changelog: v0.25.4...v0.25.6
v0.25.6-rc.1
What's Changed
- docs: add more docs on modes and rules by @tmigone in #1155
- feat: allow providing old mnemonics to collect pending TAPv1 RAVs by @tmigone in #1159
- add --auto-allocation-max-batch-size indexer-agent option by @tmigone in #1177
- feat: batch RAV collection by @tmigone in #1176
- feat(actions): add PRESENT_POI and RESIZE action types for Horizon allocations by @MoonBoi9001 in #1162
New Contributors
- @MoonBoi9001 made their first contribution in #1162
Full Changelog: v0.25.4...v0.25.6-rc.1
Release v0.25.5
Release v0.25.4
What's Changed
Full Changelog: v0.25.3...v0.25.4
Release v0.25.3
What's Changed
- refactor: remove obsolete L1→L2 auto migration support (@dwerner)
- reinstate some perf changes from 0.25.1 lost in 0.25.2
Full Changelog: v0.25.2...v0.25.3
Release v0.25.2
What's Changed
- Add Sepolia, Chapel, Unichain. Remove BobaBNB by @Web3Slimchance in #1141
- feat: horizon support by @tmigone in #1117
- Remove Boba, Blast, Mode & Fuse by @Web3Slimchance in #1145
- docs: remove stale index node ids refs by @suchapalaver in #1148
- handle zero values for publicPOI and blockNumber in action queue by @Maikol in #1150
New Contributors
- @Web3Slimchance made their first contribution in #1141
- @suchapalaver made their first contribution in #1148
Full Changelog: v0.25.0...v0.25.2
Release v0.25.1
● What's Changed
Performance Improvements
- perf: optimize RAV allocation lookup from O(n²) to O(n) by @madumas in #1146
- perf: optimize allocation rules evaluation from O(n²) to O(n) by @madumas in #1147
Features
Network Updates
- Add Sepolia, Chapel, Unichain. Remove BobaBNB by @Web3Slimchance in #1141
- Remove Boba, Blast, Mode & Fuse by @Web3Slimchance in #1145
New Contributors
- @Web3Slimchance made their first contribution in #1141
- @madumas made their first contribution in #1146
Full Changelog: v0.25.0...v0.25.1