Go to file
Aurelien Rebourg b4236e7457
fix help command
2023-04-28 12:41:04 +02:00
blockchain add verify command 2023-04-27 23:49:44 +02:00
templates migrate python3 + add cri blocks specific data 2023-04-27 18:04:14 +02:00
.gitignore add modify block command 2023-04-27 23:25:47 +02:00
CODE_OF_CONDUCT.md Create CODE_OF_CONDUCT.md 2018-01-29 18:05:19 +05:30
CONTRIBUTING.md fixed typo 2018-03-04 14:51:14 +05:30
LICENSE Create LICENSE 2018-01-25 23:35:33 +05:30
README.md migrate python3 + add cri blocks specific data 2023-04-27 18:04:14 +02:00
_config.yml Set theme jekyll-theme-cayman 2018-02-02 10:49:18 +05:30
add_blocks.sh add modify block command 2023-04-27 23:25:47 +02:00
bscli.py fix help command 2023-04-28 12:41:04 +02:00
setup.py migrate python3 + add cri blocks specific data 2023-04-27 18:04:14 +02:00
web.py migrate python3 + add cri blocks specific data 2023-04-27 18:04:14 +02:00

README.md

📖 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 - Clone this repo

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

Step 2 - Change directory to cloned one

cd blockshell

Step 3 - Create virtualenv

python3 -m venv .venv

Step 4 - Enable virtualenv

source .venv/bin/activate

Step 5 - Install blockshell

pip install --editable .

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

blockshell

Output in terminal after calling BlockShell command