From 1f51c84ff6cc1aaa35ff240f5dbd1ea1678f9c19 Mon Sep 17 00:00:00 2001 From: howydev <132113803+howydev@users.noreply.github.com> Date: Wed, 6 Nov 2024 15:05:11 -0500 Subject: [PATCH] chore: rename --- .forge-snapshots/ModularAccount_Runtime_AccountCreation.snap | 1 - .../ModularAccount_Runtime_InstallSessionKey_Case1.snap | 1 - .forge-snapshots/ModularAccount_UserOp_BatchTransfers.snap | 1 - .forge-snapshots/ModularAccount_UserOp_Erc20Transfer.snap | 1 - .../ModularAccount_UserOp_InstallSessionKey_Case1.snap | 1 - .../SemiModularAccount_Runtime_InstallSessionKey_Case1.snap | 1 - .../SemiModularAccount_UserOp_InstallSessionKey_Case1.snap | 1 - ...SemiModularAccount_UserOp_UseSessionKey_Case1_Counter.snap | 1 - lib/forge-gas-snapshot | 1 - test/utils/AccountTestBase.sol | 4 ++-- 10 files changed, 2 insertions(+), 11 deletions(-) delete mode 100644 .forge-snapshots/ModularAccount_Runtime_AccountCreation.snap delete mode 100644 .forge-snapshots/ModularAccount_Runtime_InstallSessionKey_Case1.snap delete mode 100644 .forge-snapshots/ModularAccount_UserOp_BatchTransfers.snap delete mode 100644 .forge-snapshots/ModularAccount_UserOp_Erc20Transfer.snap delete mode 100644 .forge-snapshots/ModularAccount_UserOp_InstallSessionKey_Case1.snap delete mode 100644 .forge-snapshots/SemiModularAccount_Runtime_InstallSessionKey_Case1.snap delete mode 100644 .forge-snapshots/SemiModularAccount_UserOp_InstallSessionKey_Case1.snap delete mode 100644 .forge-snapshots/SemiModularAccount_UserOp_UseSessionKey_Case1_Counter.snap delete mode 160000 lib/forge-gas-snapshot diff --git a/.forge-snapshots/ModularAccount_Runtime_AccountCreation.snap b/.forge-snapshots/ModularAccount_Runtime_AccountCreation.snap deleted file mode 100644 index 23958f836..000000000 --- a/.forge-snapshots/ModularAccount_Runtime_AccountCreation.snap +++ /dev/null @@ -1 +0,0 @@ -176081 \ No newline at end of file diff --git a/.forge-snapshots/ModularAccount_Runtime_InstallSessionKey_Case1.snap b/.forge-snapshots/ModularAccount_Runtime_InstallSessionKey_Case1.snap deleted file mode 100644 index bb69b4577..000000000 --- a/.forge-snapshots/ModularAccount_Runtime_InstallSessionKey_Case1.snap +++ /dev/null @@ -1 +0,0 @@ -422966 \ No newline at end of file diff --git a/.forge-snapshots/ModularAccount_UserOp_BatchTransfers.snap b/.forge-snapshots/ModularAccount_UserOp_BatchTransfers.snap deleted file mode 100644 index 37b312b10..000000000 --- a/.forge-snapshots/ModularAccount_UserOp_BatchTransfers.snap +++ /dev/null @@ -1 +0,0 @@ -198309 \ No newline at end of file diff --git a/.forge-snapshots/ModularAccount_UserOp_Erc20Transfer.snap b/.forge-snapshots/ModularAccount_UserOp_Erc20Transfer.snap deleted file mode 100644 index 5adf186a5..000000000 --- a/.forge-snapshots/ModularAccount_UserOp_Erc20Transfer.snap +++ /dev/null @@ -1 +0,0 @@ -185274 \ No newline at end of file diff --git a/.forge-snapshots/ModularAccount_UserOp_InstallSessionKey_Case1.snap b/.forge-snapshots/ModularAccount_UserOp_InstallSessionKey_Case1.snap deleted file mode 100644 index d316570dd..000000000 --- a/.forge-snapshots/ModularAccount_UserOp_InstallSessionKey_Case1.snap +++ /dev/null @@ -1 +0,0 @@ -531176 \ No newline at end of file diff --git a/.forge-snapshots/SemiModularAccount_Runtime_InstallSessionKey_Case1.snap b/.forge-snapshots/SemiModularAccount_Runtime_InstallSessionKey_Case1.snap deleted file mode 100644 index 1272a03b9..000000000 --- a/.forge-snapshots/SemiModularAccount_Runtime_InstallSessionKey_Case1.snap +++ /dev/null @@ -1 +0,0 @@ -421515 \ No newline at end of file diff --git a/.forge-snapshots/SemiModularAccount_UserOp_InstallSessionKey_Case1.snap b/.forge-snapshots/SemiModularAccount_UserOp_InstallSessionKey_Case1.snap deleted file mode 100644 index 50721049b..000000000 --- a/.forge-snapshots/SemiModularAccount_UserOp_InstallSessionKey_Case1.snap +++ /dev/null @@ -1 +0,0 @@ -528696 \ No newline at end of file diff --git a/.forge-snapshots/SemiModularAccount_UserOp_UseSessionKey_Case1_Counter.snap b/.forge-snapshots/SemiModularAccount_UserOp_UseSessionKey_Case1_Counter.snap deleted file mode 100644 index bf3684a34..000000000 --- a/.forge-snapshots/SemiModularAccount_UserOp_UseSessionKey_Case1_Counter.snap +++ /dev/null @@ -1 +0,0 @@ -195476 \ No newline at end of file diff --git a/lib/forge-gas-snapshot b/lib/forge-gas-snapshot deleted file mode 160000 index 03b10b105..000000000 --- a/lib/forge-gas-snapshot +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 03b10b10574e069081f6b84f5e1244e42041511d diff --git a/test/utils/AccountTestBase.sol b/test/utils/AccountTestBase.sol index 045d07bfe..7898a6f5a 100644 --- a/test/utils/AccountTestBase.sol +++ b/test/utils/AccountTestBase.sol @@ -108,14 +108,14 @@ abstract contract AccountTestBase is OptimizedTest, ModuleSignatureUtils { semiModularAccountImplementation = SemiModularAccountBytecode(payable(_deploySemiModularAccountBytecode(entryPoint))); - address webauthnModule = address(new WebAuthnValidationModule()); + address webAuthnModule = address(new WebAuthnValidationModule()); factory = new AccountFactory( entryPoint, accountImplementation, semiModularAccountImplementation, address(singleSignerValidationModule), - webauthnModule, + webAuthnModule, factoryOwner );