From 125c03aec6a824dba8f4f11b765d37c3b3045654 Mon Sep 17 00:00:00 2001 From: Prathamesh Musale Date: Thu, 13 Mar 2025 11:10:16 +0530 Subject: [PATCH] Add instructions to fund accounts on stage2 --- ops/stage2/fund-accounts.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 ops/stage2/fund-accounts.md 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}" + ```