An example code for reading Solidity events in Python from a high-speed EVM blockchain.
It uses the Web3.py Contract class and its Event subclass, and optimizes performance by using a thread pool reader with 16 parallel reading threads and the ujson library for decoding JSON.
The code manually decodes ABI to optimize speed and avoid wasting time decoding data.















