1
1
from decouple import config
2
2
import requests
3
3
from time import sleep
4
+ import json
5
+ import sys
6
+ import hashlib
7
+ import random
4
8
5
9
6
10
def room_init ():
@@ -29,9 +33,6 @@ def route(route_dict):
29
33
print (f'Moved { value } to room number { key } ' )
30
34
31
35
# route({
32
- # "26":"w",
33
- # "23":"w",
34
- # "4":"s",
35
36
# "0":"w",
36
37
# "10":"n",
37
38
# "19":"n",
@@ -431,4 +432,59 @@ def receive(name):
431
432
# sleep to prevent PEBCAK
432
433
sleep (cd + 1 )
433
434
# 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 ()
434
490
return ret_data
0 commit comments