A parsed Hedera TransactionReceipt — the consensus outcome of a transaction.
For Consensus Service submits this carries the topic's new sequence number and
running hash; for Token Service it carries the new token_id (on create) and
the token's new_total_supply (on mint/burn).
Summary
Functions
Has the receipt reached a final (non-UNKNOWN) status?
Parse a TransactionReceipt protobuf message.
Did the transaction succeed (status SUCCESS)?
Types
@type t() :: %Hedera.Receipt{ new_total_supply: non_neg_integer() | nil, status: non_neg_integer(), token_id: Hedera.TokenId.t() | nil, topic_id: Hedera.TopicId.t() | nil, topic_running_hash: binary() | nil, topic_sequence_number: non_neg_integer() | nil }