mev-inspect-py/processor.py
2021-06-28 17:30:11 -04:00

6 lines
190 B
Python

def get_transaction_evaluations(block_data):
for transaction_hash in block_data.transaction_hashes:
calls = block_data.get_filtered_calls(transaction_hash)
print(calls)