Kiichain | Install
System Specs
Section titled “System Specs”| Hardware | Requirement |
|---|---|
| CPU | 8 Cores |
| RAM | 32 GB |
| Disk | 1000 GB |
Install Kiichain Validator
Section titled “Install Kiichain Validator”1. Download script for automatic run node
Section titled “1. Download script for automatic run node”curl -O https://raw.githubusercontent.com/KiiChain/testnets/refs/heads/main/testnet_oro/join_oro_cv.shchmod +x join_oro_cv.sh2. Edit node_moniker = your_validator_name
Section titled “2. Edit node_moniker = your_validator_name”nano join_oro_cv.sh3. Run script
Section titled “3. Run script”./join_oro_cv.sh4. Check Version
Section titled “4. Check Version”kiichaind version5. Check Logs
Section titled “5. Check Logs”journalctl -fu kiichain36. Create wallet
Section titled “6. Create wallet”kiichaind keys add wallet7. Export parameter untuk create/add validator
Section titled “7. Export parameter untuk create/add validator”export CHAIN_ID=oro_1336-1export AMOUNT=9000000akiiexport COMMISSION_MAX_CHANGE_RATE=0.1export COMMISSION_MAX_RATE=0.1export COMMISSION_RATE=0.1export MIN_SELF_DELEGATION_AMOUNT=9000000export MONIKER=your_monikerexport VALIDATOR_KEY_NAME=your_wallet_name8. Create validator
Section titled “8. Create validator”kiichaind tx staking create-validator \ --amount=$AMOUNT \ --pubkey=$(kiichaind tendermint show-validator) \ --moniker=$MONIKER \ --chain-id=$CHAIN_ID \ --commission-rate=$COMMISSION_RATE \ --commission-max-rate=$COMMISSION_MAX_RATE \ --commission-max-change-rate=$COMMISSION_MAX_CHANGE_RATE \ --min-self-delegation=$MIN_SELF_DELEGATION_AMOUNT \ --gas="auto" \ --gas-adjustment 1.3 \ --gas-prices="0.1akii" \ --from=$VALIDATOR_KEY_NAME