Full node command line manual

Key(wallet) management

List all wallets

   tabid keys list

Create a wallet

   tabid keys add node0          // here "node0" is your wallet name

Delete a wallet

   tabid keys delete node0       // here "node0" is your wallet name

Export a wallet

   tabid keys export node0       // here "node0" is your wallet name

Recover a wallet from mnemonic

   tabid  keys add node0 --recover

Bank

Transfer

  • Usage:

    tabid tx bank send from-address to-address amount [flags]

  • Example:

   tabid tx bank send from_address \
   to_address \
   10000000000000000000atabi \
   --chain-id tabi_9788-2 \
   -y -b block \
   --fees 4000000000000000atabi

Balance

  • Usage

    tabid q bank balances your-address

  • Example:

tabid q bank balances tabis1yyxltd3hkz97g75w6neu7xa2djx4wu4er5jcsq

Staking

Create a validator

  • Example

   tabid tx staking create-validator \
   --amount=100000000000000000000atabi \
   --pubkey=$(tabid tendermint show-validator) \
   --moniker="node1" \
   --chain-id=tabi_9788-2 \
   --commission-rate="0.10" \
   --commission-max-rate="0.20" \
   --commission-max-change-rate="0.01" \
   --min-self-delegation="100" \
   --gas=2000000 \
   --from=node0 \
   -y -b block --fees 4000000000000000atabi

Query all validators

  • Example:

   tabid q staking validators

Stake

  • Example:

   tabid tx staking delegate tabisvaloper184wyej6rgvtgm783mvcmwntwcq9wpr27uu3a2d 1000000000000000000000atabi --chain-id tabi_9788-2 -y -b block --fees 6000000000000000atabi --from=test1

Last updated