Struct ApplicationParams
Assembly: cs.temp.dll.dll
Syntax
[AlgoApiObject("", "", 0)]
[Serializable]
public struct ApplicationParams : IEquatable<ApplicationParams>
Properties
ApprovalProgram
[approv] approval program.
Declaration
[AlgoApiField("approval-program")]
public CompiledTeal ApprovalProgram { get; set; }
Property Value
ClearStateProgram
[clearp] approval program.
Declaration
[AlgoApiField("clear-state-program")]
public CompiledTeal ClearStateProgram { get; set; }
Property Value
Creator
The address that created this application. This is the address where the parameters and global state for this application can be found.
Declaration
[AlgoApiField("creator")]
public Address Creator { get; set; }
Property Value
ExtraProgramPages
[epp] the amount of extra program pages available to this app.
Declaration
[AlgoApiField("extra-program-pages")]
public Optional<ulong> ExtraProgramPages { get; set; }
Property Value
GlobalState
Declaration
[AlgoApiField("global-state")]
public TealKeyValueStore GlobalState { get; set; }
Property Value
GlobalStateSchema
Declaration
[AlgoApiField("global-state-schema")]
public ApplicationStateSchema GlobalStateSchema { get; set; }
Property Value
LocalStateSchema
Declaration
[AlgoApiField("local-state-schema")]
public ApplicationStateSchema LocalStateSchema { get; set; }
Property Value
Methods
Equals(ApplicationParams)
Declaration
public bool Equals(ApplicationParams other)
Parameters
Returns