py-near 1.1.48__py3-none-any.whl → 1.1.49__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.
py_near/account.py
CHANGED
@@ -1,8 +1,17 @@
|
|
1
1
|
import asyncio
|
2
2
|
import collections
|
3
3
|
import json
|
4
|
+
import sys
|
4
5
|
from typing import List, Union, Dict, Optional
|
5
6
|
|
7
|
+
if sys.version_info.major == 3 and sys.version_info.minor >= 10:
|
8
|
+
from collections.abc import MutableSet, MutableMapping
|
9
|
+
|
10
|
+
collections.MutableSet = collections.abc.MutableSet
|
11
|
+
collections.MutableMapping = collections.abc.MutableMapping
|
12
|
+
else:
|
13
|
+
from collections import MutableSet
|
14
|
+
|
6
15
|
import base58
|
7
16
|
import ed25519
|
8
17
|
from loguru import logger
|
@@ -1,5 +1,5 @@
|
|
1
1
|
py_near/__init__.py,sha256=t5fAxjaU8dN8xpQR2vz0ZGhfTkdVy2RCbkhJhZFglk4,50
|
2
|
-
py_near/account.py,sha256=
|
2
|
+
py_near/account.py,sha256=77jCtVaGXK_ejQ0SyRYRgJ4Ez1DaWByfAX94Uuph-aw,18107
|
3
3
|
py_near/constants.py,sha256=inaWIuwmF1EB5JSB0ynnZY5rKY_QsxhF9KuCOhPsM6k,164
|
4
4
|
py_near/dapps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
5
5
|
py_near/dapps/core.py,sha256=LtN9aW2gw2mvEdhzQcQJIidtjv-XL1xjb0LK8DzqtqE,231
|
@@ -23,7 +23,7 @@ py_near/models.py,sha256=GZQD1TKGWlwqsJsKRXrVNBjCdAIpk7GQypU-QOtAPFs,11533
|
|
23
23
|
py_near/providers.py,sha256=1eg9MFIYIKA09bZyTdSZ2Umrh0kX1SUFEhY_tN8Cqz4,16722
|
24
24
|
py_near/transactions.py,sha256=QAXegv2JpKISk92NaChtIH6-QPHrcWbrwdKH_lH4TsU,3186
|
25
25
|
py_near/utils.py,sha256=FirRH93ydH1cwjn0-sNrZeIn3BRD6QHedrP2VkAdJ6g,126
|
26
|
-
py_near-1.1.
|
27
|
-
py_near-1.1.
|
28
|
-
py_near-1.1.
|
29
|
-
py_near-1.1.
|
26
|
+
py_near-1.1.49.dist-info/LICENSE,sha256=I_GOA9xJ35FiL-KnYXZJdATkbO2KcV2dK2enRGVxzKM,1023
|
27
|
+
py_near-1.1.49.dist-info/METADATA,sha256=ERDv9zuuxRMfj4RzeF4Kvup_2QuTYueowDiP3tmc-EY,4693
|
28
|
+
py_near-1.1.49.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
29
|
+
py_near-1.1.49.dist-info/RECORD,,
|
File without changes
|
File without changes
|