diff --git a/examples/src/AutoSavings/AutoSavings.sol b/examples/src/AutoSavings/AutoSavings.sol index abd0ab0d..df7639a0 100644 --- a/examples/src/AutoSavings/AutoSavings.sol +++ b/examples/src/AutoSavings/AutoSavings.sol @@ -11,14 +11,6 @@ import { ERC7579ExecutorBase, SessionKeyBase } from "modulekit/src/Modules.sol"; contract AutoSavingToVault is ERC7579ExecutorBase, SessionKeyBase { using ERC4626Integration for *; - /*////////////////////////////////////////////////////////////////////////// - Events - //////////////////////////////////////////////////////////////////////////*/ - - event AutoSaveExecuted( - address indexed smartAccount, address indexed token, uint256 amountReceived - ); - /*////////////////////////////////////////////////////////////////////////// CONSTANTS & STORAGE //////////////////////////////////////////////////////////////////////////*/ @@ -42,6 +34,10 @@ contract AutoSavingToVault is ERC7579ExecutorBase, SessionKeyBase { mapping(address account => mapping(address token => Config)) internal _config; + event AutoSaveExecuted( + address indexed smartAccount, address indexed token, uint256 amountReceived + ); + /*////////////////////////////////////////////////////////////////////////// CONFIG //////////////////////////////////////////////////////////////////////////*/