alesanro / ethereum-dev-process-demo-1

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Demo 1. Ethereum development tools & services

Use this repo as an example of setup configuration for Parity private PoA Ethereum network. Check out steps of full setup process at parity's wiki.

In our case we setup 2 private nodes with 2 signers.

UI client

It also includes UI client for Parity network which is used to write, deploy and track smart contracts, manage users' wallets and some other things.

To install the client run

npm run get:ui

and to start it you need to execute

npm run run:ui

Explorers

A blockchain explorer is a browser for the blockchain, it allows you to explore the whole entire blockchain.

For the sake of showing different versions of blockchain explorers you are prompted to choose one of suggested explorers: Etherscan Light and Ethereum Explorer.

To install Ethereum Light use command

npm run get:explorer

for Ethereum Explorer execute

npm run get:explorer2

To run them execute ether (for Ethereum Light)

npm run run:explorer

or (for Ethereum Explorer)

npm run run:explorer2

Parity nodes

When all setup work has done execute

npm run run:node0

and

npm run run:node1

About

License:MIT License


Languages

Language:JavaScript 81.2%Language:Shell 18.8%