Skip to content

AppInformation

@algorandfoundation/algokit-utils / types/app-manager / AppInformation

types/app-manager.AppInformation

Information about an app.

appAddress: Address

The escrow address that the app operates with.

src/types/app-manager.ts:20


appId: bigint

The ID of the app.

src/types/app-manager.ts:18


approvalProgram: Uint8Array

Approval program.

src/types/app-manager.ts:24


clearStateProgram: Uint8Array

Clear state program.

src/types/app-manager.ts:28


creator: Address

The address that created this application. This is the address where the parameters and global state for this application can be found.

src/types/app-manager.ts:33


Optional extraProgramPages: number

Any extra pages that are needed for the smart contract.

src/types/app-manager.ts:47


globalByteSlices: number

The number of allocated byte slices in global state.

src/types/app-manager.ts:45


globalInts: number

The number of allocated ints in global state.

src/types/app-manager.ts:43


globalState: AppState

Current global state values.

src/types/app-manager.ts:37


localByteSlices: number

The number of allocated byte slices in per-user local state.

src/types/app-manager.ts:41


localInts: number

The number of allocated ints in per-user local state.

src/types/app-manager.ts:39