forked from jacklevin74/xenminer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
miner.py
370 lines (292 loc) · 13 KB
/
miner.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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
import json, requests, time, hashlib, string, threading, configparser, os, base64
import re, argparse, configparser
from web3 import Web3
from passlib.hash import argon2
from random import choice, randrange
# Set up argument parser
parser = argparse.ArgumentParser(description="Process optional account and worker arguments.")
parser.add_argument('--account', type=str, help='The account value to use.')
parser.add_argument('--worker', type=int, help='The worker id to use.')
# Parse the arguments
args = parser.parse_args()
# Access the arguments via args object
account = args.account
worker_id = args.worker
# For example, to print the values
print(f'Account: {account}, Worker ID: {worker_id}')
# Load the configuration file
config = configparser.ConfigParser()
config_file_path = 'config.conf'
if os.path.exists(config_file_path):
config.read(config_file_path)
else:
raise FileNotFoundError(f"The configuration file {config_file_path} was not found.")
# Override account from config file with command line argument if provided
if args.account:
account = args.account
else:
# Ensure that the required settings are present
required_settings = ['difficulty', 'memory_cost', 'cores', 'account', 'last_block_url']
if not all(key in config['Settings'] for key in required_settings):
missing_keys = [key for key in required_settings if key not in config['Settings']]
raise KeyError(f"Missing required settings: {', '.join(missing_keys)}")
account = config['Settings']['account']
def is_valid_ethereum_address(address: str) -> bool:
# Check if the address matches the basic hexadecimal pattern
if not re.match("^0x[0-9a-fA-F]{40}$", address):
return False
# Check if the address follows EIP-55 checksum encoding
try:
# If the checksum is correct, it will return True
return address == Web3.to_checksum_address(address)
except ValueError:
# If a ValueError is raised, the checksum is incorrect
return False
# Check validity of ethereum address
if is_valid_ethereum_address(account):
print("The address is valid. Starting the miner.")
else:
print("The address is invalid. Correct your account address and try again")
exit(0)
# Access other settings
difficulty = int(config['Settings']['difficulty'])
memory_cost = int(config['Settings']['memory_cost'])
cores = int(config['Settings']['cores'])
last_block_url = config['Settings']['last_block_url']
def hash_value(value):
return hashlib.sha256(value.encode()).hexdigest()
def build_merkle_tree(elements, merkle_tree={}):
if len(elements) == 1:
return elements[0], merkle_tree
new_elements = []
for i in range(0, len(elements), 2):
left = elements[i]
right = elements[i + 1] if i + 1 < len(elements) else left
combined = left + right
new_hash = hash_value(combined)
merkle_tree[new_hash] = {'left': left, 'right': right}
new_elements.append(new_hash)
return build_merkle_tree(new_elements, merkle_tree)
from datetime import datetime
def is_within_five_minutes_of_hour():
timestamp = datetime.now()
minutes = timestamp.minute
return 0 <= minutes < 5 or 55 <= minutes < 60
class Block:
def __init__(self, index, prev_hash, data, valid_hash, random_data, attempts):
self.index = index
self.prev_hash = prev_hash
self.data = data
self.valid_hash = valid_hash
self.random_data = random_data
self.attempts = attempts
self.timestamp = time.time()
self.hash = self.calculate_hash()
def calculate_hash(self):
sha256 = hashlib.sha256()
sha256.update(f"{self.index}{self.prev_hash}{self.data}{self.valid_hash}{self.timestamp}".encode("utf-8"))
return sha256.hexdigest()
def to_dict(self):
return {
"index": self.index,
"prev_hash": self.prev_hash,
"data": self.data,
"valid_hash": self.valid_hash,
"random_data": self.random_data,
"timestamp": self.timestamp,
"hash": self.hash,
"attempts": self.attempts
}
updated_memory_cost = 1500 # just initialize it
def update_memory_cost_periodically():
global memory_cost
global updated_memory_cost
time.sleep(10) # start checking in 10 seconds after launch
while True:
updated_memory_cost = fetch_difficulty_from_server()
if updated_memory_cost != memory_cost:
print(f"Updating difficulty to {updated_memory_cost}")
time.sleep(60) # Fetch every 60 seconds
# Function to get difficulty level from the server
def fetch_difficulty_from_server():
global memory_cost
try:
response = requests.get('http://xenblocks.io/difficulty')
response_data = response.json()
return str(response_data['difficulty'])
except Exception as e:
print(f"An error occurred while fetching difficulty: {e}")
return memory_cost # Return last value if fetching fails
def generate_random_sha256(max_length=128):
characters = string.ascii_letters + string.digits + string.punctuation
random_string = ''.join(choice(characters) for _ in range(randrange(1, max_length + 1)))
sha256 = hashlib.sha256()
sha256.update(random_string.encode('utf-8'))
return sha256.hexdigest()
from tqdm import tqdm
import time
def submit_pow(account_address, key, hash_to_verify):
# Download last block record
url = last_block_url
try:
# Attempt to download the last block record
response = requests.get(url, timeout=10) # Adding a timeout of 10 seconds
except requests.exceptions.RequestException as e:
# Handle any exceptions that occur during the request
print(f"An error occurred: {e}")
return None # Optionally return an error value or re-raise the exception
if response.status_code != 200:
# Handle unexpected HTTP status codes
print(f"Unexpected status code {response.status_code}: {response.text}")
return None # Optionally return an error value
if response.status_code == 200:
records = json.loads(response.text)
verified_hashes = []
for record in records:
block_id = record.get('block_id')
record_hash_to_verify = record.get('hash_to_verify')
record_key = record.get('key')
account = record.get('account')
# Verify each record using Argon2
if record_key is None or record_hash_to_verify is None:
print(f'Skipping record due to None value(s): record_key: {record_key}, record_hash_to_verify: {record_hash_to_verify}')
continue # skip to the next record
if argon2.verify(record_key, record_hash_to_verify):
verified_hashes.append(hash_value(str(block_id) + record_hash_to_verify + record_key + account))
# If we have any verified hashes, build the Merkle root
if verified_hashes:
merkle_root, _ = build_merkle_tree(verified_hashes)
# Calculate block ID for output (using the last record for reference)
output_block_id = int(block_id / 100)
# Prepare payload for PoW
payload = {
'account_address': account_address,
'block_id': output_block_id,
'merkle_root': merkle_root,
'key': key,
'hash_to_verify': hash_to_verify
}
# Send POST request
pow_response = requests.post('http://xenblocks.io:4446/send_pow', json=payload)
if pow_response.status_code == 200:
print(f"Proof of Work successful: {pow_response.json()}")
else:
print(f"Proof of Work failed: {pow_response.json()}")
print(f"Block ID: {output_block_id}, Merkle Root: {merkle_root}")
else:
print("Failed to fetch the last block.")
# ANSI escape codes
RED = "\033[31m"
GREEN = "\033[32m"
YELLOW = "\033[33m"
BLUE = "\033[34m"
RESET = "\033[0m"
def mine_block(stored_targets, prev_hash, address):
global memory_cost # Make it global so that we can update it
global updated_memory_cost # Make it global so that we can receive updates
found_valid_hash = False
remove_prefix_address = address[2:]
salt = bytes.fromhex(remove_prefix_address)
argon2_hasher = argon2.using(time_cost=difficulty, salt=salt, memory_cost=memory_cost, parallelism=cores, hash_len = 64)
attempts = 0
random_data = None
start_time = time.time()
with tqdm(total=None, dynamic_ncols=True, desc=f"{GREEN}Mining{RESET}", unit=f" {GREEN}Hashes{RESET}") as pbar:
while True:
attempts += 1
if attempts % 100 == 0:
if updated_memory_cost != memory_cost:
memory_cost = updated_memory_cost
print(f"{BLUE}Continuing to mine blocks with new difficulty{RESET}")
return
random_data = generate_random_sha256()
hashed_data = argon2_hasher.hash(random_data)
for target in stored_targets:
if target in hashed_data[-87:]:
# Search for the pattern "XUNI" followed by a digit (0-9)
if re.search("XUNI[0-9]", hashed_data) and is_within_five_minutes_of_hour():
found_valid_hash = True
break
elif target == "XEN11":
found_valid_hash = True
last_element = hashed_data.split("$")[-1]
hash_uppercase_only = ''.join(filter(str.isupper, last_element))
if len(hash_uppercase_only) >= 50:
print(f"{RED}Superblock found{RESET}")
break
else:
found_valid_hash = False
break
pbar.update(1)
if attempts % 10 == 0:
elapsed_time = time.time() - start_time
hashes_per_second = attempts / (elapsed_time + 1e-9)
pbar.set_postfix({"Difficulty": f"{YELLOW}{memory_cost}{RESET}"}, refresh=True)
if found_valid_hash:
print(f"\n{RED}Found valid hash for target {target} after {attempts} attempts{RESET}")
break
# Prepare the payload
payload = {
"hash_to_verify": hashed_data,
"key": random_data,
"account": account,
"attempts": attempts,
"hashes_per_second": hashes_per_second,
"worker": worker_id # Adding worker information to the payload
}
# Append the string to a log file
log_file = 'log_blocks.log' # replace with your log file's path
with open(log_file, 'a') as file: # 'a' means append mode
file.write(json_dumps(payload) + '\n')
print (payload)
max_retries = 2
retries = 0
while retries <= max_retries:
# Make the POST request
response = requests.post('http://xenblocks.io/verify', json=payload)
# Print the HTTP status code
print("HTTP Status Code:", response.status_code)
if target == "XEN11" and found_valid_hash and response.status_code == 200:
#submit proof of work validation of last sealed block
submit_pow(account, random_data, hashed_data)
if response.status_code != 500: # If status code is not 500, break the loop
print("Server Response:", response.json())
break
retries += 1
print(f"Retrying... ({retries}/{max_retries})")
time.sleep(10) # You can adjust the sleep time
# Print the server's response
try:
print("Server Response:", response.json())
except Exception as e:
print("An error occurred:", e)
return random_data, hashed_data, attempts, hashes_per_second
if __name__ == "__main__":
blockchain = []
stored_targets = ['XEN11', 'XUNI']
num_blocks_to_mine = 20000000
#Start difficulty monitoring thread
difficulty_thread = threading.Thread(target=update_memory_cost_periodically)
difficulty_thread.daemon = True # This makes the thread exit when the main program exits
difficulty_thread.start()
genesis_block = Block(0, "0", "Genesis Block", "0", "0", "0")
blockchain.append(genesis_block.to_dict())
print(f"Mining with: {account}")
i = 1
while i <= num_blocks_to_mine:
print(f"Mining block {i}...")
result = mine_block(stored_targets, blockchain[-1]['hash'], account)
if result is None:
print(f"{RED}Restarting mining round{RESET}")
# Skip the increment of `i` and continue the loop
continue
elif result == 2:
result = None
continue
else:
i += 1
random_data, new_valid_hash, attempts, hashes_per_second = result
new_block = Block(i, blockchain[-1]['hash'], f"Block {i} Data", new_valid_hash, random_data, attempts)
new_block.to_dict()['hashes_per_second'] = hashes_per_second
blockchain.append(new_block.to_dict())
print(f"New Block Added: {new_block.hash}")