Bootstrap Installation
Bootstrap installation instructions
If for whatever reason the following doesn't fix your issue, join the Discord server and ask in the public channels only for help. Do not respond to any DMs as scammers might try to trick you into giving them your funds!
QT/GUI Wallets
Download the NIX Blockchain Bootstrap file.
Close/shutdown your wallet.
Navigate to the NIX data directory.
Delete blocks and chainstate directories.
Unzip contents of the bootstrap .zip file to the NIX data directory.
Restart your wallet.
CLI Wallet
First, stop the wallet and delete the blocks and chainstate directories. Though not necessarily required, you might also want to delete the peers and banlist files.
nix-cli stop
rm -r ~/.nix/{blocks,chainstate,peers.dat,banlist.dat}
You can use wget or gdown to download the file..
wget
wget --load-cookies /tmp/cookies.txt "https://docs.google.com/uc?export=download&confirm=$(wget --quiet --save-cookies /tmp/cookies.txt --keep-session-cookies --no-check-certificate 'https://drive.google.com/file/d/1TWOxMFwvo-QTMQPWbyzmhMw7gOyLmZbD' -O- | sed -rn 's/.*confirm=([0-9A-Za-z_]+).*/\1\n/p')&id=1TWOxMFwvo-QTMQPWbyzmhMw7gOyLmZbD" -O NIXBlockchain-664566.zip && rm -rf /tmp/cookies.txt
unzip NIXBlockchain-638444.zip -d ~/.nix
If your system does not have wget and unzip already installed (commands assume Ubuntu Linux):
sudo apt update
sudo apt install wget
sudo apt install unzip
gdown
gdown https://drive.google.com/file/d/1TWOxMFwvo-QTMQPWbyzmhMw7gOyLmZbD
unzip NIXBlockchain-664566.zip -d ~/.nix
If your system does not have python-pip, gdown, and unzip already installed (commands assume Ubuntu Linux):
sudo apt update
sudo apt install python-pip
sudo -H pip install gdown
sudo apt install unzip
Restart your wallet.
nixd &
Last updated
Was this helpful?