algokit-utils 4.1.0b6__py3-none-any.whl → 4.1.0b8__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/applications/app_client.py +2 -7
- {algokit_utils-4.1.0b6.dist-info → algokit_utils-4.1.0b8.dist-info}/METADATA +1 -1
- {algokit_utils-4.1.0b6.dist-info → algokit_utils-4.1.0b8.dist-info}/RECORD +5 -5
- {algokit_utils-4.1.0b6.dist-info → algokit_utils-4.1.0b8.dist-info}/LICENSE +0 -0
- {algokit_utils-4.1.0b6.dist-info → algokit_utils-4.1.0b8.dist-info}/WHEEL +0 -0
|
@@ -452,21 +452,16 @@ class _StateAccessor:
|
|
|
452
452
|
if not box.name_raw.startswith(prefix):
|
|
453
453
|
continue
|
|
454
454
|
|
|
455
|
-
encoded_key = prefix + box.name_raw
|
|
456
|
-
base64_key = base64.b64encode(encoded_key).decode("utf-8")
|
|
457
|
-
|
|
458
455
|
try:
|
|
459
456
|
key = get_abi_decoded_value(box.name_raw[len(prefix) :], metadata.key_type, self._app_spec.structs)
|
|
460
457
|
value = get_abi_decoded_value(
|
|
461
|
-
self._algorand.app.get_box_value(self._app_id,
|
|
458
|
+
self._algorand.app.get_box_value(self._app_id, box.name_raw),
|
|
462
459
|
metadata.value_type,
|
|
463
460
|
self._app_spec.structs,
|
|
464
461
|
)
|
|
465
462
|
result[str(key)] = value
|
|
466
463
|
except Exception as e:
|
|
467
|
-
|
|
468
|
-
raise ValueError(f"Failed to decode key {base64_key}") from e
|
|
469
|
-
raise ValueError(f"Failed to decode value for key {base64_key}") from e
|
|
464
|
+
raise ValueError(f"Failed to decode value for key {box.name_raw.decode('utf-8')}") from e
|
|
470
465
|
|
|
471
466
|
return result
|
|
472
467
|
|
|
@@ -21,7 +21,7 @@ algokit_utils/application_client.py,sha256=5UIxXIBjukjRyjZPCeXmaNlAftbb3TziV7EfB
|
|
|
21
21
|
algokit_utils/application_specification.py,sha256=wV0H088IudMqlxsW-gsZIfJyKA4e-zVwxJ-cR__ouBA,1379
|
|
22
22
|
algokit_utils/applications/__init__.py,sha256=NGjhpBeExsQZOAYCT2QUFag1xuKoFiX-Ux5SR2GNzd8,452
|
|
23
23
|
algokit_utils/applications/abi.py,sha256=OjTdn4szJPPeC8XmosdDYtkIIVgQSWAnqz2DHw5OH9g,10117
|
|
24
|
-
algokit_utils/applications/app_client.py,sha256=
|
|
24
|
+
algokit_utils/applications/app_client.py,sha256=891BMnUOIOenEWgeelSIMgi0Wj4kggluWiKAu6-GYrE,88208
|
|
25
25
|
algokit_utils/applications/app_deployer.py,sha256=xJCu7SU66OTg5misSbSF0QI8abRB-DWAwAVKd1kNcPI,30685
|
|
26
26
|
algokit_utils/applications/app_factory.py,sha256=jVAzoK1J9S-BTGHA5BLxT-cl0pWhPdf222W4fYpFihE,45352
|
|
27
27
|
algokit_utils/applications/app_manager.py,sha256=8bboIswlwBQhPIqilSBMaxd83yHjIpkloezmtgcAdZY,22301
|
|
@@ -64,7 +64,7 @@ algokit_utils/transactions/__init__.py,sha256=7fYF3m6DyOGzbV36MT5svo0wSkj9AIz496
|
|
|
64
64
|
algokit_utils/transactions/transaction_composer.py,sha256=eK-6l2W1CkbKID1ezi-zCs_TxA2i5ZTm3YTl8sT2Zfw,103995
|
|
65
65
|
algokit_utils/transactions/transaction_creator.py,sha256=cuP6Xm-fhGoCc2FNSbLiEg3iQRwW38rfdTzsqPyEcpM,29053
|
|
66
66
|
algokit_utils/transactions/transaction_sender.py,sha256=Wi3ws9S-Df1JeTlaSTXmq-WS24Gsq7WGsKk1B0z23ao,50117
|
|
67
|
-
algokit_utils-4.1.
|
|
68
|
-
algokit_utils-4.1.
|
|
69
|
-
algokit_utils-4.1.
|
|
70
|
-
algokit_utils-4.1.
|
|
67
|
+
algokit_utils-4.1.0b8.dist-info/LICENSE,sha256=J5i7U1Q9Q2c7saUzlvFRmrCCFhQyXb5Juz_LO5omNUw,1076
|
|
68
|
+
algokit_utils-4.1.0b8.dist-info/METADATA,sha256=bns2IrKnfsMmCXuJrFd9o--aUsrH9gYSb0Cok93PvV4,2421
|
|
69
|
+
algokit_utils-4.1.0b8.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
70
|
+
algokit_utils-4.1.0b8.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|