Chia blockchain python implementation (full node, farmer, harvester, timelord, and wallet)
Go to file
2020-03-25 20:38:35 -07:00
.github/workflows Update pythonpackage.yml 2020-03-24 22:56:29 +09:00
config DB path for wallet, and search block field 2020-03-25 00:50:02 +09:00
lib Use chiabip158 from pypi. (#126) 2020-03-25 13:52:23 +09:00
plots Scripts (#14) 2019-11-08 16:51:01 -05:00
scripts DB path for wallet, and search block field 2020-03-25 00:50:02 +09:00
src Header hashing and display LCA and tips 2020-03-25 20:38:35 -07:00
ssl simple tls for integration 2020-03-13 08:48:25 -07:00
tests Fix lint 2020-03-25 20:38:35 -07:00
.flake8 Merge branch 'integration' of github.com:Chia-Network/chia-blockchain into integration 2020-02-27 11:23:03 +09:00
.gitignore Use chiabip158 from pypi. (#126) 2020-03-25 13:52:23 +09:00
CONTRIBUTING.md Merge branch 'master' into integration 2020-03-20 18:08:02 -07:00
definitions.py Use pathlib.Path instead of os.path 2020-02-06 11:02:27 -05:00
INSTALL.md ubuntu install steps 2020-03-11 13:20:42 -07:00
install.sh Use chiabip158 from pypi. (#126) 2020-03-25 13:52:23 +09:00
LICENSE Initial commit 2019-07-16 17:32:40 +09:00
mypy.ini Changed to mypy from pyright, fix tests (full node still broken) 2019-10-22 16:44:01 +09:00
README.md Move electron ui out of wallet, and add npm to install script 2020-03-24 22:43:41 +09:00
requirements.txt benchmark chia cost unit, other cost stuff 2020-03-24 23:09:31 -07:00
run-py-tests.sh static analysis changes (#113) 2020-03-09 22:23:13 +09:00
setup.py Add cli script, remove SSH ui and dependencies 2020-03-19 15:28:17 +09:00

chia-blockchain

Please check out the wiki and FAQ for information on this project.

Python 3.7 is required. 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 rules 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.

Step 1: Install the code

To install the chia-blockchain node, follow these instructions according to your operating system.

Step 2: Generate keys

First, create some keys by running the following script:

python -m scripts.regenerate_keys

Step 3a: Run a full node + wallet

To run a full node on port 8444, and connect to the testnet, run the following command. If you want to see std::out log output, modify the logging.std_out variable in ./config/config.yaml.

./scripts/run_full_node.sh
npm run --prefix ./src/electron-ui start

Step 3b: Run a farmer + full node + wallet

Instead of running only a full node (as in 4a), you can also run a farmer. 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. You can also change the working directory and final directory for plotting, with the "-t" and "-d" arguments to the create_plots script.

python -m scripts.create_plots -k 20 -n 10
sh ./scripts/run_farming.sh
npm run --prefix ./src/electron-ui start

Step 3c: Run a timelord + full node + wallet

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
npm run --prefix ./src/electron-ui start

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 port 8444 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 in the current alpha 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.

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

For increased networking performance, install uvloop:

pip install -e ".[uvloop]"

You can also use the HTTP RPC api to access information and control the full node:

curl -X POST http://localhost:8555/get_blockchain_state
curl -d '{"header_hash":"afe223d75d40dd7bd19bf35846d0c9dce608bfc77ee5baa9f9cd6b98436e428b"}' -H "Content-Type: application/json" -X POST http://localhost:8555/get_header