yeref 0.24.13__tar.gz → 0.24.14__tar.gz
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.
- {yeref-0.24.13 → yeref-0.24.14}/PKG-INFO +1 -1
- {yeref-0.24.13 → yeref-0.24.14}/setup.py +1 -1
- {yeref-0.24.13 → yeref-0.24.14}/yeref/yeref.py +10 -4
- {yeref-0.24.13 → yeref-0.24.14}/yeref.egg-info/PKG-INFO +1 -1
- {yeref-0.24.13 → yeref-0.24.14}/pyproject.toml +0 -0
- {yeref-0.24.13 → yeref-0.24.14}/setup.cfg +0 -0
- {yeref-0.24.13 → yeref-0.24.14}/yeref/__init__.py +0 -0
- {yeref-0.24.13 → yeref-0.24.14}/yeref/l_.py +0 -0
- {yeref-0.24.13 → yeref-0.24.14}/yeref/tonweb.js +0 -0
- {yeref-0.24.13 → yeref-0.24.14}/yeref.egg-info/SOURCES.txt +0 -0
- {yeref-0.24.13 → yeref-0.24.14}/yeref.egg-info/dependency_links.txt +0 -0
- {yeref-0.24.13 → yeref-0.24.14}/yeref.egg-info/top_level.txt +0 -0
@@ -8444,13 +8444,19 @@ async def calculate_wallet_address(owner, master, KEYS_JSON, is_test_only=False)
|
|
8444
8444
|
# }
|
8445
8445
|
# ])
|
8446
8446
|
elif provider == "toncenter":
|
8447
|
-
key = next(
|
8448
|
-
|
8449
|
-
|
8447
|
+
key = next(
|
8448
|
+
(it['testnet'] if is_test_only else it['mainnet']
|
8449
|
+
for it in keys
|
8450
|
+
if (is_test_only and 'testnet' in it)
|
8451
|
+
or (not is_test_only and 'mainnet' in it)
|
8452
|
+
),
|
8453
|
+
None
|
8454
|
+
)
|
8450
8455
|
if key:
|
8451
8456
|
items.append([
|
8452
8457
|
'toncenter',
|
8453
|
-
f'https://{pfx_testnet}toncenter.com/api/v3/jetton/wallets
|
8458
|
+
f'https://{pfx_testnet}toncenter.com/api/v3/jetton/wallets'
|
8459
|
+
f'?owner_address={owner}&jetton_address={master}&limit=1&offset=0',
|
8454
8460
|
{'accept': 'application/json', 'X-API-Key': key}
|
8455
8461
|
])
|
8456
8462
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|