4
0
mirror of git://holbrook.no/eth-monitor.git synced 2024-09-21 07:57:21 +02:00
eth-monitor/eth_monitor/chain.py
2021-06-26 14:04:34 +02:00

19 lines
460 B
Python

# external imports
from chainlib.interface import ChainInterface
from chainlib.eth.block import (
block_by_number,
Block,
)
from chainlib.eth.tx import (
receipt,
Tx,
)
class EthChainInterface(ChainInterface):
def __init__(self):
self._block_by_number = block_by_number
self._block_from_src = Block.from_src
self._tx_receipt = receipt
self._src_normalize = Tx.src_normalize