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
|
2021-08-26 17:14:11 +02:00
|
|
|
|
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
|
|
|
|
|
2021-08-26 17:14:11 +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
|
|
|
|
|
|
|
|
|
|
|
2021-06-04 20:48:19 +02:00
|
|
|
|
# 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
|
|
|
|
|