Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

# Class: ContractContext

Defined in: [src/subcontexts/contract-context.ts:122](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/contract-context.ts#L122)
Defined in: [src/subcontexts/contract-context.ts:138](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/contract-context.ts#L138)

Provides a context for creating contracts and registering created contract instances
with test execution context.
Expand All @@ -27,7 +27,7 @@ with test execution context.

> **create**\<`T`\>(`type`, ...`args`): `T`

Defined in: [src/subcontexts/contract-context.ts:134](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/contract-context.ts#L134)
Defined in: [src/subcontexts/contract-context.ts:150](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/contract-context.ts#L150)

Creates a new contract instance and register the created instance with test execution context.

Expand Down Expand Up @@ -70,7 +70,7 @@ const contract = ctx.contract.create(MyContract);

> `static` **createMethodCallTxns**\<`TParams`\>(`contract`, `abiMetadata`, ...`args`): `Transaction`[]

Defined in: [src/subcontexts/contract-context.ts:156](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/contract-context.ts#L156)
Defined in: [src/subcontexts/contract-context.ts:172](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/contract-context.ts#L172)

**`Internal`**

Expand Down
62 changes: 31 additions & 31 deletions docs/code/subcontexts/ledger-context/classes/LedgerContext.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ The contract to add.

> **boxExists**(`app`, `key`): `boolean`

Defined in: [src/subcontexts/ledger-context.ts:379](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/ledger-context.ts#L379)
Defined in: [src/subcontexts/ledger-context.ts:377](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/ledger-context.ts#L377)

Checks if a box exists for an application by key.

Expand Down Expand Up @@ -164,7 +164,7 @@ True if the box exists, false otherwise.

> **deleteBox**(`app`, `key`): `boolean`

Defined in: [src/subcontexts/ledger-context.ts:367](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/ledger-context.ts#L367)
Defined in: [src/subcontexts/ledger-context.ts:365](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/ledger-context.ts#L365)

Deletes a box for an application by key.

Expand Down Expand Up @@ -194,35 +194,31 @@ True if the box was deleted, false otherwise.

> **getAccount**(`address`): `Account`

Defined in: [src/subcontexts/ledger-context.ts:60](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/ledger-context.ts#L60)
Defined in: [src/subcontexts/ledger-context.ts:59](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/ledger-context.ts#L59)

Retrieves an account by address.

#### Parameters

##### address

`Account`

The account address.

`StubBytesCompat` | `Account`

#### Returns

`Account`

The account.

#### Throws

If the account is unknown.

***

### getApplication()

> **getApplication**(`applicationId`): `Application`

Defined in: [src/subcontexts/ledger-context.ts:86](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/ledger-context.ts#L86)
Defined in: [src/subcontexts/ledger-context.ts:82](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/ledger-context.ts#L82)

Retrieves an application by application ID.

Expand Down Expand Up @@ -250,7 +246,7 @@ If the application is unknown.

> **getApplicationForApprovalProgram**(`approvalProgram`): `undefined` \| `Application`

Defined in: [src/subcontexts/ledger-context.ts:115](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/ledger-context.ts#L115)
Defined in: [src/subcontexts/ledger-context.ts:111](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/ledger-context.ts#L111)

Retrieves an application for a given approval program.

Expand All @@ -274,7 +270,7 @@ The application or undefined if not found.

> **getApplicationForContract**(`contract`): `Application`

Defined in: [src/subcontexts/ledger-context.ts:99](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/ledger-context.ts#L99)
Defined in: [src/subcontexts/ledger-context.ts:95](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/ledger-context.ts#L95)

Retrieves an application for a given contract.

Expand Down Expand Up @@ -302,7 +298,7 @@ If the contract is unknown.

> **getAsset**(`assetId`): `Asset`

Defined in: [src/subcontexts/ledger-context.ts:73](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/ledger-context.ts#L73)
Defined in: [src/subcontexts/ledger-context.ts:69](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/ledger-context.ts#L69)

Retrieves an asset by asset ID.

Expand Down Expand Up @@ -330,7 +326,7 @@ If the asset is unknown.

> **getBlockData**(`index`): `BlockData`

Defined in: [src/subcontexts/ledger-context.ts:249](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/ledger-context.ts#L249)
Defined in: [src/subcontexts/ledger-context.ts:245](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/ledger-context.ts#L245)

Retrieves block data by index.

Expand Down Expand Up @@ -358,7 +354,7 @@ If the block is not set.

> **getBox**(`app`, `key`): `Uint8Array`

Defined in: [src/subcontexts/ledger-context.ts:342](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/ledger-context.ts#L342)
Defined in: [src/subcontexts/ledger-context.ts:340](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/ledger-context.ts#L340)

Retrieves a box for an application by key.

Expand Down Expand Up @@ -388,7 +384,7 @@ The box data.

> **getGlobalState**(`app`, `key`): \[`GlobalStateCls`\<`unknown`\>, `true`\] \| \[`undefined`, `false`\]

Defined in: [src/subcontexts/ledger-context.ts:263](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/ledger-context.ts#L263)
Defined in: [src/subcontexts/ledger-context.ts:259](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/ledger-context.ts#L259)

Retrieves global state for an application by key.

Expand Down Expand Up @@ -418,7 +414,7 @@ The global state and a boolean indicating if it was found.

> **getLocalState**(`app`, `account`, `key`): \[`undefined`, `false`\] \| \[`LocalStateForAccount`\<`unknown`\>, `true`\]

Defined in: [src/subcontexts/ledger-context.ts:298](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/ledger-context.ts#L298)
Defined in: [src/subcontexts/ledger-context.ts:294](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/ledger-context.ts#L294)

Retrieves local state for an application and account by key.

Expand All @@ -428,7 +424,7 @@ Retrieves local state for an application and account by key.

The application.

`Application` | `BaseContract`
`uint64` | `Application` | `BaseContract`

##### account

Expand All @@ -454,7 +450,7 @@ The local state and a boolean indicating if it was found.

> **patchAccountData**(`account`, `data`): `void`

Defined in: [src/subcontexts/ledger-context.ts:171](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/ledger-context.ts#L171)
Defined in: [src/subcontexts/ledger-context.ts:167](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/ledger-context.ts#L167)

Patches account data with the provided partial data.

Expand Down Expand Up @@ -482,7 +478,7 @@ The partial account data.

> **patchApplicationData**(`app`, `data`): `void`

Defined in: [src/subcontexts/ledger-context.ts:188](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/ledger-context.ts#L188)
Defined in: [src/subcontexts/ledger-context.ts:184](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/ledger-context.ts#L184)

Patches application data with the provided partial data.

Expand Down Expand Up @@ -510,7 +506,7 @@ The partial application data.

> **patchAssetData**(`asset`, `data`): `void`

Defined in: [src/subcontexts/ledger-context.ts:208](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/ledger-context.ts#L208)
Defined in: [src/subcontexts/ledger-context.ts:204](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/ledger-context.ts#L204)

Patches asset data with the provided partial data.

Expand All @@ -536,7 +532,7 @@ The partial asset data.

> **patchBlockData**(`index`, `data`): `void`

Defined in: [src/subcontexts/ledger-context.ts:234](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/ledger-context.ts#L234)
Defined in: [src/subcontexts/ledger-context.ts:230](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/ledger-context.ts#L230)

Patches block data with the provided partial data.

Expand Down Expand Up @@ -564,7 +560,7 @@ The partial block data.

> **patchGlobalData**(`data`): `void`

Defined in: [src/subcontexts/ledger-context.ts:159](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/ledger-context.ts#L159)
Defined in: [src/subcontexts/ledger-context.ts:155](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/ledger-context.ts#L155)

Patches global data with the provided partial data.

Expand All @@ -586,7 +582,7 @@ The partial global data.

> **patchVoterData**(`account`, `data`): `void`

Defined in: [src/subcontexts/ledger-context.ts:221](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/ledger-context.ts#L221)
Defined in: [src/subcontexts/ledger-context.ts:217](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/ledger-context.ts#L217)

Patches voter data with the provided partial data.

Expand Down Expand Up @@ -614,7 +610,7 @@ The partial voter data.

> **setBox**(`app`, `key`, `value`): `void`

Defined in: [src/subcontexts/ledger-context.ts:354](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/ledger-context.ts#L354)
Defined in: [src/subcontexts/ledger-context.ts:352](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/ledger-context.ts#L352)

Sets a box for an application by key.

Expand Down Expand Up @@ -648,7 +644,7 @@ The box data.

> **setGlobalState**(`app`, `key`, `value`): `void`

Defined in: [src/subcontexts/ledger-context.ts:278](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/ledger-context.ts#L278)
Defined in: [src/subcontexts/ledger-context.ts:274](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/ledger-context.ts#L274)

Sets global state for an application by key.

Expand Down Expand Up @@ -680,19 +676,23 @@ The value (optional).

### setLocalState()

> **setLocalState**(`app`, `account`, `key`, `value`): `void`
> **setLocalState**\<`T`\>(`app`, `account`, `key`, `value`): `void`

Defined in: [src/subcontexts/ledger-context.ts:319](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/ledger-context.ts#L319)
Defined in: [src/subcontexts/ledger-context.ts:316](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/ledger-context.ts#L316)

Sets local state for an application and account by key.

#### Type Parameters

• **T**

#### Parameters

##### app

The application.

`Application` | `BaseContract`
`uint64` | `Application` | `BaseContract`

##### account

Expand All @@ -710,7 +710,7 @@ The key.

The value (optional).

`undefined` | `StubBytesCompat` | `StubUint64Compat`
`undefined` | `T`

#### Returns

Expand All @@ -722,7 +722,7 @@ The value (optional).

> **updateAssetHolding**(`account`, `assetId`, `balance`?, `frozen`?): `void`

Defined in: [src/subcontexts/ledger-context.ts:145](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/ledger-context.ts#L145)
Defined in: [src/subcontexts/ledger-context.ts:141](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/ledger-context.ts#L141)

Update asset holdings for account, only specified values will be updated.
AccountType will also be opted-in to asset
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

# Class: DeferredAppCall\<TParams, TReturn\>

Defined in: [src/subcontexts/transaction-context.ts:60](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/transaction-context.ts#L60)
Defined in: [src/subcontexts/transaction-context.ts:59](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/transaction-context.ts#L59)

Represents a deferred application call.

Expand All @@ -22,7 +22,7 @@ Represents a deferred application call.

> **new DeferredAppCall**\<`TParams`, `TReturn`\>(`appId`, `txns`, `method`, `abiMetadata`, `args`): [`DeferredAppCall`](DeferredAppCall.md)\<`TParams`, `TReturn`\>

Defined in: [src/subcontexts/transaction-context.ts:61](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/transaction-context.ts#L61)
Defined in: [src/subcontexts/transaction-context.ts:60](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/transaction-context.ts#L60)

#### Parameters

Expand Down Expand Up @@ -56,15 +56,15 @@ Defined in: [src/subcontexts/transaction-context.ts:61](https://github.com/algor

> `readonly` **txns**: `Transaction`[]

Defined in: [src/subcontexts/transaction-context.ts:63](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/transaction-context.ts#L63)
Defined in: [src/subcontexts/transaction-context.ts:62](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/transaction-context.ts#L62)

## Methods

### submit()

> **submit**(): `TReturn`

Defined in: [src/subcontexts/transaction-context.ts:73](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/transaction-context.ts#L73)
Defined in: [src/subcontexts/transaction-context.ts:72](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/transaction-context.ts#L72)

Submits the deferred application call.

Expand Down
20 changes: 10 additions & 10 deletions docs/code/subcontexts/transaction-context/classes/ItxnGroup.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

# Class: ItxnGroup

Defined in: [src/subcontexts/transaction-context.ts:475](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/transaction-context.ts#L475)
Defined in: [src/subcontexts/transaction-context.ts:485](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/transaction-context.ts#L485)

Represents a group of inner transactions.

Expand All @@ -16,7 +16,7 @@ Represents a group of inner transactions.

> **new ItxnGroup**(`itxns`): [`ItxnGroup`](ItxnGroup.md)

Defined in: [src/subcontexts/transaction-context.ts:477](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/transaction-context.ts#L477)
Defined in: [src/subcontexts/transaction-context.ts:487](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/transaction-context.ts#L487)

#### Parameters

Expand All @@ -34,15 +34,15 @@ Defined in: [src/subcontexts/transaction-context.ts:477](https://github.com/algo

> **itxns**: `InnerTxn`[] = `[]`

Defined in: [src/subcontexts/transaction-context.ts:476](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/transaction-context.ts#L476)
Defined in: [src/subcontexts/transaction-context.ts:486](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/transaction-context.ts#L486)

## Methods

### getApplicationInnerTxn()

> **getApplicationInnerTxn**(`index`?): `ApplicationInnerTxn`

Defined in: [src/subcontexts/transaction-context.ts:486](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/transaction-context.ts#L486)
Defined in: [src/subcontexts/transaction-context.ts:496](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/transaction-context.ts#L496)

Gets an application inner transaction by index.

Expand All @@ -66,7 +66,7 @@ The application inner transaction.

> **getAssetConfigInnerTxn**(`index`?): `AssetConfigInnerTxn`

Defined in: [src/subcontexts/transaction-context.ts:495](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/transaction-context.ts#L495)
Defined in: [src/subcontexts/transaction-context.ts:505](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/transaction-context.ts#L505)

Gets an asset configuration inner transaction by index.

Expand All @@ -90,7 +90,7 @@ The asset configuration inner transaction.

> **getAssetFreezeInnerTxn**(`index`?): `AssetFreezeInnerTxn`

Defined in: [src/subcontexts/transaction-context.ts:513](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/transaction-context.ts#L513)
Defined in: [src/subcontexts/transaction-context.ts:523](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/transaction-context.ts#L523)

Gets an asset freeze inner transaction by index.

Expand All @@ -114,7 +114,7 @@ The asset freeze inner transaction.

> **getAssetTransferInnerTxn**(`index`?): `AssetTransferInnerTxn`

Defined in: [src/subcontexts/transaction-context.ts:504](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/transaction-context.ts#L504)
Defined in: [src/subcontexts/transaction-context.ts:514](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/transaction-context.ts#L514)

Gets an asset transfer inner transaction by index.

Expand All @@ -138,7 +138,7 @@ The asset transfer inner transaction.

> **getInnerTxn**(`index`?): `InnerTxn`

Defined in: [src/subcontexts/transaction-context.ts:540](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/transaction-context.ts#L540)
Defined in: [src/subcontexts/transaction-context.ts:550](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/transaction-context.ts#L550)

Gets an inner transaction by index.

Expand All @@ -162,7 +162,7 @@ The inner transaction.

> **getKeyRegistrationInnerTxn**(`index`?): `KeyRegistrationInnerTxn`

Defined in: [src/subcontexts/transaction-context.ts:522](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/transaction-context.ts#L522)
Defined in: [src/subcontexts/transaction-context.ts:532](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/transaction-context.ts#L532)

Gets a key registration inner transaction by index.

Expand All @@ -186,7 +186,7 @@ The key registration inner transaction.

> **getPaymentInnerTxn**(`index`?): `PaymentInnerTxn`

Defined in: [src/subcontexts/transaction-context.ts:531](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/transaction-context.ts#L531)
Defined in: [src/subcontexts/transaction-context.ts:541](https://github.com/algorandfoundation/algorand-typescript-testing/blob/main/src/subcontexts/transaction-context.ts#L541)

Gets a payment inner transaction by index.

Expand Down
Loading