From 96e8d50664cf90a3341c96839195fc94a5d8569e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Federico=20Mart=C3=ADn=20Alconada=20Verzini?= Date: Tue, 23 Jan 2024 16:11:48 -0300 Subject: [PATCH] chore: polish --- script/migrations/21-multiple_upgrade.sol | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/script/migrations/21-multiple_upgrade.sol b/script/migrations/21-multiple_upgrade.sol index 01af13d4..d5671d19 100644 --- a/script/migrations/21-multiple_upgrade.sol +++ b/script/migrations/21-multiple_upgrade.sol @@ -34,20 +34,12 @@ contract KintoMigration21DeployScript is Create2Helper, ArtifactsReader, UserOp // set wallet factory _walletFactory = KintoWalletFactory(payable(_getChainDeployment("KintoWalletFactory"))); + // deploy contracts SponsorPaymasterV4 _paymasterImpl = SponsorPaymasterV4(upgradePaymaster()); - console.log(string.concat("SponsorPaymasterV4-impl: ", vm.toString(address(_paymasterImpl)))); - KintoAppRegistryV3 _registryImpl = KintoAppRegistryV3(upgradeRegistry()); - console.log(string.concat("KintoAppRegistryV3-impl: ", vm.toString(address(_registryImpl)))); - KintoWalletV4 _walletImpl = KintoWalletV4(payable(upgradeWallet())); - console.log(string.concat("KintoWalletV4-impl: ", vm.toString(address(_walletImpl)))); - KintoWalletFactoryV7 _factoryImpl = KintoWalletFactoryV7(upgradeFactory()); - console.log(string.concat("KintoWalletFactoryV7-impl: ", vm.toString(address(_factoryImpl)))); - KYCViewerV2 _kycViewerImpl = KYCViewerV2(upgradeKYCViewer()); - console.log(string.concat("KYCViewerV2-impl: ", vm.toString(address(_kycViewerImpl)))); // writes the addresses to a file console.log("TODO: Manually add these new addresses to the artifacts file");