Compare commits

...

1 Commits

Author SHA1 Message Date
125c03aec6 Add instructions to fund accounts on stage2 2025-03-13 11:10:16 +05:30

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}"
```