ODIN Wallet operations

basic common ODIN wallet tasks outlined;

Aside from wallet creation and recovery, the most common wallet tasks are checking the balance and sending tokens to another wallet. Checking the balance is very simple.

For either of these operations, one should ALWAYS use the "--node http://34.77.171.169:26657" flag to ensure the information is always current. Check your wallet balance with the following command; replace the $ADDRESS variable with your ODIN wallet address if it has not yet been populated.

docker exec -it node bandd query bank balances $ADDRESS --node http://34.77.171.169:26657

To send loki to another ODIN wallet, use the following command;

docker exec -it node bandd tx bank send odin10u2g5yhvtm0d76f860kggp6lakge4q8hlf346q odin10xy7pe79cv57fcv7lr833fwd3s2fa9epzy07tz 999000000loki --chain-id $CHAIN --node http://34.77.171.169:26657

The first ODIN wallet address in the command is the FROM wallet. The second is clearly going to be the receiving or TO wallet. Loki amount should include the "loki" suffix directly after the integer.

Last updated