-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathblock_data.py
More file actions
56 lines (48 loc) · 1.88 KB
/
block_data.py
File metadata and controls
56 lines (48 loc) · 1.88 KB
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
import os
import hypersync
import asyncio
from hypersync import BlockField, JoinMode, TransactionField, LogField, ClientConfig
async def main():
cfg = ClientConfig(bearer_token=os.environ.get("ENVIO_API_TOKEN"))
client = hypersync.HypersyncClient(cfg)
# The query to run
query = hypersync.Query(
# only get block 20224332
from_block=20224332,
to_block=20224333,
include_all_blocks=True,
join_mode=JoinMode.JOIN_ALL,
field_selection=hypersync.FieldSelection(
block=[BlockField.NUMBER, BlockField.TIMESTAMP, BlockField.HASH],
log=[
LogField.LOG_INDEX,
LogField.TRANSACTION_INDEX,
LogField.TRANSACTION_HASH,
LogField.DATA,
LogField.ADDRESS,
LogField.TOPIC0,
LogField.TOPIC1,
LogField.TOPIC2,
LogField.TOPIC3,
],
transaction=[
TransactionField.BLOCK_NUMBER,
TransactionField.TRANSACTION_INDEX,
TransactionField.HASH,
TransactionField.FROM,
TransactionField.TO,
TransactionField.VALUE,
TransactionField.INPUT,
]
),
)
print("Running the query...")
# Run the query once, the query is automatically paginated so it will return when it reaches some limit (time, response size etc.)
# there is a next_block field on the response object so we can set the from_block of our query to this value and continue our query until
# res.next_block is equal to res.archive_height or query.to_block in case we specified an end block.
res = await client.get(query)
print(f"Ran the query once. Next block to query is {res.next_block}")
print(len(res.data.blocks))
print(len(res.data.transactions))
print(len(res.data.logs))
asyncio.run(main())