Donate VRC/VRM for the Wiki to VBzaNDExHyFpnNvYc5QH5e4ipBZqxxPnKJ . Thank you, Joe.

Difference between revisions of "Manual Verium Wallet Installation"

From VeriCoin & Verium Wiki
Jump to: navigation, search
 
Line 51: Line 51:
 
     "comment" : "Bootstrap successful; veriumd has been stopped, please restart."
 
     "comment" : "Bootstrap successful; veriumd has been stopped, please restart."
 
   }
 
   }
 
Finally '''backup''' by
 
  cp ~/.verium/wallet.dat somewhere/save/wallet.dat
 
 
You can download the Blockchain manually as well:
 
  wget -O ~/verium/bootstrap_VRM.zip http://www.vericoin.info/downloads/bootstrap_VRM.zip
 
  ./veriumd stop
 
unzip it
 
  cd ~/verium
 
  unzip bootstrap_VRM.zip
 
remove initial blockchain files
 
  rm -rf ~/.verium/txleveldb
 
  rm -rf ~/.verium/blk0001.dat
 
and replace them by the recently downloaded ones
 
  mv ~/verium/bootstrap/blk0001.dat ~/.verium/blk0001.dat
 
  mv ~/verium/bootstrap/txleveldb ~/.verium/txleveldb
 

Latest revision as of 12:53, 1 April 2018

In a Terminal start with an update of your system

 sudo apt-get update && sudo apt-get upgrade -y && sudo apt-get dist-upgrade -f -y

The wallet needs this:

 sudo apt-get install build-essential libboost-dev libboost-system-dev libboost-filesystem-dev \
      libcurl4-openssl-dev libboost-thread-dev libssl-dev libdb++-dev libboost-program-options-dev \
      libminiupnpc-dev libboost-all-dev libqrencode-dev freeglut3-dev git libminizip-dev -y

Clone the wallet software itself

 git clone https://github.com/VeriumReserve/verium ~/verium/wallet

The wallet lives here

 cd verium/wallet/src

We compile the wallet by

 make -f makefile.unix

This may take a while.

It is configured in

 nano verium.conf

with the following code

addnode=vrmsupernode.vericoin.info
addnode=vrmsupernode3.vericoin.info
server=1
listen=1
daemon=1
rpcuser=YourSoloMiningName
rpcpassword=YourSoloMiningPassword
rpcallowip=YourAccessIP
rpcallowip=localhost 

Details can be configured later as well. Add more nodes from verium.conf. If you mine solo you have to come up with a username and a password for your miners to access the wallet. You also have to configure the IPs of the machines that should be able to connect.

Now start the wallet

 ./veriumd

The wallet starts downloading the blockchain now. Get info about this by:

 ./veriumd getinfo 

The most important thing right now is your wallets address gotten by

  ./veriumd getaddressesbyaccount ""

To speed up the Blockchain download you can manually download it by ("false" to keep your verium.conf)

 ./veriumd bootstrap false

It takes a while and then outputs

 {
   "success" : true,
   "comment" : "Bootstrap successful; veriumd has been stopped, please restart."
 }