funga/crypto_dev_signer/eth/transaction.py

136 lines
3.3 KiB
Python
Raw Normal View History

2020-08-08 10:45:37 +02:00
# standard imports
2020-08-04 23:41:31 +02:00
import logging
import binascii
# external imports
2020-08-04 23:41:31 +02:00
from rlp import encode as rlp_encode
from hexathon import (
strip_0x,
add_0x,
)
2020-08-04 23:41:31 +02:00
logg = logging.getLogger(__name__)
2020-08-08 10:45:37 +02:00
2020-08-04 23:41:31 +02:00
class Transaction:
2020-08-06 11:07:18 +02:00
def rlp_serialize(self):
raise NotImplementedError
def serialize(self):
raise NotImplementedError
class EIP155Transaction:
2020-08-04 23:41:31 +02:00
def __init__(self, tx, nonce, chainId=1):
to = None
data = None
if tx['to'] != None:
to = binascii.unhexlify(strip_0x(tx['to'], allow_empty=True))
if tx['data'] != None:
data = binascii.unhexlify(strip_0x(tx['data'], allow_empty=True))
2020-08-04 23:41:31 +02:00
2020-10-26 09:02:29 +01:00
gas_price = None
start_gas = None
value = None
try:
gas_price = int(tx['gasPrice'])
except ValueError:
gas_price = int(tx['gasPrice'], 16)
2021-01-12 14:50:52 +01:00
byts = ((gas_price.bit_length()-1)/8)+1
gas_price = gas_price.to_bytes(int(byts), 'big')
2020-10-26 09:02:29 +01:00
try:
start_gas = int(tx['gas'])
except ValueError:
start_gas = int(tx['gas'], 16)
2021-01-12 14:50:52 +01:00
byts = ((start_gas.bit_length()-1)/8)+1
start_gas = start_gas.to_bytes(int(byts), 'big')
2020-10-26 09:02:29 +01:00
try:
value = int(tx['value'])
except ValueError:
value = int(tx['value'], 16)
2021-01-12 14:50:52 +01:00
byts = ((value.bit_length()-1)/8)+1
value = value.to_bytes(int(byts), 'big')
2020-10-26 09:02:29 +01:00
try:
nonce = int(nonce)
except ValueError:
nonce = int(nonce, 16)
2021-01-12 14:50:52 +01:00
byts = ((nonce.bit_length()-1)/8)+1
nonce = nonce.to_bytes(int(byts), 'big')
try:
chainId = int(chainId)
except ValueError:
chainId = int(chainId, 16)
byts = ((chainId.bit_length()-1)/8)+1
chainId = chainId.to_bytes(int(byts), 'big')
2020-10-26 09:02:29 +01:00
2020-08-04 23:41:31 +02:00
self.nonce = nonce
2020-10-26 09:02:29 +01:00
self.gas_price = gas_price
self.start_gas = start_gas
2020-08-04 23:41:31 +02:00
self.to = to
2020-10-26 09:02:29 +01:00
self.value = value
2020-08-04 23:41:31 +02:00
self.data = data
self.v = chainId
2020-08-06 11:07:18 +02:00
self.r = b''
self.s = b''
self.sender = strip_0x(tx['from'])
2020-08-04 23:41:31 +02:00
def __canonical_order(self):
2020-08-04 23:41:31 +02:00
s = [
self.nonce,
self.gas_price,
self.start_gas,
self.to,
self.value,
self.data,
self.v,
self.r,
self.s,
]
return s
def bytes_serialize(self):
s = self.__canonical_order()
b = b''
for e in s:
b += e
return b
def rlp_serialize(self):
s = self.__canonical_order()
2020-08-04 23:41:31 +02:00
return rlp_encode(s)
def serialize(self):
2021-01-12 14:50:52 +01:00
tx = {
'nonce': add_0x(self.nonce.hex(), allow_empty=True),
'gasPrice': add_0x(self.gas_price.hex()),
'gas': add_0x(self.start_gas.hex()),
'to': add_0x(self.to.hex()),
'value': add_0x(self.value.hex(), allow_empty=True),
'data': add_0x(self.data.hex()),
'v': add_0x(self.v.hex(), allow_empty=True),
'r': add_0x(self.r.hex(), allow_empty=True),
's': add_0x(self.s.hex(), allow_empty=True),
}
2021-01-12 14:50:52 +01:00
if tx['data'] == '':
tx['data'] = '0x'
if tx['value'] == '':
tx['value'] = '0x00'
if tx['nonce'] == '':
tx['nonce'] = '0x00'
return tx