Search Results for

    Show / Hide Table of Contents

    Struct TransactionProofResponse

    Namespace: Algorand.Unity.Algod
    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:

    • sha512_256
    • sha256
    Declaration
    [AlgoApiField("hashtype")]
    public string Hashtype { get; set; }
    Property Value
    Type Description
    String

    Idx

    Index of the transaction in the block's payset.

    Declaration
    [AlgoApiField("idx")]
    public ulong Idx { get; set; }
    Property Value
    Type Description
    UInt64

    Proof

    Proof of transaction membership.

    Declaration
    [AlgoApiField("proof")]
    public byte[] Proof { get; set; }
    Property Value
    Type Description
    Byte[]

    Stibhash

    Hash of SignedTxnInBlock for verifying proof.

    Declaration
    [AlgoApiField("stibhash")]
    public byte[] Stibhash { get; set; }
    Property Value
    Type Description
    Byte[]

    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
    Type Description
    UInt64

    Methods

    Equals(TransactionProofResponse)

    Declaration
    public bool Equals(TransactionProofResponse other)
    Parameters
    Type Name Description
    TransactionProofResponse other
    Returns
    Type Description
    Boolean
    ☀
    ☾
    In This Article
    Back to top
    Generated by DocFX
    ☀
    ☾