Struct TransactionProofResponse
Assembly: cs.temp.dll.dll
Syntax
[AlgoApiObject("", "", 0)]
[Serializable]
public struct TransactionProofResponse : IEquatable<TransactionProofResponse>
Properties
Hashtype
The type of hash function used to create the proof, must be one of:
Declaration
[AlgoApiField("hashtype")]
public string Hashtype { get; set; }
Property Value
Idx
Index of the transaction in the block's payset.
Declaration
[AlgoApiField("idx")]
public ulong Idx { get; set; }
Property Value
Proof
Proof of transaction membership.
Declaration
[AlgoApiField("proof")]
public byte[] Proof { get; set; }
Property Value
Stibhash
Hash of SignedTxnInBlock for verifying proof.
Declaration
[AlgoApiField("stibhash")]
public byte[] Stibhash { get; set; }
Property Value
Treedepth
Represents the depth of the tree that is being proven, i.e. the number of edges from a leaf to the root.
Declaration
[AlgoApiField("treedepth")]
public ulong Treedepth { get; set; }
Property Value
Methods
Equals(TransactionProofResponse)
Declaration
public bool Equals(TransactionProofResponse other)
Parameters
Returns