@@ -17,24 +17,24 @@ contract Integration_CrosschainDeployLibTest is IntegrationDeployer {
1717 vm.startPrank (deployer);
1818
1919 // Test empty contract deployment
20- uint holeskyFork = vm.createSelectFork (vm.envString ("RPC_HOLESKY " ), 4_089_445 );
21- address holeskyExpected = CrosschainDeployLib.deployEmptyContract (deployer);
20+ uint hoodiFork = vm.createSelectFork (vm.envString ("RPC_HOODI " ), 4_089_445 );
21+ address hoodiExpected = CrosschainDeployLib.deployEmptyContract (deployer);
2222 uint mainnetFork = vm.createSelectFork (vm.envString ("RPC_MAINNET " ), 22_819_288 );
2323 address mainnetExpected = CrosschainDeployLib.deployEmptyContract (deployer);
24- assertEq (holeskyExpected , mainnetExpected, "holeskyExpected != mainnetExpected " );
24+ assertEq (hoodiExpected , mainnetExpected, "hoodiExpected != mainnetExpected " );
2525
2626 // Test proxy deployment
27- vm.selectFork (holeskyFork );
28- address holeskyProxy = address (CrosschainDeployLib.deployCrosschainProxy (deployer, holeskyExpected , "ExampleContract " ));
27+ vm.selectFork (hoodiFork );
28+ address hoodiProxy = address (CrosschainDeployLib.deployCrosschainProxy (deployer, hoodiExpected , "ExampleContract " ));
2929 vm.selectFork (mainnetFork);
3030 address mainnetProxy = address (CrosschainDeployLib.deployCrosschainProxy (deployer, mainnetExpected, "ExampleContract " ));
31- assertEq (holeskyProxy , mainnetProxy, "holeskyProxy != mainnetProxy " );
31+ assertEq (hoodiProxy , mainnetProxy, "hoodiProxy != mainnetProxy " );
3232
3333 // Test address prediction
3434 assertEq (
3535 CrosschainDeployLib.computeCrosschainAddress (deployer, keccak256 (type (EmptyContract).creationCode), "EmptyContract " ),
36- holeskyExpected
36+ hoodiExpected
3737 );
38- assertEq (CrosschainDeployLib.computeCrosschainUpgradeableProxyAddress (deployer, holeskyExpected , "ExampleContract " ), holeskyProxy );
38+ assertEq (CrosschainDeployLib.computeCrosschainUpgradeableProxyAddress (deployer, hoodiExpected , "ExampleContract " ), hoodiProxy );
3939 }
4040}
0 commit comments