Packages

Ethereum library for Gleam - JSON-RPC client, transaction signing, ABI encoding, and wallet management on the BEAM

Current section

Files

Jump to
gleeth include gleeth@ethereum@types_TransactionReceipt.hrl
Raw

include/gleeth@ethereum@types_TransactionReceipt.hrl

-record(transaction_receipt, {
transaction_hash :: binary(),
transaction_index :: binary(),
block_hash :: binary(),
block_number :: binary(),
from :: binary(),
to :: binary(),
cumulative_gas_used :: binary(),
gas_used :: binary(),
contract_address :: binary(),
logs :: list(gleeth@ethereum@types:log()),
logs_bloom :: binary(),
status :: gleeth@ethereum@types:transaction_status(),
effective_gas_price :: binary()
}).