Kevin Riedl

8 min read · 26 May 2026

Account Abstraction (ERC-4337) in Production: What It Actually Fixes, What It Doesn't

ERC-4337 has been live long enough to stop being a thought experiment. We have shipped account abstraction wallets in production for clients (see our AA case study and MetaMask Snap work). The honest summary: AA is UX progress, not security progress. It removes a long list of papercuts users complain about, and it introduces a shorter list of new attack surfaces engineers complain about. This post is the teardown: what it fixes, what it does not fix, and the Q&A we hear from clients before they commit.

Building a smart wallet?

 Book Free Consultation

What is ERC-4337 in one paragraph?

A standard that lets a smart contract act as a user's account, without changing the underlying EVM protocol. The user signs a UserOperation, a bundler packages it, a paymaster optionally pays the gas, and an entry-point contract validates and executes it. The end result: the user does not need ETH to transact, can use a passkey or social recovery instead of a seed phrase, and can batch multiple actions into a single approval. ERC-4337 is the standard; specific wallet implementations (Safe, Kernel, Biconomy, Alchemy's Light Account, ZeroDev) layer features on top.

What does AA actually fix in production?

  • Gasless UX via paymaster. The user does not hold ETH. Someone else (you, a sponsor contract, a token-in-token swap) pays gas. This single change closes the biggest onboarding gap in EVM products.
  • Batched transactions. Approve plus swap in one signature. Approve plus deposit plus stake in one signature. Fewer prompts, fewer abandoned flows.
  • Social recovery. Guardians can rotate the signing key without moving the funds. Users stop losing wallets to lost seed phrases.
  • Session keys. Time-bounded, scope-bounded signing rights. The user signs once; the dapp can act within the limits without further prompts. Huge for games and high-frequency products.
  • Role-based spending policies. "Trade up to $500 per day on this DEX, anything else needs a guardian signature." Real policy engines in the wallet, not in the app.
  • Passkeys and WebAuthn. Sign with a fingerprint or device passkey instead of a seed phrase. Massive UX win for non-crypto-native users.

What does AA not fix?

  • Bundler centralisation. Most production traffic runs through a handful of bundler operators. Censorship and uptime risk concentrate there.
  • Paymaster economics. Someone pays gas eventually. If that is you, you need a budget, a quota, and a sybil-protection strategy.
  • Social-engineering recovery attacks. If your recovery flow trusts an email or phone number, that is your new weakest link. Recovery sounds safe; it is only as safe as the guardians you choose.
  • Multi-chain wallet UX. Each chain has its own AA deployment, its own bundler, its own paymaster. The user-facing wallet hides this; the engineering team feels it.
  • Dapp signing UX confusion. EIP-712 typed data is still confusing for most users. AA does not change what the user is asked to sign.
  • The fundamental "what does this transaction do" problem. A batched UserOperation is harder to display safely than a single transfer. UX work is still required.

What new attack surfaces does AA introduce?

Not "smaller". Just "different". Worth listing because we see them on engagements that skipped a serious threat model.

  1. Paymaster spoofing. If your paymaster validation logic is sloppy, an attacker can drain the paymaster budget by triggering sponsored ops that should not have qualified.
  2. Signature aggregator quirks. Aggregated signature schemes have subtle malleability and replay considerations. They need their own audit.
  3. Init-code phishing. A wallet's first deployment includes init code. A malicious dapp can suggest init code that backdoors the wallet from day one.
  4. UserOperation simulation drift. The state seen during bundler simulation may not match execution state. Mishandled, this becomes a griefing vector.
  5. Session key over-scoping. Easy to grant, easy to forget. We have seen dapps request session keys with broader scope than they actually need.
  6. Guardian collusion. Social recovery transfers trust from the seed phrase to the guardian set. Choose accordingly.

Quick comparison: EOA vs AA

ConcernEOA (today)AA (ERC-4337)
Seed phrase requiredYesNo (passkey, social, or hybrid)
User holds gas tokenYesOptional (paymaster covers)
Batch in one signatureNoYes
Recovery from key lossNo (game over)Yes (guardians or hybrid)
Per-transaction costLowerHigher (entry-point overhead)
Audit surfaceSmallLarger (wallet contract + paymaster)
Censorship riskValidator-levelValidator + bundler-level
Kevin Riedl

"AA is UX progress, not security progress. Treat it that way and you will scope it correctly."

Q&A: do we still need EOAs?

Yes, for now. EOAs are still simpler, cheaper per transaction, and have a much smaller audit surface. For high-frequency, low-stakes transactions from technical users, EOAs are fine. For consumer onboarding, AA is the right default. We frequently ship hybrid products: AA for the consumer flow, EOA for power-user or operator flows.

Q&A: is AA cheaper or just nicer?

Per-transaction, AA costs more gas than an EOA, because the entry-point and wallet contract do extra validation work. The user experience is cheaper (fewer signature prompts, no need to pre-buy ETH). The fee economics flip only when you batch enough operations into one UserOperation that the per-op cost drops below the EOA equivalent. Batching is where the gas math wins.

Q&A: can we run our own bundler?

Yes. Several open-source bundlers exist (Pimlico's Alto, Stackup, ETH Infinitism reference). Running your own bundler gives you censorship resistance and predictable performance. It also gives you a 24/7 ops burden, a node infrastructure bill, and a target for DDoS. For most products, using a hosted bundler is the pragmatic answer. For products where censorship resistance is a core promise, self-hosting is worth the work.

Q&A: what about EIP-7702?

EIP-7702 (live since Pectra) gives EOAs the ability to temporarily behave like smart accounts. It changes the calculus: for many products that wanted AA mainly for batching and sponsored gas, EIP-7702 delivers most of the UX upside without a new wallet contract. ERC-4337 is still the right answer for full social recovery, session keys, and policy-rich wallets. We help clients decide between the two based on the product, not the trend.

Q&A: how does AA interact with smart contracts on other chains?

Each chain needs its own AA deployment. The entry-point address, bundler, and paymaster contracts are per-chain. Users see one wallet; engineering sees N deployments. Tools like cross-chain wallet abstractions are catching up but are still rough. Plan for it.

Q&A: do we need a custom wallet contract?

Usually no. Safe, Kernel, Light Account, and similar implementations are well-audited and cover 90% of real-world product needs. Custom wallet contracts are appropriate when you have a specific policy engine, signature scheme, or recovery model that the existing implementations do not support. Custom is more expensive and carries a heavier audit burden. See our blockchain engineering service for how we scope this.

Final thoughts

ERC-4337 in production is a tool, not a religion. It fixes a real, measurable list of UX problems: gas, batching, recovery, session keys, passkeys. It does not fix bundler centralisation, paymaster economics, or the human problem of trusting the right guardians. It introduces a new audit surface that needs treated with the same seriousness as any other smart contract work. The pragmatic position in 2026 is this: default to AA for consumer-facing products where onboarding friction is the moat, default to EOA for technical users and operators, and reach for EIP-7702 when you only need part of the AA toolkit. Whatever you pick, model the threats, audit the wallet contract and paymaster together, and plan for the ops cost of bundlers. UX progress is real progress; just do not confuse it for a free lunch. The teams that ship AA well treat it as a product decision with engineering teeth. The teams that ship it badly treat it as a marketing checkbox.

Building a smart wallet?

 Book Free Consultation
Kevin Riedl

8 min read · 26 May 2026