Get a transaction receipt
Last updated
Last updated
The transaction receipt gives you information about a transaction including whether or not the transaction reached consensus on the network. You request the receipt for every transaction type and there is currently no transaction fee associated with this network request.
Receipts can be requested from a Hedera network for up to 3 minutes.
The transaction receipt returns the following information about a transaction:
Whether the transaction reached consensus or not (success or fail)
The newly generated account ID, topic ID, token ID, file ID, schedule ID, scheduled transaction ID or smart contract ID
The exchange rate
The topic running hash
The topic sequence number
The total supply of token
The serial numbers for of the newly created NFTs after a token mint transaction was executed
Transaction Signing Requirements
Transaction receipt requests do not have an associated fee at this time so there is no signature requirement
Transaction ID: The ID of the transaction to return the receipt for
Include Duplicates: Whether or not to include the receipts for duplicate transactions
Include Children: Whether or not to include the receipt for children transactions triggered by a parent transaction
Method | Type | Requirement |
---|---|---|
Constructor
Description
new TransactionReceiptQuery()
Initializes the TransactionReceiptQuery
Object
setTransactionId(<transactionId>)
Required
setIncludeDuplicates(<value>)
boolean
Optional
setIncludeChildren(<value>)
boolean
Optional
Method
Type
Description
<TransactionResponse>.getReceipt(<client>)
TransactionReceipt
Returns the receipt of a transaction
<TransactionResponse>.getReceipt(<client, timeout>)
Client, Duration
Request the receipt from the network for this duration
<TransactionResponse>.getReceiptQuery()
TransactionReceiptQuery
Returns the TransactionReceiptQuery response for a transaction. This will not error on bad status like RECEIPT_NOT_FOUND
and will return information about a failed transaction if necessary.
<TransactionResponse>.getReceiptAsync(<client, timeout>)
Client, Duration
Request receipt asynchronously for the provided duration
<TransactionReceipt>.status
Status
Whether the transaction reached consensus or not
<TransactionReceipt>.accountId
AccountId
The newly generated account ID
<TransactionReceipt>.topicId
TopicId
The newly generated topic ID
<TransactionReceipt>).fileId
FileId
The newly generated file ID
<TransactionReceipt>).contractId
ContractId
The newly generated contract ID
<TransactionReceipt>).tokenId
TokenId
The newly generated token ID
<TransactionReceipt>).scheduleId
ScheduleId
The newly generated schedule ID
<TransactionReceipt>).scheduledTransactionId
TransactionId
The generated scheduled transaction ID
<TransactionReceipt>).exchangeRate
ExchangeRate
The exchange rate in hbar, cents, and expiration time
<TransactionReceipt>.topicRunningHash
ByteString
The topic running hash
<TransactionReceipt>.topicSequenceNumber
long
The topic sequence number
<TransactionReceipt>.totalSupply
long
The total supply of a token
<TransactionReceipt>.serials
List<long>
The list of newly created serial numbers upon execution of a token mint transaction.