algokit-utils 2.3.2b1__py3-none-any.whl → 2.3.3b1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of algokit-utils might be problematic. Click here for more details.
- algokit_utils/_debugging.py +1 -1
- algokit_utils/beta/composer.py +1 -1
- {algokit_utils-2.3.2b1.dist-info → algokit_utils-2.3.3b1.dist-info}/METADATA +1 -1
- {algokit_utils-2.3.2b1.dist-info → algokit_utils-2.3.3b1.dist-info}/RECORD +6 -6
- {algokit_utils-2.3.2b1.dist-info → algokit_utils-2.3.3b1.dist-info}/LICENSE +0 -0
- {algokit_utils-2.3.2b1.dist-info → algokit_utils-2.3.3b1.dist-info}/WHEEL +0 -0
algokit_utils/_debugging.py
CHANGED
|
@@ -220,7 +220,7 @@ def simulate_response(atc: AtomicTransactionComposer, algod_client: "AlgodClient
|
|
|
220
220
|
txn_list = [txn_group.txn for txn_group in unsigned_txn_groups]
|
|
221
221
|
fake_signed_transactions = empty_signer.sign_transactions(txn_list, [])
|
|
222
222
|
txn_group = [SimulateRequestTransactionGroup(txns=fake_signed_transactions)]
|
|
223
|
-
trace_config = SimulateTraceConfig(enable=True, stack_change=True, scratch_change=True)
|
|
223
|
+
trace_config = SimulateTraceConfig(enable=True, stack_change=True, scratch_change=True, state_change=True)
|
|
224
224
|
|
|
225
225
|
simulate_request = SimulateRequest(
|
|
226
226
|
txn_groups=txn_group, allow_more_logs=True, allow_empty_signatures=True, exec_trace_config=trace_config
|
algokit_utils/beta/composer.py
CHANGED
|
@@ -456,7 +456,6 @@ class AlgokitComposer:
|
|
|
456
456
|
sdk_params = {
|
|
457
457
|
"sender": params.sender,
|
|
458
458
|
"sp": suggested_params,
|
|
459
|
-
"index": params.app_id or 0,
|
|
460
459
|
"on_complete": params.on_complete or algosdk.transaction.OnComplete.NoOpOC,
|
|
461
460
|
"approval_program": params.approval_program,
|
|
462
461
|
"clear_program": params.clear_program,
|
|
@@ -484,6 +483,7 @@ class AlgokitComposer:
|
|
|
484
483
|
|
|
485
484
|
txn = algosdk.transaction.ApplicationCreateTxn(**sdk_params) # type: ignore[no-untyped-call]
|
|
486
485
|
else:
|
|
486
|
+
sdk_params["index"] = params.app_id
|
|
487
487
|
txn = algosdk.transaction.ApplicationCallTxn(**sdk_params) # type: ignore[assignment,no-untyped-call]
|
|
488
488
|
|
|
489
489
|
return self._common_txn_build_step(params, txn, suggested_params)
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
algokit_utils/__init__.py,sha256=Xc9NVy3cETI2qzbkkAea2YrZ9-CLtZLHnuS1UHQ13wQ,4909
|
|
2
|
-
algokit_utils/_debugging.py,sha256=
|
|
2
|
+
algokit_utils/_debugging.py,sha256=HlO_mOsVTaz2aqci_4tOpGT-rAd-xZ1RxFphnTRgDLQ,10751
|
|
3
3
|
algokit_utils/_ensure_funded.py,sha256=ZdEdUB43QGIQrg7cSSgNrDmWaLSUhli9x9I6juwKfgo,6786
|
|
4
4
|
algokit_utils/_transfer.py,sha256=R9q8RoMHiwtqcwQjuGHEluMxIzmYqAsI5WrTsQd24Ds,6021
|
|
5
5
|
algokit_utils/account.py,sha256=JYovI84sxiU2mIbwNwWVuoEJBMuAPJauHx5jkKFrR7E,7067
|
|
@@ -9,7 +9,7 @@ algokit_utils/asset.py,sha256=jsc7T1dH9HZA3Yve2gRLObwUlK6xLDoQz0NxLLnqaGs,7216
|
|
|
9
9
|
algokit_utils/beta/account_manager.py,sha256=dSb-jpBAWRfmKFYzG6T8t5vkh6ysX2NkZXl5UcZY5WA,8015
|
|
10
10
|
algokit_utils/beta/algorand_client.py,sha256=y1CYYn_ADwgOLTVID9BFMvdubDgKqUfx9R6XH3PrzsA,12649
|
|
11
11
|
algokit_utils/beta/client_manager.py,sha256=rW58VVBdYAV_5QwXNyt3VMP8NGon_IRhq1Dr35Mp31g,3117
|
|
12
|
-
algokit_utils/beta/composer.py,sha256=
|
|
12
|
+
algokit_utils/beta/composer.py,sha256=LCW4_TcZkC_m-b3kJMm15I6iD8Yh_6yD25bjCwAf63o,28680
|
|
13
13
|
algokit_utils/common.py,sha256=K6-3_9dv2clDn0WMYb8AWE_N46kWWIXglZIPfHIowDs,812
|
|
14
14
|
algokit_utils/config.py,sha256=oY3o1kPzVPRiQH--f4HzrMMNPojT078CSudqS9WQaEc,4279
|
|
15
15
|
algokit_utils/deploy.py,sha256=AQz7FTeIpprI83jT470bSgAkqObZc1UgqWxWkEbJjEk,35216
|
|
@@ -18,7 +18,7 @@ algokit_utils/logic_error.py,sha256=I9fJJ09zfpPlKgcJJ7fqC77BBPTz37QsSlGfZwXDdPQ,
|
|
|
18
18
|
algokit_utils/models.py,sha256=KMpSUv7XGjZ9_50U6qUjcPjGh9_7lsRj3ZlO9Fb2zyE,8421
|
|
19
19
|
algokit_utils/network_clients.py,sha256=TlGRZ4l62_vi__AKg9zyVGiAawTrA0ca6AfPDzRL44E,5136
|
|
20
20
|
algokit_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
21
|
-
algokit_utils-2.3.
|
|
22
|
-
algokit_utils-2.3.
|
|
23
|
-
algokit_utils-2.3.
|
|
24
|
-
algokit_utils-2.3.
|
|
21
|
+
algokit_utils-2.3.3b1.dist-info/LICENSE,sha256=J5i7U1Q9Q2c7saUzlvFRmrCCFhQyXb5Juz_LO5omNUw,1076
|
|
22
|
+
algokit_utils-2.3.3b1.dist-info/METADATA,sha256=wFbEIYrix6Ld-Udm-TUQhWUiVwftBrvxlsseuqi0eSc,2258
|
|
23
|
+
algokit_utils-2.3.3b1.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
|
24
|
+
algokit_utils-2.3.3b1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|