You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|[`prepare_group_for_sending`](#algokit_utils.transactions.transaction_composer.prepare_group_for_sending)(...) | Prepare a transaction group for sending by handling execution info and resources. |
42
+
|[`send_atomic_transaction_composer`](#algokit_utils.transactions.transaction_composer.send_atomic_transaction_composer)(...) | Send an AtomicTransactionComposer transaction group. |
41
43
42
44
## Module Contents
43
45
@@ -51,8 +53,7 @@ Parameters for a payment transaction.
51
53
***receiver** – The account that will receive the ALGO
52
54
***amount** – Amount to send
53
55
***close_remainder_to** – If given, close the sender account and send the remaining balance to this address,
54
-
55
-
defaults to None
56
+
defaults to None
56
57
57
58
#### receiver *: str*
58
59
@@ -317,19 +318,18 @@ Bases: `_CommonTxnParams`
317
318
Parameters for creating an application.
318
319
319
320
***Variables:**
320
-
**approval_program** – The program to execute for all OnCompletes other than ClearState as raw teal (string)
321
-
322
-
or compiled teal (bytes)
323
-
:ivar clear_state_program: The program to execute for ClearState OnComplete as raw teal (string)
324
-
or compiled teal (bytes)
325
-
:ivar schema: The state schema for the app. This is immutable, defaults to None
326
-
:ivar on_complete: The OnComplete action (cannot be ClearState), defaults to None
327
-
:ivar args: Application arguments, defaults to None
328
-
:ivar account_references: Account references, defaults to None
329
-
:ivar app_references: App references, defaults to None
330
-
:ivar asset_references: Asset references, defaults to None
331
-
:ivar box_references: Box references, defaults to None
332
-
:ivar extra_program_pages: Number of extra pages required for the programs, defaults to None
321
+
***approval_program** – The program to execute for all OnCompletes other than ClearState as raw teal (string)
322
+
or compiled teal (bytes)
323
+
***clear_state_program** – The program to execute for ClearState OnComplete as raw teal (string)
324
+
or compiled teal (bytes)
325
+
***schema** – The state schema for the app. This is immutable, defaults to None
326
+
***on_complete** – The OnComplete action (cannot be ClearState), defaults to None
327
+
***args** – Application arguments, defaults to None
328
+
***account_references** – Account references, defaults to None
329
+
***app_references** – App references, defaults to None
330
+
***asset_references** – Asset references, defaults to None
331
+
***box_references** – Box references, defaults to None
332
+
***extra_program_pages** – Number of extra pages required for the programs, defaults to None
333
333
334
334
#### approval_program *: str | bytes*
335
335
@@ -360,16 +360,15 @@ Parameters for updating an application.
360
360
***Variables:**
361
361
***app_id** – ID of the application
362
362
***approval_program** – The program to execute for all OnCompletes other than ClearState as raw teal (string)
363
-
364
-
or compiled teal (bytes)
365
-
:ivar clear_state_program: The program to execute for ClearState OnComplete as raw teal (string)
366
-
or compiled teal (bytes)
367
-
:ivar args: Application arguments, defaults to None
368
-
:ivar account_references: Account references, defaults to None
369
-
:ivar app_references: App references, defaults to None
370
-
:ivar asset_references: Asset references, defaults to None
371
-
:ivar box_references: Box references, defaults to None
372
-
:ivar on_complete: The OnComplete action, defaults to None
363
+
or compiled teal (bytes)
364
+
***clear_state_program** – The program to execute for ClearState OnComplete as raw teal (string)
365
+
or compiled teal (bytes)
366
+
***args** – Application arguments, defaults to None
367
+
***account_references** – Account references, defaults to None
368
+
***app_references** – App references, defaults to None
369
+
***asset_references** – Asset references, defaults to None
370
+
***box_references** – Box references, defaults to None
371
+
***on_complete** – The OnComplete action, defaults to None
373
372
374
373
#### app_id *: int*
375
374
@@ -428,9 +427,8 @@ Parameters for a regular ABI method call.
428
427
***app_id** – ID of the application
429
428
***method** – The ABI method to call
430
429
***args** – Arguments to the ABI method, either an ABI value, transaction with explicit signer,
431
-
432
-
transaction, another method call, or None
433
-
:ivar on_complete: The OnComplete action (cannot be UpdateApplication or ClearState), defaults to None
430
+
transaction, another method call, or None
431
+
***on_complete** – The OnComplete action (cannot be UpdateApplication or ClearState), defaults to None
434
432
435
433
#### app_id *: int*
436
434
@@ -553,6 +551,29 @@ Results from sending an AtomicTransactionComposer transaction group.
0 commit comments