This is the beta stage of the HeliosProtocol node. It is currently under active development and is not yet complete.
Py-helios-node install instructions:
Make sure you have the correct version of python installed. The version is listed at the top of this document. Caution: do not upgrade your system python from 2 to 3 as this can cause massive problems. Instead, we recommend installing a new version of python using pyenv. To install pyenv, use the setup script found here. For completeness, we will summarize the current setup steps here:
Install
$ curl -L https://github.com/pyenv/pyenv-installer/raw/master/bin/pyenv-installer | bashEdit .bashrc
$ vi ~/.bashrcadd the lines
export PATH="~/.pyenv/bin:$PATH" eval "$(pyenv init -)" eval "$(pyenv virtualenv-init -)"
Reload .bashrc
$ source ~/.bashrc
Install python 3.6
First, make sure you have some required packages installed:
$ sudo apt install build-essential $ sudo apt install zlib1g $ sudo apt install zlib1g-dev $ sudo apt install libssl-dev
Then install python 3.6 using the following command
$ pyenv install 3.6.5
Install git
$ sudo apt install git
or
$ sudo yum install git
Clone this repo
$ git clone https://github.com/Helios-Protocol/py-helios-node
Set python environment
$ cd py-helios-node $ pyenv local 3.6.5
Install the Helios Node
$ pip3 install -e .Ensure that the slow version of RLP is uninstalled, and install a fresh copy of the fast one. This will force all external libraries that use RLP to switch to the fast one.
$ pip3 uninstall rlp $ pip3 uninstall rlp-cython $ pip3 install rlp-cython
The Helios Protocol consensus mechanism is partially based on PoS. This requires that all nodes are associated with a wallet address that has a non-zero stake in order to run. So at this point, you have to configure the node software to use your wallet as a source of coins to stake.
- Create keystore file. This is an encrypted file that stores your private key. You will be able to create this with our wallet when it is released. But for now, you can just create a new wallet using MyEtherWallet, then save the wallet file. This file will work with Helios Protocol.
- Place keystore file within the directory helios/keystore
- Configure node to use your keystore file. Copy helios/helios_config_template.py to helios/helios_config.py. Then edit the new file and tell it the filename of your keystore file to use.
The node software needs to have an open path for communication with other nodes on the network. If you have firewall software enabled, such as iptables, then you might have to open some ports to ensure this. The default installation of Ubuntu and Debian probably already have the ports open. Other distros such as Centos likely have most ports closed by default.
Debian and Ubuntu
$ sudo iptables -I INPUT -p tcp -m tcp --dport 30303 -j ACCEPT
$ sudo iptables -I INPUT -p tcp -m tcp --dport 30304 -j ACCEPT
$ sudo iptables-saveCentos 7
$ sudo firewall-cmd --permanent –zone=public --add-port=30303/tcp
$ sudo firewall-cmd --permanent –zone=public --add-port=30304/tcp
$ sudo firewall-cmd --reload$ heliosThen enter your keystore password when prompted. This password is never saved, it is only used to initially decrypt your keystore file.
This document is still a work in progress. More details will come soon.