You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An array of log objects that generated this transaction
[optional]
logs_bloom
str
The bloom filter for light clients to quickly retrieve related logs
[optional]
status
str
It is either 1 (success) or 0 (failure) encoded as a decimal
[optional]
to
str
The address of the receiver. null when it's a contract creation transaction
[optional]
transaction_hash
str
The hash of the transaction
[optional]
transaction_index
str
An index of the transaction in the block
[optional]
type
str
The value type
[optional]
Example
fromqan.qan.response_transaction_receiptimportResponseTransactionReceipt# TODO update the JSON string belowjson="{}"# create an instance of ResponseTransactionReceipt from a JSON stringresponse_transaction_receipt_instance=ResponseTransactionReceipt.from_json(json)
# print the JSON string representation of the objectprint(ResponseTransactionReceipt.to_json())
# convert the object into a dictresponse_transaction_receipt_dict=response_transaction_receipt_instance.to_dict()
# create an instance of ResponseTransactionReceipt from a dictresponse_transaction_receipt_from_dict=ResponseTransactionReceipt.from_dict(response_transaction_receipt_dict)