Skip to content

Commit d675e65

Browse files
authoredFeb 20, 2019
Blockchain Simulation using python
Implemented in the following Script
1 parent 1eca4ce commit d675e65

7 files changed

+145
-0
lines changed
 

‎[tampered]addBlock.py

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
import hashlib as hasher
2+
import datetime as date
3+
4+
#importing the block
5+
from block import Block
6+
7+
#importing the chain
8+
import jupiter_block as jb
9+
import pluto_block as pb
10+
import neptune_block as nb
11+
12+
13+
# Generate all later blocks in the blockchain
14+
def next_block(last_block):
15+
this_index = last_block.index + 1
16+
this_timestamp = date.datetime.now()
17+
this_data = last_block.data
18+
this_hash = last_block.hash
19+
return Block(this_index, this_timestamp, this_data, this_hash)
20+
21+
# Create the blockchain and add the genesis block
22+
blockchain = [jb.create_jupiter_block(), pb.create_pluto_block(), nb.create_neptune_block()]
23+
24+
# How many blocks should we add to the chain
25+
# after the genesis block
26+
num_of_blocks_to_add = 1
27+
28+
# Add blocks to the chain
29+
for i in range (len(blockchain)):
30+
previous_block = blockchain[i]
31+
for i in range(0, num_of_blocks_to_add):
32+
block_to_add = next_block(previous_block)
33+
blockchain.append(block_to_add)
34+
previous_block = block_to_add
35+
# Tell everyone about it!
36+
print("Block #{} added ".format(block_to_add.data))
37+
print("Hash: {}".format(block_to_add.hash))
38+
print("TimeStamp: {}".format(block_to_add.timestamp))
39+
print("Previous hash: {} \n".format(block_to_add.previous_hash))
40+
41+
42+

‎addBlock.py

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
import hashlib as hasher
2+
import datetime as date
3+
4+
#importing the block
5+
from block import Block
6+
7+
#importing the chain
8+
import jupiter_block as jb
9+
import pluto_block as pb
10+
import neptune_block as nb
11+
12+
13+
# Generate all later blocks in the blockchain
14+
def next_block(last_block):
15+
this_index = last_block.index + 1
16+
this_timestamp = date.datetime.now()
17+
this_data = last_block.data
18+
this_hash = last_block.hash
19+
return Block(this_index, this_timestamp, this_data, this_hash)
20+
21+
# Create the blockchain and add the genesis block
22+
blockchain = [jb.create_jupiter_block()]
23+
previous_block = blockchain[0]
24+
25+
# How many blocks should we add to the chain
26+
# after the genesis block
27+
num_of_blocks_to_add = 20
28+
29+
# Add blocks to the chain
30+
for i in range(0, num_of_blocks_to_add):
31+
block_to_add = next_block(previous_block)
32+
blockchain.append(block_to_add)
33+
previous_block = block_to_add
34+
# Tell everyone about it
35+
print("Block #{} added ".format(block_to_add.data))
36+
print("Hash: {}".format(block_to_add.hash))
37+
print("TimeStamp: {}".format(block_to_add.timestamp))
38+
print("Previous hash: {} \n".format(block_to_add.previous_hash))
39+
40+
41+

‎block.py

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import hashlib as hasher
2+
import datetime as date
3+
4+
# Define what a block is
5+
class Block:
6+
def __init__(self, index, timestamp, data, previous_hash):
7+
self.index = index
8+
self.timestamp = timestamp
9+
self.data = data
10+
self.previous_hash = previous_hash
11+
self.hash = self.hash_block()
12+
13+
def hash_block(self):
14+
sha = hasher.sha256()
15+
sha.update(str(self.index).encode('utf-8') + str(self.timestamp).encode('utf-8') + str(self.data).encode('utf-8') + str(self.previous_hash).encode('utf-8'))
16+
return sha.hexdigest()

‎jupiter_block.py

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import datetime as date
2+
from block import Block
3+
4+
def create_jupiter_block():
5+
# Manually construct a block with
6+
# index zero and arbitrary previous hash
7+
return Block(0, date.datetime.now(), "Jupiter Block", "0")

‎neptune_block.py

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import datetime as date
2+
from block import Block
3+
4+
def create_neptune_block():
5+
# Manually construct a block with
6+
# index zero and arbitrary previous hash
7+
return Block(2, date.datetime.now(), "Neptune Block", "2")

‎pluto_block.py

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import datetime as date
2+
from block import Block
3+
4+
def create_pluto_block():
5+
# Manually construct a block with
6+
# index zero and arbitrary previous hash
7+
return Block(1, date.datetime.now(), "Pluto Block", "1")

‎validate_blockchain.py

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
import hashlib
2+
s = hashlib.sha256()
3+
4+
from block import Block
5+
import addBlock as add
6+
7+
def validate_blockchain(blockchain):
8+
9+
for i in range (1,len(blockchain)):
10+
current_block = blockchain[i]
11+
previous_block = blockchain[i-1]
12+
13+
#current hash and calulated hash
14+
if ( current_block.hash != current_block.hash_block()):
15+
print ("Invalid Stage 1 error for Block {}".format(current_block.index))
16+
return False
17+
18+
#previous hash validation
19+
if ( current_block.previous_hash != previous_block.hash):
20+
print ("Invalid Stage 2 error for Block {}".format(current_block.index))
21+
return False
22+
print("Valid at all stages")
23+
return True
24+
25+
validate_blockchain(add.blockchain)

0 commit comments

Comments
 (0)
Please sign in to comment.