algokit-utils 3.0.0b4__py3-none-any.whl → 3.0.0b6__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/_legacy_v2/account.py +4 -4
- algokit_utils/_legacy_v2/application_client.py +1 -0
- algokit_utils/accounts/account_manager.py +98 -98
- algokit_utils/accounts/kmd_account_manager.py +2 -0
- algokit_utils/applications/app_client.py +38 -14
- algokit_utils/applications/app_deployer.py +40 -6
- algokit_utils/assets/asset_manager.py +5 -5
- algokit_utils/clients/client_manager.py +17 -12
- algokit_utils/config.py +62 -59
- algokit_utils/models/amount.py +25 -81
- algokit_utils/models/network.py +6 -2
- algokit_utils/models/transaction.py +1 -1
- algokit_utils/transactions/transaction_composer.py +33 -25
- {algokit_utils-3.0.0b4.dist-info → algokit_utils-3.0.0b6.dist-info}/METADATA +1 -1
- {algokit_utils-3.0.0b4.dist-info → algokit_utils-3.0.0b6.dist-info}/RECORD +17 -17
- {algokit_utils-3.0.0b4.dist-info → algokit_utils-3.0.0b6.dist-info}/LICENSE +0 -0
- {algokit_utils-3.0.0b4.dist-info → algokit_utils-3.0.0b6.dist-info}/WHEEL +0 -0
|
@@ -68,6 +68,9 @@ __all__ = [
|
|
|
68
68
|
"TransactionComposer",
|
|
69
69
|
"TransactionComposerBuildResult",
|
|
70
70
|
"TxnParams",
|
|
71
|
+
"calculate_extra_program_pages",
|
|
72
|
+
"populate_app_call_resources",
|
|
73
|
+
"prepare_group_for_sending",
|
|
71
74
|
"send_atomic_transaction_composer",
|
|
72
75
|
]
|
|
73
76
|
|
|
@@ -107,7 +110,7 @@ class PaymentParams(_CommonTxnParams):
|
|
|
107
110
|
:ivar receiver: The account that will receive the ALGO
|
|
108
111
|
:ivar amount: Amount to send
|
|
109
112
|
:ivar close_remainder_to: If given, close the sender account and send the remaining balance to this address,
|
|
110
|
-
|
|
113
|
+
defaults to None
|
|
111
114
|
"""
|
|
112
115
|
|
|
113
116
|
receiver: str
|
|
@@ -299,9 +302,9 @@ class AppCreateParams(_CommonTxnParams):
|
|
|
299
302
|
"""Parameters for creating an application.
|
|
300
303
|
|
|
301
304
|
:ivar approval_program: The program to execute for all OnCompletes other than ClearState as raw teal (string)
|
|
302
|
-
|
|
305
|
+
or compiled teal (bytes)
|
|
303
306
|
:ivar clear_state_program: The program to execute for ClearState OnComplete as raw teal (string)
|
|
304
|
-
|
|
307
|
+
or compiled teal (bytes)
|
|
305
308
|
:ivar schema: The state schema for the app. This is immutable, defaults to None
|
|
306
309
|
:ivar on_complete: The OnComplete action (cannot be ClearState), defaults to None
|
|
307
310
|
:ivar args: Application arguments, defaults to None
|
|
@@ -330,9 +333,9 @@ class AppUpdateParams(_CommonTxnParams):
|
|
|
330
333
|
|
|
331
334
|
:ivar app_id: ID of the application
|
|
332
335
|
:ivar approval_program: The program to execute for all OnCompletes other than ClearState as raw teal (string)
|
|
333
|
-
|
|
336
|
+
or compiled teal (bytes)
|
|
334
337
|
:ivar clear_state_program: The program to execute for ClearState OnComplete as raw teal (string)
|
|
335
|
-
|
|
338
|
+
or compiled teal (bytes)
|
|
336
339
|
:ivar args: Application arguments, defaults to None
|
|
337
340
|
:ivar account_references: Account references, defaults to None
|
|
338
341
|
:ivar app_references: App references, defaults to None
|
|
@@ -417,7 +420,7 @@ class AppCallMethodCallParams(_BaseAppMethodCall):
|
|
|
417
420
|
:ivar app_id: ID of the application
|
|
418
421
|
:ivar method: The ABI method to call
|
|
419
422
|
:ivar args: Arguments to the ABI method, either an ABI value, transaction with explicit signer,
|
|
420
|
-
|
|
423
|
+
transaction, another method call, or None
|
|
421
424
|
:ivar on_complete: The OnComplete action (cannot be UpdateApplication or ClearState), defaults to None
|
|
422
425
|
"""
|
|
423
426
|
|
|
@@ -673,7 +676,7 @@ def _get_group_execution_info( # noqa: C901, PLR0912
|
|
|
673
676
|
if not suggested_params:
|
|
674
677
|
raise ValueError("suggested_params required when cover_app_call_inner_transaction_fees enabled")
|
|
675
678
|
|
|
676
|
-
max_fee = max_fees.get(i).
|
|
679
|
+
max_fee = max_fees.get(i).micro_algo if max_fees and i in max_fees else None # type: ignore[union-attr]
|
|
677
680
|
if max_fee is None:
|
|
678
681
|
app_call_indexes_without_max_fees.append(i)
|
|
679
682
|
else:
|
|
@@ -795,7 +798,7 @@ def _find_available_transaction_index(
|
|
|
795
798
|
return next((i for i, txn in enumerate(txns) if check_transaction(txn)), -1)
|
|
796
799
|
|
|
797
800
|
|
|
798
|
-
def
|
|
801
|
+
def calculate_extra_program_pages(approval: bytes | None, clear: bytes | None) -> int:
|
|
799
802
|
"""Calculate minimum number of extra_pages required for provided approval and clear programs"""
|
|
800
803
|
total = len(approval or b"") + len(clear or b"")
|
|
801
804
|
return max(0, (total - 1) // algosdk.constants.APP_PAGE_MAX_SIZE)
|
|
@@ -843,7 +846,7 @@ def prepare_group_for_sending( # noqa: C901, PLR0912, PLR0915
|
|
|
843
846
|
if not txn_info:
|
|
844
847
|
continue
|
|
845
848
|
txn = group[i].txn
|
|
846
|
-
max_fee = max_fees.get(i).
|
|
849
|
+
max_fee = max_fees.get(i).micro_algo if max_fees and i in max_fees else None # type: ignore[union-attr]
|
|
847
850
|
immutable_fee = max_fee is not None and max_fee == txn.fee
|
|
848
851
|
priority_multiplier = (
|
|
849
852
|
1000
|
|
@@ -1096,7 +1099,7 @@ def prepare_group_for_sending( # noqa: C901, PLR0912, PLR0915
|
|
|
1096
1099
|
)
|
|
1097
1100
|
|
|
1098
1101
|
transaction_fee = cur_txn.fee + additional_fee
|
|
1099
|
-
max_fee = max_fees.get(i).
|
|
1102
|
+
max_fee = max_fees.get(i).micro_algo if max_fees and i in max_fees else None # type: ignore[union-attr]
|
|
1100
1103
|
|
|
1101
1104
|
if max_fee is None or transaction_fee > max_fee:
|
|
1102
1105
|
raise ValueError(
|
|
@@ -1224,11 +1227,11 @@ def send_atomic_transaction_composer( # noqa: C901, PLR0912
|
|
|
1224
1227
|
if not suppress_log:
|
|
1225
1228
|
logger.info(
|
|
1226
1229
|
f"Sending group of {len(transactions_to_send)} transactions ({group_id})",
|
|
1227
|
-
|
|
1230
|
+
extra={"suppress_log": suppress_log or False},
|
|
1228
1231
|
)
|
|
1229
1232
|
logger.debug(
|
|
1230
1233
|
f"Transaction IDs ({group_id}): {[t.get_txid() for t in transactions_to_send]}",
|
|
1231
|
-
|
|
1234
|
+
extra={"suppress_log": suppress_log or False},
|
|
1232
1235
|
)
|
|
1233
1236
|
|
|
1234
1237
|
# Simulate if debug enabled
|
|
@@ -1248,12 +1251,12 @@ def send_atomic_transaction_composer( # noqa: C901, PLR0912
|
|
|
1248
1251
|
if len(transactions_to_send) > 1:
|
|
1249
1252
|
logger.info(
|
|
1250
1253
|
f"Group transaction ({group_id}) sent with {len(transactions_to_send)} transactions",
|
|
1251
|
-
|
|
1254
|
+
extra={"suppress_log": suppress_log or False},
|
|
1252
1255
|
)
|
|
1253
1256
|
else:
|
|
1254
1257
|
logger.info(
|
|
1255
1258
|
f"Sent transaction ID {transactions_to_send[0].get_txid()}",
|
|
1256
|
-
|
|
1259
|
+
extra={"suppress_log": suppress_log or False},
|
|
1257
1260
|
)
|
|
1258
1261
|
|
|
1259
1262
|
# Get confirmations if not skipping
|
|
@@ -1275,8 +1278,9 @@ def send_atomic_transaction_composer( # noqa: C901, PLR0912
|
|
|
1275
1278
|
if config.debug:
|
|
1276
1279
|
logger.error(
|
|
1277
1280
|
"Received error executing Atomic Transaction Composer and debug flag enabled; "
|
|
1278
|
-
"attempting simulation to get more information",
|
|
1279
|
-
|
|
1281
|
+
"attempting simulation to get more information ",
|
|
1282
|
+
extra={"suppress_log": suppress_log or False},
|
|
1283
|
+
exc_info=e,
|
|
1280
1284
|
)
|
|
1281
1285
|
|
|
1282
1286
|
simulate = None
|
|
@@ -1310,7 +1314,8 @@ def send_atomic_transaction_composer( # noqa: C901, PLR0912
|
|
|
1310
1314
|
|
|
1311
1315
|
logger.error(
|
|
1312
1316
|
"Received error executing Atomic Transaction Composer, for more information enable the debug flag",
|
|
1313
|
-
|
|
1317
|
+
extra={"suppress_log": suppress_log or False},
|
|
1318
|
+
exc_info=e,
|
|
1314
1319
|
)
|
|
1315
1320
|
raise e
|
|
1316
1321
|
|
|
@@ -1324,7 +1329,7 @@ class TransactionComposer:
|
|
|
1324
1329
|
:param algod: An instance of AlgodClient used to get suggested params and send transactions
|
|
1325
1330
|
:param get_signer: A function that takes an address and returns a TransactionSigner for that address
|
|
1326
1331
|
:param get_suggested_params: Optional function to get suggested transaction parameters,
|
|
1327
|
-
|
|
1332
|
+
defaults to using algod.suggested_params()
|
|
1328
1333
|
:param default_validity_window: Optional default validity window for transactions in rounds, defaults to 10
|
|
1329
1334
|
:param app_manager: Optional AppManager instance for compiling TEAL programs, defaults to None
|
|
1330
1335
|
"""
|
|
@@ -1600,6 +1605,8 @@ class TransactionComposer:
|
|
|
1600
1605
|
signers[idx] = ts.signer
|
|
1601
1606
|
if isinstance(ts, TransactionWithSignerAndContext) and ts.context.abi_method:
|
|
1602
1607
|
method_calls[idx] = ts.context.abi_method
|
|
1608
|
+
if ts.context.max_fee:
|
|
1609
|
+
self._txn_max_fees[idx] = ts.context.max_fee
|
|
1603
1610
|
idx += 1
|
|
1604
1611
|
|
|
1605
1612
|
return BuiltTransactions(transactions=transactions, method_calls=method_calls, signers=signers)
|
|
@@ -1681,7 +1688,7 @@ class TransactionComposer:
|
|
|
1681
1688
|
|
|
1682
1689
|
:param allow_more_logs: Whether to allow more logs than the standard limit
|
|
1683
1690
|
:param allow_empty_signatures: Whether to allow transactions with empty signatures
|
|
1684
|
-
:param allow_unnamed_resources: Whether to allow unnamed resources
|
|
1691
|
+
:param allow_unnamed_resources: Whether to allow unnamed resources.
|
|
1685
1692
|
:param extra_opcode_budget: Additional opcode budget to allocate
|
|
1686
1693
|
:param exec_trace_config: Configuration for execution tracing
|
|
1687
1694
|
:param simulation_round: Round number to simulate at
|
|
@@ -1839,7 +1846,7 @@ class TransactionComposer:
|
|
|
1839
1846
|
txn_params["sp"].last = txn_params["sp"].first + window
|
|
1840
1847
|
|
|
1841
1848
|
if params.static_fee is not None and txn_params["sp"]:
|
|
1842
|
-
txn_params["sp"].fee = params.static_fee.
|
|
1849
|
+
txn_params["sp"].fee = params.static_fee.micro_algo
|
|
1843
1850
|
txn_params["sp"].flat_fee = True
|
|
1844
1851
|
|
|
1845
1852
|
if isinstance(txn_params.get("method"), Arc56Method):
|
|
@@ -1848,9 +1855,9 @@ class TransactionComposer:
|
|
|
1848
1855
|
txn = build_txn(txn_params)
|
|
1849
1856
|
|
|
1850
1857
|
if params.extra_fee:
|
|
1851
|
-
txn.fee += params.extra_fee.
|
|
1858
|
+
txn.fee += params.extra_fee.micro_algo
|
|
1852
1859
|
|
|
1853
|
-
if params.max_fee and txn.fee > params.max_fee.
|
|
1860
|
+
if params.max_fee and txn.fee > params.max_fee.micro_algo:
|
|
1854
1861
|
raise ValueError(f"Transaction fee {txn.fee} is greater than max_fee {params.max_fee}")
|
|
1855
1862
|
use_max_fee = params.max_fee and params.max_fee.micro_algo > (
|
|
1856
1863
|
params.static_fee.micro_algo if params.static_fee else 0
|
|
@@ -1980,7 +1987,7 @@ class TransactionComposer:
|
|
|
1980
1987
|
if app_id == 0:
|
|
1981
1988
|
extra_pages = getattr(params, "extra_program_pages", None)
|
|
1982
1989
|
if extra_pages is None and approval_program is not None:
|
|
1983
|
-
extra_pages =
|
|
1990
|
+
extra_pages = calculate_extra_program_pages(approval_program, clear_program)
|
|
1984
1991
|
|
|
1985
1992
|
txn_params = {
|
|
1986
1993
|
"app_id": app_id,
|
|
@@ -2037,7 +2044,7 @@ class TransactionComposer:
|
|
|
2037
2044
|
"sender": params.sender,
|
|
2038
2045
|
"sp": suggested_params,
|
|
2039
2046
|
"receiver": params.receiver,
|
|
2040
|
-
"amt": params.amount.
|
|
2047
|
+
"amt": params.amount.micro_algo,
|
|
2041
2048
|
"close_remainder_to": params.close_remainder_to,
|
|
2042
2049
|
}
|
|
2043
2050
|
|
|
@@ -2117,7 +2124,8 @@ class TransactionComposer:
|
|
|
2117
2124
|
num_uints=params.schema.get("local_ints", 0),
|
|
2118
2125
|
num_byte_slices=params.schema.get("local_byte_slices", 0),
|
|
2119
2126
|
),
|
|
2120
|
-
"extra_pages": params.extra_program_pages
|
|
2127
|
+
"extra_pages": params.extra_program_pages
|
|
2128
|
+
or calculate_extra_program_pages(approval_program, clear_program),
|
|
2121
2129
|
}
|
|
2122
2130
|
|
|
2123
2131
|
return self._common_txn_build_step(lambda x: algosdk.transaction.ApplicationCallTxn(**x), params, txn_params)
|
|
@@ -3,8 +3,8 @@ algokit_utils/_debugging.py,sha256=nAiC10WXiZsvc0RPWOrMLpjJQZT_ItgcMl7D9Z4DfYc,1
|
|
|
3
3
|
algokit_utils/_legacy_v2/__init__.py,sha256=WcRE30axWjGnBB09bJCeTw9NT-2_jDN_CVJITFcIDc8,4689
|
|
4
4
|
algokit_utils/_legacy_v2/_ensure_funded.py,sha256=tw4ZEcqsKBHbSCH9gPz3V2onGaj1kyv6BM9V59fLgCU,6931
|
|
5
5
|
algokit_utils/_legacy_v2/_transfer.py,sha256=FRut71CU8kDn4-FqMepwZGjFPhPtQg5Wv5_kdtVqK-8,6256
|
|
6
|
-
algokit_utils/_legacy_v2/account.py,sha256=
|
|
7
|
-
algokit_utils/_legacy_v2/application_client.py,sha256=
|
|
6
|
+
algokit_utils/_legacy_v2/account.py,sha256=_4pxTKO6y9XK4CkUb1M9Du_XVXKeU1MWXHx54KPVbMk,8240
|
|
7
|
+
algokit_utils/_legacy_v2/application_client.py,sha256=Gb7WldXLi0V92YfeU19HP1rJ-L4Rmz2Lxm2q45tQJ2s,59610
|
|
8
8
|
algokit_utils/_legacy_v2/application_specification.py,sha256=wp2Y9ou2_F-bSFbDnm6AEhFexybmD7-fAT0CuWtO26g,521
|
|
9
9
|
algokit_utils/_legacy_v2/asset.py,sha256=b4GEzsPuHAbb330ZjoyY3lol0SisQGwJiOpnXvuXvJI,7594
|
|
10
10
|
algokit_utils/_legacy_v2/common.py,sha256=lB6zHUDJSjYiZ41hvcG0P5TZk_t-n2Iy0OXuQcJosm0,823
|
|
@@ -14,15 +14,15 @@ algokit_utils/_legacy_v2/models.py,sha256=hH7aO50E4po4EgxXI9zdX5HTthn1HLfSLvkuPf
|
|
|
14
14
|
algokit_utils/_legacy_v2/network_clients.py,sha256=5nqC-47hreWvMxR-PQWs_QP44wJDAGhtS1MQv8JQ82o,5660
|
|
15
15
|
algokit_utils/account.py,sha256=gyGrBSoafUh8WV677IzYGkYoxtzzElsgxGMp4SgA4pk,410
|
|
16
16
|
algokit_utils/accounts/__init__.py,sha256=_LyY0se6TaQOes7vAcmbpt6pmG4VKlzfTt37-IjwimA,138
|
|
17
|
-
algokit_utils/accounts/account_manager.py,sha256=
|
|
18
|
-
algokit_utils/accounts/kmd_account_manager.py,sha256=
|
|
17
|
+
algokit_utils/accounts/account_manager.py,sha256=zr8NV6k9L8xESzsmbFK06T-DOmVEvHWcoHgIIX5SDcQ,39763
|
|
18
|
+
algokit_utils/accounts/kmd_account_manager.py,sha256=0flsU5T11JciyL0YvOKDHPVSm-ghV0RjJAbtm8JwrhU,6476
|
|
19
19
|
algokit_utils/algorand.py,sha256=Gtx3vspZmSxUrNWmh09NFQB24G4v4CEogYuRX_9o5Xw,10554
|
|
20
20
|
algokit_utils/application_client.py,sha256=5UIxXIBjukjRyjZPCeXmaNlAftbb3TziV7EfBolW79k,337
|
|
21
21
|
algokit_utils/application_specification.py,sha256=-ZM13Qv-AcLmwudJCq8xGPoWLvAvKBICgAdHeFozKbY,1416
|
|
22
22
|
algokit_utils/applications/__init__.py,sha256=NGjhpBeExsQZOAYCT2QUFag1xuKoFiX-Ux5SR2GNzd8,452
|
|
23
23
|
algokit_utils/applications/abi.py,sha256=ZwiLuFXx2EwWJ_cOEvNWCzt5onoasm-QmQPv9N7d49g,10087
|
|
24
|
-
algokit_utils/applications/app_client.py,sha256=
|
|
25
|
-
algokit_utils/applications/app_deployer.py,sha256=
|
|
24
|
+
algokit_utils/applications/app_client.py,sha256=oAwe9_6-ETWJIdXNScDvUiVYN8JNP4kplSnr3qCQPVY,84979
|
|
25
|
+
algokit_utils/applications/app_deployer.py,sha256=MD7RIvh6Z6dFr9sx8dP5nP1DzSEbwz-vX-Exz_CwoN4,24740
|
|
26
26
|
algokit_utils/applications/app_factory.py,sha256=wljyXuXWaMc3KJkDeACJ5XVEfIsVxeSXqdGTJ9p3tJQ,33425
|
|
27
27
|
algokit_utils/applications/app_manager.py,sha256=EA1uRtmvPVAdKi1I5HSCpHjIDgLN7eZcEPT0Cj3C7fU,17661
|
|
28
28
|
algokit_utils/applications/app_spec/__init__.py,sha256=HtjAhAqHNFml9WbRKGmhJnwyJeW8AztPRO_BriQ84vs,140
|
|
@@ -31,17 +31,17 @@ algokit_utils/applications/app_spec/arc56.py,sha256=8GyQ_gDBSkHLzTL35D1r7dce5owh
|
|
|
31
31
|
algokit_utils/applications/enums.py,sha256=1MUBrPW9v0-OZk6jsa5rqSEEpC-z-6QAQIs9G7pLn1I,1257
|
|
32
32
|
algokit_utils/asset.py,sha256=ZnNo_MsDGPb8UTPxi7cmIZpbrT0x0xZjblHP01pDAC0,874
|
|
33
33
|
algokit_utils/assets/__init__.py,sha256=6igogt0eo0TEae6-rO9qPsmlrKkbnkq3aV8wtePX3yk,63
|
|
34
|
-
algokit_utils/assets/asset_manager.py,sha256=
|
|
34
|
+
algokit_utils/assets/asset_manager.py,sha256=0vs02dbXarAkVxehM4XJp_AHveZCujIPfnQVXiwhZiw,14152
|
|
35
35
|
algokit_utils/beta/_utils.py,sha256=eGgrSH5dA7Lhe7Z_9rudU7O6azZHMH0U7A3in4GpFOg,1839
|
|
36
36
|
algokit_utils/beta/account_manager.py,sha256=xDFvsMSha0Ki42BGvKvfScQWT_W9y4GeP_RWXjc3vnE,213
|
|
37
37
|
algokit_utils/beta/algorand_client.py,sha256=xDFvsMSha0Ki42BGvKvfScQWT_W9y4GeP_RWXjc3vnE,213
|
|
38
38
|
algokit_utils/beta/client_manager.py,sha256=xDFvsMSha0Ki42BGvKvfScQWT_W9y4GeP_RWXjc3vnE,213
|
|
39
39
|
algokit_utils/beta/composer.py,sha256=xDFvsMSha0Ki42BGvKvfScQWT_W9y4GeP_RWXjc3vnE,213
|
|
40
40
|
algokit_utils/clients/__init__.py,sha256=qUuKBvfLnw4z6ZU9x7mc-mLjfnnXC9UcvtoeU33ZLJ8,136
|
|
41
|
-
algokit_utils/clients/client_manager.py,sha256=
|
|
41
|
+
algokit_utils/clients/client_manager.py,sha256=Yl5k7LwlUaoHh76tNK1UxFl8xoFdaTejrhrr488E0Ww,25559
|
|
42
42
|
algokit_utils/clients/dispenser_api_client.py,sha256=lx6II3beCt7YiKO2TrW6UbsRVirf3NoWMJi8HD_W5nI,6045
|
|
43
43
|
algokit_utils/common.py,sha256=5wl83vWw91RYdEC4hTTufqaptKiFtgjKLIyONDmRSH0,300
|
|
44
|
-
algokit_utils/config.py,sha256=
|
|
44
|
+
algokit_utils/config.py,sha256=7ZtShaEsVXxajtu15JyKP4ugCQxGq6AGRh6kF4taqKA,6412
|
|
45
45
|
algokit_utils/deploy.py,sha256=UUtSDI6JcBUuto62FuirhUlDcjZwQyLkiERgDMx8P7A,330
|
|
46
46
|
algokit_utils/dispenser_api.py,sha256=-EO4Dq3q_v4kSMey43kXJfoX8uCBPJpjEMTlLI7xn_I,324
|
|
47
47
|
algokit_utils/errors/__init__.py,sha256=CmuiLVjzMAOYxPaIIwmYCNArsso_RtS2ssFoNdp5CMs,61
|
|
@@ -49,22 +49,22 @@ algokit_utils/errors/logic_error.py,sha256=uxqUOU9-D1R5TrKturCbmmWRVlB024Ca4CfVi
|
|
|
49
49
|
algokit_utils/logic_error.py,sha256=3duw-l6tBr-DeapO0e0tYHoa9rOxP-QZZ6QWmN8L9tc,305
|
|
50
50
|
algokit_utils/models/__init__.py,sha256=0aB_c5pnkqKl1Z0hkxM9qbKn2qVdizZE2DvziN9ObqM,465
|
|
51
51
|
algokit_utils/models/account.py,sha256=TdeKjhYkppD8g0DYRGbnCsi8zfPz3zU74DaZte_CYJw,6014
|
|
52
|
-
algokit_utils/models/amount.py,sha256=
|
|
52
|
+
algokit_utils/models/amount.py,sha256=PcjzqRY5ThcUuSYHk1yeYgUooos1j2-54hBIJJcipd4,7567
|
|
53
53
|
algokit_utils/models/application.py,sha256=lM2_g5kZ18k_zyVzcbGvkvqHzksfb2sgRqowJ3pvUgo,1288
|
|
54
|
-
algokit_utils/models/network.py,sha256=
|
|
54
|
+
algokit_utils/models/network.py,sha256=3QNcZ9jVmckv3CCxrD2Y1jiwBdBGdaaziiRgOpsqhwI,904
|
|
55
55
|
algokit_utils/models/simulate.py,sha256=F9OSEfA9QGFGe5po24h8IGLor5z1ogu5Cwm3l6cHnAs,236
|
|
56
56
|
algokit_utils/models/state.py,sha256=N6jsjZiZsz-Rn1ZDnBRvVv1En-lUrh97JuaaDRZtCkg,1478
|
|
57
|
-
algokit_utils/models/transaction.py,sha256=
|
|
57
|
+
algokit_utils/models/transaction.py,sha256=2JJLDbbbKEWaXkfx3rtcSjsQNVH6f8kyhY1iFBVW-Uc,3019
|
|
58
58
|
algokit_utils/network_clients.py,sha256=Nd096NpRM7z9iLLdLSC9HV9jl_8Y7sT9ft54mqfyxLA,251
|
|
59
59
|
algokit_utils/protocols/__init__.py,sha256=yD7ZxPEiERQ5ecJuz7BSM9uz1_GhamIaQWCnuVikgro,126
|
|
60
60
|
algokit_utils/protocols/account.py,sha256=CowaVY7ErBP84TWBHNvBjkZy18whPb8HIlMZtJRLh4w,624
|
|
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=QA5j3l-UhnaCoohN9Pri8t_bPJrOrZh3ogYQf4FwDm0,95183
|
|
65
65
|
algokit_utils/transactions/transaction_creator.py,sha256=A1YHeGC2EkR2V0HPYJiXVOAEIrfjBW2KVyYgi3exm4E,6167
|
|
66
66
|
algokit_utils/transactions/transaction_sender.py,sha256=uQmHElJgUIxLXfdklMNoabjQQzUku8CFP82wwhfr44E,22769
|
|
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.0b6.dist-info/LICENSE,sha256=J5i7U1Q9Q2c7saUzlvFRmrCCFhQyXb5Juz_LO5omNUw,1076
|
|
68
|
+
algokit_utils-3.0.0b6.dist-info/METADATA,sha256=DFaxl-bIa2v5PkXM4Fbj7oCl3FJod5u6ADkrXrThayk,2416
|
|
69
|
+
algokit_utils-3.0.0b6.dist-info/WHEEL,sha256=IYZQI976HJqqOpQU6PHkJ8fb3tMNBFjg-Cn-pwAbaFM,88
|
|
70
|
+
algokit_utils-3.0.0b6.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|