Skip to content

Commit

Permalink
Create hypersign.md
Browse files Browse the repository at this point in the history
  • Loading branch information
drkhayal authored Nov 28, 2022
1 parent a9d25a5 commit 083f965
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions hypersign.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
# Hypersign Nod qurulumu
## Sistem istəkləri
### Minimum
* 3x CPU;
* 4GB RAM
* 80GB Disk
* Qalıcı internet bağlantısı (testnet sırasında trafik minimum 10Mbps olacaq )

### Məsləhət görülən
* 4x CPU;
* 8GB RAM
* 200 GB depolama (SSD və ya NVME)
* Qalıcı internet bağlantısı (testnet sırasında trafik minimum 10Mbps olacaq )
### Tək script ilə avtomatik qurulum üçün
```
wget -O hype.sh https://raw.githubusercontent.com/drkhayal/hypersign/main/hype.sh && chmod +x hype.sh && ./hype.sh
```
### Sinxron olmağı yoxlamaq üçün.
```
hid-noded status 2>&1 | jq .SyncInfo
```
### Cüzdan yaratma
```
hid-noded keys add cüzdanadı
```
Cüzdan recover etmək üçün
```
hid-noded keys add cüzdanadı --recover
```
Mövcud cüzdanlara baxmaq üçün
```
hid-noded keys list
```
### Discorda daxil olub faucetdən token istəyin.
https://discord.gg/Jxg4mewh

### Validator yaratmaq.
```
hid-noded tx staking create-validator \
--amount 1999000uhid \
--from cüzdanadı \
--commission-max-change-rate "0.01" \
--commission-max-rate "0.2" \
--commission-rate "0.07" \
--min-self-delegation "1" \
--pubkey $(hid-noded tendermint show-validator) \
--moniker nodeadı \
--chain-id jagrat \
--fees 250uhid
```

0 comments on commit 083f965

Please sign in to comment.