Add instructions to fund accounts on stage2

This commit is contained in:
Prathamesh Musale 2025-03-13 11:10:16 +05:30
parent 9b3d1a26e7
commit 125c03aec6

View File

@ -0,0 +1,21 @@
# Fund stage2 Accounts
* Transfer tokens to any address:
```bash
# On the deployment machine
cd /srv/laconicd
# receiver laconic account address
RECEIVER_ADDRESS=
# amount to be transferred in alnt, eg. AMOUNT=1000
AMOUNT=
laconic-so deployment --dir good-new-stage2-deployment exec laconicd "laconicd tx bank send alice ${RECEIVER_ADDRESS} ${AMOUNT}alnt --from alice --fees 1000alnt --keyring-backend test"
```
* Check balance:
```bash
laconic-so deployment --dir good-new-stage2-deployment exec laconicd "laconicd query bank balances ${RECEIVER_ADDRESS}"
```