Ethereum’s ERC-4337 standard has processed over 1 billion UserOperations across more than 56 million smart accounts since its deployment, according to BundleBear analytics. That scale matters because, per Vitalik Buterin’s analysis, the Bitcoin network alone loses approximately 1,500 BTC per day to forgotten passwords and misplaced keys. The data below covers how ERC-4337 and EIP-7702 work, which projects lead adoption, and why social recovery may be the feature that finally brings crypto wallets to a mainstream audience.
Key Takeaways
- Over 1 billion UserOperations have been processed through ERC-4337 smart accounts as of April 2026
- EIP-7702 activated on May 7, 2025, via the Ethereum Foundation’s Pectra upgrade, enabling existing EOA wallets to gain smart contract capabilities
- Safe secures over $60 billion in digital assets, per GlobeNewsWire
- Paymasters have sponsored over $11.8 million in gas fees, enabling gasless transactions for end users
- Social recovery eliminates seed phrase risk; per Buterin, at least 1,500 BTC are lost daily under the current single-key model
- ERC-4337 operates at the application layer without requiring Ethereum protocol changes, while EIP-7702 upgrades EOAs at the protocol layer
What Is Account Abstraction?
Account abstraction enables users to flexibly program more security and better user experiences into their accounts through smart contract wallets, replacing Ethereum‘s traditional externally owned accounts (EOAs), according to ethereum.org. EOAs function as simple public-private key pairs with binary control: private key holders can do anything, while non-holders can do nothing, and keys lost or stolen mean permanent loss of funds.
Smart contract accounts allow custom security rules and account recovery mechanisms, multi-signature requirements, transaction restrictions, and gas payment flexibility.
The ERC-4337 specification, created on September 29, 2021, achieves account abstraction through a higher-layer infrastructure using an alternative mempool for pseudo-transactions called UserOperations. EIP-7702, proposed on May 7, 2024, takes a complementary approach by enabling existing EOAs to delegate to smart contract code through authorization tuples signed by the account holder.
The result is two paths toward the same goal, whether building a new wallet or upgrading an existing one.
How ERC-4337 Works
The ERC-4337 EntryPoint contract, deployed on Ethereum mainnet on March 1, 2023, has facilitated over 26 million smart wallets and over 170 million UserOperations through its application-layer architecture, according to ethereum.org. The system requires no consensus-layer protocol changes, relying instead on four core components: UserOperations, Bundlers, the EntryPoint contract, and Paymasters.
Here is how a transaction flows through the system:
- UserOperations are structs containing the sender address, nonce, call data, gas limits, fee parameters, and a signature field whose usage is defined by the smart contract account itself
- Bundlers collect UserOperations from multiple users, then execute them all in a single transaction calling handleOps() on the EntryPoint contract
- The EntryPoint is a singleton contract that handles an array of UserOperations in two phases: verification (checking signatures and fee payment) and execution
- Paymasters enable fee abstraction, allowing application developers to subsidize user transactions or accept ERC-20 token payments instead of ETH
Bundling saves gas by not repeatedly paying the fixed 21,000 gas fee per individual transaction, consolidating multiple operations into one on-chain call.
By the numbers: According to BundleBear analytics, ERC-4337 has processed over 1 billion UserOperations across 56 million smart accounts on 14 networks including Base, Polygon, Arbitrum, and Ethereum mainnet, with paymasters covering over $11.8 million in gas fees.
EIP-7702 and the Pectra Upgrade
Ethereum’s Pectra upgrade activated on the mainnet on May 7, 2025, at epoch 364032, introducing EIP-7702 as a protocol-level path to account abstraction, according to the Ethereum Foundation. The proposal, authored by Vitalik Buterin, Sam Wilson, Ansgar Dietrichs, and lightclient, allows EOAs to delegate to smart contract code without deploying entirely new accounts.
EIP-7702 uses a delegation indicator (0xef0100 || address) that directs code execution to follow a pointer to executable contract code. EOAs retain their identity while gaining contract capabilities, creating a bridge toward future account abstraction without requiring users to abandon their current accounts. Readers tracking wallet ecosystem changes can find related data in MetaMask wallet statistics.
The proposal targets three primary improvements: batching (allowing multiple operations from the same user in one atomic transaction), sponsorship arrangements for gas fees, and privilege de-escalation through sub-keys with limited permissions.
Privilege de-escalation means an EOA owner can create sub-keys authorized for only specific actions without exposing the master key.
How Paymasters Enable Gasless Transactions
Paymasters are helper contracts within the ERC-4337 system that validate their willingness to pay for a user’s transaction through the validatePaymasterUserOp() function, according to the ERC-4337 specification. Across the ERC-4337 ecosystem, paymasters have covered over $11.8 million in gas fees, per BundleBear data.
The goal is to create an on-chain wallet that pays for its own gas without its owner needing to manage a separate EOA, per Alchemy’s technical overview.
- Application developers can subsidize user transactions entirely, covering gas costs as a business expense similar to free shipping in e-commerce
- Users can pay gas fees with ERC-20 tokens (such as USDC or DAI) instead of needing to acquire ETH first
- Coinbase Smart Wallet, built on ERC-4337 and the Base L2 network, allows apps to pay for user network fees or batch transactions to reduce costs
Coinbase’s implementation uses passkeys for authentication, meaning users create a wallet in seconds using Apple or Google device security without memorizing a recovery phrase. For broader self-custody wallet trends, see self-custody wallet data.
Social Recovery Replaces Seed Phrases
Social recovery wallets use a single signing key for daily transactions but include a set of at least 3 guardians, of which a majority can cooperate to change the signing key of the account, per Vitalik Buterin’s 2021 proposal. Vitalik Buterin has described social recovery as a superior alternative to mnemonic backups.
The scale of the key-loss problem is significant: approximately 1,500 BTC are lost daily in the Bitcoin ecosystem, with cumulative losses potentially reaching 20% of total supply over time. Stefan Thomas permanently lost 7,000 BTC through forgotten passwords, one of the highest-profile examples of irreversible key loss.
Buterin identifies three types of guardians: personal devices or paper backups owned by the wallet holder, trusted individuals from varied social circles, and institutional guardians offering phone, email, or video verification for high-value accounts.
- Guardians need not know each other’s identities, which reduces collusion risk
- Adding or removing guardians takes 1-3 days (a delay that prevents immediate unauthorized changes)
- Safe implements trustless recovery by allowing account holders to nominate a guardian for wallet access restoration
Key finding: According to Vitalik Buterin, social recovery uses a majority of at least 3 guardians to change a lost signing key, while approximately 1,500 BTC are lost daily and cumulative Bitcoin losses may reach 20% of total supply, making guardian-based recovery a critical infrastructure upgrade.
Our wallet and exchange coverage documents a clear directional shift: after each major exchange failure, the rate of Bitcoin leaving exchanges for self-custody wallets accelerates. Account abstraction makes self-custody viable for users who previously relied on exchanges because they feared losing a seed phrase.
Account Abstraction Adoption and Key Projects
Safe, the largest smart account protocol by value secured, reported over $60 billion in digital assets under protection and $1.4 trillion in lifetime transaction volume as of February 2026, according to a GlobeNewsWire press release. The project deployed 18.3 million new smart accounts during 2025, averaging one new account every 1.7 seconds, and processed 326 million transactions.
| Platform | Smart Accounts | Key Feature | Standard |
| Safe | 57 million+ | N-of-M multisig, trustless recovery | ERC-4337 |
| ZeroDev | 6 million+ | Passkeys, session keys, chain abstraction | ERC-4337 + EIP-7702 |
| Coinbase Smart Wallet | N/A (Base L2) | Passkey creation, gasless transactions | ERC-4337 |
Source: Safe Global, ZeroDev, Coinbase
Institutional adoption has been particularly strong: the Ethereum Foundation migrated 160,000+ ETH (approximately $650 million) to Safe smart accounts, while Circle holds $2.5 billion in USDC within Safe wallets. Notably, 98% of new Safe deployments in 2025 occurred on Layer 2 networks, with Base surpassing Polygon and Arbitrum as the leading retail chain.
ZeroDev powers smart accounts across 50+ networks for over 200 teams, supporting both ERC-4337 and EIP-7702 standards with features including passkey login, session key automation, and cross-chain token spending without bridging. For the exchange and trading volume context, see crypto exchange market data.
ERC-4337 vs EIP-7702 Differences
ERC-4337 operates entirely at the application layer, building new smart contract wallets through an alternative mempool and EntryPoint contract without requiring any Ethereum protocol changes. EIP-7702 works at the protocol layer, enabling existing EOAs to delegate to smart contract code while retaining their original address and assets.
| Feature | ERC-4337 | EIP-7702 |
| Layer | Application layer | Protocol layer |
| Wallet type | New smart contract wallets | Upgraded existing EOAs |
| Protocol changes | None required | Pectra hard fork (May 7, 2025) |
| Gas sponsorship | Via Paymasters | Via sponsorship arrangements |
| Transaction batching | Via Bundlers | Native atomic batching |
| Social recovery | Custom verification logic | Sub-key privilege de-escalation |
| Deployment date | March 1, 2023 | May 7, 2025 |
Source: ERC-4337 Specification, EIP-7702 Specification
ZeroDev already supports both standards, allowing developers to build applications that work across both smart contract wallets and upgraded EOAs.
What Comes Next for Account Abstraction
Account abstraction has moved from proposal to production infrastructure in under three years.
- EIP-8141, announced by Vitalik Buterin in February 2026, proposes native account abstraction at the Ethereum L1 level, with rollout expected as part of the upcoming Hegota fork
- Safe targets $100 million in annualized recurring revenue by 2030, up from $10 million in 2025
- ZeroDev’s infrastructure spans 50+ networks, positioning smart accounts as a cross-chain standard rather than an Ethereum-only feature
- Safe’s $10 million revenue was achieved without token subsidies or incentive programs, signalling organic demand for smart account infrastructure
For users, the technical standard behind the wallet matters less than the outcome: accounts that recover from mistakes, skip gas payments, and handle multiple operations at once.
Frequently Asked Questions (FAQs)
Account abstraction replaces single-key crypto wallets with programmable smart contract accounts. These accounts can recover lost access through guardians, let apps pay gas fees on your behalf, and batch multiple transactions into one. The goal is to make wallets as easy to use as a banking app while keeping full self-custody.
ERC-4337 creates new smart contract wallets at the application layer without changing the Ethereum protocol. EIP-7702, activated in the May 2025 Pectra upgrade, upgrades existing EOA wallets at the protocol layer. Both enable gasless transactions, batching, and recovery, and they work together rather than competing.
Not necessarily. EIP-7702 lets existing EOA wallets (such as MetaMask) gain smart contract features without creating a new address. ERC-4337 requires a new smart contract wallet, but projects like Coinbase Smart Wallet and Safe handle creation automatically using passkeys or social login.
Smart contract wallets add security layers that EOAs lack, including multisig approval, spending limits, and guardian-based recovery. Safe’s smart accounts secure over $60 billion in digital assets. However, smart contract bugs remain a risk, so audited and battle-tested protocols are preferable to newer alternatives.
Paymasters are smart contracts in the ERC-4337 system that pay gas fees on behalf of users. They let application developers sponsor transactions (similar to free shipping in e-commerce) or accept ERC-20 token payments instead of requiring ETH. Paymasters have covered over $11.8 million in gas fees across the ecosystem.
Conclusion
Account abstraction has grown from a proposal into production infrastructure, with over 1 billion UserOperations processed across 56 million smart accounts. Safe alone secures over $60 billion in assets and deployed 18.3 million new accounts in 2025.
Two complementary standards drive this shift: ERC-4337 for new wallets and EIP-7702 for upgrading existing EOAs. Institutional players, including the Ethereum Foundation and Circle, have already adopted Safe smart accounts, with Circle holding $2.5 billion in USDC within the protocol. The progression toward native account abstraction signals that this year’s implementations are a bridge to deeper protocol integration.