^0.4.0
and are now migrating to ^0.5.0
.
module-bases
src/module-bases
src/accounts/
where each account has a specific folder with its own implementations.
Example updating imports:
src/external/ERC7579.sol
src/accounts/erc7579/interfaces
src/accounts/erc7579/lib
src/Accounts.sol
Accounts.sol
no longer imports Execution
from external/ERC7579.sol
. It now imports all smart account interfaces directly:
IERC7579Account
(common ERC7579 interface)IMSA
(ERC7579 reference implementation)IKernelAccount
(Kernel)ISafe7579
(Safe7579)src/Core.sol
Core.sol
is unused and has been removed.
src/Helpers.sol
sign
is no longer imported within Helpers.sol
. It has been moved to src/test/utils/ECDSA.sol
. All account helpers are now consolidated in Helpers.sol
src/Interface.sol
, src/Mocks.sol
, src/Modules.sol
src/Interfaces.sol
src/Mocks.sol
src/Modules.sol