Giter Club home page Giter Club logo

mises-mainnet's Introduction

Tutorial Runnig Validator Mises Mainnet

Join Telegram Airdrop Proper

Referensi

Dokumen resmi

Server Discord

Form Register Validator

Details Event Mainnet

Persyaratan hardware & software

Persyaratan software/OS

Komponen Spesifikasi minimal
Sistem Operasi Ubuntu 16.04
Komponen Spesifikasi rekomendasi
Sistem Operasi Ubuntu 20.04-22

Sebelum Menjalankan Kan Node, Pastikan Anda Memiliki Mises Mainnet (Karena Butuh Token Mainnet Bukan Testnet)

Install otomatis

wget -O mises.sh https://raw.githubusercontent.com/Diimzyyy/mises-mainnet/main/mises.sh && chmod +x mises.sh && ./mises.sh

Load variable ke system

source $HOME/.bash_profile

Statesync

N/A

Informasi node

  • cek sync node
misestmd status 2>&1 | jq .SyncInfo
  • cek log node
journalctl -fu misestmd -o cat
  • cek node info
misestmd status 2>&1 | jq .NodeInfo
  • cek validator info
misestmd status 2>&1 | jq .ValidatorInfo
  • cek node id
misestmd tendermint show-node-id

Membuat wallet

  • wallet baru
misestmd keys add $WALLET
  • recover wallet
misestmd keys add $WALLET --recover
  • list wallet
misestmd keys list
  • hapus wallet
misestmd keys delete $WALLET

Simpan informasi wallet

MISES_WALLET_ADDRESS=$(misestmd keys show $WALLET -a)
MISES_VALOPER_ADDRESS=$(misestmd keys show $WALLET --bech val -a)
echo 'export MISES_WALLET_ADDRESS='${MISES_WALLET_ADDRESS} >> $HOME/.bash_profile
echo 'export MISES_VALOPER_ADDRESS='${MISES_VALOPER_ADDRESS} >> $HOME/.bash_profile
source $HOME/.bash_profile

Membuat validator

  • cek balance
misestmd query bank balances $MISES_WALLET_ADDRESS
  • membuat validator
misestmd tx staking create-validator \
  --amount 1000000umis \
  --from $WALLET \
  --commission-max-change-rate "0.01" \
  --commission-max-rate "0.2" \
  --commission-rate "0.07" \
  --min-self-delegation "1" \
  --pubkey  $(misestmd tendermint show-validator) \
  --moniker $NODENAME \
  --fees 250umis \
  --chain-id $MISES_CHAIN_ID
  • edit validator
misestmd tx staking edit-validator \
  --moniker="nama-node" \
  --identity="<your_keybase_id>" \
  --website="<your_website>" \
  --details="<your_validator_description>" \
  --chain-id=$MISES_CHAIN_ID \
  --fees 250umis \
  --from=$WALLET

° unjail validator

misestmd tx slashing unjail \
  --broadcast-mode=block \
  --from=$WALLET \
  --chain-id=$MISES_CHAIN_ID \
  --fees=250umis

Voting

misestmd tx gov vote 1 yes --from $WALLET --chain-id=$MISES_CHAIN_ID

Delegasi dan Rewards

  • delegasi
misestmd tx staking delegate $MISES_VALOPER_ADDRESS 1000000umis --from=$WALLET --chain-id=MISES_CHAIN_ID --fees=250umis
  • withdraw reward
misestmd tx distribution withdraw-all-rewards --from=$WALLET --chain-id=$MISES_CHAIN_ID --fees=250umis
  • withdraw reward beserta komisi
misestmd tx distribution withdraw-rewards $MISES_VALOPER_ADDRESS --from=$WALLET --commission --chain-id=$MISES_CHAIN_ID

Hapus node

sudo systemctl stop misestmd && \
sudo systemctl disable misestmd && \
rm /etc/systemd/system/misestmd.service && \
sudo systemctl daemon-reload && \
cd $HOME && \
rm -rf mises-tm && \
rm -rf mises.sh && \
rm -rf .misestm && \
rm -rf $(which misestmd)

mises-mainnet's People

Contributors

diimzyyy avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.