Skip to content

feat: Add ERC20 approve transaction helper#343

Open
forceunwrap wants to merge 1 commit into
mainfrom
erc20-approval
Open

feat: Add ERC20 approve transaction helper#343
forceunwrap wants to merge 1 commit into
mainfrom
erc20-approval

Conversation

@forceunwrap
Copy link
Copy Markdown
Contributor

@forceunwrap forceunwrap commented Apr 13, 2026

Why

World Card onboarding needs to grant Permit2 spending approval before submitting the separate Permit2 allowance call to the funding contract. The existing helpers cover transfers (transaction_transfer) and Permit2-side approvals (transaction_permit2_approve), but there was no path for a plain ERC-20 approve — which is the prerequisite for any Permit2-based flow.

What

  • Add Erc20Approve type in bedrock/src/transactions/contracts/erc20.rs that encodes IERC20.approve(spender, value) as a 4337 UserOperation via the existing Is4337Encodable trait.
  • Introduce a dedicated TransactionTypeId::Erc20Approve = 141 nonce type so approvals are distinguishable from transfers in on-chain analytics.
  • Expose SafeSmartAccount::transaction_erc20_approve(token_address, spender_address, amount) as a high-level API for native clients.

Test

  • Unit tests in erc20.rs covering the approve call data encoding (test_erc20_approve_call_data) and nonce layout (test_erc20_approve_preflight_nonce_type_id).
  • New integration test bedrock/tests/test_smart_account_erc20_approve.rs that spins up Anvil, deploys a Safe with the 4337 module, funds the EntryPoint, executes transaction_erc20_approve end-to-end, and asserts the on-chain allowance(safe, spender) matches the requested amount.

Copy link
Copy Markdown

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 6d9fa3d547

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Comment thread bedrock/src/transactions/mod.rs Outdated
Add a generic ERC20 approve constructor in the contract transaction layer and expose a matching SafeSmartAccount transaction_erc20_approve API.

This lets native clients submit a standard token approve(spender, amount) call through the existing 4337 transaction pipeline. World Card onboarding needs this to grant Permit2 spending approval before submitting the separate Permit2 allowance for the funding contract.
Copy link
Copy Markdown
Collaborator

@aurel-fr aurel-fr left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is not an API we want to expose. We can add a custom function to grant allowance to the PERMIT2 contract if needed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants