import datetime
import json
import urllib.parse
def domains(domains):
html = ''
for domain in domains:
owner = domain['owner']
if 'index' in owner:
if owner['index'] == 0:
continue
expires = domain['stats']
if 'daysUntilExpire' in expires:
expires = expires['daysUntilExpire']
paid = domain['value']
paid = paid / 1000000
html += f'
'
return html
def transactions(txs):
html = ''
# Reverse the list
txs = txs[::-1]
for tx in txs:
action = "HNS Transfer"
address = tx["outputs"][0]["address"]
hash = tx["hash"]
confirmations=tx["confirmations"]
amount = 0
incomming = False
if not tx["inputs"][0]["path"]:
incomming = True
for output in tx["outputs"]:
if output["covenant"]["action"] != "NONE":
if action == "HNS Transfer":
action = output["covenant"]["action"]
elif action == output["covenant"]["action"]:
continue
else:
action = "Multiple Actions"
if not output["path"] and not incomming:
amount += output["value"]
elif output["path"] and incomming:
amount += output["value"]
amount = amount / 1000000
amount = round(amount, 2)
amount = "{:,}".format(amount)
hash = "" + hash[:8] + "..."
if confirmations < 5:
confirmations = "
" + str(confirmations) + "
"
else:
confirmations = "
" + str(confirmations) + "
"
html += f'
{action}
{address}
{hash}
{confirmations}
{amount} HNS
'
return html
def dns(data, edit=False):
html_output = ""
index = 0
for entry in data:
html_output += f"
{entry['type']}
\n"
if entry['type'] != 'DS' and not entry['type'].startswith("GLUE") and not entry['type'].startswith("SYNTH"):
for key, value in entry.items():
if key != 'type':
if isinstance(value, list):
html_output += "
\n"
for val in value:
html_output += f"{val} \n"
html_output += "
\n"
else:
value = ""
for key, val in entry.items():
if key != 'type':
value += str(val) + " "
html_output += f"
{value}
\n"
if edit:
# Remove the current entry from the list
keptRecords = str(data[:index] + data[index+1:]).replace("'", '"')
keptRecords = urllib.parse.quote(keptRecords)
html_output += f"
\n"
return html_output
def timestamp_to_readable_time(timestamp):
# Assuming the timestamp is in seconds
dt_object = datetime.datetime.fromtimestamp(timestamp)
readable_time = dt_object.strftime("%H:%M:%S %d %b %Y")
return readable_time
def bids(bids,reveals):
html = ''
for bid in bids:
lockup = bid['lockup']
lockup = lockup / 1000000
lockup = round(lockup, 2)
html += "
"
html += f"
{lockup} HNS
"
revealed = False
for reveal in reveals:
if reveal['bid'] == bid['prevout']['hash']:
revealed = True
value = reveal['value']
value = value / 1000000
value = round(value, 2)
html += f"
{value} HNS
"
bidValue = lockup - value
bidValue = round(bidValue, 2)
html += f"
{bidValue} HNS
"
break
if not revealed:
html += f"
Hidden until reveal
"
html += f"
Hidden until reveal
"
if bid['own']:
html += "
You
"
else:
html += "
Unknown
"
html += "
"
return html
def wallets(wallets):
html = ''
for wallet in wallets:
html += f''
return html