Account Permissions & Session Keys
All of the account contracts - Simple and Managed - share the same permission model. In this section, we'll describe this permission model in detail.
An account recognizes only two types of actors: Session Keys and Admins.
Admins have unrestricted access to the account; call any functions on the contract, use the contract without going through the ERC-4337 infrastructure (bundlers, EntryPoint, etc.), withdraw the account's native token balance, and so on.
Existing admins on the account can add new admins, remove existing admins or renounce their own admin status.
Session Keys are additional authorized signers that must go through ERC-4337 infrastructure (bundlers, EntryPoint, etc.) to use an account to execute transactions. Session keys can use an account under certain restrictions.
Each individual session key has its own permissions to use the account. Only admins can set the permissions for session keys.
Session keys can be assigned the following permissions:
- [Required] Allow interaction with specific contracts with the account ("*" for any contracts)
- [Optional] Have a maximum amount of native tokens that can be transferred per transaction (defaults to 0 eth, transactions with value will be rejected)
- [Optional] Have access to the account only during a specific time window (defaults to 10 years from now)