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 ~/Create legacy wallet and generate address
Setting up a Babilon node
Last updated