From cf7cf90f0aeb18097a0975f55632533f3bcc85bb Mon Sep 17 00:00:00 2001 From: Sergey <2901744+evercoinx@users.noreply.github.com> Date: Mon, 4 Nov 2024 09:44:35 +0100 Subject: [PATCH] Deploy FxStateChildTunnel contract into amoy network --- Makefile | 4 +++- tasks/deploy-fx-state-child-tunnel.ts | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 05a815cc..0833d52c 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,9 @@ CONFIG_SOLC := solc.json NETWORK_HARDHAT := hardhat NETWORK_LOCALHOST := localhost NETWORK_SEPOLIA := sepolia +NETWORK_AMOY := amoy NETWORK_ETHEREUM := ethereum +NETWORK_POLYGON := polygon # Hardhat contract addresses HARDHAT_VALIDATOR_REGISTRY := 0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0 @@ -61,7 +63,7 @@ SEPOLIA_TREASURY := 0xdeb90df43BBa8FC0e2C08C54dC0F48cfc694F896 AMOY_MATIC_X := AMOY_CHILD_POOL := AMOY_FX_CHILD := 0xE5930336866d0388f0f745A2d9207C7781047C0f -AMOY_FX_STATE_CHLID_TUNNEL := +AMOY_FX_STATE_CHILD_TUNNEL := 0xDC5e26af83c1694A655beBe22689f12A42573d94 AMOY_MANAGER := AMOY_TREASURY := AMOY_INSTANT_POOL_OWNER := diff --git a/tasks/deploy-fx-state-child-tunnel.ts b/tasks/deploy-fx-state-child-tunnel.ts index 255aaf97..48fbd29d 100644 --- a/tasks/deploy-fx-state-child-tunnel.ts +++ b/tasks/deploy-fx-state-child-tunnel.ts @@ -45,7 +45,7 @@ task("deploy:fx-state-child-tunnel") await FxStateChildTunnel.deploy(fxChildAddress); await fxStateChildTunnel.deployed(); console.log( - `fxStateChildTunnel deployed at ${fxStateChildTunnel.address}` + `FxStateChildTunnel deployed at ${fxStateChildTunnel.address}` ); } );