faster-eth-utils 4.1.7__cp314-cp314t-win_amd64.whl → 5.3.22__cp314-cp314t-win_amd64.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 faster-eth-utils might be problematic. Click here for more details.
- faster_eth_utils/__init__.py +19 -1
- faster_eth_utils/abi.cp314t-win_amd64.pyd +0 -0
- faster_eth_utils/abi.py +834 -34
- faster_eth_utils/address.cp314t-win_amd64.pyd +0 -0
- faster_eth_utils/address.py +19 -43
- faster_eth_utils/applicators.cp314t-win_amd64.pyd +0 -0
- faster_eth_utils/applicators.py +109 -64
- faster_eth_utils/conversions.cp314t-win_amd64.pyd +0 -0
- faster_eth_utils/conversions.py +36 -29
- faster_eth_utils/crypto.cp314t-win_amd64.pyd +0 -0
- faster_eth_utils/crypto.py +3 -8
- faster_eth_utils/currency.cp314t-win_amd64.pyd +0 -0
- faster_eth_utils/currency.py +55 -21
- faster_eth_utils/curried/__init__.py +91 -67
- faster_eth_utils/debug.cp314t-win_amd64.pyd +0 -0
- faster_eth_utils/decorators.cp314t-win_amd64.pyd +0 -0
- faster_eth_utils/decorators.py +65 -29
- faster_eth_utils/encoding.cp314t-win_amd64.pyd +0 -0
- faster_eth_utils/encoding.py +1 -1
- faster_eth_utils/exceptions.cp314t-win_amd64.pyd +0 -0
- faster_eth_utils/exceptions.py +8 -1
- faster_eth_utils/functional.cp314t-win_amd64.pyd +0 -0
- faster_eth_utils/functional.py +10 -12
- faster_eth_utils/hexadecimal.cp314t-win_amd64.pyd +0 -0
- faster_eth_utils/hexadecimal.py +19 -16
- faster_eth_utils/humanize.cp314t-win_amd64.pyd +0 -0
- faster_eth_utils/humanize.py +35 -23
- faster_eth_utils/logging.py +54 -61
- faster_eth_utils/module_loading.cp314t-win_amd64.pyd +0 -0
- faster_eth_utils/network.cp314t-win_amd64.pyd +0 -0
- faster_eth_utils/network.py +2 -3
- faster_eth_utils/numeric.cp314t-win_amd64.pyd +0 -0
- faster_eth_utils/pydantic.py +103 -0
- faster_eth_utils/toolz.cp314t-win_amd64.pyd +0 -0
- faster_eth_utils/types.cp314t-win_amd64.pyd +0 -0
- faster_eth_utils/types.py +20 -17
- faster_eth_utils/units.cp314t-win_amd64.pyd +0 -0
- {faster_eth_utils-4.1.7.dist-info → faster_eth_utils-5.3.22.dist-info}/METADATA +59 -17
- faster_eth_utils-5.3.22.dist-info/RECORD +53 -0
- {faster_eth_utils-4.1.7.dist-info → faster_eth_utils-5.3.22.dist-info}/licenses/LICENSE +1 -1
- faster_eth_utils-5.3.22.dist-info/top_level.txt +3 -0
- faster_eth_utils__mypyc.cp314t-win_amd64.pyd +0 -0
- 99c07adba6ff961eaf3e__mypyc.cp314t-win_amd64.pyd +0 -0
- faster_eth_utils-4.1.7.dist-info/RECORD +0 -52
- faster_eth_utils-4.1.7.dist-info/top_level.txt +0 -3
- {faster_eth_utils-4.1.7.dist-info → faster_eth_utils-5.3.22.dist-info}/WHEEL +0 -0
faster_eth_utils/__init__.py
CHANGED
|
@@ -3,10 +3,22 @@ from importlib.metadata import (
|
|
|
3
3
|
)
|
|
4
4
|
|
|
5
5
|
from .abi import (
|
|
6
|
+
abi_to_signature,
|
|
7
|
+
collapse_if_tuple,
|
|
6
8
|
event_abi_to_log_topic,
|
|
7
9
|
event_signature_to_log_topic,
|
|
10
|
+
filter_abi_by_name,
|
|
11
|
+
filter_abi_by_type,
|
|
8
12
|
function_abi_to_4byte_selector,
|
|
9
13
|
function_signature_to_4byte_selector,
|
|
14
|
+
get_abi_input_names,
|
|
15
|
+
get_abi_input_types,
|
|
16
|
+
get_abi_output_names,
|
|
17
|
+
get_abi_output_types,
|
|
18
|
+
get_aligned_abi_inputs,
|
|
19
|
+
get_all_event_abis,
|
|
20
|
+
get_all_function_abis,
|
|
21
|
+
get_normalized_abi_inputs,
|
|
10
22
|
)
|
|
11
23
|
from .address import (
|
|
12
24
|
is_address,
|
|
@@ -45,7 +57,9 @@ from .crypto import (
|
|
|
45
57
|
from .currency import (
|
|
46
58
|
denoms,
|
|
47
59
|
from_wei,
|
|
60
|
+
from_wei_decimals,
|
|
48
61
|
to_wei,
|
|
62
|
+
to_wei_decimals,
|
|
49
63
|
)
|
|
50
64
|
from .decorators import (
|
|
51
65
|
combomethod,
|
|
@@ -81,6 +95,7 @@ from .hexadecimal import (
|
|
|
81
95
|
from .humanize import (
|
|
82
96
|
humanize_bytes,
|
|
83
97
|
humanize_hash,
|
|
98
|
+
humanize_hexstr,
|
|
84
99
|
humanize_integer_sequence,
|
|
85
100
|
humanize_ipfs_uri,
|
|
86
101
|
humanize_seconds,
|
|
@@ -109,6 +124,9 @@ from .network import (
|
|
|
109
124
|
from .numeric import (
|
|
110
125
|
clamp,
|
|
111
126
|
)
|
|
127
|
+
from .pydantic import (
|
|
128
|
+
CamelModel,
|
|
129
|
+
)
|
|
112
130
|
from .types import (
|
|
113
131
|
is_boolean,
|
|
114
132
|
is_bytes,
|
|
@@ -123,4 +141,4 @@ from .types import (
|
|
|
123
141
|
is_tuple,
|
|
124
142
|
)
|
|
125
143
|
|
|
126
|
-
__version__ = __version("eth-utils")
|
|
144
|
+
__version__ = __version("faster-eth-utils")
|
|
Binary file
|