diff --git a/etheno/jsonrpc.py b/etheno/jsonrpc.py index c315353..4f91040 100644 --- a/etheno/jsonrpc.py +++ b/etheno/jsonrpc.py @@ -47,9 +47,9 @@ def decode_raw_tx(raw_tx: str): 'from': from_, 'to': to, 'nonce': tx.nonce, - 'gas': tx.gas, - 'gasPrice': tx.gas_price, - 'value': tx.value, + 'gas': hex(tx.gas), + 'gasPrice': hex(tx.gas_price), + 'value': hex(tx.value), 'data': data, 'chainId': chain_id, 'r': r,