Show / Hide Table of Contents

Class TransactionReceipt

The details returned from the network after consensus has been reached for a network request.

Inheritance
Object
TransactionReceipt
AssetMintReceipt
CreateAccountReceipt
CreateContractReceipt
CreateTokenReceipt
CreateTopicReceipt
FileReceipt
SubmitMessageReceipt
TokenReceipt
TransactionRecord
Implements
IEquatable<TransactionReceipt>
Inherited Members
Object.Equals(Object)
Object.Equals(Object, Object)
Object.GetHashCode()
Object.GetType()
Object.MemberwiseClone()
Object.ReferenceEquals(Object, Object)
Object.ToString()
Namespace: Hashgraph
Assembly: Hashgraph.dll
Syntax
public class TransactionReceipt : IEquatable<TransactionReceipt>

Properties

| Improve this Doc View Source

CurrentExchangeRate

The current exchange between USD and hBars as broadcast by the hedera Network.

Declaration
public ExchangeRate CurrentExchangeRate { get; }
Property Value
Type Description
ExchangeRate
Remarks

Not all Receipts and Records will have this information returned from the network. This value can be

null
.

| Improve this Doc View Source

Id

The Transaction ID associated with the request.

Declaration
public TxId Id { get; }
Property Value
Type Description
TxId
| Improve this Doc View Source

NextExchangeRate

The next/future exchange between USD and hBars as broadcast by the hedera Network.

Declaration
public ExchangeRate NextExchangeRate { get; }
Property Value
Type Description
ExchangeRate
Remarks

Not all Receipts and Records will have this information returned from the network. This value can be

null
.

| Improve this Doc View Source

Pending

If this transaction resulted in the pending (to be scheduled) transaction retained by the network, this property will contain the identifier of the pending transaction record. This includes the identifier of the pending transaction as well as the bytes representing the transaction which must be signed by the remaining parties.

Declaration
public PendingTransaction Pending { get; }
Property Value
Type Description
PendingTransaction
| Improve this Doc View Source

Status

The response code returned from the server.

Declaration
public ResponseCode Status { get; }
Property Value
Type Description
ResponseCode

Implements

System.IEquatable<T>
  • Improve this Doc
  • View Source
In This Article
Back to top .NET Client Library for Hedera Hashgraph