π οΈUseful commands
Transactions and curl commands are launched while the node is running
If transactions are not sent with an error account sequence mismatch, expected 18, got 17: incorrect account sequence, then add the -s 18 switch to the command (replace the number with the one waiting for sequence)
First we set the variables
BINARY="canined"
DENOM="ujkl"
FOLDER=".canine"Working with wallets
# create wallet
$BINARY keys add <name_wallet> --keyring-backend os
# restore wallet
$BINARY keys add <name_wallet> --recover --keyring-backend os
# restore wallet for EVM networks
$BINARY keys add <name_wallet> --recover --coin-type 118 --algo secp256k1
# list wallets
$BINARY keys list
# show account key
$BINARY keys show <name_wallet> --bech acc
# show validator key
$BINARY keys show <name_wallet> --bech val
# show consensus key
$BINARY keys show <name_wallet> --bech cons
# show all supported addresses
$BINARY debug addr <wallet_addr>
# how private key
$BINARY keys export <name_wallet> --unarmored-hex --unsafe
# account request
$BINARY q auth account $($BINARY keys show <name_wallet> -a) -o text
# delete wallet
$BINARY keys delete <name_wallet>General information
Transactions
Governance
Peers and RPC
Last updated