-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcryptonode.py
More file actions
919 lines (475 loc) · 23.5 KB
/
cryptonode.py
File metadata and controls
919 lines (475 loc) · 23.5 KB
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
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
#!/usr/bin/env python3
# coding: UTF-8
import sys
import time
import pycurl
import requests
from itertools import count
# RPC interface for Bitcoin type nodes
from slickrpc import Proxy
from slickrpc import exc
# RPC interface for Monero type nodes
from monero.wallet import Wallet
from monero.daemon import Daemon
from monero.transaction import PaymentFilter
import monero.exceptions
# DNS resolver to boot strap ecc name services
import dns.resolver
################################################################################
## cryptoNodeException class ###################################################
################################################################################
class cryptoNodeException(Exception):
############################################################################
def __init__(self, message):
super().__init__(message)
################################################################################
## cryptoNode class ############################################################
################################################################################
class cryptoNode():
############################################################################
def __init__(self, symbol, rpc_address, rpc_user, rpc_pass):
self.symbol = symbol.lower()
self.rpc_address = rpc_address
self.rpc_user = rpc_user
self.rpc_pass = rpc_pass
self.available = False
self.blocks = 0
self.peers = 0
self.zmqAddress = ''
self.no_refresh = False # Used by owner to suppress refresh() calls during sync/catchup
############################################################################
def __getattr__(self, method):
raise NotImplementedError
############################################################################
def initialise(self):
raise NotImplementedError
############################################################################
def refresh(self):
raise NotImplementedError
############################################################################
def get_balance(self):
raise NotImplementedError
############################################################################
def get_unlocked_balance(self):
raise NotImplementedError
############################################################################
def get_unconfirmed_balance(self):
raise NotImplementedError
############################################################################
def get_new_address(self):
raise NotImplementedError
############################################################################
def wallet_locked(self, cache_prior_state = False):
raise NotImplementedError
############################################################################
def unlock_wallet(self, passphrase, seconds, staking = False):
raise NotImplementedError
############################################################################
def revert_wallet_lock(self):
raise NotImplementedError
############################################################################
def send_to_address(self):
raise NotImplementedError
############################################################################
def shutdown(self):
raise NotImplementedError
################################################################################
## eccoinNode class ############################################################
################################################################################
class eccoinNode(cryptoNode):
version_min = 30000
version_max = 99999
win_zmq_bug = 30300
version_fPacketSig = 30300
serviceIdx = count(start=1)
respondIdx = count(start=1)
############################################################################
def __init__(self, symbol, rpc_address, rpc_user, rpc_pass, service_id = 1, respond_id = None):
super().__init__(symbol, rpc_address, rpc_user, rpc_pass)
self.proxy = Proxy('http://%s:%s@%s' % (rpc_user, rpc_pass, rpc_address)) # Not thread safe ...
self.prox2 = Proxy('http://%s:%s@%s' % (rpc_user, rpc_pass, rpc_address)) # ... hence needing 2
self.serviceId = service_id
self.respondId = respond_id
self.serviceKey = ''
self.respondKey = ''
self.routingTag = ''
self.ecresolve_tags = []
# ECC feature flags (based on version number)
self.fPacketSig = False
# Caching prior unlock state for post transaction reversion
self.cached_prior_walletinfo = {}
############################################################################
def __getattr__(self, method):
return getattr(self.proxy, method)
############################################################################
def initialise(self):
try:
info = self.proxy.getnetworkinfo()
except ValueError:
raise cryptoNodeException('Failed to connect - error in rpcuser or rpcpassword for eccoin')
except pycurl.error:
raise cryptoNodeException('Failed to connect - check that eccoin daemon is running')
except exc.RpcInWarmUp:
raise cryptoNodeException('Failed to connect - eccoin daemon is starting but not ready - try again after 60 seconds')
except exc.RpcMethodNotFound:
raise cryptoNodeException('RPC getnetworkinfo unavailable for {} daemon'.format(self.symbol))
# ECC daemon version checking and feature enablement
if not self.version_min <= info['version'] <= self.version_max:
raise cryptoNodeException('eccoind version {} not supported - please run a version in the range {}-{}'.format(info['version'], self.version_min, self.version_max))
if (info['version'] == self.win_zmq_bug) and (sys.platform in ['win32', 'cygwin']):
raise cryptoNodeException('eccoind version {} not supported on Windows - please upgrade'.format(info['version']))
self.fPacketSig = info['version'] >= self.version_fPacketSig
# ECC messaging buffer setup
try:
self.routingTag = self.proxy.getroutingpubkey()
if self.serviceId:
self.serviceKey = self.proxy.registerbuffer(self.serviceId)
if self.respondId:
self.respondKey = self.proxy.registerbuffer(self.respondId)
except exc.RpcInternalError:
raise cryptoNodeException('API Buffer was not correctly unregistered or another instance running - try again after 60 seconds')
# ZMQ detection and configuration loading
try:
zmqnotifications = self.proxy.getzmqnotifications()
except pycurl.error:
raise cryptoNodeException('Blockchain node for {} not available or incorrectly configured'.format(self.symbol))
except (exc.RpcMethodNotFound, ValueError):
zmqnotifications = []
for zmqnotification in zmqnotifications:
if zmqnotification['type'] == 'pubhashblock':
self.zmqAddress = zmqnotification['address']
# Load ecresolve routing tags and setup routes for subsequent ecc network name resolution
self.ecresolve_tags = self.get_ecresolve_tags()
route = []
for tag in self.ecresolve_tags:
try:
self.proxy.findroute(tag)
route.append(self.proxy.haveroute(tag))
except exc.RpcInvalidAddressOrKey:
raise cryptoNodeException('Routing tag for ecresolve has invalid base64 encoding : {}'.format(tag))
if not any(route):
raise cryptoNodeException('No route available to ecresolve across all {} configured routing tags'.format(len(self.ecresolve_tags)))
############################################################################
def refresh(self):
self.blocks = self.proxy.getblockcount()
self.peers = self.proxy.getconnectioncount()
############################################################################
def get_balance(self):
return self.proxy.getbalance()
############################################################################
def get_unlocked_balance(self):
return self.proxy.getbalance()
############################################################################
def get_unconfirmed_balance(self):
return self.proxy.getunconfirmedbalance()
############################################################################
def get_new_address(self):
return self.proxy.getnewaddress()
############################################################################
def wallet_locked(self, cache_prior_state = False):
info = self.proxy.getwalletinfo()
if cache_prior_state and info.keys() >= {'unlocked_until', 'staking_only_unlock'}:
self.cached_prior_walletinfo = info.copy()
if 'unlocked_until' in info:
if 'staking_only_unlock' in info:
return info['staking_only_unlock'] or (info['unlocked_until'] == 0)
else:
return info['unlocked_until'] == 0
return False # unencrypted wallet
############################################################################
def unlock_wallet(self, passphrase, seconds, staking = False):
try:
self.proxy.walletpassphrase(passphrase, seconds, staking)
except exc.RpcWalletPassphraseIncorrect:
return False
else:
# Cache passphrase for later call to revert_wallet_lock
if self.cached_prior_walletinfo:
self.cached_prior_walletinfo['passphrase'] = passphrase
return True
############################################################################
def revert_wallet_lock(self):
if self.cached_prior_walletinfo and 'passphrase' in self.cached_prior_walletinfo:
if self.cached_prior_walletinfo['unlocked_until'] > 0:
seconds = self.cached_prior_walletinfo['unlocked_until'] - int(time.time())
self.unlock_wallet(self.cached_prior_walletinfo['passphrase'], seconds, self.cached_prior_walletinfo['staking_only_unlock'])
self.cached_prior_walletinfo.clear()
############################################################################
def send_to_address(self, address, amount, comment):
try:
txid = self.proxy.sendtoaddress(address, amount, comment)
except exc.RpcWalletUnlockNeeded:
raise cryptoNodeException('Wallet locked - please unlock')
except exc.RpcWalletInsufficientFunds:
raise cryptoNodeException('Insufficient funds in wallet')
except exc.RpcTypeError:
raise cryptoNodeException('Invalid amount')
except exc.RpcWalletError:
raise cryptoNodeException('Amount too small')
else:
return txid
############################################################################
def reset_service_buffer_timeout(self):
if self.serviceKey:
try:
bufferSig = self.prox2.buffersignmessage(self.serviceKey, 'ResetBufferTimeout')
self.prox2.resetbuffertimeout(self.serviceId, bufferSig)
except pycurl.error:
self.serviceKey = ''
raise cryptoNodeException('Failed to connect - check that eccoin daemon is running')
return True
return False
############################################################################
def reset_respond_buffer_timeout(self):
if self.respondKey:
try:
bufferSig = self.prox2.buffersignmessage(self.respondKey, 'ResetBufferTimeout')
self.prox2.resetbuffertimeout(self.respondId, bufferSig)
except pycurl.error:
self.serviceKey = ''
raise cryptoNodeException('Failed to connect - check that eccoin daemon is running')
return True
return False
############################################################################
def reset_buffer_timeouts(self):
serviceResult = self.reset_service_buffer_timeout()
respondResult = self.reset_respond_buffer_timeout()
return serviceResult or respondResult # OR semantics because the return value is used to gate timer setup
############################################################################
def get_ecresolve_tags(self):
domain = 'ecchat.io'
# TODO - Make this daemon version dependent ref new RPC
tags = []
try:
resolved = dns.resolver.resolve(domain, 'TXT')
except:
raise cryptoNodeException('Error while resolving ecresolve routing tags from {} TXT record'.format(domain))
for entry in resolved:
decoded_entry = entry.to_text()[1:-1].split('=', 1)
if (len(decoded_entry) == 2) and (decoded_entry[0] == 'ecresolve'):
tags.append(decoded_entry[1])
return tags
############################################################################
def setup_route(self, targetRoute):
try:
self.proxy.findroute(targetRoute)
isRoute = self.proxy.haveroute(targetRoute)
except exc.RpcInvalidAddressOrKey:
raise cryptoNodeException('Routing tag has invalid base64 encoding : {}'.format(targetRoute))
if not isRoute:
raise cryptoNodeException('No route available to : {}'.format(targetRoute))
############################################################################
def send_packet(self, dest_key, protocol_id, data):
if self.fPacketSig:
signature = self.proxy.tagsignmessage(data)
self.proxy.sendpacket(dest_key, protocol_id, data, self.routingTag, signature)
else:
self.proxy.sendpacket(dest_key, protocol_id, data)
############################################################################
def get_service_buffer(self):
if self.serviceKey:
bufferCmd = 'GetBufferRequest:' + str(self.serviceId) + str(next(self.serviceIdx))
bufferSig = self.proxy.buffersignmessage(self.serviceKey, bufferCmd)
eccbuffer = self.proxy.getbuffer(self.serviceId, bufferSig)
return eccbuffer
else:
return None
############################################################################
def get_respond_buffer(self):
if self.respondKey:
bufferCmd = 'GetBufferRequest:' + str(self.respondId) + str(next(self.respondIdx))
bufferSig = self.proxy.buffersignmessage(self.respondKey, bufferCmd)
eccbuffer = self.proxy.getbuffer(self.respondId, bufferSig)
return eccbuffer
else:
return None
############################################################################
def get_buffer(self, protocol_id = 1):
if protocol_id == self.serviceId:
return self.get_service_buffer()
if protocol_id == self.respondId:
return self.get_respond_buffer()
return None
############################################################################
def shutdown(self):
if self.serviceKey:
bufferSig = self.proxy.buffersignmessage(self.serviceKey, 'ReleaseBufferRequest')
self.proxy.releasebuffer(self.serviceId, bufferSig)
self.serviceKey = ''
if self.respondKey:
bufferSig = self.proxy.buffersignmessage(self.respondKey, 'ReleaseBufferRequest')
self.proxy.releasebuffer(self.respondId, bufferSig)
self.respondKey = ''
################################################################################
## bitcoinNode class ###########################################################
################################################################################
class bitcoinNode(cryptoNode):
############################################################################
def __init__(self, symbol, rpc_address, rpc_user, rpc_pass):
super().__init__(symbol, rpc_address, rpc_user, rpc_pass)
self.proxy = Proxy('http://%s:%s@%s' % (rpc_user, rpc_pass, rpc_address))
############################################################################
def __getattr__(self, method):
return getattr(self.proxy, method)
############################################################################
def initialise(self):
try:
info = self.proxy.getnetworkinfo()
except ValueError:
raise cryptoNodeException('Failed to connect - error in rpcuser or rpcpassword for {} daemon'.format(self.symbol))
except pycurl.error:
raise cryptoNodeException('Failed to connect - check that {} daemon is running'.format(self.symbol))
except exc.RpcInWarmUp:
raise cryptoNodeException('Failed to connect - {} daemon is starting but not ready - try again after 60 seconds'.format(self.symbol))
except exc.RpcMethodNotFound:
raise cryptoNodeException('RPC getnetworkinfo unavailable for {} daemon'.format(self.symbol))
try:
zmqnotifications = self.proxy.getzmqnotifications()
except pycurl.error:
raise cryptoNodeException('Blockchain node for {} not available or incorrectly configured'.format(self.symbol))
except (exc.RpcMethodNotFound, ValueError):
zmqnotifications = []
for zmqnotification in zmqnotifications:
if zmqnotification['type'] == 'pubhashblock':
self.zmqAddress = zmqnotification['address']
############################################################################
def refresh(self):
self.blocks = self.proxy.getblockcount()
self.peers = self.proxy.getconnectioncount()
############################################################################
def get_balance(self):
try:
result = self.proxy.getbalance()
except exc.RpcException as error:
raise cryptoNodeException('{} daemon returned error: {}'.format(self.symbol, str(error)))
else:
return result
############################################################################
def get_unlocked_balance(self):
try:
result = self.proxy.getbalance()
except exc.RpcException as error:
raise cryptoNodeException('{} daemon returned error: {}'.format(self.symbol, str(error)))
else:
return result
############################################################################
def get_unconfirmed_balance(self):
try:
result = self.proxy.getunconfirmedbalance()
except exc.RpcException as error:
raise cryptoNodeException('{} daemon returned error: {}'.format(self.symbol, str(error)))
else:
return result
############################################################################
def get_new_address(self):
return self.proxy.getnewaddress()
############################################################################
def wallet_locked(self, cache_prior_state = False):
info = self.proxy.getwalletinfo()
if 'unlocked_until' in info:
return info['unlocked_until'] == 0
return False
############################################################################
def unlock_wallet(self, passphrase, seconds, staking = False):
try:
self.proxy.walletpassphrase(passphrase, seconds)
except exc.RpcWalletPassphraseIncorrect:
return False
else:
return True
############################################################################
def revert_wallet_lock(self):
pass
############################################################################
def send_to_address(self, address, amount, comment):
try:
txid = self.proxy.sendtoaddress(address, amount, comment)
except exc.RpcWalletUnlockNeeded:
raise cryptoNodeException('Wallet locked - please unlock')
except exc.RpcWalletInsufficientFunds:
raise cryptoNodeException('Insufficient funds in wallet')
except exc.RpcTypeError:
raise cryptoNodeException('Invalid amount')
except exc.RpcWalletError:
raise cryptoNodeException('Amount too small')
else:
return txid
############################################################################
def shutdown(self):
pass
################################################################################
## moneroNode class ############################################################
################################################################################
class moneroNode(cryptoNode):
############################################################################
def __init__(self, symbol, rpc_address, rpc_daemon, rpc_user, rpc_pass):
super().__init__(symbol, rpc_address, rpc_user, rpc_pass)
(host, port) = tuple(rpc_address.split(':'))
try:
self.wallet = Wallet(host=host, port=port, user=rpc_user, password=rpc_pass)
except monero.backends.jsonrpc.exceptions.Unauthorized:
raise cryptoNodeException('Failed to connect - error in rpcuser or rpcpassword for {} wallet'.format(self.symbol))
except requests.exceptions.ConnectTimeout:
raise cryptoNodeException('Failed to connect - check that {} wallet is running'.format(self.symbol))
(host, port) = tuple(rpc_daemon.split(':'))
try:
self.daemon = Daemon(host=host, port=port)
except monero.backends.jsonrpc.exceptions.Unauthorized:
raise cryptoNodeException('Failed to connect - error in rpcuser or rpcpassword for {} daemon'.format(self.symbol))
except requests.exceptions.ConnectTimeout:
raise cryptoNodeException('Failed to connect - check that {} daemon is running'.format(self.symbol))
############################################################################
def __getattr__(self, method):
return getattr(self.proxy, method)
pass
############################################################################
def initialise(self):
pass
############################################################################
def refresh(self):
try:
self.blocks = self.wallet.height()
except monero.backends.jsonrpc.exceptions.Unauthorized:
raise cryptoNodeException('Failed to connect - error in rpcuser or rpcpassword for {} wallet'.format(self.symbol))
except requests.exceptions.ConnectTimeout:
raise cryptoNodeException('Failed to connect - check that {} wallet is running'.format(self.symbol))
try:
info = self.daemon.info()
except monero.backends.jsonrpc.exceptions.Unauthorized:
raise cryptoNodeException('Failed to connect - check that {} daemon is running'.format(self.symbol))
except requests.exceptions.ConnectTimeout:
raise cryptoNodeException('Failed to connect - check that {} daemon is running'.format(self.symbol))
self.peers = info['incoming_connections_count'] + info['outgoing_connections_count']
############################################################################
def get_balance(self):
return self.wallet.balance()
############################################################################
def get_unlocked_balance(self):
return self.wallet.balance(unlocked=True)
############################################################################
def get_unconfirmed_balance(self):
amount = 0.0
transfers = self.wallet._backend.transfers_in(0, PaymentFilter(unconfirmed=True, confirmed=False))
for transfer in transfers:
amount += float(transfer.amount)
return amount
############################################################################
def get_new_address(self):
return str(self.wallet.address())
############################################################################
def wallet_locked(self, cache_prior_state = False):
# Assume that wallet is unlocked when monero-wallet-rpc is started
return False
############################################################################
def unlock_wallet(self, passphrase, seconds, staking = False):
return True
############################################################################
def revert_wallet_lock(self):
pass
############################################################################
def send_to_address(self, address, amount, comment):
return self.wallet.transfer(address, float(amount))[0].hash
############################################################################
def shutdown(self):
pass
################################################################################