Skip to content

Commit

Permalink
fix: remove decimals from eth get balance
Browse files Browse the repository at this point in the history
  • Loading branch information
uri-99 committed Apr 10, 2024
1 parent b8ce122 commit eccee09
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 91 deletions.
34 changes: 0 additions & 34 deletions .github/workflows/zksync-scripts/claim_payment.sh

This file was deleted.

28 changes: 0 additions & 28 deletions .github/workflows/zksync-scripts/set_order.sh

This file was deleted.

27 changes: 0 additions & 27 deletions .github/workflows/zksync-scripts/transfer.sh

This file was deleted.

4 changes: 2 additions & 2 deletions contracts/zksync/test/claim_payment.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

printf "${GREEN}\n=> [ETH] Making Claim Payment${COLOR_RESET}\n"

export MM_INITIAL_BALANCE_L1=$(cast balance --rpc-url $ETHEREUM_RPC --ether $MM_ETHEREUM_WALLET_ADDRESS)
MM_INITIAL_BALANCE_L1=$(cast balance --rpc-url $ETHEREUM_RPC $MM_ETHEREUM_WALLET_ADDRESS)
echo "Initial MM balance L1:"
echo "$MM_INITIAL_BALANCE_L1"

Expand All @@ -23,7 +23,7 @@ cast send --rpc-url $ETHEREUM_RPC --private-key $ETHEREUM_PRIVATE_KEY --gas-pric
"0" $USER_ETHEREUM_PUBLIC_ADDRESS $BRIDGE_AMOUNT_WEI 2000000 800 \
--value 5000000000000000000

export MM_AFTER_BALANCE_L1=$(cast balance --rpc-url $ETHEREUM_RPC --ether $MM_ETHEREUM_WALLET_ADDRESS)
MM_AFTER_BALANCE_L1=$(cast balance --rpc-url $ETHEREUM_RPC $MM_ETHEREUM_WALLET_ADDRESS)
echo "After MM balance L1:"
echo "$MM_AFTER_BALANCE_L1"

Expand Down

0 comments on commit eccee09

Please sign in to comment.