Skip to content

Commit 30dcba2

Browse files
committed
evm: swap goerli fork for sepolia
1 parent 0ed2e05 commit 30dcba2

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

evm/test/IntegrationStandalone.t.sol

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,10 @@ contract TestEndToEndBase is Test, IRateLimiterEvents {
5252
address userD = address(0xABC);
5353

5454
address relayer = address(0x28D8F1Be96f97C1387e94A53e00eCcFb4E75175a);
55-
IWormhole wormhole = IWormhole(0x706abc4E45D419950511e474C7B9Ed348A4a716c);
55+
IWormhole wormhole = IWormhole(0x4a8bc80Ed5a4067f1CCf107057b8270E0cC11A78);
5656

5757
function setUp() public {
58-
string memory url = "https://ethereum-goerli.publicnode.com";
58+
string memory url = "https://ethereum-sepolia-rpc.publicnode.com";
5959
vm.createSelectFork(url);
6060
initialBlockTimestamp = vm.getBlockTimestamp();
6161

evm/test/NttManager.t.sol

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ contract TestNttManager is Test, IRateLimiterEvents {
4343
DummyTransceiver dummyTransceiver;
4444

4545
function setUp() public {
46-
string memory url = "https://ethereum-goerli.publicnode.com";
47-
IWormhole wormhole = IWormhole(0x706abc4E45D419950511e474C7B9Ed348A4a716c);
46+
string memory url = "https://ethereum-sepolia-rpc.publicnode.com";
47+
IWormhole wormhole = IWormhole(0x4a8bc80Ed5a4067f1CCf107057b8270E0cC11A78);
4848
vm.createSelectFork(url);
4949
initialBlockTimestamp = vm.getBlockTimestamp();
5050

evm/test/RateLimit.t.sol

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ contract TestRateLimit is Test, IRateLimiterEvents {
2828
uint256 initialBlockTimestamp;
2929

3030
function setUp() public {
31-
string memory url = "https://ethereum-goerli.publicnode.com";
32-
IWormhole wormhole = IWormhole(0x706abc4E45D419950511e474C7B9Ed348A4a716c);
31+
string memory url = "https://ethereum-sepolia-rpc.publicnode.com";
32+
IWormhole wormhole = IWormhole(0x4a8bc80Ed5a4067f1CCf107057b8270E0cC11A78);
3333
vm.createSelectFork(url);
3434
initialBlockTimestamp = vm.getBlockTimestamp();
3535

evm/test/Upgrades.t.sol

+5-5
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@ contract TestUpgrades is Test, IRateLimiterEvents {
5151
address userD = address(0xABC);
5252

5353
address relayer = address(0x28D8F1Be96f97C1387e94A53e00eCcFb4E75175a);
54-
IWormhole wormhole = IWormhole(0x706abc4E45D419950511e474C7B9Ed348A4a716c);
54+
IWormhole wormhole = IWormhole(0x4a8bc80Ed5a4067f1CCf107057b8270E0cC11A78);
5555

5656
function setUp() public virtual {
57-
string memory url = "https://ethereum-goerli.publicnode.com";
57+
string memory url = "https://ethereum-sepolia-rpc.publicnode.com";
5858
vm.createSelectFork(url);
5959
initialBlockTimestamp = vm.getBlockTimestamp();
6060

@@ -596,10 +596,10 @@ contract TestInitialize is Test {
596596
address userA = address(0x123);
597597

598598
address relayer = address(0x28D8F1Be96f97C1387e94A53e00eCcFb4E75175a);
599-
IWormhole wormhole = IWormhole(0x706abc4E45D419950511e474C7B9Ed348A4a716c);
599+
IWormhole wormhole = IWormhole(0x4a8bc80Ed5a4067f1CCf107057b8270E0cC11A78);
600600

601601
function test_doubleInitialize() public {
602-
string memory url = "https://ethereum-goerli.publicnode.com";
602+
string memory url = "https://ethereum-sepolia-rpc.publicnode.com";
603603
vm.createSelectFork(url);
604604

605605
vm.chainId(chainId1);
@@ -620,7 +620,7 @@ contract TestInitialize is Test {
620620
}
621621

622622
function test_cannotFrontrunInitialize() public {
623-
string memory url = "https://ethereum-goerli.publicnode.com";
623+
string memory url = "https://ethereum-sepolia-rpc.publicnode.com";
624624
vm.createSelectFork(url);
625625

626626
vm.chainId(chainId1);

evm/test/wormhole/Governance.t.sol

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ contract GovernanceTest is Test {
2828
Governance governance;
2929
WormholeSimulator guardian;
3030
GovernedContract myContract;
31-
IWormhole constant wormhole = IWormhole(0x706abc4E45D419950511e474C7B9Ed348A4a716c);
31+
IWormhole constant wormhole = IWormhole(0x4a8bc80Ed5a4067f1CCf107057b8270E0cC11A78);
3232

3333
function setUp() public {
34-
string memory url = "https://ethereum-goerli.publicnode.com";
34+
string memory url = "https://ethereum-sepolia-rpc.publicnode.com";
3535
vm.createSelectFork(url);
3636

3737
guardian = new WormholeSimulator(address(wormhole), DEVNET_GUARDIAN_PK);

0 commit comments

Comments
 (0)