Currently, there are two main types of wallets on Ethereum: EOA (Externally Owned Account) and SCW (Smart Contract Wallet). However, each of them faces issues with low execution efficiency and the inability to initiate transactions independently. After multiple explorations, Ethereum developers have found the optimal solution at this stage, which is the implementation of account abstraction through ERC4337.
The ERC4337 wallet implements the separation of private keys and account entities through Bundler, enabling batch processing of transactions and the ability to initiate transactions proactively.
Additionally, the built-in code of the smart contract wallet allows for automated transaction processing based on external information.
However, this proposal still faces challenges from other solutions such as protocol-level account abstraction and native account abstraction wallets. Furthermore, the ERC4337 entry contract was only launched on the Ethereum mainnet in March of this year, so many issues are yet to be explored, and there is significant uncertainty regarding the final solution. Lastly, due to the single-point nature of the Entry Point contract, ERC4337 is heavily restricted in terms of upgrades.
To address these issues, the developers of ERC4337 have also supplemented the EIP proposal to optimize it without modifying the entry contract. For the case of incompatibility between Dapps in the EOA era and ERC4337, supporters of ERC4337 have independently created numerous wallet projects and Dapp projects focused on the interaction with ERC4337 wallets. These projects provide various interactions that EOA accounts can enjoy in the original DeFi and SocialFi ecosystems, while also improving operability.
Overall, ERC4337 remains the optimal solution for implementing account abstraction at the current stage. Through the compensatory contract of Paymaster, it reduces the barriers for users to participate in Defi. Project owners can offer 0gas or low gas transactions to attract more user participation. By bundling and batch processing transactions, it greatly improves the user experience in Socialfi and Gamefi, providing participants in Socialfi and Gamefi with more diverse interaction options.
The trade-off between decentralization and convenience has always been a major challenge for crypto participants. Embracing decentralization requires sacrificing the convenience of web2 operations, replacing simple button clicks with processes like managing mnemonic phrases, signing with private keys, and setting nonce values. On the other hand, pursuing convenience exposes the importance of account ownership, as witnessed by the collapses of centralized institutions like FTX and JPEX. To address this issue, Ethereum developers have made various attempts to make web3 accounts as convenient as web2 accounts through the concept of account abstraction. Among these attempts, the ERC4337 standard has gained significant consensus among developers, as highlighted by Ethereum founder Vitalik Buterin at this year’s ETHCC conference.
ERC4337 involves three objects, UserOperation, Bundler, and on-chain contracts, in the process of separating control and ownership from the account entity. UserOperation primarily includes user input, Bundler completes the packaging and triggering of transactions, and the on-chain contracts consist of Entry Point, Paymaster Contract, and Wallet Contract, which mainly implement complex validation and execution logic.
Image source:Kernel Ventures
The main difference between ERC4337 wallets and EOA wallets is that in ERC4337 wallets, the sender can be specified, whereas in EOA wallets, the ECDSA recovery address is the default signer. As a result, ERC4337 wallets achieve a separation of account ownership and control. Next, the paymasterAndData parameter has been added in ERC4337 to set the specific information of the paymaster contract. We will explain the specific function of the paymaster contract later on.
Overall, in this process, the user first sends a UserOperation to Bundler with user-defined parameters. If the paymasterAndData parameter is present, the paymaster contract will be called to pay for the gas fee. If the initCode parameter is present, the user will create a new smart contract wallet based on the code logic inside it. Finally, in order to reduce the gas consumption during the verification process, ERC4337 adopts the method of batch packing transactions. The Signature Aggregator is used to pack the same type of UserOperations into an aggregate signature for verification only once. After both the off-chain Bundler’s simulated verification and the on-chain actual verification pass, the smart contract wallet successfully executes the user’s custom functionality in the UserOperation and returns the excess gas to Bundler as a reward.
Image source: Kernel Ventures
Compared to using an EOA (Externally Owned Account) to initiate a transaction, it is much simpler. With an EOA, you only need to sign the transaction data with the account’s private key and broadcast it to the network. The broadcasted transaction will be validated by nodes, and then selected by the POS mechanism to be recorded on the blockchain by the chosen node with accounting rights. This process is straightforward, with minimal gas consumption and no intermediaries like Bundler and Entry Point contracts. It also offers security solely based on the ECDSA encryption algorithm, without the inherent security risks of complex contract logic. However, in this process, the private key and account control are tightly coupled and cannot be changed. Each transaction needs to be individually signed and verified, without the ability for automated processing.
Image source: Kernel Ventures
In summary, ERC4337 achieves the separation of private keys and account ownership, reduces gas consumption in complex transaction processes through batch processing, eliminates the Ethereum balance access threshold with the use of paymaster contracts, and enables various signing methods and customized account functionality through smart contract wallets. These improvements greatly enhance the convenience and versatility of web3 accounts.
In summary, to abstract accounts on Ethereum, while ERC4337 is the most widely recognized option, it is not the only one.
Higher fixed gas cost: The gas consumption for basic operations in the ERC4337 wallet is 42000 gas, which is twice that of a regular EOA account. The specific reasons are as follows:
Image Source: Kernel Ventures
It can be seen that the introduction of smart contracts has resulted in significant gas consumption during the execution of contract businesses (unpacking UserOperation, performing conditional validations, on-chain hashing, etc.), as well as triggering events and publishing logs on the Ethereum network. At the same time, the transaction batching proposed in ERC4337 to reduce transaction costs has proven to be impractical in actual transactions. Most users do not need to pack a large number of transactions in a single call, and the advantage of ERC4337 batch transactions can only be utilized in rare scenarios such as project airdrops. Additionally, if the UserOperation, which was originally intended to distribute transaction costs, fails to execute on the chain, it can result in higher losses for wallet accounts or Bundlers.
High upgrade cost: In the Entry Point smart contract, the entryPoint() function can be used to return a parameter that complies with the IEntryPoint interface. In the Wallet Contract, this parameter can be used to determine whether external transactions come from function calls in the entryPoint contract. However, this requires hardcoding the address of the EntryPoint in each generated smart contract account. If an upgrade to the EntryPoint contract is needed, it would require the agreement of all smart contract account holders. When ERC4337 is widely adopted, the difficulty of making this change will be comparable to changing the consensus layer. Therefore, the deployment of ERC4337 must be done with great caution and undergo thorough security audits. Additionally, optimizing performance in the future will also be a challenging task.
Traditional wallet giants are cautious:
According to ChainCatcher news, Alex Jupiter, the Product Manager of MetaMask, stated in an interview with Decrypt that although various technologies such as account abstraction and EOA were mentioned multiple times during EthCC, MetaMask will carefully adopt these technologies.
As a traditional wallet provider, MetaMask facilitates the creation of EOA accounts for users and charges fees by offering decentralized swap services. Most established wallet giants, which have already established stable profit models, are reluctant to take risks and make changes. Currently, they are also adopting a cautious approach towards account abstraction, actively exploring but maintaining a cautious attitude towards implementation.
The cost of updating Dapps
Existing Dapps on Ethereum, including Opensea, Uniswap, MetaMask Swap, etc., all default to serving EOA accounts. In order to make these Dapps fully compatible with ERC4337 wallets, changes need to be made to the Dapp’s interaction and auditing mechanisms, as well as the token staking mechanism. To achieve this change, the smart contract code of mainstream Dapps needs to be modified, which may introduce security risks and incur significant update costs. Additionally, considering the resistance to contract accounts caused by previous Tornado contracts, the workload of this update will be even greater.
In cross-chain bridges between Ethereum and Layer2 networks, it is common for the receiving network to expect the payment to be sent from the same address as the one on the sending network. This is not an issue with traditional EOA (Externally Owned Account) wallets, as they can control both addresses with the same private key through signing. However, in ERC4337 wallets, the address initiating the transfer is a contract address and not controlled by a private key, which means that setting the receiving address to be the same as the sending network is not possible. As a result, there is almost always an incompatibility issue between ERC4337 wallets and most cross-chain bridges between Ethereum Layer1 and Layer2 networks.
Image source:Dune
Image source: Kernel Ventures
In order to separate the account subject from the account control in ERC4337, Bundler was introduced. Any EOA account that holds a certain amount of ETH can act as a Bundler. Compared to traditional mining under the POW mechanism, this new mining method requires almost zero investment and also avoids potential legal risks. In contrast to staking mining under the POS mechanism, Bundlers have a very low entry barrier and do not require staking 32 ETH, only the gas needed for interaction with the Entry Point contract. The fundamental reason for this difference is that the difficulty of malicious behavior by Bundlers is much higher than that of validating nodes, and the profit from malicious behavior is much smaller than that of validating nodes. Therefore, there is no need to stake a large amount of ETH to ensure the overall balance of rewards and punishments in the ERC4337 protocol. Finally, compared to the staking rewards in liquidity pools, Bundlers have a shorter lock-up period, which provides higher liquidity for assets. When ETH faces significant selling pressure, users can withdraw their assets promptly to reduce losses. Given these advantages, Bundlers are likely to become a new investment method on Ethereum and may further evolve into Bundler pools similar to Bitcoin mining pools or ETH staking pools. They offer low costs, stable returns, and high liquidity.
Image source: Kernel Ventures
Intent centric refers to a user-centric approach where users do not need to understand the specific execution steps but rather rely on underlying modules to automatically perform modularized actions based on their intentions. For new investors entering the web3 space, the complexity of tasks such as signing transactions and setting gas limits often discourages them from fully embracing crypto, leading them to rely on centralized exchanges (CEX) instead of fully immersing themselves in the web3 world. This discrepancy in user experience between decentralized exchanges (DEX) and CEX arises from the difference in operational intent. In DEX, users need to manually select the most optimal trading pool, sign authorizations, and confirm transactions, which involves multiple individual actions corresponding to underlying behaviors. On the other hand, CEX operates based on intent-driven actions. To achieve the intention of exchanging USDT for ETH in the most favorable way, for example, a user only needs to place a market order without specifying the specific order price. Most users simply desire a modularized process that fulfills their intentions without the need to comprehend the underlying operations. Although some argue that understanding the process can help identify potential issues within the modularized flow, the majority of users prefer a streamlined process tailored to their intentions, as opposed to understanding the specific actions behind it. Additionally, manually conducted processes carry a higher risk compared to well-established modularized flows. Prior to the advent of ERC4337 account abstraction, the efficiency of EOA accounts was hindered by the need to individually sign and confirm each transaction, which impeded the development of intent-centric applications on the Ethereum network. With ERC4337, the introduction of UserOperation and Bundler enables transactions to be sent to alternative mempools and aggregated with other UserOperations, waiting for Bundlers to bundle and submit them to the entry contract for validation and execution. In this process, users only need to declare or sign their preferences, while the specific actions are chosen and executed by Bundlers based on existing consensus or contract logic, eliminating the need for users to participate in the specific process. In DApps, we can design intent-centric logic, where users can simply sign their intentions to achieve specific goals without the need to manually select and sign individual transactions. It is foreseeable that with the widespread adoption of ERC4337, intent-centric DApps will become more prevalent on the Ethereum network, significantly reducing the entry barriers to web3.
Defi, closely integrated with EOA accounts during the last bull market, has improved the diversity of on-chain interaction for crypto investors, offering various financial services such as staking, liquidity provision, and lending, ultimately leading to the rise of Defi Summer. However, the complex transaction process and on-chain fees pose a significant barrier for ordinary users to participate, hindering the further adoption of Defi. When combined with ERC4337 wallets, Defi can provide an intent-centric interaction approach, allowing users to experience a user-friendly interface similar to centralized exchanges (CEX). Additionally, through the Paymaster feature in ERC4337, gasless transactions can be achieved, enabling certain operators to reduce the entry barrier for Defi and attract more participants. However, unlike sectors such as Socialfi and Gamefi, Defi involves a large number of token transfers and staking, which requires high security standards. The contract layer of account abstraction introduces complexity, making it prone to security vulnerabilities that could result in the loss of user funds. Furthermore, since the US government issued a ban on many privacy-focused contracts such as Tornado, many Defi platforms strictly scrutinize or even suspend interactions with these smart contracts. As a result, there are significant incompatibilities between smart contract wallets and existing Defi systems. In the process of interacting with Defi contracts, there is even a possibility of being wrongly blacklisted. These factors present challenges for the widespread adoption of ERC4337 wallets in the Defi space.
Different from the “semi on-chain” games in early gamefi, which only processed game assets and items on the chain to ensure their security, fully on-chain games write the core logic and economic model of the game into blockchain smart contracts, enabling game interactions on-chain and achieving full decentralization and high security. However, the current web3 games have paid a significant price to achieve fully on-chain functionality. One major challenge is the skyrocketing gas fees. Every interaction in a fully on-chain game, including game mechanics, in-game items, and scenes, needs to be recorded on the blockchain, resulting in increased costs. To address this issue, the interaction logic of current fully on-chain games is often simplified, limiting the user’s gaming experience. Additionally, when using traditional EOA accounts, the interaction process in fully on-chain games requires cumbersome signature verification, with users needing to confirm each interaction individually, significantly reducing the gaming experience. The introduction of account abstraction addresses these challenges. It greatly reduces transaction costs, with transaction confirmation only requiring BLS aggregate signatures and one verification step, saving gas consumption in cryptographic verification processes. Furthermore, batched transactions eliminate the need for repeated confirmations in the previous process. The introduction of personalized smart contract accounts enables modular construction in fully on-chain games, improving development efficiency. However, so far, the combination of account abstraction and fully on-chain games is mainly seen on Layer2 solutions such as StarkNet, with projects like Loot Realms and Cartridge. This is not due to Ethereum being unsuitable for combining fully on-chain games with ERC4337 wallets, but because the Entry Point contract was only deployed on the Ethereum mainnet in March of this year. As a result, most ERC4337-based fully on-chain games on Ethereum are still under development. It is foreseeable that there will be many ERC4337-based fully on-chain games launching on Ethereum in the near future, greatly enhancing the interactive experience and reducing interaction costs. Existing large-scale fully on-chain games on Ethereum, such as Dark Forest and Wolf Games, may also consider making changes to the contract layer to be compatible with ERC4337 account interactions.
Trapped in the bundling mechanism of private key accounts and limited interaction capabilities of EOA accounts, Socialfi has long faced issues with high entry barriers and difficult account management. The introduction of account abstraction will completely change this situation, but the trade-off between convenience, recoverability, and security needs to be weighed based on the specific importance of web3 accounts in Socialfi. Firstly, the separation of private keys and account control eliminates the need for users to manage complex and unordered private keys or mnemonic phrases, while allowing for dynamic adjustment of account passwords. For example, the Ambire project, launched at the end of 2021, achieved web3 account creation and private key recovery through email. Secondly, the batch processing of transactions provided by ERC4337 solves the web3 barrier issue raised at the beginning of this article. Just as a button can solve a problem in web2, it can also be solved with a button in web3. Finally, the introduction of custom code logic in ERC4337 accounts is more in line with the personalized design of web2 accounts, allowing each Socialfi account to introduce different account functionalities according to their preferences, similar to the option of opening or not opening channel functionality in QQ based on user preferences.
As of the time of writing, the number of web3 users is approximately around 300 million, accounting for only about 4% of the global population of 6 billion internet users. There is still significant room for growth compared to the total number of internet users. In order for web3 to catch up with the scale of web2 and surpass the milestone of 1 billion users, lower entry barriers and more customizable account functionalities are prerequisites. Among all the options to achieve this goal, ERC4337 stands out as a relatively low-risk solution with a mature framework, and it has received recognition from the Ethereum Foundation and key developers. Since the deployment of the Entry Point contract on Ethereum, the number of users adopting Account Abstraction has experienced explosive growth.
Image source: Dune
Although ERC4337 has gained widespread recognition and support from the Ethereum community, it still faces several challenges in its practical implementation. Firstly, there is uncertainty around the final form of ERC4377 due to pending proposals, which poses obstacles to the development of the ERC4377 ecosystem. Secondly, there are high costs associated with updating ERC4377. Deploying the entry point contract requires the majority of wallets in the network to adopt the new standard, which can be a costly and time-consuming process. Lastly, there is an issue of compatibility with existing Dapps and cross-chain bridges. Achieving widespread adoption of ERC4337 would require extensive upgrades to existing Ethereum Dapps, which come with significant security risks and costs.
However, ERC4377 has actively addressed these challenges. For example, by adding external smart contracts, the bundler’s efficiency can be improved. Additional opcodes can enhance the permissions of smart contract accounts. Supplementary EIP proposals aim to resolve the difficulty of upgrading the entry point contract. Furthermore, in response to the compatibility issue with traditional Dapps, ERC4337 has built its own ecosystem, promoting the wider application of account abstraction wallets on the Ethereum network. The comprehensive implementation of ERC4337 wallets enables evm intent-centric at the Ethereum Virtual Machine (EVM) level, which can further abstract operations in Dapps, making them as user-intent-oriented and user-friendly as web2 applications. If intent-centric functionality can be fully realized in Ethereum Dapps, it will greatly enhance the user experience and attract more users from outside the crypto community to participate. However, the growth of sectors like Defi, which involve direct token transfers, may be more conservative due to the stricter security requirements. On the other hand, sectors like Socialfi and Gamefi prioritize user experience over security concerns. Previously, due to the limitations of EOA accounts, complex interaction design was not possible. With ERC4337, these sectors can overcome the barriers of high user entry requirements and poor user experience, leading to significant user growth and potentially serving as a major catalyst in the next crypto bull market.
Kernel Ventures is a crypto venture capital fund driven by research and development communities, with over 70 early-stage investments, focusing on infrastructure, middleware, dApps, especially ZK, Rollup, DEX, modular blockchains, and vertical areas that will onboard billions of future crypto users, such as account abstraction, data availability, scalability, etc. Over the past seven years, we have been committed to supporting the development of core development communities and university blockchain associations around the world.
Currently, there are two main types of wallets on Ethereum: EOA (Externally Owned Account) and SCW (Smart Contract Wallet). However, each of them faces issues with low execution efficiency and the inability to initiate transactions independently. After multiple explorations, Ethereum developers have found the optimal solution at this stage, which is the implementation of account abstraction through ERC4337.
The ERC4337 wallet implements the separation of private keys and account entities through Bundler, enabling batch processing of transactions and the ability to initiate transactions proactively.
Additionally, the built-in code of the smart contract wallet allows for automated transaction processing based on external information.
However, this proposal still faces challenges from other solutions such as protocol-level account abstraction and native account abstraction wallets. Furthermore, the ERC4337 entry contract was only launched on the Ethereum mainnet in March of this year, so many issues are yet to be explored, and there is significant uncertainty regarding the final solution. Lastly, due to the single-point nature of the Entry Point contract, ERC4337 is heavily restricted in terms of upgrades.
To address these issues, the developers of ERC4337 have also supplemented the EIP proposal to optimize it without modifying the entry contract. For the case of incompatibility between Dapps in the EOA era and ERC4337, supporters of ERC4337 have independently created numerous wallet projects and Dapp projects focused on the interaction with ERC4337 wallets. These projects provide various interactions that EOA accounts can enjoy in the original DeFi and SocialFi ecosystems, while also improving operability.
Overall, ERC4337 remains the optimal solution for implementing account abstraction at the current stage. Through the compensatory contract of Paymaster, it reduces the barriers for users to participate in Defi. Project owners can offer 0gas or low gas transactions to attract more user participation. By bundling and batch processing transactions, it greatly improves the user experience in Socialfi and Gamefi, providing participants in Socialfi and Gamefi with more diverse interaction options.
The trade-off between decentralization and convenience has always been a major challenge for crypto participants. Embracing decentralization requires sacrificing the convenience of web2 operations, replacing simple button clicks with processes like managing mnemonic phrases, signing with private keys, and setting nonce values. On the other hand, pursuing convenience exposes the importance of account ownership, as witnessed by the collapses of centralized institutions like FTX and JPEX. To address this issue, Ethereum developers have made various attempts to make web3 accounts as convenient as web2 accounts through the concept of account abstraction. Among these attempts, the ERC4337 standard has gained significant consensus among developers, as highlighted by Ethereum founder Vitalik Buterin at this year’s ETHCC conference.
ERC4337 involves three objects, UserOperation, Bundler, and on-chain contracts, in the process of separating control and ownership from the account entity. UserOperation primarily includes user input, Bundler completes the packaging and triggering of transactions, and the on-chain contracts consist of Entry Point, Paymaster Contract, and Wallet Contract, which mainly implement complex validation and execution logic.
Image source:Kernel Ventures
The main difference between ERC4337 wallets and EOA wallets is that in ERC4337 wallets, the sender can be specified, whereas in EOA wallets, the ECDSA recovery address is the default signer. As a result, ERC4337 wallets achieve a separation of account ownership and control. Next, the paymasterAndData parameter has been added in ERC4337 to set the specific information of the paymaster contract. We will explain the specific function of the paymaster contract later on.
Overall, in this process, the user first sends a UserOperation to Bundler with user-defined parameters. If the paymasterAndData parameter is present, the paymaster contract will be called to pay for the gas fee. If the initCode parameter is present, the user will create a new smart contract wallet based on the code logic inside it. Finally, in order to reduce the gas consumption during the verification process, ERC4337 adopts the method of batch packing transactions. The Signature Aggregator is used to pack the same type of UserOperations into an aggregate signature for verification only once. After both the off-chain Bundler’s simulated verification and the on-chain actual verification pass, the smart contract wallet successfully executes the user’s custom functionality in the UserOperation and returns the excess gas to Bundler as a reward.
Image source: Kernel Ventures
Compared to using an EOA (Externally Owned Account) to initiate a transaction, it is much simpler. With an EOA, you only need to sign the transaction data with the account’s private key and broadcast it to the network. The broadcasted transaction will be validated by nodes, and then selected by the POS mechanism to be recorded on the blockchain by the chosen node with accounting rights. This process is straightforward, with minimal gas consumption and no intermediaries like Bundler and Entry Point contracts. It also offers security solely based on the ECDSA encryption algorithm, without the inherent security risks of complex contract logic. However, in this process, the private key and account control are tightly coupled and cannot be changed. Each transaction needs to be individually signed and verified, without the ability for automated processing.
Image source: Kernel Ventures
In summary, ERC4337 achieves the separation of private keys and account ownership, reduces gas consumption in complex transaction processes through batch processing, eliminates the Ethereum balance access threshold with the use of paymaster contracts, and enables various signing methods and customized account functionality through smart contract wallets. These improvements greatly enhance the convenience and versatility of web3 accounts.
In summary, to abstract accounts on Ethereum, while ERC4337 is the most widely recognized option, it is not the only one.
Higher fixed gas cost: The gas consumption for basic operations in the ERC4337 wallet is 42000 gas, which is twice that of a regular EOA account. The specific reasons are as follows:
Image Source: Kernel Ventures
It can be seen that the introduction of smart contracts has resulted in significant gas consumption during the execution of contract businesses (unpacking UserOperation, performing conditional validations, on-chain hashing, etc.), as well as triggering events and publishing logs on the Ethereum network. At the same time, the transaction batching proposed in ERC4337 to reduce transaction costs has proven to be impractical in actual transactions. Most users do not need to pack a large number of transactions in a single call, and the advantage of ERC4337 batch transactions can only be utilized in rare scenarios such as project airdrops. Additionally, if the UserOperation, which was originally intended to distribute transaction costs, fails to execute on the chain, it can result in higher losses for wallet accounts or Bundlers.
High upgrade cost: In the Entry Point smart contract, the entryPoint() function can be used to return a parameter that complies with the IEntryPoint interface. In the Wallet Contract, this parameter can be used to determine whether external transactions come from function calls in the entryPoint contract. However, this requires hardcoding the address of the EntryPoint in each generated smart contract account. If an upgrade to the EntryPoint contract is needed, it would require the agreement of all smart contract account holders. When ERC4337 is widely adopted, the difficulty of making this change will be comparable to changing the consensus layer. Therefore, the deployment of ERC4337 must be done with great caution and undergo thorough security audits. Additionally, optimizing performance in the future will also be a challenging task.
Traditional wallet giants are cautious:
According to ChainCatcher news, Alex Jupiter, the Product Manager of MetaMask, stated in an interview with Decrypt that although various technologies such as account abstraction and EOA were mentioned multiple times during EthCC, MetaMask will carefully adopt these technologies.
As a traditional wallet provider, MetaMask facilitates the creation of EOA accounts for users and charges fees by offering decentralized swap services. Most established wallet giants, which have already established stable profit models, are reluctant to take risks and make changes. Currently, they are also adopting a cautious approach towards account abstraction, actively exploring but maintaining a cautious attitude towards implementation.
The cost of updating Dapps
Existing Dapps on Ethereum, including Opensea, Uniswap, MetaMask Swap, etc., all default to serving EOA accounts. In order to make these Dapps fully compatible with ERC4337 wallets, changes need to be made to the Dapp’s interaction and auditing mechanisms, as well as the token staking mechanism. To achieve this change, the smart contract code of mainstream Dapps needs to be modified, which may introduce security risks and incur significant update costs. Additionally, considering the resistance to contract accounts caused by previous Tornado contracts, the workload of this update will be even greater.
In cross-chain bridges between Ethereum and Layer2 networks, it is common for the receiving network to expect the payment to be sent from the same address as the one on the sending network. This is not an issue with traditional EOA (Externally Owned Account) wallets, as they can control both addresses with the same private key through signing. However, in ERC4337 wallets, the address initiating the transfer is a contract address and not controlled by a private key, which means that setting the receiving address to be the same as the sending network is not possible. As a result, there is almost always an incompatibility issue between ERC4337 wallets and most cross-chain bridges between Ethereum Layer1 and Layer2 networks.
Image source:Dune
Image source: Kernel Ventures
In order to separate the account subject from the account control in ERC4337, Bundler was introduced. Any EOA account that holds a certain amount of ETH can act as a Bundler. Compared to traditional mining under the POW mechanism, this new mining method requires almost zero investment and also avoids potential legal risks. In contrast to staking mining under the POS mechanism, Bundlers have a very low entry barrier and do not require staking 32 ETH, only the gas needed for interaction with the Entry Point contract. The fundamental reason for this difference is that the difficulty of malicious behavior by Bundlers is much higher than that of validating nodes, and the profit from malicious behavior is much smaller than that of validating nodes. Therefore, there is no need to stake a large amount of ETH to ensure the overall balance of rewards and punishments in the ERC4337 protocol. Finally, compared to the staking rewards in liquidity pools, Bundlers have a shorter lock-up period, which provides higher liquidity for assets. When ETH faces significant selling pressure, users can withdraw their assets promptly to reduce losses. Given these advantages, Bundlers are likely to become a new investment method on Ethereum and may further evolve into Bundler pools similar to Bitcoin mining pools or ETH staking pools. They offer low costs, stable returns, and high liquidity.
Image source: Kernel Ventures
Intent centric refers to a user-centric approach where users do not need to understand the specific execution steps but rather rely on underlying modules to automatically perform modularized actions based on their intentions. For new investors entering the web3 space, the complexity of tasks such as signing transactions and setting gas limits often discourages them from fully embracing crypto, leading them to rely on centralized exchanges (CEX) instead of fully immersing themselves in the web3 world. This discrepancy in user experience between decentralized exchanges (DEX) and CEX arises from the difference in operational intent. In DEX, users need to manually select the most optimal trading pool, sign authorizations, and confirm transactions, which involves multiple individual actions corresponding to underlying behaviors. On the other hand, CEX operates based on intent-driven actions. To achieve the intention of exchanging USDT for ETH in the most favorable way, for example, a user only needs to place a market order without specifying the specific order price. Most users simply desire a modularized process that fulfills their intentions without the need to comprehend the underlying operations. Although some argue that understanding the process can help identify potential issues within the modularized flow, the majority of users prefer a streamlined process tailored to their intentions, as opposed to understanding the specific actions behind it. Additionally, manually conducted processes carry a higher risk compared to well-established modularized flows. Prior to the advent of ERC4337 account abstraction, the efficiency of EOA accounts was hindered by the need to individually sign and confirm each transaction, which impeded the development of intent-centric applications on the Ethereum network. With ERC4337, the introduction of UserOperation and Bundler enables transactions to be sent to alternative mempools and aggregated with other UserOperations, waiting for Bundlers to bundle and submit them to the entry contract for validation and execution. In this process, users only need to declare or sign their preferences, while the specific actions are chosen and executed by Bundlers based on existing consensus or contract logic, eliminating the need for users to participate in the specific process. In DApps, we can design intent-centric logic, where users can simply sign their intentions to achieve specific goals without the need to manually select and sign individual transactions. It is foreseeable that with the widespread adoption of ERC4337, intent-centric DApps will become more prevalent on the Ethereum network, significantly reducing the entry barriers to web3.
Defi, closely integrated with EOA accounts during the last bull market, has improved the diversity of on-chain interaction for crypto investors, offering various financial services such as staking, liquidity provision, and lending, ultimately leading to the rise of Defi Summer. However, the complex transaction process and on-chain fees pose a significant barrier for ordinary users to participate, hindering the further adoption of Defi. When combined with ERC4337 wallets, Defi can provide an intent-centric interaction approach, allowing users to experience a user-friendly interface similar to centralized exchanges (CEX). Additionally, through the Paymaster feature in ERC4337, gasless transactions can be achieved, enabling certain operators to reduce the entry barrier for Defi and attract more participants. However, unlike sectors such as Socialfi and Gamefi, Defi involves a large number of token transfers and staking, which requires high security standards. The contract layer of account abstraction introduces complexity, making it prone to security vulnerabilities that could result in the loss of user funds. Furthermore, since the US government issued a ban on many privacy-focused contracts such as Tornado, many Defi platforms strictly scrutinize or even suspend interactions with these smart contracts. As a result, there are significant incompatibilities between smart contract wallets and existing Defi systems. In the process of interacting with Defi contracts, there is even a possibility of being wrongly blacklisted. These factors present challenges for the widespread adoption of ERC4337 wallets in the Defi space.
Different from the “semi on-chain” games in early gamefi, which only processed game assets and items on the chain to ensure their security, fully on-chain games write the core logic and economic model of the game into blockchain smart contracts, enabling game interactions on-chain and achieving full decentralization and high security. However, the current web3 games have paid a significant price to achieve fully on-chain functionality. One major challenge is the skyrocketing gas fees. Every interaction in a fully on-chain game, including game mechanics, in-game items, and scenes, needs to be recorded on the blockchain, resulting in increased costs. To address this issue, the interaction logic of current fully on-chain games is often simplified, limiting the user’s gaming experience. Additionally, when using traditional EOA accounts, the interaction process in fully on-chain games requires cumbersome signature verification, with users needing to confirm each interaction individually, significantly reducing the gaming experience. The introduction of account abstraction addresses these challenges. It greatly reduces transaction costs, with transaction confirmation only requiring BLS aggregate signatures and one verification step, saving gas consumption in cryptographic verification processes. Furthermore, batched transactions eliminate the need for repeated confirmations in the previous process. The introduction of personalized smart contract accounts enables modular construction in fully on-chain games, improving development efficiency. However, so far, the combination of account abstraction and fully on-chain games is mainly seen on Layer2 solutions such as StarkNet, with projects like Loot Realms and Cartridge. This is not due to Ethereum being unsuitable for combining fully on-chain games with ERC4337 wallets, but because the Entry Point contract was only deployed on the Ethereum mainnet in March of this year. As a result, most ERC4337-based fully on-chain games on Ethereum are still under development. It is foreseeable that there will be many ERC4337-based fully on-chain games launching on Ethereum in the near future, greatly enhancing the interactive experience and reducing interaction costs. Existing large-scale fully on-chain games on Ethereum, such as Dark Forest and Wolf Games, may also consider making changes to the contract layer to be compatible with ERC4337 account interactions.
Trapped in the bundling mechanism of private key accounts and limited interaction capabilities of EOA accounts, Socialfi has long faced issues with high entry barriers and difficult account management. The introduction of account abstraction will completely change this situation, but the trade-off between convenience, recoverability, and security needs to be weighed based on the specific importance of web3 accounts in Socialfi. Firstly, the separation of private keys and account control eliminates the need for users to manage complex and unordered private keys or mnemonic phrases, while allowing for dynamic adjustment of account passwords. For example, the Ambire project, launched at the end of 2021, achieved web3 account creation and private key recovery through email. Secondly, the batch processing of transactions provided by ERC4337 solves the web3 barrier issue raised at the beginning of this article. Just as a button can solve a problem in web2, it can also be solved with a button in web3. Finally, the introduction of custom code logic in ERC4337 accounts is more in line with the personalized design of web2 accounts, allowing each Socialfi account to introduce different account functionalities according to their preferences, similar to the option of opening or not opening channel functionality in QQ based on user preferences.
As of the time of writing, the number of web3 users is approximately around 300 million, accounting for only about 4% of the global population of 6 billion internet users. There is still significant room for growth compared to the total number of internet users. In order for web3 to catch up with the scale of web2 and surpass the milestone of 1 billion users, lower entry barriers and more customizable account functionalities are prerequisites. Among all the options to achieve this goal, ERC4337 stands out as a relatively low-risk solution with a mature framework, and it has received recognition from the Ethereum Foundation and key developers. Since the deployment of the Entry Point contract on Ethereum, the number of users adopting Account Abstraction has experienced explosive growth.
Image source: Dune
Although ERC4337 has gained widespread recognition and support from the Ethereum community, it still faces several challenges in its practical implementation. Firstly, there is uncertainty around the final form of ERC4377 due to pending proposals, which poses obstacles to the development of the ERC4377 ecosystem. Secondly, there are high costs associated with updating ERC4377. Deploying the entry point contract requires the majority of wallets in the network to adopt the new standard, which can be a costly and time-consuming process. Lastly, there is an issue of compatibility with existing Dapps and cross-chain bridges. Achieving widespread adoption of ERC4337 would require extensive upgrades to existing Ethereum Dapps, which come with significant security risks and costs.
However, ERC4377 has actively addressed these challenges. For example, by adding external smart contracts, the bundler’s efficiency can be improved. Additional opcodes can enhance the permissions of smart contract accounts. Supplementary EIP proposals aim to resolve the difficulty of upgrading the entry point contract. Furthermore, in response to the compatibility issue with traditional Dapps, ERC4337 has built its own ecosystem, promoting the wider application of account abstraction wallets on the Ethereum network. The comprehensive implementation of ERC4337 wallets enables evm intent-centric at the Ethereum Virtual Machine (EVM) level, which can further abstract operations in Dapps, making them as user-intent-oriented and user-friendly as web2 applications. If intent-centric functionality can be fully realized in Ethereum Dapps, it will greatly enhance the user experience and attract more users from outside the crypto community to participate. However, the growth of sectors like Defi, which involve direct token transfers, may be more conservative due to the stricter security requirements. On the other hand, sectors like Socialfi and Gamefi prioritize user experience over security concerns. Previously, due to the limitations of EOA accounts, complex interaction design was not possible. With ERC4337, these sectors can overcome the barriers of high user entry requirements and poor user experience, leading to significant user growth and potentially serving as a major catalyst in the next crypto bull market.
Kernel Ventures is a crypto venture capital fund driven by research and development communities, with over 70 early-stage investments, focusing on infrastructure, middleware, dApps, especially ZK, Rollup, DEX, modular blockchains, and vertical areas that will onboard billions of future crypto users, such as account abstraction, data availability, scalability, etc. Over the past seven years, we have been committed to supporting the development of core development communities and university blockchain associations around the world.