eth-monitor/eth_monitor/chain.py

21 lines
524 B
Python
Raw Normal View History

2021-06-26 14:04:34 +02:00
# external imports
from chainlib.interface import ChainInterface
from chainlib.eth.block import (
2022-05-10 16:21:49 +02:00
block_latest,
2021-06-26 14:04:34 +02:00
block_by_number,
Block,
)
from chainlib.eth.tx import (
receipt,
Tx,
)
class EthChainInterface(ChainInterface):
def __init__(self):
2022-05-10 16:21:49 +02:00
self._block_latest = block_latest
2021-06-26 14:04:34 +02:00
self._block_by_number = block_by_number
self._block_from_src = Block.from_src
self._tx_receipt = receipt
self._src_normalize = Tx.src_normalize