mirror of
https://github.com/lens-protocol/core.git
synced 2026-01-08 21:58:06 -05:00
9 lines
323 B
Bash
9 lines
323 B
Bash
# This script adds 10 Ether to the address specified in the first CLI argument
|
|
|
|
# Get the first CLI argument and save it to $ADDRESS variable
|
|
ADDRESS=$1
|
|
|
|
cast rpc --rpc-url mumbai tenderly_addBalance "[[\"$ADDRESS\"], \"0x8AC7230489E80000\"]" --raw
|
|
|
|
# cast rpc --rpc-url polygon anvil_autoImpersonateAccount "[true]" --raw
|