Fixes to verify validator and deposits - #2962
Merged
Merged
Conversation
naddison36
requested review from
clement-ux,
shahthepro and
sparrowDom
as code owners
August 4, 2026 22:46
apexearth
approved these changes
Aug 4, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fix validator and deposit operations after the migration from
CompoundingStakingSSVStrategyProxytoCompoundingStakingStrategyProxy.snapStakingStratContext
The verification tasks still resolved the retired SSV strategy while
CompoundingStakingStrategyViewread pending deposits from the new strategy. This caused thedaily_verify_depositsTalos action to callsnapBalances()on the old proxy and revert withNotRegistrator().Downloading and decoding a beacon state is also expensive, so running
verifyValidatorseparately for several validators repeated the same work each time.Changes
Verification strategy
verifyValidator,verifyDeposit,verifyDeposits, andverifyBalancesnow exclusively resolveCompoundingStakingStrategyProxy/CompoundingStakingStrategy.Batch validator verification
verifyValidatoraccepts either:or a comma-separated list:
The batch path:
--dryrunand--credoptionsStaking snapshot output
For processed deposits no longer in the beacon pending-deposit queue,
snapStakingStratnow:ETHStakedeventsV indexcolumnEvent queries use bounded 10,000-block batches and stop once all required public keys are found.
Optional Talos dependency
@oplabs/talos-clientis now loaded only whenDATABASE_URLenables nonce-queue support. Hardhat commands that do not use the Talos nonce queue no longer fail at startup when the optional private package is absent.Validation
pnpm prettier:jspnpm prettier:tsgit diff --check