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 algokit_utils.models.application.AppState
Section titled “class algokit_utils.models.application.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 algokit_utils.models.application.AppInformation
Section titled “class algokit_utils.models.application.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 algokit_utils.models.application.CompiledTeal
Section titled “class algokit_utils.models.application.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
sourcemap : algosdk.sourcemap.SourceMap | None
Section titled “sourcemap : algosdk.sourcemap.SourceMap | None”class algokit_utils.models.application.AppCompilationResult
Section titled “class algokit_utils.models.application.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 algokit_utils.models.application.AppSourceMaps
Section titled “class algokit_utils.models.application.AppSourceMaps”The source maps for the application
approvalsource_map : algosdk.sourcemap.SourceMap | None = None
Section titled “approvalsource_map : algosdk.sourcemap.SourceMap | None = None”The source map for the approval program
clearsource_map : algosdk.sourcemap.SourceMap | None = None
Section titled “clearsource_map : algosdk.sourcemap.SourceMap | None = None”The source map for the clear state program