@@ -3,18 +3,7 @@ import { internal } from '@algorandfoundation/algorand-typescript'
33import { captureMethodConfig } from './abi-metadata'
44import { DEFAULT_TEMPLATE_VAR_PREFIX } from './constants'
55import 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'
166import { Account , AccountCls } from './impl/reference'
17- import { Box , BoxMap , BoxRef , GlobalState , LocalState } from './impl/state'
187import { ContractContext } from './subcontexts/contract-context'
198import { LedgerContext } from './subcontexts/ledger-context'
209import { 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