Evm_node_lib_dev_encoding.Transaction_receipt
type t = {
transactionHash : Ethereum_types.hash;
transactionIndex : Ethereum_types.quantity;
blockHash : Ethereum_types.block_hash;
blockNumber : Ethereum_types.quantity;
from : Ethereum_types.address;
to_ : Ethereum_types.address option;
cumulativeGasUsed : Ethereum_types.quantity;
effectiveGasPrice : Ethereum_types.quantity;
gasUsed : Ethereum_types.quantity;
logs : Ethereum_types.transaction_log list;
logsBloom : Ethereum_types.hex;
type_ : Ethereum_types.quantity;
status : Ethereum_types.quantity;
contractAddress : Ethereum_types.address option;
}
val of_rlp_bytes : Ethereum_types.block_hash -> bytes -> t
val encoding : t Tezos_base.TzPervasives.Data_encoding.t