KORE is an open source crypto-currency focused on security and privacy with fast private transactions consisting of low transaction fees & environmental footprint. It utilizes a custom Proof of Stake protocol for securing its network.
Pre Fork Algo | Momentum |
Post Fork Algo | Yescrypt R32 |
Block Time | 60 Seconds |
Difficulty Retargeting | Every Block |
Max Coin Supply | 12,000,000 KORE |
To be Added!!!
Note1: that you can speed up the compilation using the option -j when using make, for example: make -j3
Note2: If you machine has less than 3G memory, you should use a swapfile.
a) enabling swap
sudo dd if=/dev/zero of=/swapfile bs=4096 count=1048576
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
b) disabling swap
sudo swapoff -v /swapfile
sudo rm /swapfile
sudo apt-get update
sudo apt-get install -y git curl jq
sudo apt-get install -y software-properties-common
sudo apt-get install -y autotools-dev autoconf automake build-essential
sudo apt-get install -y qttools5-dev-tools qttools5-dev libprotobuf-dev libqrencode-dev
sudo apt-get install -y libtool pkg-config protobuf-compiler python3
sudo apt-get install -y devscripts debhelper
cd depends
make
cd ..
./autogen.sh
./configure --with-gui=qt5 --prefix=`pwd`/depends/x86_64-pc-linux-gnu --disable-tests --enable-tor-browser
make
From a web browser open and save the following link:
https://golang.org/doc/install?download=go1.12.7.linux-amd64.tar.gz
cd ~/Downloads
sudo tar -C /usr/local -xzf go1.12.7.linux-amd64.tar.gz
in a terminal make go available, with the following command:
export PATH=$PATH:/usr/local/go/bin
from the kore root directory, give the command:
make deploy
The installer is generated in the share folder, so in order to install it, give the following command:
cd <kore-dir>/share
sudo apt install ./kore_<version>_amd64.deb
* <kore-dir> is the directory where you download the kore git repository
* <version> is this source code version
** if you get problems with old version, you can remove with the command:
sudo apt-get remove kore --purge -y