Skip to content

Commit

Permalink
Migrating checkDeposit from Goerli to Sepolia
Browse files Browse the repository at this point in the history
  • Loading branch information
eloi010 committed Dec 1, 2023
1 parent 83e89b3 commit 2d43250
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
14 changes: 7 additions & 7 deletions script/OpenfortForksConfig.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ abstract contract OpenfortForksConfig is Script {
FujiFork,
BscTestFork,
ArbitrumTestFork,
BaseGoerliFork,
BaseTestFork,
BeamTestnetFork,
ChiadoFork,
LineaTestnetFork,
Expand Down Expand Up @@ -99,15 +99,15 @@ abstract contract OpenfortForksConfig is Script {
paymasterOwnerAddresses[uint256(Forks.BscTestFork)] = openfortPaymasterOwnerTestnet;
paymasterAddresses[uint256(Forks.BscTestFork)] = openfortPaymasterV2Testnet;

// Fork: Arbitrum Goerli testnet
vm.createFork(vm.envString("ARBITRUM_GOERLI_RPC"));
// Fork: Arbitrum Sepolia testnet
vm.createFork(vm.envString("ARBITRUM_SEPOLIA_RPC"));
paymasterOwnerAddresses[uint256(Forks.ArbitrumTestFork)] = openfortPaymasterOwnerTestnet;
paymasterAddresses[uint256(Forks.ArbitrumTestFork)] = openfortPaymasterV2Testnet;

// Fork: Base Goerli testnet
vm.createFork(vm.envString("BASE_GOERLI_RPC"));
paymasterOwnerAddresses[uint256(Forks.BaseGoerliFork)] = openfortPaymasterOwnerTestnet;
paymasterAddresses[uint256(Forks.BaseGoerliFork)] = openfortPaymasterV2Testnet;
// Fork: Base Sepolia testnet
vm.createFork(vm.envString("BASE_SEPOLIA_RPC"));
paymasterOwnerAddresses[uint256(Forks.BaseTestFork)] = openfortPaymasterOwnerTestnet;
paymasterAddresses[uint256(Forks.BaseTestFork)] = openfortPaymasterV2Testnet;

// Fork: Beam testnet
vm.createFork(vm.envString("BEAM_TESTNET_RPC"));
Expand Down
6 changes: 3 additions & 3 deletions script/checkDeposits.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,11 @@ contract CheckDeposits is OpenfortForksConfig {
console.log("Checking Paymaster and PaymasterOwner on BSC testnet:");
checkPaymasterDepositAndOwnerBalance(uint256(Forks.BscTestFork));

console.log("Checking Paymaster and PaymasterOwner on Arbirtum Goerli testnet:");
console.log("Checking Paymaster and PaymasterOwner on Arbirtum Sepolia testnet:");
checkPaymasterDepositAndOwnerBalance(uint256(Forks.ArbitrumTestFork));

console.log("Checking Paymaster and PaymasterOwner on Base Goerli testnet:");
checkPaymasterDepositAndOwnerBalance(uint256(Forks.BaseGoerliFork));
console.log("Checking Paymaster and PaymasterOwner on Base Sepolia testnet:");
checkPaymasterDepositAndOwnerBalance(uint256(Forks.BaseTestFork));

console.log("Checking Paymaster and PaymasterOwner on Beam testnet:");
checkPaymasterDepositAndOwnerBalance(uint256(Forks.BeamTestnetFork));
Expand Down

0 comments on commit 2d43250

Please sign in to comment.