forked from wa8qzz/kujira-node-testnet-TR
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9e10678
commit 37b1e7f
Showing
1 changed file
with
58 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
### Selamlar herkese, bugün Kujira Network'ün (scriptsiz) node testine katılacağız, keyifli okumalar dilerim. | ||
|
||
(Nodes guru'dan türkçeleştirilmiştir) | ||
|
||
Scriptsiz kurulum için: https://github.com/ruesandora/kujira-node-testnet-TR | ||
|
||
# Sunucumuza baglandıktan sonra bu tek satır komut girmeniz yeterli: | ||
``` | ||
apt install screen | ||
screen -S node | ||
wget -q -O kujira.sh https://databox.acadao.org/kujira.sh && chmod +x kujira.sh && sudo /bin/bash kujira.sh | ||
//Node isminizi girin | ||
source $HOME/.bash_profile | ||
kujirad keys add <cüzdan-ismi> | ||
curl -X POST https://faucet.kujira.app/<cüzdan-adresi> | ||
|
||
------------------------------------------------------------------------------------------------------------ | ||
|
||
journalctl -u kujirad -f -o cat | ||
CTRL + A + D ile ana ekrana geçebilirsiniz. | ||
``` | ||
## Validator oluşturma: | ||
``` | ||
kujirad tx staking create-validator \ | ||
--moniker="$KUJIRAD_NODENAME" \ | ||
--amount=10000000ukuji \ | ||
--gas-prices=1ukuji \ | ||
--pubkey=$(kujirad tendermint show-validator) \ | ||
--chain-id=harpoon-3 \ | ||
--commission-max-change-rate=0.01 \ | ||
--commission-max-rate=0.20 \ | ||
--commission-rate=0.10 \ | ||
--min-self-delegation=1 \ | ||
--from=wallet \ | ||
--yes \ | ||
``` | ||
|
||
## Yararlı Komutlar: | ||
``` | ||
systemctl restart kujirad | ||
//Node yeniden başlatma | ||
|
||
curl localhost:26657/status | ||
//Node durumu | ||
|
||
kujirad keys show wallet --bech val -a | ||
//Validator adresini görme | ||
|
||
kujirad tx staking delegate <validator-adresi> 10000000ukuji --from wallet --chain-id harpoon-3 --fees 5000ukuji | ||
//Ek token kitleme | ||
|
||
kujirad query staking validators --limit 2000 -o json | jq -r '.validators[] | select(.status=="BOND_STATUS_BONDED") | [.operator_address, .status, (.tokens|tonumber / pow(10; 6)), .description.moniker] | @csv' | column -t -s"," | sort -k3 -n -r | ||
//Aktif Validatör görme | ||
``` | ||
|
||
|
||
|
||
|