Installation
Automatic Installation
source <(curl -s https://raw.githubusercontent.com/NodersUA/Scripts/main/babylon)Manual Installation
Setting up a Bitcoin node
Install node
# Update the repositories
apt update && apt upgrade -y# Download Bitcoin Core binary
mkdir bitcoin && cd bitcoin
wget https://bitcoincore.org/bin/bitcoin-core-26.0/bitcoin-26.0-x86_64-linux-gnu.tar.gz
# Extract the downloaded archive
tar -xvf bitcoin-26.0-x86_64-linux-gnu.tar.gz
cd bitcoin-26.0/bin
# Provide execution permissions to binaries
chmod +x bitcoind bitcoin-cli
sudo cp bitcoind bitcoin-cli /usr/local/bin/ && cd ~/Check the last block in explorer
Create legacy wallet and generate address
Go to the #faucet-signet-btc branch or website and request tokens
Setting up a Babilon node
Setup config
(OPTIONAL) Turn off indexing in config.toml
Now all ok, check the status
Wallet
The wallet has been created. In the last line there will be a phrase that must be written down
Go to the #faucet branch and request tokens
Validator
Do not forget to create a profile on https://keybase.io/ and set a profile photo there that will be imported by key and used for your validators.
Check yourself in the list explorer
Or by command
!!! Save priv_validator_key.json which is located in /root/.babylond/config
Last updated