Skip to content

Commit d62f9cd

Browse files
author
JaySebagh
committed
done
1 parent f92bfe5 commit d62f9cd

File tree

2 files changed

+62
-3
lines changed

2 files changed

+62
-3
lines changed

.vscode/settings.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"python.pythonPath": "/Users/jay/.local/share/virtualenvs/CS-Build-Week-2-cE2_Y_rQ/bin/python"
3+
}

request_lib.py

+59-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
from decouple import config
22
import requests
33
from time import sleep
4+
import json
5+
import sys
6+
import hashlib
7+
import random
48

59

610
def room_init():
@@ -29,9 +33,6 @@ def route(route_dict):
2933
print(f'Moved {value} to room number {key}')
3034

3135
# route({
32-
# "26":"w",
33-
# "23":"w",
34-
# "4":"s",
3536
# "0":"w",
3637
# "10":"n",
3738
# "19":"n",
@@ -431,4 +432,59 @@ def receive(name):
431432
# sleep to prevent PEBCAK
432433
sleep(cd+1)
433434
# return JSON
435+
return ret_data
436+
437+
def mine():
438+
# get last valid proof
439+
url = 'https://lambda-treasure-hunt.herokuapp.com/api/bc/last_proof/'
440+
token = config('TOKEN')
441+
headers = {'Authorization': f'Token {token}'}
442+
r = requests.get(url, headers=headers)
443+
ret_data = r.json()
444+
cd = ret_data['cooldown']
445+
sleep(cd+1)
446+
last_proof = ret_data['proof']
447+
print(f'last_proof: {last_proof}')
448+
# last_proof = json.dumps(last_proof, sort_keys=True).encode()
449+
proof = random.randint(0, 50000)
450+
addZeroes = ret_data['difficulty']
451+
print(f'diff: {addZeroes}')
452+
hashZeroes = "0" * addZeroes
453+
# last_proof = f'{last_proof}'.encode()
454+
while valid_proof(last_proof, proof, addZeroes, hashZeroes) is False:
455+
proof += 1
456+
#proof = str(proof)
457+
url = 'https://lambda-treasure-hunt.herokuapp.com/api/bc/last_proof/'
458+
headers = {'Authorization': f'Token {token}'}
459+
r = requests.get(url, headers=headers)
460+
ret_data = r.json()
461+
cd = ret_data['cooldown']
462+
sleep(cd+1)
463+
curr_val_proof = ret_data['proof']
464+
print(f"current valid_proof: {curr_val_proof}")
465+
url = 'https://lambda-treasure-hunt.herokuapp.com/api/bc/mine/'
466+
headers = {"Content-Type": "application/json",
467+
'Authorization': f'Token {token}'}
468+
data = {"proof": proof}
469+
print(f'proof: {proof}, ')
470+
r = requests.post(url, headers=headers, json=data)
471+
ret_data = r.json()
472+
cd = ret_data['cooldown']
473+
sleep(cd+1)
474+
return ret_data
475+
476+
def valid_proof(last_proof, proof, addZeroes, hashZeroes):
477+
guess = f'{last_proof}{proof}'.encode()
478+
guess_hash = hashlib.sha256(guess).hexdigest()
479+
# print(f'guess_hash: {guess_hash}')
480+
if(guess_hash[:addZeroes] == hashZeroes):
481+
print(f'guess: {guess_hash}')
482+
return guess_hash[:addZeroes] == hashZeroes
483+
484+
def get_balance():
485+
url = 'https://lambda-treasure-hunt.herokuapp.com/api/bc/get_balance/'
486+
token = config('TOKEN')
487+
headers = {'Authorization': f'Token {token}'}
488+
r = requests.get(url, headers=headers)
489+
ret_data = r.json()
434490
return ret_data

0 commit comments

Comments
 (0)