Blur v0.1.5 'Nebulous Glow'
This release will implement the v6 hardfork and is mandatory. The upgrade is scheduled for block 7500. A new, faster hashing algorithm will significantly increase mining rates.
Nodes that are updated will retain their full blockchain, with a hardfork at block 7500. If your binaries are not updated by the fork, your node will no longer be on the mainnet chain.
Note that the Windows executables will be blocked by your Anti-virus/Windows Defender. Add an exception or disable temporarily to download and run.
How To Verify These Binaries:
Download the zip archive of your choice and the accompanying '.asc' file. If you haven't already, download and install GnuPG.
Linux
Type the following command into a terminal: gpg --keyserver sks-keyservers.net --recv-keys D5C9054050576902
After downloading they public keys, check their fingerprint: gpg --fingerprint D5C9054050576902
You should see the output:
pub rsa4096 2018-06-07 [SC]
F3FE DCCF A90C 5683 1318 3C33 D5C9 0540 5057 6902
uid [ unknown] Blur Network (Blur: The Private Cryptocurrency) <admin@blur.cash>
sub rsa4096 2018-06-07 [E]
Then, verify the files you've downloaded with: gpg --verify blur-v0.1.5-linux-x86_64.zip.asc blur-v0.1.5-linux-x86_64.zip
The output should say "Good Signature." The warning message is due to no trust index being assigned to the signature, simply ignore it.
Windows
Open cmd.exe and type: "C:\Program Files\Gnu\GnuPg\gpg.exe" --keyserver sks-keyservers.net --recv-keys D5C9054050576902
After downloading they public keys, check their fingerprint: "C:\Program Files\Gnu\GnuPg\gpg.exe" --fingerprint D5C9054050576902
You should see the output:
pub rsa4096 2018-06-07 [SC]
F3FE DCCF A90C 5683 1318 3C33 D5C9 0540 5057 6902
uid [ unknown] Blur Network (Blur: The Private Cryptocurrency) <admin@blur.cash>
sub rsa4096 2018-06-07 [E]
Move into your downloads folder with cd C:\Users\[your username]\Downloads
Then, verify the files you've downloaded with: "C:\Program Files\Gnu\GnuPg\gpg.exe" --verify blur-v0.1.5-win-x86_64.zip.asc blur-v0.1.5-win-x86_64.zip
The output should say "Good Signature." The warning message is due to no trust index being assigned to the signature, simply ignore it.
Linux Binaries & Instruction
Download and unzip the compressed binaries. Start the daemon with the command ./blurd
Your daemon will then begin to sync with the network.
Please add the seed node addresses below if you have trouble syncing. To do so, you may create a config file titled blurnet.conf
in the directory located at ~/.blurnet
on Linux. Add the following lines to that config file:
seed-node=149.28.207.149:14894 seed-node=144.202.62.30:14894 seed-node=45.76.29.176:14894
Alternatively, open a terminal and launch the daemon executable with the following options:
./blurd --seed-node 45.76.29.176:14894 --seed-node 144.202.62.30:14894 --seed-node 149.28.207.149:14894
Once you're fully synced, start the wallet with the command: ./blur-wallet-cli
Follow the prompts to create a wallet file & password, then enter the command:
start_mining [# of threads]
Where [# of threads]
is the number of threads within your CPU that you wish to dedicate to mining BLUR.
Example: start_mining 4
The wallet should output the message Mining started in daemon
. You can track your progress in the daemon output. There is a slight delay between mined blocks shown in the daemon, and the reflection in your wallet's balance. Type help
into either command line interface for a list of commands and their function(s).
Windows Binaries & Instruction
Download and unzip the compressed binaries. Double click the file named blurd.exe. Your daemon will then begin to sync with the network.
Please add the seed nodes if you have trouble syncing. To do so, you may create a config file titled blurnet.conf
in the directory located at C:/Users/[your username]/AppData/Roaming/blurnet
on Windows. Add to that file the following lines:
seed-node=149.28.207.149:14894 seed-node=144.202.62.30:14894 seed-node=45.76.29.176:14894
Alternatively, open Windows Powershell and type cd Downloads/blur-v0.1.5-win-x86_64
to switch to the directory you extracted the binaries into. Launch the daemon executable with the following options:
./blurd.exe --seed-node 45.76.29.176:14894 --seed-node 144.202.62.30:14894 --seed-node 149.28.207.149:14894
Once you're fully synced, start the wallet by double clicking the file named blur-wallet-cli.exe
Follow the prompts to create a wallet file & password, then enter the command:
start_mining [# of threads]
Where [# of threads]
is the number of threads within your CPU that you wish to dedicate to mining BLUR.
Example: start_mining 4
The wallet should output the message Mining started in daemon
. You can track your progress in the daemon output. There is a slight delay between mined blocks shown in the daemon, and the reflection in your wallet's balance. Type help
into either command line interface for a list of commands and their function(s).
Blockchain Bootstrap Procedure
Download & extract the blockchain-bootstrap-blur.tar.bz2
archive. You should have a folder named export
. Move the export folder into your blurnet
data directory.
This should result in following structure:
[your user's data directory]/export/blockchain.raw
Linux: ~/.blurnet/export/blockchain.raw
Windows: C:/Users/[your username]/AppData/Roaming/blurnet/export/blockchain.raw
Now simply run the blur-blockchain-import
executable. It will find the bootstrap in the export
directory that you moved the blockchain.raw
file into automatically, and you will be synced to block 15,000 immediately.