forked from revoxhere/duino-coin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
duco_api.py
444 lines (349 loc) · 13.2 KB
/
duco_api.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
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
##########################################
# Duino-Coin API Module
# https://github.com/revoxhere/duino-coin
# Distributed under MIT license
# © Duino-Coin Community 2021
##########################################
import hashlib
import json
import os
import queue
import socket
import sys
import threading
import time
import urllib.request
from threading import Timer
import requests
from requests import get
#====================================# Endpoints #====================================#
class Endpoints:
api = 'https://server.duinocoin.com/api.json'
transactions = 'https://server.duinocoin.com/transactions.json'
server = 'https://raw.githubusercontent.com/revoxhere/duino-coin/gh-pages/serverip.txt'
#====================================# Duco Transactions #====================================#
class Transaction:
"""
The individual data representing a transaction
"""
def __init__(self, **kwargs):
self.date = kwargs['Date']
self.time = kwargs['Time']
self.recipient = kwargs['Recipient']
self.sender = kwargs['Sender']
self.amount = kwargs['Amount']
self.hash = kwargs['Hash']
self.memo = kwargs['Memo']
class Transactions:
def __init__(self):
self.data = None
self.username = None
self._get()
def _get(self):
try:
response = requests.get(Endpoints.transactions)
except Exception as e:
raise ConnectionError(f'Could not get transactions: {e}')
try:
self.data = json.loads(response.text)
except Exception as e:
raise e
return self.data
def update(self):
self.data = None
return self.all()
def all(self):
if not self.data:
self._get()
# Creates a userdata-instance based on the data provided
return [Transaction(**data) for data in self.data.values()]
def total_transactions(self):
# Returns the amount of transactions
return len(self.all())
def all_time_transacted(self):
# returnes the all time transacted amount
return sum([t.amount for t in self.all()])
def user_transactions_sent(self, username=None):
# Checks whether a 'valid' username was specified.
if username != None:
# It was, so set the class-variable to it
self.username = username
elif self.username == None:
# The username was None, so print an 'error'
raise ValueError('Please provide a username')
return [t for t in self.all() if t.sender == self.username]
def total_user_transactions_sent(self, username=None):
'''Gets total amount of user sends'''
return len(self.user_transactions_sent(username=username))
def user_transactions_received(self, username=None):
# Checks whether there's a valid username provided
if username != None:
# It is, so the class-variable gets set
self.username = username
elif self.username == None:
# The username can't be valid, so print an 'error'/warning
raise ValueError('Please provide a username')
return [t for t in self.all() if t.recipient == self.username]
def total_user_transactions_received(self, username=None):
'''Gets total amount of user reciepts'''
return len(self.user_transactions_received(username=username))
def total_duco_sent(self, username=None):
'''Gets total amount of duco sent by user'''
# Checks whether there's a valid username provided
if username != None:
# It is, so the class-variable gets set
self.username = username
elif self.username == None:
# The username can't be valid, so print an 'error'/warning
raise ValueError('Please provide a username')
return sum([t.amount for t in self.user_transactions_sent((username))])
def total_duco_received(self, username=None):
'''Gets total amount of duco recieved by user'''
# Checks whether there's a valid username provided
if username != None:
# It is, so the class-variable gets set
self.username = username
elif self.username == None:
# The username can't be valid, so print an 'error'/warning
raise ValueError('Please provide a username')
return sum([t.amount for t in self.user_transactions_received((username))])
#====================================# Duco Api #====================================#
class Wallet:
'''
A class that provides an interface for interacting with the DUCO server
'''
def __init__(self):
'''
A class constructor that initiates the connection with the server.
'''
self.username = None
self.password = None
self.transactions = None
serverinfo = requests.get(Endpoints.server).text.splitlines()
self.pool_address = serverinfo[0]
self.pool_port = int(serverinfo[1])
socket.setdefaulttimeout(10)
self._connect_socket()
def _connect_socket(self):
self.sock = socket.socket()
self.sock.connect((self.pool_address, self.pool_port))
self.sock.recv(3)
if self.username and self.password:
self.login(self.username, self.password)
def _decode_response(self, rec):
return rec.decode().split(',')
def register(self, username, password, email):
'''
A function for registering an account
'''
self.sock.send(f'REGI,{username},{password},{email}'.encode())
register_result = self._decode_response(self.sock.recv(128))
if 'NO' in register_result:
raise Exception(register_result[1])
return register_result
def login(self, username, password):
'''
A function for logging into an account
'''
self.username = username
self.password = password
self.sock.send(f'LOGI,{username},{password}'.encode())
login_result = self._decode_response(self.sock.recv(64))
if 'NO' in login_result:
raise Exception(login_result[1])
return login_result
def logout(self):
'''
A function for disconnecting from the server
'''
self.close()
def get_duco_price(self):
'''
A function for getting the current price of DUCO
'''
try:
api_response = requests.get(Endpoints.api)
except Exception as e:
raise Exception(f'Error getting duco price: {e}')
price_json = json.loads(api_response.text)
return round(price_json.get('Duco price', 0.0), 6)
def get_balance(self):
'''
A function for getting account balance
'''
self._connect_socket()
self.sock.send('BALA'.encode())
user_balance = self.sock.recv(1024).decode()
return user_balance
def transfer(self, recipient_username, amount):
'''
A function for transfering balance between two accounts
'''
self._connect_socket()
self.sock.send(f'SEND,-,{recipient_username},{amount}'.encode())
transfer_response = self.sock.recv(128).decode()
return transfer_response
def get_transactions(self):
'''
A function for get last (amount) of transactions
'''
self.transactions = Transactions()
return self.transactions
def reset_pass(self, old_password, new_password):
'''
A function for resetting the password of an account
'''
self._connect_socket()
self.sock.send(f'CHGP,{old_password},{new_password}'.encode())
reset_password_response = self.sock.recv(128).decode()
return reset_password_response
def close(self):
'''
A function for disconnecting from the server
'''
self.sock.close()
#====================================# Duco Miner #====================================#
class Miner:
def __init__(self, username, num_workers, diff):
self.username = username
self.num_workers = num_workers
self.diff = diff
self.use_lower_diff = True
self.should_stop = False
self.last_job = {}
self.miner_q = queue.Queue()
self.pool_address = None
self.pool_port = None
def start(self):
if not self.pool_address or not self.pool_port:
self._get_server_address()
for _ in range(self.num_workers):
x = threading.Thread(target=self.worker)
x.start()
def stop(self):
self.should_stop = True
def get_q(self):
return self.miner_q.get()
def _get_server_address(self):
try:
serverinfo = requests.get(Endpoints.server).text.splitlines()
except Exception as e:
print(f'Cannot get server details: {e}')
self.pool_address = serverinfo[0]
self.pool_port = int(serverinfo[1])
def connect_to_server(self, soc):
# This section connects and logs user to the server
soc.connect((str(self.pool_address), int(self.pool_port)))
return soc.recv(3).decode() # Get server version
def request_job(self, soc):
soc.sendall(bytes(
'JOB,'
+ str(self.username)
+','
+ self.diff,
encoding='utf8'))
# Receive work
return soc.recv(1024).decode().rstrip('\n')
def send_result(self, soc, result, hashrate):
soc.send(bytes(
str(result)
+ ','
+ str(hashrate)
+ ',Minimal_PC_Miner',
encoding='utf8'))
# Get feedback about the result
return soc.recv(1024).decode().rstrip('\n')
def hash(self, h, res):
return hashlib.sha1(
str(
h
+ str(res)
).encode('utf-8')).hexdigest()
def hash_is_correct(self, exp, act):
return exp == act
def on_good_job(self, result, hashrate, difficulty):
self.miner_q.put({'Status': 'Accepted share',
'Result': result,
'Hashrate': int(hashrate/1000),
'Difficulty': difficulty})
print('Accepted share',
result,
'Hashrate',
int(hashrate/1000),
'kH/s',
'Difficulty',
difficulty)
def on_bad_job(self, result, hashrate, difficulty):
self.miner_q.put({'Status': 'Rejected share',
'Result': result,
'Hashrate': int(hashrate/1000),
'Difficulty': difficulty})
print('Rejected share',
result,
'Hashrate',
int(hashrate/1000),
'kH/s',
'Difficulty',
difficulty)
def worker(self): # Mining section\
soc = socket.socket()
server_version = self.connect_to_server(soc)
print('Server is on version', server_version)
while True:
if self.should_stop == True:
print('Stopping Worker')
break
# Receive work
job = self.request_job(soc).split(',')
difficulty = job[2]
hashingStartTime = time.time()
for result in range(100 * int(difficulty) + 1):
# Calculate hash with difficulty
hash_result = self.hash(job[0], result)
# If hash is even with expected hash result
if self.hash_is_correct(job[1], hash_result):
hashingStopTime = time.time()
timeDifference = hashingStopTime - hashingStartTime
hashrate = result / timeDifference
# Get feedback about the result
feedback = self.send_result(soc, result, hashrate)
# If result was good
if feedback == 'GOOD':
self.on_good_job(result, hashrate, difficulty)
break
# If result was incorrect
elif feedback == 'BAD':
self.on_bad_job(result, hashrate, difficulty)
break
soc.close()
return
class DUCOMiner(Miner):
pass
class XXHASHMiner(Miner):
def request_job(self, soc):
soc.sendall(bytes(
'JOBXX,'
+ str(self.username)
+','
+ self.diff,
encoding='utf8'))
# Receive work
return soc.recv(1024).decode().rstrip('\n')
def hash(self, h, res):
return xxhash.xxh64(
str(h) + str(res), seed=2811)
if __name__ == '__main__':
## Standard DUCO-S1 miner
# miner = DUCOMiner('dansinclair25', 1, 'LOW')
## XXHASH Miner
# try:
# import xxhash
# except ModuleNotFoundError:
# print('You need to insallt XXHASH before using this miner')
# miner = XXHASHMiner('dansinclair25', 1, 'NET')
miner.start()
while True:
try:
print(miner.get_q())
except KeyboardInterrupt:
miner.stop()