A simple python script to fund a bee node with xDAI or xBZZ (a.k.a "BZZ on xDai") on Gnosis.
git clone https://github.com/rampall/bee-utils.git
cd bee-utils
pip install -r requirements.txt
export FROM=0x1234...
export PK=0x9876...
export TO=0x1020...
export GNOSIS_RPC=http://...
# Send 1 xDAI
python3 bee_utils.py send-xdai --amount 1 --from_address $FROM --to_address $TO --pk $PK --rpc $GNOSIS_RPC
# Send 1 xBZZ
python3 bee_utils.py send-xbzz --amount 1 --from_address $FROM --to_address $TO --pk $PK --rpc $GNOSIS_RPC