Skip to content

Commit

Permalink
Remove Ethereum Sepolia from checkCounters
Browse files Browse the repository at this point in the history
  • Loading branch information
rookmate committed Dec 7, 2024
1 parent ac72da9 commit ea18778
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions script/checkCounters.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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"));
Expand Down Expand Up @@ -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");
}
}
}

0 comments on commit ea18778

Please sign in to comment.