chaind-eth/chainqueue/adapters/eth.py

45 lines
1.1 KiB
Python
Raw Permalink Normal View History

2021-07-18 12:02:14 +02:00
# standard imports
import logging
2021-06-03 11:03:17 +02:00
# external imports
from chainlib.eth.constant import ZERO_ADDRESS
from chainlib.eth.tx import (
unpack,
raw,
)
from hexathon import (
add_0x,
strip_0x,
)
# local imports
from chainqueue.adapters.sessionindex import SessionIndexAdapter
2021-06-03 11:03:17 +02:00
2021-08-26 10:03:51 +02:00
logg = logging.getLogger(__name__)
2021-07-18 12:02:14 +02:00
2021-06-03 11:03:17 +02:00
class EthAdapter(SessionIndexAdapter):
2021-06-03 11:03:17 +02:00
2021-07-18 12:02:14 +02:00
def translate(self, bytecode, chain_spec):
logg.debug('bytecode {}'.format(bytecode))
2021-06-03 11:03:17 +02:00
tx = unpack(bytecode, chain_spec)
tx['source_token'] = ZERO_ADDRESS
tx['destination_token'] = ZERO_ADDRESS
tx['from_value'] = tx['value']
tx['to_value'] = tx['value']
return tx
2021-07-17 08:22:02 +02:00
def dispatch(self, chain_spec, rpc, tx_hash, signed_tx, session=None):
o = raw(signed_tx)
r = self.backend.dispatch(chain_spec, rpc, tx_hash, o)
return r
# def cache(self, chain_spec):
# session = self.backend.create_session()
# r = self.backend.create(chain_spec, tx['nonce'], tx['from'], tx['hash'], add_0x(bytecode.hex()), session=session)
# session.close()
2021-06-03 11:03:17 +02:00