Go to file
slamp c4bef036bc typo corrected in help message 2018-02-03 18:50:53 +01:00
blockchain chain.py documented 2018-02-02 12:06:48 +05:30
templates html cleaned 2018-02-02 12:02:13 +05:30
.gitignore blockshell not found buf fixed 2018-01-27 19:19:35 +05:30
CODE_OF_CONDUCT.md Create CODE_OF_CONDUCT.md 2018-01-29 18:05:19 +05:30
CONTRIBUTING.md Create CONTRIBUTING.md 2018-01-29 18:03:36 +05:30
LICENSE Create LICENSE 2018-01-25 23:35:33 +05:30
README.md removed hash logs 2018-01-31 12:23:46 +05:30
_config.yml Set theme jekyll-theme-cayman 2018-02-02 10:49:18 +05:30
bscli.py typo corrected in help message 2018-02-03 18:50:53 +01:00
setup.py blockshell no moduel bug fixed 2018-01-27 19:04:58 +05:30
web.py added get started gude in web 2018-02-02 11:55:05 +05:30

README.md

Tweet

📖 README.md just includes installation guide. You can find detailed guide in this wiki page

BlockShell

A command line utility for learning Blockchain technical concepts likechaining, mining, proof of work etc.

About

Anyone who wants to understand how blockchain technology works, then BlockShell should be a great start. Because I have created BlockShell keeping blockchain fundamentals in the center of development. With BlockShell you will actually create a tiny blockchain in your system where you can create blocks with data, explore blocks etc.

So, by using BlockShell anyone can learn following blockchain concepts,

  • Block & Chaining
  • Hashing
  • Mining
  • Proof of Work

🌐 BlockShell Web Explorer

BlockShell comes with built-in blockchain explorer by which you can actully see how blocks are mined and what is stored and where.

Latest Mined Blocks Block Details

📦 Installation

Step 1 - Create project directory

mkdir <project_name> && cd project_name

Step 2 - Create new virtual environment with python version 2.7.

virtualenv venv

Step 3 - Activate virtual environment

source venv/bin/activate

Step 4 - Clone this repo

git clone https://github.com/daxeel/blockshell.git

Step 5 - Change directory to cloned one

cd blockshell

Step 6 - Install blockshell

pip install --editable .

Step 7 - Try "blockshell" command and test installation!

blockshell

Output in terminal after calling BlockShell command