Transfer coins

First, you can check how much you have on your local account (replace test by key name):

$ lumd query auth account $(lumd keys show <test> -a)

And it should return a complete payload with some useful information about your account:

{
  "type": "cosmos-sdk/Account",
  "value": {
    "address": "lum14hjqg48twngvujs2xhkac8mhzncjqg8wq0easj",
    "coins": [
      {
        "denom": "ulum",
        "amount": "19987728"
      }
    ],
    "public_key": {
      "type": "tendermint/PubKeySecp256k1",
      "value": "AxdPTMtvjPdu40WJSo4gmSCU0x4+y6SPUvdELZq+kvgC"
    },
    "account_number": "0",
    "sequence": "25"
  }
}

Finally you can emit a new transfer by doing this (replace <test> by key name, <destination> by address, amount by the amount + asset like "10sbc"):

Once confirmed and signed with passphrase, it should echo this:

Last updated

Was this helpful?