Wallet
Wallet
Most wallets have traditionally been Externally Owned Accounts (EOAs). These are controlled by a private key (which you can think of as a password for crypto). Smart contract wallets are an alternative. They’re built on smart contracts, as the name suggests, and allow for more functionality. Smart contract wallet accounts are controlled by their code, which can be written to implement arbitrary logic.
Importantly, smart contract wallets can be compiled for exactly the same experience as EOA (e.g. only one signing key, non-upgradable), but not vice versa.
Controlled by a user Accessed via private keys Can make transactions and trigger contract accounts
Controlled by code that executes when triggered Have no private keys Can trigger other contract accounts
Thanks to the versatility of smart contracts, in addition to breaking user reliance on private keys, smart wallets offer advantageous new features and provide a user experience similar to traditional financial (TradFi) service apps.
Last updated