Skip to content

Commit 70f5fc7

Browse files
committed
chore: update versions of puya-ts and algo-ts dependencies
1 parent fa31b76 commit 70f5fc7

File tree

3 files changed

+13
-61
lines changed

3 files changed

+13
-61
lines changed

package-lock.json

Lines changed: 11 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@
6464
"tslib": "^2.6.2"
6565
},
6666
"dependencies": {
67-
"@algorandfoundation/algorand-typescript": "^1.0.0-beta.11",
68-
"@algorandfoundation/puya-ts": "^1.0.0-beta.13",
67+
"@algorandfoundation/algorand-typescript": "^1.0.0-beta.13",
68+
"@algorandfoundation/puya-ts": "^1.0.0-beta.15",
6969
"elliptic": "^6.5.7",
7070
"js-sha256": "^0.11.0",
7171
"js-sha3": "^0.9.3",

src/test-execution-context.ts

Lines changed: 0 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,7 @@ import { internal } from '@algorandfoundation/algorand-typescript'
33
import { captureMethodConfig } from './abi-metadata'
44
import { DEFAULT_TEMPLATE_VAR_PREFIX } from './constants'
55
import type { DecodedLogs, LogDecoding } from './decode-logs'
6-
import { ApplicationTxn, AssetConfigTxn, AssetFreezeTxn, AssetTransferTxn, KeyRegistrationTxn, PaymentTxn, Transaction } from './impl/gtxn'
7-
import {
8-
applicationCall as itxnApplicationCall,
9-
assetConfig as itxnAssetConfig,
10-
assetFreeze as itxnAssetFreeze,
11-
assetTransfer as itxnAssetTransfer,
12-
keyRegistration as itxnKeyRegistration,
13-
payment as itxnPayment,
14-
submitGroup as itxnSubmitGroup,
15-
} from './impl/inner-transactions'
166
import { Account, AccountCls } from './impl/reference'
17-
import { Box, BoxMap, BoxRef, GlobalState, LocalState } from './impl/state'
187
import { ContractContext } from './subcontexts/contract-context'
198
import { LedgerContext } from './subcontexts/ledger-context'
209
import { TransactionContext } from './subcontexts/transaction-context'
@@ -78,43 +67,6 @@ export class TestExecutionContext implements internal.ExecutionContext {
7867
}
7968
}
8069

81-
/* @internal */
82-
get gtxn() {
83-
return {
84-
Transaction,
85-
PaymentTxn,
86-
KeyRegistrationTxn,
87-
AssetConfigTxn,
88-
AssetTransferTxn,
89-
AssetFreezeTxn,
90-
ApplicationTxn,
91-
}
92-
}
93-
94-
/* @internal */
95-
get itxn() {
96-
return {
97-
submitGroup: itxnSubmitGroup,
98-
payment: itxnPayment,
99-
keyRegistration: itxnKeyRegistration,
100-
assetConfig: itxnAssetConfig,
101-
assetTransfer: itxnAssetTransfer,
102-
assetFreeze: itxnAssetFreeze,
103-
applicationCall: itxnApplicationCall,
104-
}
105-
}
106-
107-
/* @internal */
108-
get state() {
109-
return {
110-
GlobalState,
111-
LocalState,
112-
Box,
113-
BoxMap,
114-
BoxRef,
115-
}
116-
}
117-
11870
get activeLogicSigArgs(): bytes[] {
11971
return this.#activeLogicSigArgs
12072
}

0 commit comments

Comments
 (0)