algokit-utils 3.0.1b1__py3-none-any.whl → 3.0.2b1__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/transactions/transaction_composer.py +6 -2
- {algokit_utils-3.0.1b1.dist-info → algokit_utils-3.0.2b1.dist-info}/METADATA +1 -1
- {algokit_utils-3.0.1b1.dist-info → algokit_utils-3.0.2b1.dist-info}/RECORD +5 -5
- {algokit_utils-3.0.1b1.dist-info → algokit_utils-3.0.2b1.dist-info}/LICENSE +0 -0
- {algokit_utils-3.0.1b1.dist-info → algokit_utils-3.0.2b1.dist-info}/WHEEL +0 -0
|
@@ -818,7 +818,9 @@ def prepare_group_for_sending( # noqa: C901, PLR0912, PLR0915
|
|
|
818
818
|
cover_app_call_inner_transaction_fees: bool | None = None,
|
|
819
819
|
additional_atc_context: AdditionalAtcContext | None = None,
|
|
820
820
|
) -> AtomicTransactionComposer:
|
|
821
|
-
"""
|
|
821
|
+
"""Take an existing Atomic Transaction Composer and return a new one with changes applied to the transactions
|
|
822
|
+
based on the supplied parameters to prepare it for sending.
|
|
823
|
+
Please note, that before calling `.execute()` on the returned ATC, you must call `.build_group()`.
|
|
822
824
|
|
|
823
825
|
:param atc: The AtomicTransactionComposer containing transactions
|
|
824
826
|
:param algod: Algod client for simulation
|
|
@@ -1208,7 +1210,9 @@ def send_atomic_transaction_composer( # noqa: C901, PLR0912
|
|
|
1208
1210
|
additional_atc_context,
|
|
1209
1211
|
)
|
|
1210
1212
|
|
|
1211
|
-
|
|
1213
|
+
# atc.build_group() is needed to ensure that any changes
|
|
1214
|
+
# made by prepare_group_for_sending are reflected and the group id is set
|
|
1215
|
+
transactions_to_send = [t.txn for t in atc.build_group()]
|
|
1212
1216
|
|
|
1213
1217
|
# Get group ID if multiple transactions
|
|
1214
1218
|
group_id = None
|
|
@@ -61,10 +61,10 @@ algokit_utils/protocols/account.py,sha256=CowaVY7ErBP84TWBHNvBjkZy18whPb8HIlMZtJ
|
|
|
61
61
|
algokit_utils/protocols/typed_clients.py,sha256=UrQrHbN2SvS8pEFJ8JQodvouoWeBrQOQGZGyBQx1KLM,3322
|
|
62
62
|
algokit_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
63
63
|
algokit_utils/transactions/__init__.py,sha256=7fYF3m6DyOGzbV36MT5svo0wSkj9AIz496kWgIWSAlk,225
|
|
64
|
-
algokit_utils/transactions/transaction_composer.py,sha256=
|
|
64
|
+
algokit_utils/transactions/transaction_composer.py,sha256=x_pCYWaOQvigzTWPN9KwnmUZGC_MvgxYsCtY0HXqJPw,104042
|
|
65
65
|
algokit_utils/transactions/transaction_creator.py,sha256=cuP6Xm-fhGoCc2FNSbLiEg3iQRwW38rfdTzsqPyEcpM,29053
|
|
66
66
|
algokit_utils/transactions/transaction_sender.py,sha256=foK_2S-gUl9D7xkWG3lD526qIKz5mVibHNKVREQCgoA,50079
|
|
67
|
-
algokit_utils-3.0.
|
|
68
|
-
algokit_utils-3.0.
|
|
69
|
-
algokit_utils-3.0.
|
|
70
|
-
algokit_utils-3.0.
|
|
67
|
+
algokit_utils-3.0.2b1.dist-info/LICENSE,sha256=J5i7U1Q9Q2c7saUzlvFRmrCCFhQyXb5Juz_LO5omNUw,1076
|
|
68
|
+
algokit_utils-3.0.2b1.dist-info/METADATA,sha256=52HUM3bPHbn6r3r3N0hZBaR0E_lTn9QpdcGAiZcDEb4,2420
|
|
69
|
+
algokit_utils-3.0.2b1.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
|
|
70
|
+
algokit_utils-3.0.2b1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|