Class ReturnedTransaction
Inheritance
ReturnedTransaction
Assembly: Algorand.dll
Syntax
[MessagePackObject(false, AllowPrivate = true)]
public class ReturnedTransaction
Properties
|
Edit this page
View Source
ApplicationIndex
The round where this transaction was confirmed, if present.
Declaration
[JsonProperty("application-index", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
[Key("application-index")]
public ulong? ApplicationIndex { get; set; }
Property Value
|
Edit this page
View Source
AssetClosingAmount
The number of the asset's unit that were transferred to the close-to address..
Declaration
[JsonProperty("asset-closing-amount", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
[Key("asset-closing-amount")]
public ulong? AssetClosingAmount { get; set; }
Property Value
|
Edit this page
View Source
AssetIndex
The number of the asset's unit that were transferred to the close-to address..
Declaration
[JsonProperty("asset-index", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
[Key("asset-index")]
public ulong? AssetIndex { get; set; }
Property Value
|
Edit this page
View Source
CloseRewards
Rewards in microalgos applied to the close remainder to account.
Declaration
[JsonProperty("close-rewards", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
[Key("close-rewards")]
public ulong? CloseRewards { get; set; }
Property Value
|
Edit this page
View Source
ConfirmedRound
The round where this transaction was confirmed, if present.
Declaration
[JsonProperty("confirmed-round", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
[Key("confirmed-round")]
public ulong? ConfirmedRound { get; set; }
Property Value
|
Edit this page
View Source
GlobalStateDelta
[gd] Global state key/value changes for the application being executed by this transaction.
Declaration
[JsonProperty("global-state-delta", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
[IgnoreMember]
public StateDelta GlobalStateDelta { get; set; }
Property Value
|
Edit this page
View Source
InnerTxns
Inner transactions produced by application execution.
Declaration
[JsonProperty("inner-txns", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
[Key("inner-txns")]
public ICollection<IReturnableTransaction> InnerTxns { get; set; }
Property Value
|
Edit this page
View Source
LocalStateDelta
[ld] Local state key/value changes for the application being executed by this transaction.
Declaration
[JsonProperty("local-state-delta", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
[Key("local-state-delta")]
public ICollection<AccountStateDelta> LocalStateDelta { get; set; }
Property Value
|
Edit this page
View Source
Logs
Declaration
[JsonProperty("logs", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
[Key("logs")]
public ICollection<byte[]> Logs { get; set; }
Property Value
|
Edit this page
View Source
PoolError
Indicates that the transaction was kicked out of this node's transaction pool (and specifies why that happened). An empty string indicates the transaction wasn't kicked out of this node's txpool due to an error.
Declaration
[JsonProperty("pool-error", Required = Required.Always)]
[Key("pool-error")]
[Required(AllowEmptyStrings = true)]
public string PoolError { get; set; }
Property Value
|
Edit this page
View Source
ReceiverRewards
Rewards in microalgos applied to the receiver account.
Declaration
[JsonProperty("receiver-rewards", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
[Key("receiver-rewards")]
public ulong? ReceiverRewards { get; set; }
Property Value
|
Edit this page
View Source
SenderRewards
Rewards in microalgos applied to the sender account.
Declaration
[JsonProperty("sender-rewards", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
[Key("sender-rewards")]
public ulong? SenderRewards { get; set; }
Property Value
|
Edit this page
View Source
Transaction
Declaration
[JsonProperty("txn")]
[Key("txn")]
public SignedTransaction Transaction { get; set; }
Property Value