Struct TransactionParametersResponse
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
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
GenesisHash
GenesisHash is the hash of the genesis block.
Declaration
[AlgoApiField("genesis-hash")]
public byte[] GenesisHash { get; set; }
Property Value
GenesisId
GenesisID is an ID listed in the genesis block.
Declaration
[AlgoApiField("genesis-id")]
public string GenesisId { get; set; }
Property Value
LastRound
LastRound indicates the last round seen
Declaration
[AlgoApiField("last-round")]
public ulong LastRound { get; set; }
Property Value
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
Methods
Equals(TransactionParametersResponse)
Declaration
public bool Equals(TransactionParametersResponse other)
Parameters
Returns
Operators
Implicit(TransactionParametersResponse to TransactionParams)
Declaration
public static implicit operator TransactionParams(TransactionParametersResponse response)
Parameters
Returns