cover | coverY |
---|---|
../.gitbook/assets/Discord Invite (29).png |
262 |
Get standard debug info from the juno
daemon:
junod status
Check if your node is catching up:
# Query via the RPC (default port: 26657)
curl http://localhost:26657/status | jq .result.sync_info.catching_up
Get your node ID:
junod tendermint show-node-id
{% hint style="info" %}
Your peer address will be the result of this plus host and port, i.e. <id>@<host>:26656
if you are using the default port.
{% endhint %}
Check if you are jailed or tombstoned:
junod query slashing signing-info $(junod tendermint show-validator)
Set the default chain for commands to use:
junod config chain-id juno-1
Get your valoper
address:
junod keys show <your-key-name> -a --bech val
See keys on the current box:
junod keys list
Import a key from a mnemonic:
junod keys add <new-key-name> --recover
Export a private key (warning: don't do this unless you know what you're doing!)
junod keys export <your-key-name> --unsafe --unarmored-hex
Withdraw rewards (including validator commission), where junovaloper1...
is the validator address:
junod tx distribution withdraw-rewards <junovaloper1...> --from <your-key> --commission
Stake:
junod tx staking delegate <junovaloper1...> <AMOUNT>ujuno --from <your-key>
Find out what the JSON for a command would be using --generate-only
:
junod tx bank send $(junod keys show <your-key-name> -a) <recipient addr> <AMOUNT>ujuno --generate-only
Query the results of a gov vote that has ended, from a remote RPC (NB - you have to specify a height before the vote ended):
junod q gov votes 1 --height <height-before-vote-ended> --node https://rpc-archive.junonetwork.io:443
Transfer JUNO to another chain (osmosis) with IBC
junod tx ibc-transfer transfer transfer channel-0 <osmo1...> 1000000ujuno --from <juno1...> --node https://rpc-archive.junonetwork.io:443 --packet-timeout-height 0-0
Query the validator set (and jailed status) via CLI:
junod query staking validators --limit 1000 -o json | jq -r '.validators[] | [.operator_address, (.tokens|tonumber / pow(10; 6)), .description.moniker, .jail, .status] | @csv' | column -t -s"," | sort -k2 -n -r | nl
Get contract state:
junod q wasm contract-state all <contract-address>