-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathblockchain.py
145 lines (121 loc) · 5.22 KB
/
blockchain.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
# Initalizing our blockchain list
from functools import reduce
import hashlib as hl
import json
from collections import OrderedDict
import json
from utility.hash_util import hash_block
from block import Block
from transaction import Transaction
from utility.verification import Verification
from wallet import Wallet
MINING_Reward = 10
class Blockchain:
def __init__(self,hosting_node):
genesis_block = Block(0,'',[],100,0)
self.chain = [genesis_block]
self.__open_transaction = []
self.hosting_node = hosting_node
self.__peer_nodes = set()
self.load_data()
@property
def chain(self):
return self.__chain[:]
# The setter for the chain property
@chain.setter
def chain(self, val):
self.__chain = val
def get_open_transactions(self):
return self.__open_transaction[:]
def save_data(self):
try:
with open('blockchain.txt',mode='w') as f:
savable_chain = [block.__dict__ for block in [Block(blok.index,blok.previous_hash,[tx.__dict__ for tx in blok.transactions],blok.proof,blok.timestamp) for blok in self.__chain]]
f.write(json.dumps(savable_chain))
f.write('\n')
savable_tx = [tx.__dict__ for tx in self.__open_transaction]
f.write(json.dumps(savable_tx))
f.write('\n')
f.write(json.dumps(self.__peer_nodes))
except:
print('Saving Failed')
def load_data(self):
try:
with open('blockchain.txt',mode='r') as f:
file_content = f.readlines()
blockchain = json.loads(file_content[0][:-1])
updated_blockchain = []
for block in blockchain:
converted_tx = [Transaction(tx['sender'],tx['recipent'],tx['signature'],tx['amount']) for tx in block['transactions']]
updated_block = Block(block['index'],block['previous_hash'],converted_tx,block['proof'],block['timestamp'])
updated_blockchain.append(updated_block)
self.chain=updated_blockchain
open_transaction = json.loads(file_content[1][:-1])
updated_transactions = []
for tx in open_transaction:
updated_transaction = Transaction(tx['sender'],tx['recipent'],tx['signature'],tx['amount'])
updated_transactions.append(updated_transaction)
self.__open_transaction=updated_transactions
peer_nodes = json.loads(file_content[2])
self.__peer_nodes = set(peer_nodes)
except (IOError,IndexError):
pass
def proof_of_work(self):
last_block = self.__chain[-1]
last_hash = hash_block(last_block)
proof = 0
while not Verification.valid_proof(self.__open_transaction,last_hash,proof):
proof+=1
return proof
def get_balance(self):
if self.hosting_node == None:
return None
participant=self.hosting_node
tx_sender = [[tx.amount for tx in block.transactions if tx.sender==participant]for block in self.__chain]
open_tx_sender = [tx.amount for tx in self.__open_transaction if tx.sender==participant]
tx_sender.append(open_tx_sender)
print(tx_sender)
amount_sent = reduce(lambda tx_sum, tx_amt:tx_sum+sum(tx_amt) if len(tx_amt) >0 else tx_sum+0,tx_sender,0)
tx_recipent = [[tx.amount for tx in block.transactions if tx.recipent==participant]for block in self.__chain]
amount_recieved = reduce(lambda tx_sum, tx_amt:tx_sum+sum(tx_amt) if len(tx_amt) >0 else tx_sum+0,tx_recipent,0)
return amount_recieved-amount_sent
def get_last_blockchain_value(self):
'''Returns the last value of blockchain'''
if len(self.__chain)<1:
return None
return self.__chain[-1]
def add_transaction(self,recipent,sender,signature,amount=1.0):
'''append new value to your blockchain'''
if self.hosting_node==None:
return False
transaction = Transaction(sender,recipent,signature,amount)
if Verification.verify_transaction(transaction,self.get_balance):
self.__open_transaction.append(transaction)
self.save_data()
return True
return False
def mine_block(self):
if self.hosting_node==None:
return None
last_block = self.__chain[-1]
hashed_block = hash_block(last_block)
proof = self.proof_of_work()
reward_transaction = Transaction('MINING',self.hosting_node,'',MINING_Reward)
copied_transaction=self.__open_transaction[:]
for tx in copied_transaction:
if not Wallet.verify_transaction(tx):
return None
copied_transaction.append(reward_transaction)
block = Block(len(self.__chain),hashed_block,copied_transaction,proof)
self.__chain.append(block)
self.__open_transaction =[]
self.save_data()
return block
def add_peer_node(self,node):
self.__peer_nodes.add(node)
self.save_data()
def remove_peer_nodes(self,node):
self.__peer_nodes.discard(node)
self.save_data()
def get_peer_nodes(self):
return list(self.__peer_nodes)