Private PoA blockchain network with parity
13 february, 2019
I would like to post a short notes about private proof-of-authority blockchain network setup with Parity.
Install Parity
Check out Parity install manual at README.md on github. On my VPS with Debian 9.4 I have done:
1. Install yasm, cmake and libudev devel
apt-get install yasm cmake libudev-dev
2. Install rust
curl https://sh.rustup.rs -sSf | sh
3. Clone and build parity
git clone https://github.com/paritytech/parity-ethereum
cd parity-ethereum
cargo build --release --features final
cd parity-ethereum
cargo build --release --features final
4. Check parity version
cd ./target/release
./parity --version
./parity --version
Storage provider on blockchain for lightweight data blocks: traces, logs, events, tags, notes, etc...