Skip to content

Latest commit

 

History

History
46 lines (40 loc) · 1.22 KB

osmosis.md

File metadata and controls

46 lines (40 loc) · 1.22 KB

Osmosis

create validator

osmosisd tx staking create-validator \
    --amount=1000000uosmo \
    --commission-rate="0.05" \
    --commission-max-rate="0.1" \
    --commission-max-change-rate="0.01" \
    --min-self-delegation="1" \
    --pubkey=$(osmosisd tendermint show-validator) \
    --moniker="Polkachu" \
    --website "https://polkachu.com" \
    --identity "0A6AF02D1557E5B4" \
    --details "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]" \
    --chain-id=osmosis-1 \
    --gas="auto" \
    --gas-adjustment="1.2" \
    --gas-prices="0.025uosmo" \
    --from=polkachu

Edit validator

osmosisd tx staking edit-validator \
    --moniker "polkachu.com" \
    --website "https://polkachu.com" \
    --chain-id=osmosis-1 \
    --gas="auto" \
    --gas-adjustment="1.2" \
    --gas-prices="0.025uosmo" \
    --from=polkachu

Redelegate

osmosisd tx staking redelegate osmovaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4phpkatp osmovaloper1z0sh4s80u99l6y9d3vfy582p8jejeeu6tcucs2 3939000000uosmo \
    --chain-id=osmosis-1 \
    --from=polkachu \
    --gas="auto" \
    --gas-adjustment="1.2" \
    --gas-prices="0.025uosmo"