feat(core): native EIP-7702 atomic multicall for native-Push EOAs#260
Merged
Conversation
PushBatchExecutor is the delegation target a secp256k1 EOA (EVM-origin or native Push) points its code to via EIP-7702 to execute a Multicall[] batch atomically in one tx — replacing the custom UEA_MULTICALL path for those accounts. SVM accounts cannot sign a 7702 authorization and keep UEA_MULTICALL. - self-sponsored execute(Multicall[]) gated on msg.sender == address(this) - sponsored execute(Multicall[], nonce, sig) via EIP-712 with replay-safe nonce - sequential execution, revert bubbling, ERC-7201 namespaced storage (runs in the EOA's storage under delegation) - 8 Foundry tests under real 7702 delegation; deploy script - deployed to Push Testnet Donut at 0x776d8031b9caA053d04325Bc2CAc47E5cb673776
- switch native Push 7702 batching to ERC-7821 execute(mode, executionData) - wire latest Donut executor deployment with payable receive support - reject zero-address multicall targets consistently before route selection - update vendored executor reference and 7702 batching docs
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.
PushBatchExecutor is the delegation target a secp256k1 EOA (EVM-origin or native Push) points its code to via EIP-7702 to execute a Multicall[] batch atomically in one tx — replacing the custom UEA_MULTICALL path for those accounts. SVM accounts cannot sign a 7702 authorization and keep UEA_MULTICALL.
Fixes Issue
Changes proposed
Check List (Check all the applicable boxes)
Screenshots
Note to reviewers