algokit_utils.models.application
algokit_utils.models.application
Section titled “algokit_utils.models.application”Classes
Section titled “Classes”AppState | |
|---|---|
AppInformation | |
CompiledTeal | The compiled teal code |
AppCompilationResult | The compiled teal code |
AppSourceMaps | The source maps for the application |
Module Contents
Section titled “Module Contents”class AppState
Section titled “class AppState”key_raw : bytes
Section titled “key_raw : bytes”The key of the state as raw bytes
key_base64 : str
Section titled “key_base64 : str”The key of the state
value_raw : bytes | None
Section titled “value_raw : bytes | None”The value of the state as raw bytes
value_base64 : str | None
Section titled “value_base64 : str | None”The value of the state as base64 encoded string
value : str | int
Section titled “value : str | int”The value of the state as a string or integer
class AppInformation
Section titled “class AppInformation”app_id : int
Section titled “app_id : int”The ID of the application
app_address : str
Section titled “app_address : str”The address of the application
approval_program : bytes
Section titled “approval_program : bytes”The approval program
clear_state_program : bytes
Section titled “clear_state_program : bytes”The clear state program
creator : str
Section titled “creator : str”The creator of the application
global_state : dict[str, AppState]
Section titled “global_state : dict[str, AppState]”The global state of the application
local_ints : int
Section titled “local_ints : int”The number of local ints
local_byte_slices : int
Section titled “local_byte_slices : int”The number of local byte slices
global_ints : int
Section titled “global_ints : int”The number of global ints
global_byte_slices : int
Section titled “global_byte_slices : int”The number of global byte slices
extra_program_pages : int | None
Section titled “extra_program_pages : int | None”The number of extra program pages
class CompiledTeal
Section titled “class CompiledTeal”The compiled teal code
teal : str
Section titled “teal : str”The teal code
compiled : str
Section titled “compiled : str”The compiled teal code
compiled_hash : str
Section titled “compiled_hash : str”The compiled hash
compiled_base64_to_bytes : bytes
Section titled “compiled_base64_to_bytes : bytes”The compiled base64 to bytes
source_map : ProgramSourceMap | None
Section titled “source_map : ProgramSourceMap | None”class AppCompilationResult
Section titled “class AppCompilationResult”The compiled teal code
compiled_approval : CompiledTeal
Section titled “compiled_approval : CompiledTeal”The compiled approval program
compiled_clear : CompiledTeal
Section titled “compiled_clear : CompiledTeal”The compiled clear state program
class AppSourceMaps
Section titled “class AppSourceMaps”The source maps for the application
approval_source_map : ProgramSourceMap | None = None
Section titled “approval_source_map : ProgramSourceMap | None = None”The source map for the approval program
clear_source_map : ProgramSourceMap | None = None
Section titled “clear_source_map : ProgramSourceMap | None = None”The source map for the clear state program