πFractal Bitcoin Node Setup

Contabo : https://bit.ly/contabourl InterServer : https://bit.ly/interserverurl Digital Ocean : https://bit.ly/4cKNFco
Server Requirement :
Operating System CPU : 2+ RAM : Min 4 GB Storage : Min 100 GB SSD
Update :
sudo apt-get update && sudo apt-get upgrade -ysudo apt install curl build-essential pkg-config libssl-dev git wget jq make gcc chrony -yFractal :
wget https://github.com/fractal-bitcoin/fractald-release/releases/download/v0.1.8/fractald-0.1.8-x86_64-linux-gnu.tar.gztar -zxvf fractald-0.1.8-x86_64-linux-gnu.tar.gzEnter the directory :
cd fractald-0.1.8-x86_64-linux-gnuCrate "Data" Directory :
mkdir dataCopying the Configuration File :
cp ./bitcoin.conf ./dataCreating a Service :
sudo tee /etc/systemd/system/fractald.service > /dev/null <<EOF
[Unit]
Description=Fractal Bitcoin Node
After=network.target
[Service]
User=root
WorkingDirectory=/root/fractald-0.1.8-x86_64-linux-gnu
ExecStart=/root/fractald-0.1.8-x86_64-linux-gnu/bin/bitcoind -datadir=/root/fractald-0.1.8-x86_64-linux-gnu/data/ -maxtipage=504576000
Restart=always
RestartSec=3
LimitNOFILE=infinity
[Install]
WantedBy=multi-user.target
EOFReload services :
sudo systemctl daemon-reloadEnable Service :
sudo systemctl enable fractaldStart Service :
sudo systemctl start fractaldCheck Logs :
sudo journalctl -u fractald -fo catCTRL C
Crate Wallet :
cd /root/fractald-0.1.8-x86_64-linux-gnu/bin./bitcoin-wallet -wallet=wallet -legacy createGetting Wallet Private Key :
cd /root/fractald-0.1.8-x86_64-linux-gnu/bin
./bitcoin-wallet -wallet=/root/.bitcoin/wallets/wallet/wallet.dat -dumpfile=/root/.bitcoin/wallets/wallet/MyPK.dat dump
cd && awk -F 'checksum,' '/checksum/ {print "CΓΌzdan Private Keyiniz:" $2}' .bitcoin/wallets/wallet/MyPK.datWait for a while and then the logs will appear. It will then show you your private key.
Import your wallet to Unisat Wallet : https://chromewebstore.google.com/detail/unisat-wallet/ppbibelpcjmhbdihakflkdcoccbgbkpo?pli=1
Select "Legacy" as the wallet type.
Wallet Δ°nfo :
./bitcoin-wallet -wallet=wallet info
Last updated