forked from paralink-network/paralink-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ethereum_request.py
67 lines (59 loc) · 2.14 KB
/
ethereum_request.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
import json
from asyncio import get_event_loop
from aiohttp import ClientSession
async def main():
"""Performs a balance request as well as custom function call to the ETH node.
Calls in the past require an archive node.
"""
url = "http://127.0.0.1:7424"
pql = {
"name": "Ethereum request",
"psql_version": "0.1",
"sources": [
{
"name": "Custom function call on ETH contract",
"pipeline": [
{
"step": "extract",
"method": "eth.function",
"address": "0xBb2b8038a1640196FbE3e38816F3e67Cba72D940",
"chain": "eth.mainnet",
"params": {
"function": "balanceOf(address)",
"args": ["0x9b89202Fc32c294Df4B2b52830fF40B3EC0F0369"],
"block": 11514560, # optional (defaults to 'latest')
# Should return 2912396840
},
},
],
},
{
"name": "Address ETH balance",
"pipeline": [
{
"step": "extract",
"method": "eth.balance",
"address": "0x9b89202Fc32c294Df4B2b52830fF40B3EC0F0369",
"chain": "eth.mainnet",
"params": {
"block": "latest",
"num_confirmations": 30, # the desired finality: `latest` - num_confirmations block
},
},
],
},
],
}
# Construct JSON RPC request
request = {
"jsonrpc": "2.0",
"method": "execute_pql",
"params": json.dumps(pql),
"id": 1,
}
async with ClientSession() as session:
async with session.post(url + "/rpc", json=request) as resp:
response = await resp.json()
print(response)
if __name__ == "__main__":
get_event_loop().run_until_complete(main())