Skip to content

Instantly share code, notes, and snippets.

@taxmeifyoucan
Last active August 8, 2022 21:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save taxmeifyoucan/92f1673b45c82b1764002b276bbfb157 to your computer and use it in GitHub Desktop.
Save taxmeifyoucan/92f1673b45c82b1764002b276bbfb157 to your computer and use it in GitHub Desktop.
Estimating hashrate to achieve a TTD
#Run with TTD to estimate in argument
# python3 hashrate_ttd.py --ttd 58500000000000000000000
import numpy as np
import matplotlib.pyplot as plt
import matplotlib.dates as md
from web3 import Web3
import datetime as dt
import time
import argparse
T = lambda blockn: web3.eth.getBlock(blockn).timestamp
TTD = lambda blockn: web3.eth.getBlock(blockn).totalDifficulty
web3 = Web3(Web3.HTTPProvider("https://bordel.xyz"))
latest_block = web3.eth.get_block('latest')['number']
def estimate_hashrate(target):
current_ttd = web3.eth.get_block('latest')['totalDifficulty']
time_now=web3.eth.get_block('latest')['timestamp']
hashrate=((TTD("latest")-TTD(latest_block-6450))/(T("latest")-T(latest_block-6450))/1000000000000) #hashrate in roughly past day
time_targets=[1662033600, 1662638400, 1663243200, 1663848000, 1664539200, 1665144000]
#September
start=1661983200
end=1664748000
t=[]
t.append(start)
i=0
while t[i] < end:
i+=1
t.append(t[i-1]+43200)
i=0
h=[]
p=[]
for timet in t:
h.append(((target-current_ttd)/(timet-time_now)/1000000000000))
for hash_t in h:
p.append(((hashrate-hash_t)/hashrate)*(-100))
conv=np.vectorize(dt.datetime.fromtimestamp)
dates=conv(t)
ax=plt.gca()
plt.subplots_adjust(bottom=0.2)
plt.xticks( rotation=25 )
xfmt = md.DateFormatter('%Y-%m-%d')
ax.xaxis.set_major_formatter(xfmt)
plt.title("Hashrate change")
ax.set_ylabel('Δ %')
plt.plot(dates, p)
plt.axhline(y = 0, color = 'r', linestyle = 'dashed')
plt.savefig('percent_delta.png')
ax.grid(True)
plt.show()
plt.clf()
ax.clear()
ax=plt.gca()
plt.subplots_adjust(bottom=0.2)
plt.xticks( rotation=25 )
xfmt = md.DateFormatter('%Y-%m-%d')
ax.xaxis.set_major_formatter(xfmt)
plt.title("Hashrate to achieve TTD")
ax.set_ylabel('TH/s')
plt.plot(dates, h)
plt.axhline(y = hashrate, color = 'r', linestyle = 'dashed')
ax.grid(True)
plt.savefig('hashrate_delta.png')
plt.show()
for time_target in time_targets:
hash_target=((target-current_ttd)/(time_target-time_now)/1000000000000)
delta=((hashrate-hash_target)/hashrate)*100
print("To achieve TTD", target, "at", time.ctime(time_target),"UTC, around %.2f TH/s in the network is needed as of now." % hash_target)
print("That is around", int(delta), "% down from current hashrate")
ap = argparse.ArgumentParser()
ap.add_argument("--ttd", required=True,
help="Total terminal difficulty value to estimate")
args = vars(ap.parse_args())
target = int(args['ttd'])
estimate_hashrate(target)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment