Skip to content

AppClientCompilationResult

@algorandfoundation/algokit-utils / types/app-client / AppClientCompilationResult

types/app-client.AppClientCompilationResult

The result of asking an AppClient to compile a program.

Always contains the compiled bytecode, and may contain the result of compiling TEAL (including sourcemap) if it was available.

approvalProgram: Uint8Array

The compiled bytecode of the approval program, ready to deploy to algod

src/types/app-client.ts:285


clearStateProgram: Uint8Array

The compiled bytecode of the clear state program, ready to deploy to algod

src/types/app-client.ts:287


Optional compiledApproval: CompiledTeal

The result of compiling the approval program

Partial.compiledApproval

src/types/app.ts:335


Optional compiledClear: CompiledTeal

The result of compiling the clear state program

Partial.compiledClear

src/types/app.ts:337