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