{% hint style="info" %} Please note that the values in <> must be changed to your own values {% endhint %}
d keys add <key_name>
d keys add <key_name> --recover
d keys list
d keys delete <key_name>
port 56 was taken as an example, you can use numbers from 1 to 64 to set custom node port
GITOPIA_PORT=56
sed -i.bak -e "s%^proxy_app = \"tcp://127.0.0.1:26658\"%proxy_app = \"tcp://127.0.0.1:${GITOPIA_PORT}658\"%; s%^laddr = \"tcp://127.0.0.1:26657\"%laddr = \"tcp://127.0.0.1:${GITOPIA_PORT}657\"%; s%^pprof_laddr = \"localhost:6060\"%pprof_laddr = \"localhost:${GITOPIA_PORT}060\"%; s%^laddr = \"tcp://0.0.0.0:26656\"%laddr = \"tcp://0.0.0.0:${GITOPIA_PORT}656\"%; s%^prometheus_listen_addr = \":26660\"%prometheus_listen_addr = \":${GITOPIA_PORT}660\"%" /$HOME/.gitopia/config/config.toml
sed -i.bak -e "s%^address = \"tcp://0.0.0.0:1317\"%address = \"tcp://0.0.0.0:${GITOPIA_PORT}317\"%; s%^address = \"tcp://localhost:1317\"%address = \"tcp://0.0.0.0:${GITOPIA_PORT}317\"%; s%^address = \":8080\"%address = \":${GITOPIA_PORT}080\"%; s%^address = \"0.0.0.0:9090\"%address = \"0.0.0.0:${GITOPIA_PORT}090\"%; s%^address = \"localhost:9090\"%address = \"localhost:${GITOPIA_PORT}090\"%; s%^address = \"0.0.0.0:9091\"%address = \"0.0.0.0:${GITOPIA_PORT}091\"%; s%^address = \"localhost:9091\"%address = \"localhost:${GITOPIA_PORT}091\"%; s%^address = \"0.0.0.0:8545\"%address = \"0.0.0.0:${GITOPIA_PORT}545\"%; s%^ws-address = \"0.0.0.0:8546\"%ws-address = \"0.0.0.0:${GITOPIA_PORT}546\"%" /$HOME/.gitopia/config/app.toml
pruning="custom"
pruning_keep_recent="100"
pruning_keep_every="0"
pruning_interval="10"
sed -i -e "s/^pruning *=.*/pruning = \"$pruning\"/" $HOME/.gitopia/config/app.toml
sed -i -e "s/^pruning-keep-recent *=.*/pruning-keep-recent = \"$pruning_keep_recent\"/" $HOME/.gitopia/config/app.toml
sed -i -e "s/^pruning-keep-every *=.*/pruning-keep-every = \"$pruning_keep_every\"/" $HOME/.gitopia/config/app.toml
sed -i -e "s/^pruning-interval *=.*/pruning-interval = \"$pruning_interval\"/" $HOME/.gitopia/config/app.toml
sed -i -e "s/^indexer *=.*/indexer = \"null\"/" $HOME/.gitopia/config/config.toml
sed -i -e "s/^minimum-gas-prices *=.*/minimum-gas-prices = \"0.001\"/" $HOME/.gitopia/config/app.toml
d tx staking create-validator \
--amount 1000000 \
--commission-max-change-rate "0.01" \
--commission-max-rate "0.20" \
--commission-rate "0.1" \
--min-self-delegation "1" \
--pubkey $(d tendermint show-validator) \
--moniker <GITOPIA_NODENAME> \
--chain-id \
--from <GITOPIA_WALLET> \
--identity <KEYBASE_ID> \
--details <YOUR_TEXT> \
--website <YOUR_WEBSITE> \
--gas-prices 0.001 \
--gas-adjustment 1.5 \
--gas auto \
--yes
d tx staking edit-validator \
--new-moniker <GITOPIA_NODENAME> \
--identity <KEYBASE_ID> \
--details <YOUR_TEXT> \
--website <YOUR_WEBSITE> \
--chain-id \
--commission-rate 0.05 \
--from <GITOPIA_WALLET> \
--gas-prices 0.001 \
--gas-adjustment 1.5 \
--gas auto \
--yes
d q staking validator $(d keys show <GITOPIA_WALLET> --bech val -a)
d tx slashing unjail --from <GITOPIA_WALLET> --chain-id --gas-prices 0.001 --gas-adjustment 1.5 --gas auto --yes
d query slashing signing-info $(d tendermint show-validator)
d tx bank send wallet <DEST_WALLET_ADDRESS> 100 --from <GITOPIA_WALLET> --chain-id --gas-prices 0.001 --gas-adjustment 1.5 --gas auto --yes
d tx staking delegate $(d keys show <GITOPIA_WALLET> --bech val -a) 100 --from <GITOPIA_WALLET> --chain-id --gas-prices 0.001 --gas-adjustment 1.5 --gas auto --yes
d tx staking delegate <VALOPER_ADDRESS> 100 --from <GITOPIA_WALLET> --chain-id --gas-prices 0.001 --gas-adjustment 1.5 --gas auto --yes
d tx staking redelegate $(d keys show <GITOPIA_WALLET> --bech val -a) <TO_VALOPER_ADDRESS> 100 --from <GITOPIA_WALLET> --chain-id --gas-prices 0.001 --gas-adjustment 1.5 --gas auto --yes
d tx staking unbond $(d keys show <GITOPIA_WALLET> --bech val -a) 100 --from <GITOPIA_WALLET> --chain-id --gas-prices 0.001 --gas-adjustment 1.5 --gas auto --yes
d tx distribution withdraw-all-rewards --from <GITOPIA_WALLET> --chain-id --gas-prices 0.001 --gas-adjustment 1.5 --gas auto --yes
d tx distribution withdraw-rewards $(d keys show <GITOPIA_WALLET> --bech val -a) --commission --from wallet --chain-id --gas-adjustment 1.5 --gas auto --gas-prices 0.001 -y
d tx gov vote <proposal_id> yes --from <GITOPIA_WALLET> --chain-id --gas-prices 0.001 --gas-adjustment 1.5 --gas auto --yes
d tx gov vote <proposal_id> no --from <GITOPIA_WALLET> --chain-id --gas-prices 0.001 --gas-adjustment 1.5 --gas auto --yes
d tx gov vote <proposal_id> abstain --from <GITOPIA_WALLET> --chain-id --gas-adjustment 1.5 --gas auto --gas-prices 0.001 -y
d status | jq
sudo systemctl status d
sudo journalctl -u d -f --no-hostname -o cat
sudo systemctl restart d
sudo systemctl stop d
sudo systemctl start d
sudo systemctl disable d
sudo systemctl enable d
sudo systemctl daemon-reload