Karya Semi
HomeBlogSearchCategoriesAboutContact
Karya Semi

Less noise. More notes.

HomeBlogAboutContactPrivacy PolicyDisclaimer

© 2026 Karya Semi. All rights reserved.

XGitHubLinkedIn
  1. Home
  2. /Categories
  3. /Web3

ERC-7579 Smart Accounts: What Changes for Ethereum Developers

ERC-7579 is the new standard for smart accounts on Ethereum. Here's what it actually changes when you're building with account abstraction, and what to watch before you adopt it.

Dian Rijal Asyrof/July 3, 2026/5 min read
Illustration for ERC-7579 Smart Accounts: What Changes for Ethereum Developers

Here's a problem that keeps showing up in Ethereum development: you want to let users interact with your dApp without making them install MetaMask, sign every transaction, and understand what a gas fee is. You want the experience to feel like a Web2 app.

That's account abstraction, and it's been a goal since 2021. ERC-4337 was the first real attempt at a production standard. But it has rough edges and ERC-7579 is the response to those rough edges.

This article is for developers who want to understand what ERC-7579 changes, why it matters, and when to actually use it.

The Problem With ERC-4337

ERC-4337 introduced UserOps bundle transactions submitted to an alternative mempool, processed by separate entities called bundlers. The idea: replace the EOA (externally owned account, your regular wallet) with a smart contract wallet that can define its own validation logic.

That works. But the validation interface ERC-4337 defined is massive. To be compliant, a smart account has to implement a lot of methods. For simple use cases like a multisig with 3 signers you're implementing 30+ functions when you only need 5.

This led to fragmented implementations. Every smart account provider (Safe, Kernel, Biconomy, ZeroDev) extended the base interface differently. Bundlers had to support all of them. It created compatibility headaches that developers shouldn't have to deal with.

ERC-7579 fixes this.

What ERC-7579 Actually Is

ERC-7579 defines a minimal interface for modular smart accounts. The key insight: split validation into two parts validateUserOp and validateSessionData. This lets you plug in different validation modules without rewriting the whole account.

The interface shrunk from 30+ required functions to a core set that handles the critical path:

interface IERC7579Module {
 function onInstall(bytes calldata data) external;
 function onUninstall(bytes calldata data) external;
 function validateUserOp(
 PackedUserOperation calldata op,
 bytes32 userOpHash,
 uint256 missingFunds
 ) external returns (uint256);
}

That's the module interface. A smart account that supports ERC-7579 can swap in different validation logic by installing or uninstalling modules. You want 2-of-3 multisig? Install that module. You want passkey authentication? Install that module. The account itself stays the same.

Why This Matters for Developers

If you're building a dApp, you probably don't care about the solidity interface. You care about what SDKs and tools support this.

Here's what changes:

Faster bundler support. The fragmented implementations meant bundlers had to support each account's quirks separately. ERC-7579's minimal interface is easier to implement, which means more bundlers support more accounts. As of 2025, most major bundler providers (Pimlico, Gelato, Stackup) have added ERC-7579 support alongside ERC-4337.

Smaller smart accounts. A Safe account compliant with ERC-7579 is significantly lighter than its ERC-4337 counterpart. Less code means cheaper deployment and less surface area for bugs.

Module portability. A validation module that works with one ERC-7579 account works with another. Write a session key module once, deploy it for Kernel users and Safe users. This wasn't really possible before.

Better UX for your users. The real goal here is that users don't need to understand any of this. They sign in with a passkey, pay gas in ERC-20 tokens, and their transactions go through. ERC-7579 makes it cheaper and faster for account providers to implement these features correctly.

The Module System in Practice

Modules are the actual feature developers interact with. Instead of configuring a smart account by deploying a new contract, you install a module.

Common module types:

Validation modules define who can sign and how. Examples: ECDSA (standard private key), passkeys (WebAuthn), multisig, session keys with spending limits.

Execution modules define what the account can do. Rate limits, whitelisted targets, allowed token transfers. Useful for institutional custody where you want to restrict what a recovered account can do before the team reviews it.

The Real Tradeoffs

Before you go all-in on ERC-7579 for your dApp, a few honest considerations.

It's still early-stage tooling. The spec is solid, but developer tooling around module discovery, version management, and upgrade paths is still catching up. Expect to do more manual work than you would with mature stacks. This is normal for a fast-moving ecosystem.

Module security is your responsibility. If you install a third-party module, you're trusting that module's code. Unlike a standard contract that has been audited and battle-tested, a new module might have edge cases. Read the module's audit reports. Check if the team has a bug bounty. Understand what permissions you're granting.

Migration between account providers matters less than you think. If you're using a dApp kit like RainbowKit or wagmi, you probably won't touch ERC-7579 directly. The SDK handles account creation and management. Your decision is more about which wallet provider to use, and that decision is driven by ecosystem support, not the underlying standard.

For most dApps, user experience wins. The practical answer for most teams: pick an account abstraction provider (Safe, ZeroDev, Biconomy) that already supports ERC-7579, use their SDK, and move on. You benefit from the improvements without having to understand the spec in detail.

Here's a simplified view of how session keys work as modules:

// A session key module might restrict:
// - Target contracts (only Uniswap router)
// - Function selectors (only swapExactTokens)
// - Max value per tx
// - Expiry timestamp
 
// User generates a session key, grants it to the module
// The module validates every UserOp against those rules
// If the tx matches the session, it executes without prompting the user

This is what makes DeFi apps feel like Web2. Users approve the session once, then trade freely until the session expires or the limit is hit.

What to Watch Before Adopting

ERC-7579 is relatively new. The spec settled in 2024 and tooling is catching up. A few things to check:

SDK support. If you're using a dApp kit or wallet infrastructure SDK, verify it supports ERC-7579. Many still default to ERC-4337 native. This is improving fast, but check before committing.

Module auditing. Modules are code that runs with the authority of your smart account. A buggy or malicious module can drain funds. Use modules from audited, established sources. Don't deploy your own validation module without a professional audit.

Bundler compatibility. Not all bundlers support ERC-7579 yet. Multi-provider setups can fall back to ERC-4337, but you want to verify your chosen providers support the standard before shipping.

Account migration. If you're already running ERC-4337 smart accounts for your users, migration to ERC-7579 may be possible but plan it carefully. Some account providers have migration utilities; others require redeployment.

Should You Care Right Now

If you're building a consumer-facing dApp and you want good UX without managing your own wallet infrastructure, ERC-7579 is worth knowing. It sits below the level where most developers interact with it directly SDKs abstract the complexity. But understanding the module model helps when you're debugging user issues, evaluating wallet providers, or deciding which infrastructure to build on.

If you're building wallet infrastructure or smart account tooling, ERC-7579 is the target. The minimal interface is designed to be implemented once and support everything.

The timeline is roughly: adoption growing through 2025, becoming the default for new smart account deployments by 2026. That's a rough estimate Ethereum development moves fast in both directions.

Sources

  • ERC-7579: Minimal Modular Smart Accounts (EIP)
  • Account Abstraction Ecosystem Dashboard
  • Safe Protocol ERC-7579 Module Support
  • Kernel by zerodev ERC-7579 Reference
DR

Dian Rijal Asyrof

Writes about useful AI tools, programming practice, and the craft of building reliable software.

Previous articleTypeScript Conditional and Mapped Types: A Practical GuideNext articleError Budgets for Small Engineering Teams: When to Slow Down and When to Ship
Web3EthereumSmart ContractsAccount AbstractionErc 7579
On this page↓
  1. The Problem With ERC-4337
  2. What ERC-7579 Actually Is
  3. Why This Matters for Developers
  4. The Module System in Practice
  5. The Real Tradeoffs
  6. What to Watch Before Adopting
  7. Should You Care Right Now
  8. Sources

On this page

  1. The Problem With ERC-4337
  2. What ERC-7579 Actually Is
  3. Why This Matters for Developers
  4. The Module System in Practice
  5. The Real Tradeoffs
  6. What to Watch Before Adopting
  7. Should You Care Right Now
  8. Sources

See also

Illustration for Ethereum Clear Signing: Safer Transaction Approvals Start With Readable Wallets
Web3/Jun 30, 2026

Ethereum Clear Signing: Safer Transaction Approvals Start With Readable Wallets

Ethereum clear signing explained for users and builders: why blind signing is risky, what wallets should show, and what to check before approving transactions.

6 min read
EthereumWallet Security
Illustration for Smart Contract Allowances Explained: The Approval Mistake That Drains Wallets
Web3/Jun 29, 2026

Smart Contract Allowances Explained: The Approval Mistake That Drains Wallets

Smart contract allowances explained for crypto users and Web3 builders, including approvals, unlimited spending, revoke tools, and safer wallet habits.

4 min read
Smart ContractsAllowances
Illustration for Ethereum Layer 2 Rollups Explained for Developers Who Just Want Lower Fees
Web3/Jun 28, 2026

Ethereum Layer 2 Rollups Explained for Developers Who Just Want Lower Fees

Ethereum layer 2 rollups explained for developers, including optimistic rollups, ZK rollups, bridges, finality, and what to check before deploying.

3 min read
EthereumLayer 2