[simplex]: fix verification-gas efficiency rejection on sponsored vault sweep/redeem#986
Open
royvardhan wants to merge 2 commits into
Open
[simplex]: fix verification-gas efficiency rejection on sponsored vault sweep/redeem#986royvardhan wants to merge 2 commits into
royvardhan wants to merge 2 commits into
Conversation
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.
Sponsored vault sweep/redeem UserOps were rejected by the Alchemy bundler ("Verification gas limit efficiency too low. Required: 0.4, Actual: 0.20") and fell back to native txs, paying gas in ETH instead of USDC.
Root cause: the sweep/redeem path used the 200k Circle paymaster verification default. The bundler echoes input gas limits for these ops rather than simulating, so the verification-gas efficiency ratio
used / (accountVerif + paymasterVerif)fell below rundler's 0.4 floor.Fix: pass measured fixed gas limits for these ops instead of relying on the default. Measured on Base via the bundler — account validation ~24k, Circle paymaster verification ~75k (the dominant term) — set to account 60k, paymaster 140k, with callGas scaled by batch size. Predicted efficiency 0.49.