Coder Social home page Coder Social logo

bonus-block's Introduction

BonusBlock hakkında

Bu repo uzun süredir mevcut, bende sanırım 2-3 aydır bonusblock node'u çalıştırıyorum.

Paylaşma nedenim yatırım aldığını gördüm, bu demek değildir ki testnet ödüllü.

Ne kadar sürecek bilgim yok, teşvikli testnet olacak kesin, blocktopia-01 için belirsiz.

Bazı sunucularım var %80'i boşta ve çalışmıyor, bende böyle değerlendiriyorum, belki sizde de vardır.

Topluluk kanallarım: Duyuru - Chat

Gereksinimler

Tartışmasız, yüksek uptime ve f/p'dan dolayı tercih ettiğim sunucu ve Hesap oluşturma

  • Kullanmış olduğum:
2 CPU
4 RAM
150 SSD
  • Tavsiye edilen:
4 CPU
8 RAM
400 SSD

Güncellemeler ve gerekli paketler

# Sistemi güncelliyoruz
sudo apt update
sudo apt-get install git curl build-essential make jq gcc snapd chrony lz4 tmux unzip bc -y

# go'yu yüklüyoruz
rm -rf $HOME/go
sudo rm -rf /usr/local/go
cd $HOME

curl https://dl.google.com/go/go1.20.1.linux-amd64.tar.gz | sudo tar -C/usr/local -zxvf -
cat <<'EOF' >>$HOME/.profile
export GOROOT=/usr/local/go
export GOPATH=$HOME/go
export GO111MODULE=on
export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin
EOF

source $HOME/.profile
go version

Node'u yüklüyoruz

cd $HOME
rm -rf BonusBlock-chain/
git clone https://github.com/BBlockLabs/BonusBlock-chain

cd BonusBlock-chain/
git fetch --all
git pull --all
git tag v0.1.39
git checkout v0.1.39

make install

bonus-blockd version

İnitalizasyon işlemleri

# monikerName'i kendi isminizle değişin değiştirin.
bonus-blockd init monikerName --chain-id=blocktopia-01

# Genesis
curl -Ls https://ss-t.bonusblock.nodestake.top/genesis.json > $HOME/.bonusblock/config/genesis.json 

# Addrbook
curl -Ls https://ss-t.bonusblock.nodestake.top/addrbook.json > $HOME/.bonusblock/config/addrbook.json

Servis dosyası oluşturma

sudo tee /etc/systemd/system/bonus-blockd.service > /dev/null << EOF
[Unit]
Description=Bonusblock Node
After=network-online.target
[Service]
User=$USER
ExecStart=$(which bonus-blockd) start
Restart=on-failure
RestartSec=10
LimitNOFILE=10000
[Install]
WantedBy=multi-user.target
EOF

sudo systemctl daemon-reload
sudo systemctl enable bonus-blockd

Snapshot

SNAP_NAME=$(curl -s https://ss-t.bonusblock.nodestake.top/ | egrep -o ">20.*\.tar.lz4" | tr -d ">")
curl -o - -L https://ss-t.bonusblock.nodestake.top/${SNAP_NAME}  | lz4 -c -d - | tar -x -C $HOME/.bonusblock

sudo systemctl restart bonus-blockd
journalctl -u bonus-blockd -f

node sync olduktan sonra:

# kendi cüzdan isminizi oluşturun
bonus-blockd keys add rues

Buradan. test tokeni alın.

Sync olunca da validatörünüzü oluşturun.:

bonus-blockd tx staking create-validator \
--amount 900000ubonus \
--pubkey $(bonus-blockd tendermint show-validator) \
--moniker "yourMonikerName" \
--identity "yourKeybaseId" \
--details "yourDetails" \
--website "yourWebsite" \
--chain-id blocktopia-01 \
--commission-rate 0.05 \
--commission-max-rate 0.20 \
--commission-max-change-rate 0.01 \
--min-self-delegation 1 \
--from yourWalletName \
--gas-adjustment 1.4 \
--gas auto \
-y

Buradan. explorer'i kullanabilirsiniz.

BonusBlock henüz discordu yok olsa paylaşırdım.

bonus-block's People

Contributors

ruesandora 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.