Search Results for

    Show / Hide Table of Contents

    Struct TransactionParametersResponse

    Namespace: Algorand.Unity.Algod
    Assembly: cs.temp.dll.dll
    Syntax
    [AlgoApiObject("", "", 0)]
    [Serializable]
    public struct TransactionParametersResponse : IEquatable<TransactionParametersResponse>

    Properties

    ConsensusVersion

    ConsensusVersion indicates the consensus protocol version as of LastRound.

    Declaration
    [AlgoApiField("consensus-version")]
    public string ConsensusVersion { get; set; }
    Property Value
    Type Description
    String

    Fee

    Fee is the suggested transaction fee Fee is in units of micro-Algos per byte. Fee may fall to zero but transactions must still have a fee of at least MinTxnFee for the current network protocol.

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

    GenesisHash

    GenesisHash is the hash of the genesis block.

    Declaration
    [AlgoApiField("genesis-hash")]
    public byte[] GenesisHash { get; set; }
    Property Value
    Type Description
    Byte[]

    GenesisId

    GenesisID is an ID listed in the genesis block.

    Declaration
    [AlgoApiField("genesis-id")]
    public string GenesisId { get; set; }
    Property Value
    Type Description
    String

    LastRound

    LastRound indicates the last round seen

    Declaration
    [AlgoApiField("last-round")]
    public ulong LastRound { get; set; }
    Property Value
    Type Description
    UInt64

    MinFee

    The minimum transaction fee (not per byte) required for the txn to validate for the current network protocol.

    Declaration
    [AlgoApiField("min-fee")]
    public ulong MinFee { get; set; }
    Property Value
    Type Description
    UInt64

    Methods

    Equals(TransactionParametersResponse)

    Declaration
    public bool Equals(TransactionParametersResponse other)
    Parameters
    Type Name Description
    TransactionParametersResponse other
    Returns
    Type Description
    Boolean

    Operators

    Implicit(TransactionParametersResponse to TransactionParams)

    Declaration
    public static implicit operator TransactionParams(TransactionParametersResponse response)
    Parameters
    Type Name Description
    TransactionParametersResponse response
    Returns
    Type Description
    TransactionParams
    ☀
    ☾
    In This Article
    Back to top
    Generated by DocFX
    ☀
    ☾