diff --git a/ops/stage2/fund-accounts.md b/ops/stage2/fund-accounts.md new file mode 100644 index 0000000..541ab94 --- /dev/null +++ b/ops/stage2/fund-accounts.md @@ -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}" + ```