Remove database access from blockchain, and handle headers instead of blocks Avoid processing blocks and unfinished blocks that we have already seen. Also adds test for load. Plotting improvements
chia-blockchain
Python 3.7 is used for this project. Make sure your default python version is >=3.7 by typing python3.
You will need to enable UPnP on your router or add a NAT (for IPv4 but not IPv6) and firewall rule to allow TCP port 8444 access to your peer. These methods tend to be router make/model specific.
For alpha testnet most should only install harvesters, farmers, plotter and full nodes. Building timelords and VDFs is for sophisticated users in most environments. Chia Network and additional volunteers are running sufficient time lords for testnet consensus.
Install harvester, farmer, plotter, and full node
Debian/Ubuntu
sudo apt-get update
sudo apt-get install build-essential cmake python3-dev python3-venv libssl-dev libffi-dev --no-install-recommends
git clone https://github.com/Chia-Network/chia-blockchain.git
cd chia-blockchain
sh install.sh
# Install MongoDB Community Edition
# Instructions - https://docs.mongodb.com/manual/administration/install-on-linux/
# Run mongo database if not running system-wide
mongod --fork --dbpath ./db/ --logpath mongod.log
. .venv/bin/activate
Amazon Linux 2
sudo yum update
sudo yum install gcc-c++ cmake3 wget git openssl openssl-devel
sudo yum install python3 python3-devel libffi-devel
# CMake - add a symlink for cmake3 - required by blspy
sudo ln -s /usr/bin/cmake3 /usr/local/bin/cmake
git clone https://github.com/Chia-Network/chia-blockchain.git
cd chia-blockchain
sh install.sh
# Install MongoDB Community Edition
# Instructions - https://docs.mongodb.com/manual/administration/install-on-linux/
# Run mongo database if not running system-wide
mongod --fork --dbpath ./db/ --logpath mongod.log
. .venv/bin/activate
CentOS 7
sudo yum update
sudo yum install centos-release-scl-rh epel-release
sudo yum install devtoolset-8-toolchain cmake3 libffi-devel
sudo yum install wget git openssl openssl-devel
# CMake - add a symlink for cmake3 - required by blspy
sudo ln -s /usr/bin/cmake3 /usr/local/bin/cmake
scl enable devtoolset-8 bash
# Install Python 3.7.5 (current rpm's are 3.6.x)
wget https://www.python.org/ftp/python/3.7.5/Python-3.7.5.tgz
tar -zxvf Python-3.7.5.tgz; cd Python-3.7.5
./configure --enable-optimizations; sudo make install; cd ..
git clone https://github.com/Chia-Network/chia-blockchain.git
cd chia-blockchain
sh install.sh
# Install MongoDB Community Edition
# Instructions - https://docs.mongodb.com/manual/administration/install-on-linux/
# Run mongo database if not running system-wide
mongod --fork --dbpath ./db/ --logpath mongod.log
. .venv/bin/activate
Windows (WSL + Ubuntu)
Install WSL + Ubuntu 18.04 LTS, upgrade to Ubuntu 19.x
This will require multiple reboots. From an Administrator PowerShell
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux
and then
Enable-WindowsOptionalFeature -Online -FeatureName VirtualMachinePlatform.
Once that is complete, install Ubuntu 18.04 LTS from the Windows Store.
# Upgrade to 19.x
sudo nano /etc/update-manager/release-upgrades
# Change "Prompt=lts" to "Prompt=normal" save and exit
sudo apt-get -y update
sudo apt-get -y upgrade
sudo do-release-upgrade
sudo apt-get install -y build-essential cmake python3-dev python3-venv mongodb software-properties-common --no-install-recommends
git clone https://github.com/Chia-Network/chia-blockchain.git
cd chia-blockchain
sudo sh install.sh
# Run mongo database if not running system-wide
mongod --fork --dbpath ./db/ --logpath mongod.log
. .venv/bin/activate
Alternate method for Ubuntu 18.04 LTS
In ./install.sh:
Change python3 to python3.7
Each line that starts with pip ... becomes python -m pip ...
sudo apt-get -y update
sudo apt-get install -y build-essential cmake python3-dev python3-venv mongodb software-properties-common --no-install-recommends
# Install python3.7 with ppa
sudo add-apt-repository -y ppa:deadsnakes/ppa
sudo apt-get -y update
sudo apt-get install -y python3.7 python3.7-venv python3.7-dev
git clone https://github.com/Chia-Network/chia-blockchain.git
cd chia-blockchain
sudo sh install.sh
# Run mongo database if not running system-wide
mongod --fork --dbpath ./db/ --logpath mongod.log
. .venv/bin/activate
MacOS
Make sure brew is available before starting the setup.
brew tap mongodb/brew
brew upgrade python
brew install cmake mongodb-community@4.2
git clone https://github.com/Chia-Network/chia-blockchain.git
cd chia-blockchain
sh install.sh
# Run mongo database if not running system-wide
mongod --fork --dbpath ./db/ --logpath mongod.log
. .venv/bin/activate
Install timelord
Note: this step is needed only if you intend to run a timelord or a local simulation. These assume you've already successfully installed harvester, farmer, plotting, and full node above.
Ubuntu/Debian
cd chia-blockchain
sh install_timelord.sh
Amazon Linux 2 and CentOS 7
#Only for Amazon Linux 2
sudo amazon-linux-extras install epel
sudo yum install gmp-devel mpfr-devel
# Install Boost 1.72.0
wget https://dl.bintray.com/boostorg/release/1.72.0/source/boost_1_72_0.tar.gz
tar -zxvf boost_1_72_0.tar.gz
cd boost_1_72_0
./bootstrap.sh --prefix=/usr/local
sudo ./b2 install --prefix=/usr/local --with=all; cd ..
# Install Flint2
git clone https://github.com/wbhart/flint2
cd flint2; ./configure; sudo make install; cd ..
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib
cd chia-blockchain
sh install_timelord.sh
Windows (WSL + Ubuntu)
Install WSL + Ubuntu upgraded to 19.x
cd chia-blockchain
sh install_timelord.sh
Alternate method for Ubuntu 18.04
# Install boost 1.70 with ppa
sudo add-apt-repository -y ppa:mhier/libboost-latest
sudo apt-get update
sudo apt-get install libboost1.70 libboost1.70-dev
MacOS
brew install boost gmp mpir mpfr
cd chia-blockchain
git clone https://github.com/wbhart/flint2
sh install_timelord.sh
Generate keys
First, create some keys by running the following script:
python -m scripts.regenerate_keys
Run a full node
To run a full node on port 8002, and connect to the testnet, run the following command. This wil also start an ssh server in port 8222 for the UI, which you can connect to to see the state of the node.
python -m src.server.start_full_node "127.0.0.1" 8444 -id 1 -u 8222 &
ssh -p 8222 localhost
Run a farmer + full node
Farmers are entities in the network who use their hard drive space to try to create blocks (like Bitcoin's miners), and earn block rewards. First, you must generate some hard drive plots, which can take a long time depending on the size of the plots (the k variable). Then, run the farmer + full node with the following script. A full node is also started, which you can ssh into to view the node UI (previous ssh command).
python -m scripts.create_plots -k 20 -n 10
sh ./scripts/run_farming.sh
Run a timelord + full node
Timelords execute sequential verifiable delay functions (proofs of time), that get added to blocks to make them valid. This requires fast CPUs and a lot of memory as well as completing both install steps above.
sh ./scripts/run_timelord.sh
Tips
When running the servers on Mac OS, allow the application to accept incoming connections.
Ubuntu 19.xx, Amazon Linux 2, and CentOS 7.7 or newer are the easiest linux install environments currently.
UPnP is enabled by default, to open the port for incoming connections. If this causes issues, you can disable it in the configuration. Some routers may require port forwarding, or enabling UPnP in the router configuration.
Due to the nature of proof of space lookups by the harvester you should limit the number of plots on a physical drive to 50 or less. This limit should significantly increase before beta.
You can also run the simulation, which runs all servers and multiple full nodes, locally, at once. If you want to run the simulation, change the introducer ip in ./config/config.yaml so that the full node points to the local introducer (127.0.0.1:8445).
Note the the simulation is local only and requires installation of timelords and VDFs.
The introducer will only know the local ips of the full nodes, so it cannot broadcast the correct ips to external peers.
sh ./scripts/run_all_simulation.sh
Run tests and linting
The first time the tests are run, BlockTools will create and persist many plots. These are used for creating proofs of space during testing. The next time tests are run, this won't be necessary. Make sure to run mongo before running the tests.
mongod --dbpath ./db/ &
black src tests && flake8 src && mypy src tests
py.test tests -s -v
Configure VS code
- Install Python extension
- Set the environment to ./.venv/bin/python
- Install mypy plugin
- Preferences > Settings > Python > Linting > flake8 enabled
- Preferences > Settings > Python > Linting > mypy enabled
- Preferences > Settings > Formatting > Python > Provider > black
- Preferences > Settings > mypy > Targets: set to ./src and ./tests