From acde6456e6c02c44ea55261b65f6dac942380098 Mon Sep 17 00:00:00 2001 From: Denis Fadeev Date: Thu, 28 Sep 2023 21:58:47 +0400 Subject: [PATCH] echo ccm fee --- scripts/integration.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/integration.sh b/scripts/integration.sh index 5f195578..37feafd7 100755 --- a/scripts/integration.sh +++ b/scripts/integration.sh @@ -75,6 +75,8 @@ echo "Deployed CCM contract address: $CCM_CONTRACT" CCM_FEE=$(npx hardhat fees --json | jq -r ".feesCCM.mumbai_testnet.totalFee") +echo "CCM fee: $CCM_FEE" + CCM_TX=$(npx hardhat interact --network goerli_testnet --contract $CCM_CONTRACT --message "Hello World" --destination mumbai_testnet --amount $CCM_FEE --json | jq -r '.hash') echo "CCM TX hash: $CCM_TX"