From 7a45ce0a71b2af96ebce2123b92195e4fcb46e2e Mon Sep 17 00:00:00 2001 From: Ji Hwan Date: Thu, 16 Jan 2025 19:28:32 +0900 Subject: [PATCH] fix: add gas-price for polycli ulxly Signed-off-by: Ji Hwan --- .github/workflows/deploy.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 34650c72..5cac695c 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -518,7 +518,8 @@ jobs: --destination-address 0xE34aaF64b29273B7D567FCFc40544c014EEe9970 \ --deposit-network 0 \ --rpc-url $destNetworkURL \ - --bridge-service-url $bridgeURL + --bridge-service-url $bridgeURL \ + --gas-price $(cast gas-price --rpc-url $destNetworkURL) if [[ $ret_code -eq 0 ]]; then echo "[$(date '+%Y-%m-%d %H:%M:%S')] ✅ Exiting... Claim Transaction successfuly sent!" exit 0 @@ -542,7 +543,8 @@ jobs: --bridge-address 0xd8886e9D827218a02B8C04323b5550f2F36BC8d5 \ --destination-network 1 \ --force-update-root=true \ - --destination-address 0xE34aaF64b29273B7D567FCFc40544c014EEe9970 + --destination-address 0xE34aaF64b29273B7D567FCFc40544c014EEe9970 \ + --gas-price $(cast gas-price --rpc-url $originNetworkURL) if [[ $ret_code -eq 0 ]]; then echo "[$(date '+%Y-%m-%d %H:%M:%S')] ✅ Exiting... Deposit Transaction successfuly sent!" else @@ -562,7 +564,8 @@ jobs: --destination-address 0xE34aaF64b29273B7D567FCFc40544c014EEe9970 \ --deposit-network 3 \ --rpc-url $destNetworkURL \ - --bridge-service-url $bridgeURL + --bridge-service-url $bridgeURL \ + --gas-price $(cast gas-price --rpc-url $destNetworkURL) if [[ $ret_code -eq 0 ]]; then echo "[$(date '+%Y-%m-%d %H:%M:%S')] ✅ Exiting... Claim Transaction successfuly sent!" exit 0