-
Notifications
You must be signed in to change notification settings - Fork 0
/
get_token_balance.py
75 lines (73 loc) · 2.42 KB
/
get_token_balance.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
#!/usr/bin/env python
# -*-coding:utf-8-*-
from web3 import Web3
import json
from config import config
from decimal import Decimal
import os
from helper import to_many_request
import time
def getTokenBalance(wallet, contract, server):
w3 = Web3(Web3.WebsocketProvider(config('NODE', server).format(config('MORALIS', 'DEFAULT')), websocket_timeout=900, websocket_kwargs={'max_size': 999999999}))
with open(os.path.dirname(os.path.realpath(__file__)) + "/abis/erc20.json") as f:
abi = json.load(f)
try:
w3Request = True
while w3Request:
try:
contract = w3.toChecksumAddress(contract)
w3Request = False
except Exception as e:
if not to_many_request(e):
raise Exception(str(e))
else:
time.sleep(1)
w3Request = True
while w3Request:
try:
token = w3.eth.contract(address=contract, abi=abi)
w3Request = False
except Exception as e:
if not to_many_request(e):
raise Exception(str(e))
else:
time.sleep(1)
w3Request = True
while w3Request:
try:
wallet = w3.toChecksumAddress(wallet)
w3Request = False
except Exception as e:
if not to_many_request(e):
raise Exception(str(e))
else:
time.sleep(1)
w3Request = True
while w3Request:
try:
balance = token.functions.balanceOf(wallet).call()
w3Request = False
except Exception as e:
if not to_many_request(e):
raise Exception(str(e))
else:
time.sleep(1)
w3Request = True
while w3Request:
try:
balance = Decimal(str(balance)) / Decimal(str(10 ** token.functions.decimals().call()))
w3Request = False
except Exception as e:
if not to_many_request(e):
raise Exception(str(e))
else:
time.sleep(1)
return {
'status': 'success',
'balance': str(balance)
}
except Exception as e:
return {
'status': 'fail',
'message': str(e)
}