Full node command line manual
Key(wallet) management
List all wallets
   tabid keys listCreate a wallet
   tabid keys add node0          // here "node0" is your wallet nameDelete a wallet
   tabid keys delete node0       // here "node0" is your wallet nameExport a wallet
   tabid keys export node0       // here "node0" is your wallet nameRecover a wallet from mnemonic
   tabid  keys add node0 --recoverBank
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 4000000000000000atabiBalance
- Usage - tabid q bank balances your-address 
- Example: 
tabid q bank balances tabis1yyxltd3hkz97g75w6neu7xa2djx4wu4er5jcsqStaking
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 4000000000000000atabiQuery all validators
- Example: 
   tabid q staking validatorsStake
- Example: 
   tabid tx staking delegate tabisvaloper184wyej6rgvtgm783mvcmwntwcq9wpr27uu3a2d 1000000000000000000000atabi --chain-id tabi_9788-2 -y -b block --fees 6000000000000000atabi --from=test1Last updated