Network
Launch Date
Consensus
Note
Sepolia
Oct 2021
PoW
Like-for-like representation of Ethereum
Görli
Jan 2019
PoA
Proof-of-Authority
Kiln
Mar 2022
PoS
Post-Merge (for ETH2), shadow fork of the mainnet
Kintsugi
Dec 2021
PoS
DEPRECATED, use Kiln; post-Merge (for ETH2)
Ropsten
Nov 2016
PoW
DEPRECATED, use Sepolia; the Merge to happen on Jun 8, 2022
Rinkeby
Apr 2017
PoA
DEPRECATED, use Görli and Görli Faucet
Kovan
Mar 2017
PoA
DEPRECATED, use Sepolia or Görli
List of active and deprecated Ethereum testnets, including Kintsugi.
Features
Optimistic rollup 
ZK-rollup 
Proof
Uses fraud proofs to prove transaction validity. 
Uses validity (zero-knowledge) proofs to prove transaction validity. 
Capital efficiency
Requires waiting through a 1-week delay (dispute period) before withdrawing funds. 
Users can withdraw funds immediately because validity proofs provide incontrovertible evidence of the authenticity of off-chain transactions. 
Data compression
Publishes full transaction data as calldata to Ethereum Mainnet, which increases rollup costs. 
Doesn't need to publish transaction data on Ethereum because ZK-SNARKs and ZK-STARKs already guarantee the accuracy of the rollup state. 
EVM compatibility
Uses a simulation of the Ethereum Virtual Machine (EVM), which allows it to run arbitrary logic and support smart contracts. 
Doesn't widely support EVM computation, although a few EVM-compatible ZK-rollups have appeared. 
Rollup costs
Reduces costs since it publishes minimal data on Ethereum and doesn't have to post proofs for transactions, except in special circumstances. 
Faces higher overhead from costs involved in generating and verifying proofs for every transaction block. ZK proofs require specialized, expensive hardware to create and have high on-chain verification costs. 
Trust assumptions
Doesn't require a trusted setup. 
Requires a trusted setup to work. 
Liveness requirements
Verifiers are needed to keep tabs on the actual rollup state and the one referenced in the state root to detect fraud. 
Users don't need someone to watch the L2 chain to detect fraud. 
Security properties 
Relies on cryptoeconomic incentives to assure users of rollup security. 
Relies on cryptographic guarantees for security. 
Start building
on Alchemy.
Sign up for free
Start building on Optimism.
Sign up for free
Start building on Arbitrum.
Sign up for free
Start building on Ethereum.
Sign up for free
Start building on Polygon.
Sign up for free
Start building on Starknet.
Sign up for free
Start building on Flow.
Sign up for free
kiln faucet
Get free Kiln ETH.
Start building today
Goerli faucet
Get free Goerli ETH.
Start building today
SEPOLIA FAUCET
Get free Sepolia ETH.
Start Building Today
mumbai faucet
Get free Mumbai Matic.
Start building today
rinkeby faucet
Get free Rinkeby
ETH.
Start building today
Start building on Ethereum.
Get started for free
Start building on Ethereum.
Get started for free
Start building on Flow.
Get started for free
Start building on Polygon.
Get started for free
Start building on Starknet.
Get started for free
Start building on Optimism.
Get started for free
Start building on Solana.
Get started for free
Start building on Solana.
Sign up for beta access
Start building on Solana.
Join the waitlist
Arbitrum logo
Start building on Arbitrum.
Get started for free
Build with Alchemy's
Gas Manager & Bundler APIs
Learn
Solidity at
Alchemy
University
Get started today
Build with Alchemy's
Gas Manager & Bundler APIs
curl 
https://release.solana.com/v1.10.32/solana-install-init-x86_64-pc-windows-msvc.exe 
--output 
C:\solana-install-tmp\solana-install-init.exe 
--create-dirs
Account Abstraction
SMART CONTRACT WALLET BENEFITS

8 Amazing Benefits of Smart Contract Wallets vs. EOA Wallets

Discover the UX and Security Benefits of Wallets that Use Account Abstraction (ERC-4337)
Last Updated:
June 1, 2023
Table of Contents
Table of Contents
Table of Contents

{{aa-cta}}

Smart contract wallets that use ERC-4337 are web3 wallets that manage smart contract accounts, and they offer the simple user experience of conventional EOA (Externally-Owned Account) wallets, with additional functionality, flexibility, and security benefits.

What are the benefits of smart contract wallets?

Smart contract wallets leverage the programmability of smart contracts to increase their utility compared to EOA wallets. Although smart contract wallet transactions need to be initiated by EOA wallets, Account Abstraction infrastructure services like Bundlers, Paymasters, the EntryPoint contract, and Wallet SDKs make the process simpler for wallet developers and end users.

Some of the possible features enabled by smart contract wallets include:

  1. Two-factor authentication
  2. Social Recovery
  3. Flexible gas policies
  4. Custom Signature Schemes
  5. Multicall
  6. Spending Limits
  7. Allowlisting addresses
  8. Multi-sig wallet support

1. Two-factor Authentication

Smart contract wallets can offer two-factor authentication, which requires two different components to confirm a user’s identity, for example:

  • something the user knows, such as a password;
  • something the user has, such as a phone;
  • something the user is, such as a fingerprint.

This is a well-known web2 feature that provides an added layer of security and prevents unauthorized access.

2. Social Recovery

Smart contract wallets are programmable, and during social recovery the public key of a smart contract wallet is changed if the original private key was lost by the wallet owner. This is achieved through a multisig transaction with predefined trusted friends or relatives (known as guardians). This removes the need for the owner to store seed phrases.

3. Flexible Gas Policies

Smart contract wallets can create flexible gas policies using APIs that support ERC-4337's Paymaster specification. Being able to manage gas policies enables developers to sponsor transactions on behalf of users (i.e. gasless transactions) and allow users to pay for gas in any ERC-20 tokens (e.g. USDC).

Sponsoring Transactions

The transaction would contain a designated sponsor of the fee in its calldata. The Paymaster would check with the sponsor if it is willing to sponsor the transaction fee and, if so, proceed with the execution of the transaction.

Paying for Gas with Any ERC-20 Token

The Paymaster also allows for fee payment in currencies other than the blockchain's native token.

For example, if a wallet owns only an ERC-20 token like USDC and not the native token on Ethereum (ETH), the Paymaster would check if the USDC balance is enough to cover the fee. If the wallet has enough USDC, the Paymaster will pay for the transaction execution with ETH and accept the wallet's USDC as compensation.

4. Custom Signature Schemes

Smart contract wallets could easily be programmed to use a different signature scheme to the default ECDSA used in Ethereum. This default signature scheme could be substituted with multisig, social recovery, or even a quantum resistant option like Crystals-Kyber. 

5. Multicall

Multicall is the ability of a smart contract wallet to execute more than one action in a single atomic transaction. Multicall functionality improves the current wallet paradigm where every transaction is propagated and confirmed separately, resulting in longer processing time and poor user experience.

For example, if a user wants to trade a token on Uniswap, they must first click ‘approve’ and wait for the transaction to be confirmed. Afterwards, they must wait for the ‘swap’ transaction to be confirmed, and only then is the token exchange completed.

Smart contract wallets would allow these transactions to be batched into one atomic transaction.

6. Spending Limits for Different Signers

Smart contract wallets can be set to recognize more than one valid signer, which could be used to set different spending limits for different signers. For instance, a user could add both their laptop and Ledger hardware wallet as signers, allowing transactions of up to 0.05 ETH through their laptop, but requiring that the hardware wallet be used for larger transactions.

7. Allowlisted and Denylisted Addresses

Smart contract wallets allow users to grant or deny one or more wallet addresses access to their account. Allowlisting enables the user to grant access, while denylisting accounts would block or deny accounts access. Both of these features improve security and give users additional control over their account. 

8. Multi-sig Wallet Support

The multi-sig support feature of smart contract wallets is particularly important for organizations, which often require more than one approval before a transaction can be executed. Multi-sig wallet support increases the security of transactions by requiring multiple people to authorize them, which makes it hard for a single person to steal funds or execute unauthorized transactions. 

What are the disadvantages of smart contract wallets?

Some of the main drawbacks of smart contract wallets are: higher gas costs, potential code issues, and the current lack of support by most web3 platforms.

1. Higher Gas Costs

Smart contract wallets are controlled by smart contract code, and it’s necessary to pay for the computational resources required to execute this code. Executing smart contract wallet transactions are more expensive than operating an EOA wallet, especially if there are additional features that require complex smart contract code to run.

2. Potential Code Issues

Smart contract wallets are code-based, which means they face many of the same auditing, security, and bug issues as an average software product. Because smart contract wallets are new, users adopting SC wallets should evaluate the team, wallet design, and code security of new ERC-4337-compliant wallets.

3. Lack of Support

Smart contract wallets are still in their early phase and are only supported by a few platforms. For smart contract wallets to go mainstream, they need to be supported by top-tier DeFi protocols and other web3 platforms.

Should I use smart contract wallets?

The main reasons why one should consider using smart contract wallets are: improved security features, automation, decentralization and user-friendliness.

  1. Security - 2FA, multi-sig support, and social recovery make it safer to use than EOAs
  2. Automation - programmatically interact with web3 protocols and smart contracts
  3. Friendly UX - SCWs eliminate the complexity associated of EOA wallets
ALCHEMY SUPERNODE - ETHEREUM NODE API

Scale to any size, without any errors

Alchemy Supernode finally makes it possible to scale blockchain applications without all the headaches. Plus, our legendary support will guide you every step of the way.

Get started for free
Supernode footer
Account Abstraction
SMART CONTRACT WALLET BENEFITS

8 Benefits of Smart Contract Wallets

Discover the UX and Security Benefits of Wallets that Use Account Abstraction (ERC-4337)
Last Updated:
June 1, 2023
Last Updated:
June 1, 2023
Don't miss an update
Sign up for our newsletter to get alpha, key insights, and killer resources.
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
Table of Contents

Talk to an Expert

Learn how Alchemy's blockchain developer tools can help your business succeed in web3!
Valid number
Thank you! An Alchemy expert will be in touch with you shortly!
Oops! Something went wrong while submitting the form.

{{aa-cta}}

Smart contract wallets that use ERC-4337 are web3 wallets that manage smart contract accounts, and they offer the simple user experience of conventional EOA (Externally-Owned Account) wallets, with additional functionality, flexibility, and security benefits.

What are the benefits of smart contract wallets?

Smart contract wallets leverage the programmability of smart contracts to increase their utility compared to EOA wallets. Although smart contract wallet transactions need to be initiated by EOA wallets, Account Abstraction infrastructure services like Bundlers, Paymasters, the EntryPoint contract, and Wallet SDKs make the process simpler for wallet developers and end users.

Some of the possible features enabled by smart contract wallets include:

  1. Two-factor authentication
  2. Social Recovery
  3. Flexible gas policies
  4. Custom Signature Schemes
  5. Multicall
  6. Spending Limits
  7. Allowlisting addresses
  8. Multi-sig wallet support

1. Two-factor Authentication

Smart contract wallets can offer two-factor authentication, which requires two different components to confirm a user’s identity, for example:

  • something the user knows, such as a password;
  • something the user has, such as a phone;
  • something the user is, such as a fingerprint.

This is a well-known web2 feature that provides an added layer of security and prevents unauthorized access.

2. Social Recovery

Smart contract wallets are programmable, and during social recovery the public key of a smart contract wallet is changed if the original private key was lost by the wallet owner. This is achieved through a multisig transaction with predefined trusted friends or relatives (known as guardians). This removes the need for the owner to store seed phrases.

3. Flexible Gas Policies

Smart contract wallets can create flexible gas policies using APIs that support ERC-4337's Paymaster specification. Being able to manage gas policies enables developers to sponsor transactions on behalf of users (i.e. gasless transactions) and allow users to pay for gas in any ERC-20 tokens (e.g. USDC).

Sponsoring Transactions

The transaction would contain a designated sponsor of the fee in its calldata. The Paymaster would check with the sponsor if it is willing to sponsor the transaction fee and, if so, proceed with the execution of the transaction.

Paying for Gas with Any ERC-20 Token

The Paymaster also allows for fee payment in currencies other than the blockchain's native token.

For example, if a wallet owns only an ERC-20 token like USDC and not the native token on Ethereum (ETH), the Paymaster would check if the USDC balance is enough to cover the fee. If the wallet has enough USDC, the Paymaster will pay for the transaction execution with ETH and accept the wallet's USDC as compensation.

4. Custom Signature Schemes

Smart contract wallets could easily be programmed to use a different signature scheme to the default ECDSA used in Ethereum. This default signature scheme could be substituted with multisig, social recovery, or even a quantum resistant option like Crystals-Kyber. 

5. Multicall

Multicall is the ability of a smart contract wallet to execute more than one action in a single atomic transaction. Multicall functionality improves the current wallet paradigm where every transaction is propagated and confirmed separately, resulting in longer processing time and poor user experience.

For example, if a user wants to trade a token on Uniswap, they must first click ‘approve’ and wait for the transaction to be confirmed. Afterwards, they must wait for the ‘swap’ transaction to be confirmed, and only then is the token exchange completed.

Smart contract wallets would allow these transactions to be batched into one atomic transaction.

6. Spending Limits for Different Signers

Smart contract wallets can be set to recognize more than one valid signer, which could be used to set different spending limits for different signers. For instance, a user could add both their laptop and Ledger hardware wallet as signers, allowing transactions of up to 0.05 ETH through their laptop, but requiring that the hardware wallet be used for larger transactions.

7. Allowlisted and Denylisted Addresses

Smart contract wallets allow users to grant or deny one or more wallet addresses access to their account. Allowlisting enables the user to grant access, while denylisting accounts would block or deny accounts access. Both of these features improve security and give users additional control over their account. 

8. Multi-sig Wallet Support

The multi-sig support feature of smart contract wallets is particularly important for organizations, which often require more than one approval before a transaction can be executed. Multi-sig wallet support increases the security of transactions by requiring multiple people to authorize them, which makes it hard for a single person to steal funds or execute unauthorized transactions. 

What are the disadvantages of smart contract wallets?

Some of the main drawbacks of smart contract wallets are: higher gas costs, potential code issues, and the current lack of support by most web3 platforms.

1. Higher Gas Costs

Smart contract wallets are controlled by smart contract code, and it’s necessary to pay for the computational resources required to execute this code. Executing smart contract wallet transactions are more expensive than operating an EOA wallet, especially if there are additional features that require complex smart contract code to run.

2. Potential Code Issues

Smart contract wallets are code-based, which means they face many of the same auditing, security, and bug issues as an average software product. Because smart contract wallets are new, users adopting SC wallets should evaluate the team, wallet design, and code security of new ERC-4337-compliant wallets.

3. Lack of Support

Smart contract wallets are still in their early phase and are only supported by a few platforms. For smart contract wallets to go mainstream, they need to be supported by top-tier DeFi protocols and other web3 platforms.

Should I use smart contract wallets?

The main reasons why one should consider using smart contract wallets are: improved security features, automation, decentralization and user-friendliness.

  1. Security - 2FA, multi-sig support, and social recovery make it safer to use than EOAs
  2. Automation - programmatically interact with web3 protocols and smart contracts
  3. Friendly UX - SCWs eliminate the complexity associated of EOA wallets

Smart contract wallets that use ERC-4337 are web3 wallets that manage smart contract accounts, and they offer the simple user experience of conventional EOA (Externally-Owned Account) wallets, with additional functionality, flexibility, and security benefits.

What are the benefits of smart contract wallets?

Smart contract wallets leverage the programmability of smart contracts to increase their utility compared to EOA wallets. Although smart contract wallet transactions need to be initiated by EOA wallets, Account Abstraction infrastructure services like Bundlers, Paymasters, the EntryPoint contract, and Wallet SDKs make the process simpler for wallet developers and end users.

Some of the possible features enabled by smart contract wallets include:

  1. Two-factor authentication
  2. Social Recovery
  3. Flexible gas policies
  4. Custom Signature Schemes
  5. Multicall
  6. Spending Limits
  7. Allowlisting addresses
  8. Multi-sig wallet support

1. Two-factor Authentication

Smart contract wallets can offer two-factor authentication, which requires two different components to confirm a user’s identity, for example:

  • something the user knows, such as a password;
  • something the user has, such as a phone;
  • something the user is, such as a fingerprint.

This is a well-known web2 feature that provides an added layer of security and prevents unauthorized access.

2. Social Recovery

Smart contract wallets are programmable, and during social recovery the public key of a smart contract wallet is changed if the original private key was lost by the wallet owner. This is achieved through a multisig transaction with predefined trusted friends or relatives (known as guardians). This removes the need for the owner to store seed phrases.

3. Flexible Gas Policies

Smart contract wallets can create flexible gas policies using APIs that support ERC-4337's Paymaster specification. Being able to manage gas policies enables developers to sponsor transactions on behalf of users (i.e. gasless transactions) and allow users to pay for gas in any ERC-20 tokens (e.g. USDC).

Sponsoring Transactions

The transaction would contain a designated sponsor of the fee in its calldata. The Paymaster would check with the sponsor if it is willing to sponsor the transaction fee and, if so, proceed with the execution of the transaction.

Paying for Gas with Any ERC-20 Token

The Paymaster also allows for fee payment in currencies other than the blockchain's native token.

For example, if a wallet owns only an ERC-20 token like USDC and not the native token on Ethereum (ETH), the Paymaster would check if the USDC balance is enough to cover the fee. If the wallet has enough USDC, the Paymaster will pay for the transaction execution with ETH and accept the wallet's USDC as compensation.

4. Custom Signature Schemes

Smart contract wallets could easily be programmed to use a different signature scheme to the default ECDSA used in Ethereum. This default signature scheme could be substituted with multisig, social recovery, or even a quantum resistant option like Crystals-Kyber. 

5. Multicall

Multicall is the ability of a smart contract wallet to execute more than one action in a single atomic transaction. Multicall functionality improves the current wallet paradigm where every transaction is propagated and confirmed separately, resulting in longer processing time and poor user experience.

For example, if a user wants to trade a token on Uniswap, they must first click ‘approve’ and wait for the transaction to be confirmed. Afterwards, they must wait for the ‘swap’ transaction to be confirmed, and only then is the token exchange completed.

Smart contract wallets would allow these transactions to be batched into one atomic transaction.

6. Spending Limits for Different Signers

Smart contract wallets can be set to recognize more than one valid signer, which could be used to set different spending limits for different signers. For instance, a user could add both their laptop and Ledger hardware wallet as signers, allowing transactions of up to 0.05 ETH through their laptop, but requiring that the hardware wallet be used for larger transactions.

7. Allowlisted and Denylisted Addresses

Smart contract wallets allow users to grant or deny one or more wallet addresses access to their account. Allowlisting enables the user to grant access, while denylisting accounts would block or deny accounts access. Both of these features improve security and give users additional control over their account. 

8. Multi-sig Wallet Support

The multi-sig support feature of smart contract wallets is particularly important for organizations, which often require more than one approval before a transaction can be executed. Multi-sig wallet support increases the security of transactions by requiring multiple people to authorize them, which makes it hard for a single person to steal funds or execute unauthorized transactions. 

What are the disadvantages of smart contract wallets?

Some of the main drawbacks of smart contract wallets are: higher gas costs, potential code issues, and the current lack of support by most web3 platforms.

1. Higher Gas Costs

Smart contract wallets are controlled by smart contract code, and it’s necessary to pay for the computational resources required to execute this code. Executing smart contract wallet transactions are more expensive than operating an EOA wallet, especially if there are additional features that require complex smart contract code to run.

2. Potential Code Issues

Smart contract wallets are code-based, which means they face many of the same auditing, security, and bug issues as an average software product. Because smart contract wallets are new, users adopting SC wallets should evaluate the team, wallet design, and code security of new ERC-4337-compliant wallets.

3. Lack of Support

Smart contract wallets are still in their early phase and are only supported by a few platforms. For smart contract wallets to go mainstream, they need to be supported by top-tier DeFi protocols and other web3 platforms.

Should I use smart contract wallets?

The main reasons why one should consider using smart contract wallets are: improved security features, automation, decentralization and user-friendliness.

  1. Security - 2FA, multi-sig support, and social recovery make it safer to use than EOAs
  2. Automation - programmatically interact with web3 protocols and smart contracts
  3. Friendly UX - SCWs eliminate the complexity associated of EOA wallets

{{aa-cta}}

Contact Us

Talk to an expert at Alchemy to answer all of your product questions.
Valid number
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.

Build blockchain magic with Alchemy

Alchemy combines the most powerful web3 developer products and tools with resources, community and legendary support.

Get started for free