From ea18778daa07aa2cc073bb7daea916c02c0b5664 Mon Sep 17 00:00:00 2001 From: Rookmate <14072042+rookmate@users.noreply.github.com> Date: Sat, 7 Dec 2024 13:16:50 +0530 Subject: [PATCH] Remove Ethereum Sepolia from checkCounters --- script/checkCounters.s.sol | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/script/checkCounters.s.sol b/script/checkCounters.s.sol index 5af64bd..0224058 100644 --- a/script/checkCounters.s.sol +++ b/script/checkCounters.s.sol @@ -27,10 +27,6 @@ contract CheckCounters is Script { deployer.counter(), 84532 ); - address counterInstanceSepolia = deployer.getOnChainAddress( - deployer.counter(), - 11155111 - ); if (counterInstanceArbitrumSepolia != address(0)) { vm.createSelectFork(vm.envString("ARBITRUM_SEPOLIA_RPC")); @@ -70,14 +66,5 @@ contract CheckCounters is Script { } else { console.log("Counter not yet deployed on Base Sepolia"); } - - if (counterInstanceSepolia != address(0)) { - vm.createSelectFork(vm.envString("SEPOLIA_RPC")); - uint256 counterValueSepolia = Counter(counterInstanceSepolia) - .counter(); - console.log("Counter value on Sepolia: ", counterValueSepolia); - } else { - console.log("Counter not yet deployed on Sepolia"); - } } }