forked from Beldex-Coin/beldex-explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
explorer.py
876 lines (737 loc) · 32.5 KB
/
explorer.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
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
#!/usr/bin/env python3
import flask
from datetime import datetime, timedelta, timezone
import babel.dates
import json
import sys
import statistics
import string
import requests
import time
from base64 import b32encode, b16decode
from werkzeug.routing import BaseConverter
from pygments import highlight
from pygments.lexers import JsonLexer
from pygments.formatters import HtmlFormatter
import subprocess
import qrcode
from io import BytesIO
from jinja2 import Environment
import config
import local_config
from lmq import FutureJSON, lmq_connection
# Make a dict of config.* to pass to templating
conf = {x: getattr(config, x) for x in dir(config) if not x.startswith('__')}
git_rev = subprocess.run(["git", "rev-parse", "--short=9", "HEAD"], stdout=subprocess.PIPE, text=True)
if git_rev.returncode == 0:
git_rev = git_rev.stdout.strip()
else:
git_rev = "(unknown)"
app = flask.Flask(__name__)
# env = Environment(extensions=["jinja2.ext.i18n"])
# jinja_env = Environment('])
# app.jinja_options["extensions"].append('jinja2.ext.loopcontrols')
class Hex64Converter(BaseConverter):
def __init__(self, url_map):
super().__init__(url_map)
self.regex = "[0-9a-fA-F]{64}"
app.url_map.converters['hex64'] = Hex64Converter
@app.template_filter('format_datetime')
def format_datetime(value, format='long'):
print(value)
return babel.dates.format_datetime(value, format, tzinfo=babel.dates.get_timezone('UTC'))
@app.template_filter('from_timestamp')
def from_timestamp(value):
return datetime.fromtimestamp(value, tz=timezone.utc)
@app.template_filter('ago')
def datetime_ago(value):
delta = datetime.now(timezone.utc) - value
disp=''
if delta.days < 0:
delta = -delta
disp += '-'
if delta.days > 0:
disp += '{}d '.format(delta.days)
disp += '{:d}:{:02d}:{:02d}'.format(delta.seconds // 3600, delta.seconds // 60 % 60, delta.seconds % 60)
return disp
@app.template_filter('reltime')
def relative_time(seconds, two_part=False, in_ago=True, neg_is_now=False):
if isinstance(seconds, timedelta):
seconds = seconds.seconds + 86400*seconds.days
ago = False
if seconds == 0 or (neg_is_now and seconds < 0):
return 'now'
elif seconds < 0:
seconds = -seconds
ago = True
if two_part:
if seconds < 3600:
delta = '{:.0f} minutes {:.0f} seconds'.format(seconds//60, seconds%60//1)
elif seconds < 24 * 3600:
delta = '{:.0f} hours {:.1f} minutes'.format(seconds//3600, seconds%3600/60)
elif seconds < 10 * 86400:
delta = '{:.0f} days {:.1f} hours'.format(seconds//86400, seconds%86400/3600)
else:
delta = '{:.1f} days'.format(seconds / 86400)
elif seconds < 90:
delta = '{:.0f} seconds'.format(seconds)
elif seconds < 90 * 60:
delta = '{:.1f} minutes'.format(seconds / 60)
elif seconds < 36 * 3600:
delta = '{:.1f} hours'.format(seconds / 3600)
elif seconds < 99.5 * 86400:
delta = '{:.1f} days'.format(seconds / 86400)
else:
delta = '{:.0f} days'.format(seconds / 86400)
return delta if not in_ago else delta + ' ago' if ago else 'in ' + delta
@app.template_filter('roundish')
def filter_round(value):
return ("{:.0f}" if value >= 100 or isinstance(value, int) else "{:.1f}" if value >= 10 else "{:.2f}").format(value)
@app.template_filter('chop0')
def filter_chop0(value):
value = str(value)
if '.' in value:
return value.rstrip('0').rstrip('.')
return value
si_suffix = ['', 'k', 'M', 'G', 'T', 'P', 'E', 'Z', 'Y']
@app.template_filter('si')
def format_si(value):
i = 0
while value >= 1000 and i < len(si_suffix) - 1:
value /= 1000
i += 1
return filter_round(value) + '{}'.format(si_suffix[i])
@app.template_filter('beldex')
def format_beldex(atomic, tag=True, fixed=False, decimals=9, zero=None):
"""Formats an atomic current value as a human currency value.
tag - if False then don't append " BDX"
fixed - if True then don't strip insignificant trailing 0's and '.'
decimals - at how many decimal we should round; the default is full precision
fixed - if specified, replace 0 with this string
"""
if atomic == 0 and zero:
disp = zero
else:
disp = "{{:.{}f}}".format(decimals).format(atomic * 1e-9)
if not fixed and decimals > 0:
disp = disp.rstrip('0').rstrip('.')
if tag:
disp += ' BDX'
return disp
# For some inexplicable reason some hex fields are provided as array of byte integer values rather
# than hex. This converts such a monstrosity to hex.
@app.template_filter('bytes_to_hex')
def bytes_to_hex(b):
return "".join("{:02x}".format(x) for x in b)
@app.template_filter('base32z')
def base32z(hex):
return b32encode(b16decode(hex, casefold=True)).translate(
bytes.maketrans(
b'ABCDEFGHIJKLMNOPQRSTUVWXYZ234567',
b'ybndrfg8ejkmcpqxot1uwisza345h769')).decode().rstrip('=')
@app.template_filter('ellipsize')
def ellipsize(string, leading=10, trailing=5, ellipsis='...'):
if len(string) <= leading + trailing + 3:
return string
return string[0:leading] + ellipsis + ('' if not trailing else string[-trailing:])
@app.after_request
def add_global_headers(response):
for k, v in {
'Cache-Control': 'no-store',
'Access-Control-Allow-Origin': '*',
}.items():
if k not in response.headers:
response.headers[k] = v
return response
@app.route('/style.css')
def css():
return flask.send_from_directory('static', 'style.css')
def get_mns_future(lmq, beldexd):
return FutureJSON(lmq, beldexd, 'rpc.get_master_nodes', 5,
args={
'all': False,
'fields': { x: True for x in ('master_node_pubkey', 'requested_unlock_height', 'last_reward_block_height',
'last_reward_transaction_index', 'active', 'funded', 'earned_downtime_blocks',
'master_node_version', 'contributors', 'total_contributed', 'total_reserved',
'staking_requirement', 'portions_for_operator', 'operator_address', 'pubkey_ed25519',
'last_uptime_proof', 'state_height', 'swarm_id') } })
def get_mns(mns_future, info_future):
info = info_future.get()
awaiting_mns, active_mns, inactive_mns = [], [], []
mn_states = mns_future.get()
mn_states = mn_states['master_node_states'] if 'master_node_states' in mn_states else []
for mn in mn_states:
mn['contribution_open'] = mn['staking_requirement'] - mn['total_reserved']
mn['contribution_required'] = mn['staking_requirement'] - mn['total_contributed']
mn['num_contributions'] = sum(len(x['locked_contributions']) for x in mn['contributors'] if 'locked_contributions' in x)
if mn['active']:
active_mns.append(mn)
elif mn['funded']:
mn['decomm_blocks_remaining'] = max(mn['earned_downtime_blocks'], 0)
mn['decomm_blocks'] = info['height'] - mn['state_height']
inactive_mns.append(mn)
else:
awaiting_mns.append(mn)
return awaiting_mns, active_mns, inactive_mns
def get_quorums_future(lmq, beldexd, height):
return FutureJSON(lmq, beldexd, 'rpc.get_quorum_state', 30,
args={ 'start_height': height-55, 'end_height': height })
def get_quorums(quorums_future):
qkey = ["obligation", "checkpoint", "flash", "POS"]
quo = {x: [] for x in qkey}
quorums = quorums_future.get()
quorums = quorums['quorums'] if 'quorums' in quorums else []
for q in quorums:
if q['quorum_type'] <= len(qkey):
quo[qkey[q['quorum_type']]].append(q)
else:
print("Something getting wrong in quorums: found unknown quorum_type={}".format(q['quorum_type']), file=sys.stderr)
return quo
def get_mempool_future(lmq, beldexd):
return FutureJSON(lmq, beldexd, 'rpc.get_transaction_pool', 5, args={"tx_extra":True, "stake_info":True})
def parse_mempool(mempool_future):
# mempool RPC return values are about as nasty as can be. For each mempool tx, we get back
# *both* binary+hex encoded values and JSON-encoded values slammed into a string, which means we
# have to invoke an *extra* JSON parser for each tx. This is terrible.
mp = mempool_future.get()
if 'transactions' in mp:
# If we have a cached value we have already sorted it
if '_sorted' not in mp:
mp['transactions'].sort(key=lambda tx: (tx['receive_time'], tx['id_hash']))
mp['_sorted'] = True
for tx in mp['transactions']:
tx['info'] = json.loads(tx["tx_json"])
else:
mp['transactions'] = []
return mp
@app.context_processor
def template_globals():
return {
'config': conf,
'server': {
'datetime': datetime.now(timezone.utc),
'timestamp': datetime.utcnow().timestamp(),
'revision': git_rev,
},
}
@app.route('/page/<int:page>')
@app.route('/page/<int:page>/<int:per_page>')
@app.route('/range/<int:first>/<int:last>')
@app.route('/autorefresh/<int:refresh>')
@app.route('/')
def main(refresh=None, page=0, per_page=None, first=None, last=None):
lmq, beldexd = lmq_connection()
inforeq = FutureJSON(lmq, beldexd, 'rpc.get_info', 1)
stake = FutureJSON(lmq, beldexd, 'rpc.get_staking_requirement', 10)
base_fee = FutureJSON(lmq, beldexd, 'rpc.get_fee_estimate', 10)
hfinfo = FutureJSON(lmq, beldexd, 'rpc.hard_fork_info', 10)
mempool = get_mempool_future(lmq, beldexd)
mns = get_mns_future(lmq, beldexd)
checkpoints = FutureJSON(lmq, beldexd, 'rpc.get_checkpoints', args={"count": 3})
# This call is slow the first time it gets called in beldexd but will be fast after that, so call
# it with a very short timeout. It's also an admin-only command, so will always fail if we're
# using a restricted RPC interface.
coinbase = FutureJSON(lmq, beldexd, 'admin.get_coinbase_tx_sum', 10, timeout=1, fail_okay=True,
args={"height":0, "count":2**31-1})
custom_per_page = ''
if per_page is None or per_page <= 0 or per_page > config.max_blocks_per_page:
per_page = config.blocks_per_page
else:
custom_per_page = '/{}'.format(per_page)
# We have some chained request dependencies here and below, so get() them as needed; all other
# non-dependent requests should already have a future initiated above so that they can
# potentially run in parallel.
info = inforeq.get()
height = info['height']
# Permalinked block range:
if first is not None and last is not None and 0 <= first <= last and last <= first + 99:
start_height, end_height = first, last
if end_height - start_height + 1 != per_page:
per_page = end_height - start_height + 1;
custom_per_page = '/{}'.format(per_page)
# We generally can't get a perfect page number because our range (e.g. 5-14) won't line up
# with pages (e.g. 10-19, 0-19), so just get as close as we can. Next/Prev page won't be
# quite right, but they'll be within half a page.
page = round((height - 1 - end_height) / per_page)
else:
end_height = max(0, height - per_page*page - 1)
start_height = max(0, end_height - per_page + 1)
blocks = FutureJSON(lmq, beldexd, 'rpc.get_block_headers_range', cache_key='main', args={
'start_height': start_height,
'end_height': end_height,
'get_tx_hashes': True,
}).get()['headers']
# If 'txs' is already there then it is probably left over from our cached previous call through
# here.
if blocks and 'txs' not in blocks[0]:
txids = []
for b in blocks:
b['txs'] = []
txids.append(b['miner_tx_hash'])
if 'tx_hashes' in b:
txids += b['tx_hashes']
txs = parse_txs(tx_req(lmq, beldexd, txids, cache_key='mempool').get())
i = 0
for tx in txs:
# TXs should come back in the same order so we can just skip ahead one when the block
# height changes rather than needing to search for the block
if blocks[i]['height'] != tx['block_height']:
i += 1
while i < len(blocks) and blocks[i]['height'] != tx['block_height']:
print("Something getting wrong: missing txes?", file=sys.stderr)
i += 1
if i >= len(blocks):
print("Something getting wrong: have leftover txes")
break
blocks[i]['txs'].append(tx)
# Clean up the MN data a bit to make things easier for the templates
awaiting_mns, active_mns, inactive_mns = get_mns(mns, inforeq)
return flask.render_template('index.html',
info=info,
stake=stake.get(),
fees=base_fee.get(),
emission=coinbase.get(),
hf=hfinfo.get(),
active_mns=active_mns,
inactive_mns=inactive_mns,
awaiting_mns=awaiting_mns,
blocks=blocks,
block_size_median=statistics.median(b['block_size'] for b in blocks),
page=page,
per_page=per_page,
custom_per_page=custom_per_page,
mempool=parse_mempool(mempool),
checkpoints=checkpoints.get(),
refresh=refresh,
)
@app.route('/txpool')
def mempool():
lmq, beldexd = lmq_connection()
info = FutureJSON(lmq, beldexd, 'rpc.get_info', 1)
mempool = get_mempool_future(lmq, beldexd)
return flask.render_template('mempool.html',
info=info.get(),
mempool=parse_mempool(mempool),
)
@app.route('/master_nodes')
def mns():
lmq, beldexd = lmq_connection()
info = FutureJSON(lmq, beldexd, 'rpc.get_info', 1)
awaiting, active, inactive = get_mns(get_mns_future(lmq, beldexd), info)
return flask.render_template('master_nodes.html',
info=info.get(),
active_mns=active,
awaiting_mns=awaiting,
inactive_mns=inactive,
)
def tx_req(lmq, beldexd, txids, cache_key='single', **kwargs):
return FutureJSON(lmq, beldexd, 'rpc.get_transactions', cache_seconds=10, cache_key=cache_key,
args={
"txs_hashes": txids,
"decode_as_json": True,
"tx_extra": True,
"prune": True,
"stake_info": True,
},
**kwargs)
def mn_req(lmq, beldexd, pubkey, **kwargs):
return FutureJSON(lmq, beldexd, 'rpc.get_master_nodes', 5, cache_key='single',
args={"master_node_pubkeys": [pubkey]}, **kwargs
)
def block_header_req(lmq, beldexd, hash_or_height, **kwargs):
if isinstance(hash_or_height, int) or (len(hash_or_height) <= 10 and hash_or_height.isdigit()):
return FutureJSON(lmq, beldexd, 'rpc.get_block_header_by_height', cache_key='single',
args={ "height": int(hash_or_height) }, **kwargs)
else:
return FutureJSON(lmq, beldexd, 'rpc.get_block_header_by_hash', cache_key='single',
args={ 'hash': hash_or_height }, **kwargs)
def block_with_txs_req(lmq, beldexd, hash_or_height, **kwargs):
args = { 'get_tx_hashes': True }
if isinstance(hash_or_height, int) or (len(hash_or_height) <= 10 and hash_or_height.isdigit()):
args['height'] = int(hash_or_height)
else:
args['hash'] = hash_or_height
return FutureJSON(lmq, beldexd, 'rpc.get_block', cache_key='single', args=args, **kwargs)
@app.route('/master_node/<hex64:pubkey>') # For backwards compatibility with old explorer URLs
@app.route('/mn/<hex64:pubkey>')
def show_mn(pubkey):
lmq, beldexd = lmq_connection()
info = FutureJSON(lmq, beldexd, 'rpc.get_info', 1)
hfinfo = FutureJSON(lmq, beldexd, 'rpc.hard_fork_info', 10)
mn = mn_req(lmq, beldexd, pubkey).get()
quos = get_quorums_future(lmq, beldexd, info.get()['height'])
if 'master_node_states' not in mn or not mn['master_node_states']:
return flask.render_template('not_found.html',
info=info.get(),
type='mn',
id=pubkey,
)
mn = mn['master_node_states'][0]
# These are a bit non-trivial to properly calculate:
# Number of staked contributions
mn['num_contributions'] = sum(len(x["locked_contributions"]) for x in mn["contributors"] if "locked_contributions" in x)
# Number of unfilled, reserved contribution spots:
mn['num_reserved_spots'] = sum(x["amount"] < x["reserved"] for x in mn["contributors"])
# Available open contribution spots:
mn['num_open_spots'] = 0 if mn['total_reserved'] >= mn['staking_requirement'] else max(0, 4 - mn['num_contributions'] - mn['num_reserved_spots'])
return flask.render_template('mn.html',
info=info.get(),
hf=hfinfo.get(),
mn=mn,
quorums=get_quorums(quos)
)
@app.route('/qr/<hex64:pubkey>')
def qr_mn_pubkey(pubkey):
qr = qrcode.QRCode(
box_size=5,
error_correction=qrcode.constants.ERROR_CORRECT_L,
)
qr.add_data(pubkey.upper())
img = qr.make_image(
fill_color="#1e1d48",
back_color="#dbf7f5"
)
with BytesIO() as output:
img.save(output, format="PNG")
r = flask.make_response(output.getvalue())
r.headers.set('Content-Type', 'image/png')
return r
def parse_txs(txs_rpc):
"""Takes a tx_req(...).get() response and parses the embedded nested json into something useful
This modifies the txs_rpc['txs'] values in-place. Returns txs_rpc['txs'] if it exists, otherwise an empty list.
"""
if 'txs' not in txs_rpc:
return []
for tx in txs_rpc['txs']:
if 'info' not in tx:
# We have serialized JSON data inside a field in the JSON, because of beldexd's
# multiple incompatible JSON generators 🤮:
tx['info'] = json.loads(tx["as_json"])
del tx['as_json']
# The "extra" field inside as_json is retardedly in per-byte integer values,
# convert it to a hex string 🤮:
tx['info']['extra'] = bytes_to_hex(tx['info']['extra'])
return txs_rpc['txs']
def get_block_txs_future(lmq, beldexd, block):
hashes = []
if 'tx_hashes' in block:
hashes += block['tx_hashes']
hashes.append(block['block_header']['miner_tx_hash'])
if 'info' not in block:
try:
block['info'] = json.loads(block["json"])
del block['info']['miner_tx'] # Doemn't include enough for us, we fetch it separately with extra interpretation instead
del block["json"]
except Exception as e:
print("Something getting wrong: cannot parse block json for block {}: {}".format(block_height, e), file=sys.stderr)
return tx_req(lmq, beldexd, hashes, cache_key='block')
@app.route('/block/<int:height>')
@app.route('/block/<int:height>/<int:more_details>')
@app.route('/block/<hex64:hash>')
@app.route('/block/<hex64:hash>/<int:more_details>')
def show_block(height=None, hash=None, more_details=False):
lmq, beldexd = lmq_connection()
info = FutureJSON(lmq, beldexd, 'rpc.get_info', 1)
hfinfo = FutureJSON(lmq, beldexd, 'rpc.hard_fork_info', 10)
if height is not None:
val = height
elif hash is not None:
val = hash
block = None if val is None else block_with_txs_req(lmq, beldexd, val).get()
if block is None:
return flask.render_template("not_found.html",
info=info.get(),
hfinfo=hfinfo.get(),
type='block',
height=height,
id=hash
)
next_block = None
block_height = block['block_header']['height']
txs = get_block_txs_future(lmq, beldexd, block)
if info.get()['height'] > 1 + block_height:
next_block = block_header_req(lmq, beldexd, '{}'.format(block_height + 1))
if more_details:
formatter = HtmlFormatter(cssclass="syntax-highlight", style="native")
more_details = {
'details_css': formatter.get_style_defs('.syntax-highlight'),
'details_html': highlight(json.dumps(block, indent="\t", sort_keys=True), JsonLexer(), formatter),
}
else:
more_details = {}
transactions = [] if txs is None else parse_txs(txs.get()).copy()
miner_tx = transactions.pop() if transactions else []
return flask.render_template("block.html",
info=info.get(),
hfinfo=hfinfo.get(),
block_header=block['block_header'],
block=block,
miner_tx=miner_tx,
transactions=transactions,
next_block=next_block.get() if next_block else None,
**more_details,
)
@app.route('/block/latest')
def show_block_latest():
lmq, beldexd = lmq_connection()
height = FutureJSON(lmq, beldexd, 'rpc.get_info', 1).get()['height'] - 1
return flask.redirect(flask.url_for('show_block', height=height), code=302)
@app.route('/tx/<hex64:txid>')
@app.route('/tx/<hex64:txid>/<int:more_details>')
def show_tx(txid, more_details=False):
lmq, beldexd = lmq_connection()
info = FutureJSON(lmq, beldexd, 'rpc.get_info', 1)
txs = tx_req(lmq, beldexd, [txid]).get()
if 'txs' not in txs or not txs['txs']:
return flask.render_template('not_found.html',
info=info.get(),
type='tx',
id=txid,
)
tx = parse_txs(txs)[0]
# If this is a state change, see if we have the quorum stored to provide context
testing_quorum = None
if tx['info']['version'] >= 4 and 'mn_state_change' in tx['extra']:
testing_quorum = FutureJSON(lmq, beldexd, 'rpc.get_quorum_state', 60, cache_key='tx_state_change',
args={ 'quorum_type': 0, 'start_height': tx['extra']['mn_state_change']['height'] })
kindex_info = {} # { amount => { keyindex => {output-info} } }
block_info_req = None
if 'vin' in tx['info']:
if len(tx['info']['vin']) == 1 and 'gen' in tx['info']['vin'][0]:
tx['coinbase'] = True
elif tx['info']['vin'] and config.enable_mixins_details:
# Load output details for all outputs contained in the inputs
outs_req = []
for inp in tx['info']['vin']:
# Key positions are stored as offsets from the previous index rather than indices,
# so de-delta them back into indices:
if 'key_offsets' in inp['key'] and 'key_indices' not in inp['key']:
kis = []
inp['key']['key_indices'] = kis
kbase = 0
for koff in inp['key']['key_offsets']:
kbase += koff
kis.append(kbase)
del inp['key']['key_offsets']
outs_req = [{"amount":inp['key']['amount'], "index":ki} for inp in tx['info']['vin'] for ki in inp['key']['key_indices']]
outputs = FutureJSON(lmq, beldexd, 'rpc.get_outs', args={
'get_txid': True,
'outputs': outs_req,
}).get()
if outputs and 'outs' in outputs and len(outputs['outs']) == len(outs_req):
outputs = outputs['outs']
# Also load block details for all of those outputs:
block_info_req = FutureJSON(lmq, beldexd, 'rpc.get_block_header_by_height', args={
'heights': [o["height"] for o in outputs]
})
i = 0
for inp in tx['info']['vin']:
amount = inp['key']['amount']
if amount not in kindex_info:
kindex_info[amount] = {}
ki = kindex_info[amount]
for ko in inp['key']['key_indices']:
ki[ko] = outputs[i]
i += 1
if more_details:
formatter = HtmlFormatter(cssclass="syntax-highlight", style="paraiso-dark")
more_details = {
'details_css': formatter.get_style_defs('.syntax-highlight'),
'details_html': highlight(json.dumps(tx, indent="\t", sort_keys=True), JsonLexer(), formatter),
}
else:
more_details = {}
block_info = {} # { height => {block-info} }
if block_info_req:
bi = block_info_req.get()
if 'block_headers' in bi:
for bh in bi['block_headers']:
block_info[bh['height']] = bh
if testing_quorum:
testing_quorum = testing_quorum.get()
if testing_quorum:
if 'quorums' in testing_quorum and testing_quorum['quorums']:
testing_quorum = testing_quorum['quorums'][0]['quorum']
else:
testing_quorum = None
return flask.render_template('tx.html',
info=info.get(),
tx=tx,
kindex_info=kindex_info,
block_info=block_info,
testing_quorum=testing_quorum,
**more_details,
)
@app.route('/quorums')
def show_quorums():
lmq, beldexd = lmq_connection()
info = FutureJSON(lmq, beldexd, 'rpc.get_info', 1)
quos = get_quorums_future(lmq, beldexd, info.get()['height'])
return flask.render_template('quorums.html',
info=info.get(),
quorums=get_quorums(quos)
)
base32z_dict = 'ybndrfg8ejkmcpqxot1uwisza345h769'
base32z_map = {base32z_dict[i]: i for i in range(len(base32z_dict))}
@app.route('/search')
def search():
lmq, beldexd = lmq_connection()
info = FutureJSON(lmq, beldexd, 'rpc.get_info', 1)
val = (flask.request.args.get('value') or '').strip()
if val and len(val) < 10 and val.isdigit(): # Block height
return flask.redirect(flask.url_for('show_block', height=val), code=301)
if val and len(val) == 58 and val.endswith(".mnode") and val[51] in 'yoYO' and all(c in base32z_dict for c in val[0:52].lower()):
v, bits = 0, 0
for x in val[0:52].lower():
v = (v << 5) | base32z_map[x] # Arbitrary precision integers hurray!
# The above loads 260 bytes (5 bits per char * 52 chars), but we only want 256:
v >>= 4
val = "{:64x}".format(v)
elif not val or len(val) != 64 or any(c not in string.hexdigits for c in val):
return flask.render_template('not_found.html',
info=info.get(),
type='bad_search',
id=val,
)
# Initiate all the lookups at once, then redirect to whichever one responds affirmatively
mnreq = mn_req(lmq, beldexd, val)
blreq = block_header_req(lmq, beldexd, val, fail_okay=True)
txreq = tx_req(lmq, beldexd, [val])
mn = mnreq.get()
if mn and 'master_node_states' in mn and mn['master_node_states']:
return flask.redirect(flask.url_for('show_mn', pubkey=val), code=301)
bl = blreq.get()
if bl and 'block_header' in bl and bl['block_header']:
return flask.redirect(flask.url_for('show_block', hash=val), code=301)
tx = txreq.get()
if tx and 'txs' in tx and tx['txs']:
return flask.redirect(flask.url_for('show_tx', txid=val), code=301)
return flask.render_template('not_found.html',
info=info.get(),
type='search',
id=val,
)
@app.route('/api/networkinfo')
def api_networkinfo():
lmq, beldexd = lmq_connection()
info = FutureJSON(lmq, beldexd, 'rpc.get_info', 1)
hfinfo = FutureJSON(lmq, beldexd, 'rpc.hard_fork_info', 10)
info = info.get()
data = {**info}
hfinfo = hfinfo.get()
data['current_hf_version'] = hfinfo['version']
data['next_hf_height'] = hfinfo['earliest_height'] if 'earliest_height' in hfinfo else None
return flask.jsonify({"data": data, "status": "OK"})
@app.route('/api/emission')
def api_emission():
lmq, beldexd = lmq_connection()
info = FutureJSON(lmq, beldexd, 'rpc.get_info', 1)
coinbase = FutureJSON(lmq, beldexd, 'admin.get_coinbase_tx_sum', 10, timeout=1, fail_okay=True,
args={"height":0, "count":2**31-1}).get()
if not coinbase:
return flask.jsonify(None)
info = info.get()
return flask.jsonify({
"data": {
"blk_no": info['height'] - 1,
"burn": coinbase["burn_amount"],
"circulating_supply": coinbase["emission_amount"] - coinbase["burn_amount"],
"coinbase": coinbase["emission_amount"] - coinbase["burn_amount"],
"emission": coinbase["emission_amount"],
"fee": coinbase["fee_amount"]
},
"status": "success"
})
@app.route('/api/master_node_stats')
def api_master_node_stats():
lmq, beldexd = lmq_connection()
info = FutureJSON(lmq, beldexd, 'rpc.get_info', 1)
stakinginfo = FutureJSON(lmq, beldexd, 'rpc.get_staking_requirement', 30)
mns = get_mns_future(lmq, beldexd)
mns = mns.get()
if 'master_node_states' not in mns:
return flask.jsonify({"status": "Error retrieving MN stats"}), 500
mns = mns['master_node_states']
stats = {'active': 0, 'funded': 0, 'awaiting_contribution': 0, 'decommissioned': 0, 'staked': 0}
for mn in mns:
if mn['funded']:
stats['funded'] += 1
if mn['active']:
stats['active'] += 1
else:
stats['decommissioned'] += 1
else:
stats['awaiting_contribution'] += 1
stats['staked'] += mn['total_contributed']
stats['staked'] /= 1_000_000_000
stats['mn_reward'] = 16.5
stats['mn_reward_interval'] = stats['active']
stakinginfo = stakinginfo.get()
stats['mn_staking_requirement_full'] = stakinginfo['staking_requirement'] / 1_000_000_000
stats['mn_staking_requirement_min'] = stats['mn_staking_requirement_full'] / 4
info = info.get()
stats['height'] = info['height']
return flask.jsonify({"data": stats, "status": "OK"})
@app.route('/api/circulating_supply')
def api_circulating_supply():
lmq, beldexd = lmq_connection()
coinbase = FutureJSON(lmq, beldexd, 'admin.get_coinbase_tx_sum', 10, timeout=1, fail_okay=True,
args={"height":0, "count":2**31-1}).get()
return flask.jsonify((coinbase["emission_amount"] - coinbase["burn_amount"]) // 1_000_000_000 if coinbase else None)
# FIXME: need better error handling here
@app.route('/api/transaction/<hex64:txid>')
def api_tx(txid):
lmq, beldexd = lmq_connection()
tx = tx_req(lmq, beldexd, [txid]).get()
txs = parse_txs(tx)
return flask.jsonify({
"status": tx['status'],
"data": (txs[0] if txs else None),
})
@app.route('/api/block/<int:height>')
@app.route('/api/block/<hex64:blkid>')
def api_block(blkid=None, height=None):
lmq, beldexd = lmq_connection()
block = block_with_txs_req(lmq, beldexd, blkid if blkid is not None else height).get()
txs = get_block_txs_future(lmq, beldexd, block)
if 'block_header' in block:
data = block['block_header'].copy()
data["txs"] = parse_txs(txs.get()).copy()
return flask.jsonify({
"status": block['status'],
"data": data,
})
ticker_vs, ticker_vs_expires = [], None
ticker_cache, ticker_cache_expires = {}, None
@app.route('/api/prices')
@app.route('/api/price/<fiat>')
def api_price(fiat=None):
global ticker_cache, ticker_cache_expires, ticker_vs, ticker_vs_expires
# TODO: will need to change to 'beldex' when/if the ticker changes:
ticker = 'beldex-network'
if not ticker_cache or not ticker_cache_expires or ticker_cache_expires < time.time():
if not ticker_vs_expires or ticker_vs_expires < time.time():
try:
x = requests.get("https://api.coingecko.com/api/v3/simple/supported_vs_currencies").json()
if x:
ticker_vs = x
ticker_vs_expires = time.time() + 300
except RuntimeError as e:
print("Failed to retrieve vs currencies: {}".format(e), file=sys.stderr)
# ignore failure because we might have an old value that is still usable
if not ticker_vs:
raise RuntimeError("Failed to retrieve CoinGecko currency list")
try:
x = requests.get("https://api.coingecko.com/api/v3/simple/price?ids={}&vs_currencies={}".format(
ticker, ",".join(ticker_vs))).json()
except RuntimeError as e:
print("Failed to retrieve prices: {}".format(e), file=sys.stderr)
if not x or ticker not in x or not x[ticker]:
raise RuntimeError("Failed to retrieve prices from CoinGecko")
ticker_cache = x[ticker]
ticker_cache_expires = time.time() + 60
if fiat is None:
return flask.jsonify(ticker_cache)
else:
fiat = fiat.lower()
return flask.jsonify({ fiat: ticker_cache[fiat] } if fiat in ticker_cache else {})