mirror of
https://github.com/lens-protocol/core.git
synced 2026-04-22 03:02:03 -04:00
7 lines
249 B
Bash
7 lines
249 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
|