From 552641d06c3a9f5cf3083c3e738d1097c8a207e7 Mon Sep 17 00:00:00 2001 From: vvzvlad Date: Sat, 8 Jun 2024 23:20:16 +0300 Subject: [PATCH] Update 'projects/hello-world/contracts/script/Deploy.s.sol' --- projects/hello-world/contracts/script/Deploy.s.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/hello-world/contracts/script/Deploy.s.sol b/projects/hello-world/contracts/script/Deploy.s.sol index d59c068..53b5c02 100644 --- a/projects/hello-world/contracts/script/Deploy.s.sol +++ b/projects/hello-world/contracts/script/Deploy.s.sol @@ -14,7 +14,7 @@ contract Deploy is Script { address deployerAddress = vm.addr(deployerPrivateKey); console2.log("Loaded deployer: ", deployerAddress); - address registry = 0x8D871Ef2826ac9001fB2e33fDD6379b6aaBF449c; + address registry = 0x3B1554f346DFe5c482Bb4BA31b880c1C18412170; // Create consumer SaysGM saysGm = new SaysGM(registry); console2.log("Deployed SaysHello: ", address(saysGm));