faster-eth-utils 5.3.9__cp39-cp39-musllinux_1_2_i686.whl → 5.3.11__cp39-cp39-musllinux_1_2_i686.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/abi.cpython-39-i386-linux-gnu.so +0 -0
- faster_eth_utils/abi.py +20 -16
- faster_eth_utils/address.cpython-39-i386-linux-gnu.so +0 -0
- faster_eth_utils/applicators.cpython-39-i386-linux-gnu.so +0 -0
- faster_eth_utils/applicators.py +52 -34
- faster_eth_utils/conversions.cpython-39-i386-linux-gnu.so +0 -0
- faster_eth_utils/crypto.cpython-39-i386-linux-gnu.so +0 -0
- faster_eth_utils/currency.cpython-39-i386-linux-gnu.so +0 -0
- faster_eth_utils/debug.cpython-39-i386-linux-gnu.so +0 -0
- faster_eth_utils/decorators.cpython-39-i386-linux-gnu.so +0 -0
- faster_eth_utils/encoding.cpython-39-i386-linux-gnu.so +0 -0
- faster_eth_utils/exceptions.cpython-39-i386-linux-gnu.so +0 -0
- faster_eth_utils/exceptions.py +8 -1
- faster_eth_utils/functional.cpython-39-i386-linux-gnu.so +0 -0
- faster_eth_utils/hexadecimal.cpython-39-i386-linux-gnu.so +0 -0
- faster_eth_utils/humanize.cpython-39-i386-linux-gnu.so +0 -0
- faster_eth_utils/module_loading.cpython-39-i386-linux-gnu.so +0 -0
- faster_eth_utils/network.cpython-39-i386-linux-gnu.so +0 -0
- faster_eth_utils/numeric.cpython-39-i386-linux-gnu.so +0 -0
- faster_eth_utils/pydantic.py +1 -1
- faster_eth_utils/toolz.cpython-39-i386-linux-gnu.so +0 -0
- faster_eth_utils/types.cpython-39-i386-linux-gnu.so +0 -0
- faster_eth_utils/units.cpython-39-i386-linux-gnu.so +0 -0
- {faster_eth_utils-5.3.9.dist-info → faster_eth_utils-5.3.11.dist-info}/METADATA +9 -4
- faster_eth_utils-5.3.11.dist-info/RECORD +53 -0
- faster_eth_utils-5.3.11.dist-info/top_level.txt +3 -0
- faster_eth_utils__mypyc.cpython-39-i386-linux-gnu.so +0 -0
- 99c07adba6ff961eaf3e__mypyc.cpython-39-i386-linux-gnu.so +0 -0
- faster_eth_utils-5.3.9.dist-info/RECORD +0 -53
- faster_eth_utils-5.3.9.dist-info/top_level.txt +0 -3
- {faster_eth_utils-5.3.9.dist-info → faster_eth_utils-5.3.11.dist-info}/WHEEL +0 -0
- {faster_eth_utils-5.3.9.dist-info → faster_eth_utils-5.3.11.dist-info}/licenses/LICENSE +0 -0
|
Binary file
|
faster_eth_utils/abi.py
CHANGED
|
@@ -7,6 +7,7 @@ import re
|
|
|
7
7
|
from typing import (
|
|
8
8
|
Any,
|
|
9
9
|
Dict,
|
|
10
|
+
Final,
|
|
10
11
|
Iterable,
|
|
11
12
|
List,
|
|
12
13
|
Literal,
|
|
@@ -40,6 +41,9 @@ from .crypto import (
|
|
|
40
41
|
)
|
|
41
42
|
|
|
42
43
|
|
|
44
|
+
ABIType = Literal["function", "constructor", "fallback", "receive", "event", "error"]
|
|
45
|
+
|
|
46
|
+
|
|
43
47
|
def _align_abi_input(
|
|
44
48
|
arg_abi: ABIComponent, normalized_arg: Any
|
|
45
49
|
) -> Union[Any, Tuple[Any, ...]]:
|
|
@@ -278,6 +282,16 @@ def filter_abi_by_name(abi_name: str, contract_abi: ABI) -> Sequence[ABIElement]
|
|
|
278
282
|
]
|
|
279
283
|
|
|
280
284
|
|
|
285
|
+
__ABI_TYPE_LITERALS: Final = {
|
|
286
|
+
Literal["function"]: "function",
|
|
287
|
+
Literal["constructor"]: "constructor",
|
|
288
|
+
Literal["fallback"]: "fallback",
|
|
289
|
+
Literal["receive"]: "receive",
|
|
290
|
+
Literal["event"]: "event",
|
|
291
|
+
Literal["error"]: "error",
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
|
|
281
295
|
@overload
|
|
282
296
|
def filter_abi_by_type(
|
|
283
297
|
abi_type: Literal["function"],
|
|
@@ -327,9 +341,7 @@ def filter_abi_by_type(
|
|
|
327
341
|
|
|
328
342
|
|
|
329
343
|
def filter_abi_by_type(
|
|
330
|
-
abi_type:
|
|
331
|
-
"function", "constructor", "fallback", "receive", "event", "error"
|
|
332
|
-
],
|
|
344
|
+
abi_type: ABIType,
|
|
333
345
|
contract_abi: ABI,
|
|
334
346
|
) -> Union[
|
|
335
347
|
List[ABIFunction], List[ABIConstructor], List[ABIFallback], List[ABIReceive], List[ABIEvent], List[ABIError]
|
|
@@ -361,20 +373,12 @@ ABIEvent, ABIError]]`
|
|
|
361
373
|
[{'type': 'function', 'name': 'myFunction', 'inputs': [], 'outputs': []}, \
|
|
362
374
|
{'type': 'function', 'name': 'myFunction2', 'inputs': [], 'outputs': []}]
|
|
363
375
|
"""
|
|
364
|
-
if abi_type
|
|
365
|
-
return [abi for abi in contract_abi if abi["type"] ==
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
elif abi_type == Literal["fallback"] or abi_type == "fallback":
|
|
369
|
-
return [abi for abi in contract_abi if abi["type"] == "fallback"]
|
|
370
|
-
elif abi_type == Literal["receive"] or abi_type == "receive":
|
|
371
|
-
return [abi for abi in contract_abi if abi["type"] == "receive"]
|
|
372
|
-
elif abi_type == Literal["event"] or abi_type == "event":
|
|
373
|
-
return [abi for abi in contract_abi if abi["type"] == "event"]
|
|
374
|
-
elif abi_type == Literal["error"] or abi_type == "error":
|
|
375
|
-
return [abi for abi in contract_abi if abi["type"] == "error"]
|
|
376
|
-
else:
|
|
376
|
+
if abi_type in ("function", "constructor", "fallback", "receive", "event", "error"):
|
|
377
|
+
return [abi for abi in contract_abi if abi["type"] == abi_type] # type: ignore [return-value]
|
|
378
|
+
abi_type_string: Optional[ABIType] = __ABI_TYPE_LITERALS.get(abi_type) # type: ignore [call-overload]
|
|
379
|
+
if abi_type_string is None:
|
|
377
380
|
raise ValueError(f"Unsupported ABI type: {abi_type}")
|
|
381
|
+
return [abi for abi in contract_abi if abi["type"] == abi_type_string] # type: ignore [return-value]
|
|
378
382
|
|
|
379
383
|
|
|
380
384
|
def get_all_function_abis(contract_abi: ABI) -> Sequence[ABIFunction]:
|
|
Binary file
|
|
Binary file
|
faster_eth_utils/applicators.py
CHANGED
|
@@ -9,9 +9,14 @@ from typing import (
|
|
|
9
9
|
TypeVar,
|
|
10
10
|
Union,
|
|
11
11
|
cast,
|
|
12
|
+
overload,
|
|
12
13
|
)
|
|
13
14
|
import warnings
|
|
14
15
|
|
|
16
|
+
from typing_extensions import (
|
|
17
|
+
TypeGuard,
|
|
18
|
+
)
|
|
19
|
+
|
|
15
20
|
from .decorators import (
|
|
16
21
|
return_arg_type,
|
|
17
22
|
)
|
|
@@ -45,9 +50,9 @@ def apply_formatter_at_index(
|
|
|
45
50
|
f"Need: {at_index + 1}"
|
|
46
51
|
) from None
|
|
47
52
|
|
|
48
|
-
yield from value[:at_index]
|
|
53
|
+
yield from cast(Sequence[TOther], value[:at_index])
|
|
49
54
|
yield formatter(cast(TArg, item))
|
|
50
|
-
yield from value[at_index + 1 :]
|
|
55
|
+
yield from cast(Sequence[TOther], value[at_index + 1 :])
|
|
51
56
|
|
|
52
57
|
|
|
53
58
|
def combine_argument_formatters(*formatters: Callable[..., Any]) -> Formatters:
|
|
@@ -75,36 +80,49 @@ def combine_argument_formatters(*formatters: Callable[..., Any]) -> Formatters:
|
|
|
75
80
|
def apply_formatters_to_sequence(
|
|
76
81
|
formatters: List[Callable[[Any], TReturn]], sequence: Sequence[Any]
|
|
77
82
|
) -> Generator[TReturn, None, None]:
|
|
78
|
-
|
|
83
|
+
num_formatters = len(formatters)
|
|
84
|
+
num_items = len(sequence)
|
|
85
|
+
if num_formatters == num_items:
|
|
79
86
|
for formatter, item in zip(formatters, sequence):
|
|
80
87
|
yield formatter(item)
|
|
81
|
-
elif
|
|
88
|
+
elif num_formatters > num_items:
|
|
82
89
|
raise IndexError(
|
|
83
|
-
f"Too many formatters for sequence: {
|
|
84
|
-
f"{
|
|
90
|
+
f"Too many formatters for sequence: {num_formatters} formatters for "
|
|
91
|
+
f"{sequence!r}"
|
|
85
92
|
)
|
|
86
93
|
else:
|
|
87
94
|
raise IndexError(
|
|
88
|
-
f"Too few formatters for sequence: {
|
|
89
|
-
f"{
|
|
95
|
+
f"Too few formatters for sequence: {num_formatters} formatters for "
|
|
96
|
+
f"{sequence!r}"
|
|
90
97
|
)
|
|
91
98
|
|
|
92
99
|
|
|
100
|
+
@overload
|
|
101
|
+
def apply_formatter_if(
|
|
102
|
+
condition: Callable[[TArg], TypeGuard[TOther]], formatter: Callable[[TOther], TReturn], value: TArg
|
|
103
|
+
) -> Union[TArg, TReturn]: ...
|
|
104
|
+
|
|
105
|
+
@overload
|
|
93
106
|
def apply_formatter_if(
|
|
94
107
|
condition: Callable[[TArg], bool], formatter: Callable[[TArg], TReturn], value: TArg
|
|
108
|
+
) -> Union[TArg, TReturn]: ...
|
|
109
|
+
|
|
110
|
+
def apply_formatter_if( # type: ignore [misc]
|
|
111
|
+
condition: Union[Callable[[TArg], TypeGuard[TOther]], Callable[[TArg], bool]],
|
|
112
|
+
formatter: Union[Callable[[TOther], TReturn], Callable[[TArg], TReturn]],
|
|
113
|
+
value: TArg,
|
|
95
114
|
) -> Union[TArg, TReturn]:
|
|
96
115
|
if condition(value):
|
|
97
|
-
return formatter(value)
|
|
116
|
+
return formatter(value) # type: ignore [arg-type]
|
|
98
117
|
else:
|
|
99
118
|
return value
|
|
100
119
|
|
|
101
120
|
|
|
102
|
-
@to_dict
|
|
103
121
|
def apply_formatters_to_dict(
|
|
104
122
|
formatters: Dict[Any, Any],
|
|
105
123
|
value: Union[Dict[Any, Any], CamelModel],
|
|
106
124
|
unaliased: bool = False,
|
|
107
|
-
) ->
|
|
125
|
+
) -> Dict[Any, Any]:
|
|
108
126
|
"""
|
|
109
127
|
Apply formatters to a dictionary of values. If the value is a pydantic model,
|
|
110
128
|
it will be serialized to a dictionary first, taking into account the
|
|
@@ -119,22 +137,24 @@ def apply_formatters_to_dict(
|
|
|
119
137
|
if isinstance(value, CamelModel):
|
|
120
138
|
value = value.model_dump(by_alias=not unaliased)
|
|
121
139
|
|
|
122
|
-
|
|
123
|
-
if key in formatters:
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
)
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
140
|
+
def get_value(key: Any, item: Any) -> Any:
|
|
141
|
+
if key not in formatters:
|
|
142
|
+
return item
|
|
143
|
+
try:
|
|
144
|
+
return formatters[key](item)
|
|
145
|
+
except ValueError as exc:
|
|
146
|
+
raise ValueError(
|
|
147
|
+
f"Could not format invalid value {repr(item)} as field {repr(key)}"
|
|
148
|
+
) from exc
|
|
149
|
+
except TypeError as exc:
|
|
150
|
+
raise TypeError(
|
|
151
|
+
f"Could not format invalid type {repr(item)} as field {repr(key)}"
|
|
152
|
+
) from exc
|
|
153
|
+
|
|
154
|
+
return {
|
|
155
|
+
key: get_value(key, item) if key in formatters else key
|
|
156
|
+
for key, item in value.items()
|
|
157
|
+
}
|
|
138
158
|
|
|
139
159
|
|
|
140
160
|
@return_arg_type(1)
|
|
@@ -158,10 +178,9 @@ def apply_one_of_formatters(
|
|
|
158
178
|
)
|
|
159
179
|
|
|
160
180
|
|
|
161
|
-
@to_dict
|
|
162
181
|
def apply_key_map(
|
|
163
182
|
key_mappings: Dict[Any, Any], value: Dict[Any, Any]
|
|
164
|
-
) ->
|
|
183
|
+
) -> Dict[Any, Any]:
|
|
165
184
|
key_conflicts = (
|
|
166
185
|
set(value.keys())
|
|
167
186
|
.difference(key_mappings.keys())
|
|
@@ -172,8 +191,7 @@ def apply_key_map(
|
|
|
172
191
|
f"Could not apply key map due to conflicting key(s): {key_conflicts}"
|
|
173
192
|
)
|
|
174
193
|
|
|
175
|
-
|
|
176
|
-
if key in key_mappings
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
yield key, item
|
|
194
|
+
def get_key(key: Any) -> Any:
|
|
195
|
+
return key_mappings[key] if key in key_mappings else key
|
|
196
|
+
|
|
197
|
+
return {get_key(key): item for key, item in value.items()}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
faster_eth_utils/exceptions.py
CHANGED
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
|
|
1
|
+
"""
|
|
2
|
+
faster-eth-utils exceptions always inherit from eth-utils exceptions, so porting to faster-eth-utils
|
|
3
|
+
does not require any change to your existing exception handlers. They will continue to work.
|
|
4
|
+
"""
|
|
5
|
+
|
|
6
|
+
import eth_utils.exceptions
|
|
7
|
+
|
|
8
|
+
class ValidationError(eth_utils.exceptions.ValidationError):
|
|
2
9
|
"""
|
|
3
10
|
Raised when something does not pass a validation check.
|
|
4
11
|
"""
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
faster_eth_utils/pydantic.py
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: faster-eth-utils
|
|
3
|
-
Version: 5.3.
|
|
3
|
+
Version: 5.3.11
|
|
4
4
|
Summary: A fork of eth-utils: Common utility functions for python code that interacts with Ethereum, implemented in C
|
|
5
5
|
Home-page: https://github.com/BobTheBuidler/eth-utils
|
|
6
6
|
Author: The Ethereum Foundation
|
|
@@ -24,6 +24,7 @@ License-File: LICENSE
|
|
|
24
24
|
Requires-Dist: cchecksum>=0.0.3
|
|
25
25
|
Requires-Dist: eth-hash>=0.3.1
|
|
26
26
|
Requires-Dist: eth-typing>=5.0.0
|
|
27
|
+
Requires-Dist: eth-utils<6,>=5.2.0
|
|
27
28
|
Requires-Dist: toolz>0.8.2; implementation_name == "pypy"
|
|
28
29
|
Requires-Dist: cytoolz>=0.10.1; implementation_name == "cpython"
|
|
29
30
|
Requires-Dist: pydantic<3,>=2.0.0
|
|
@@ -40,7 +41,7 @@ Requires-Dist: wheel; extra == "dev"
|
|
|
40
41
|
Requires-Dist: sphinx>=6.0.0; extra == "dev"
|
|
41
42
|
Requires-Dist: sphinx-autobuild>=2021.3.14; extra == "dev"
|
|
42
43
|
Requires-Dist: sphinx_rtd_theme>=1.0.0; extra == "dev"
|
|
43
|
-
Requires-Dist: towncrier<
|
|
44
|
+
Requires-Dist: towncrier<26,>=24; extra == "dev"
|
|
44
45
|
Requires-Dist: hypothesis>=4.43.0; extra == "dev"
|
|
45
46
|
Requires-Dist: mypy==1.18.2; extra == "dev"
|
|
46
47
|
Requires-Dist: pytest>=7.0.0; extra == "dev"
|
|
@@ -50,7 +51,7 @@ Provides-Extra: docs
|
|
|
50
51
|
Requires-Dist: sphinx>=6.0.0; extra == "docs"
|
|
51
52
|
Requires-Dist: sphinx-autobuild>=2021.3.14; extra == "docs"
|
|
52
53
|
Requires-Dist: sphinx_rtd_theme>=1.0.0; extra == "docs"
|
|
53
|
-
Requires-Dist: towncrier<
|
|
54
|
+
Requires-Dist: towncrier<26,>=24; extra == "docs"
|
|
54
55
|
Provides-Extra: test
|
|
55
56
|
Requires-Dist: hypothesis>=4.43.0; extra == "test"
|
|
56
57
|
Requires-Dist: mypy==1.18.2; extra == "test"
|
|
@@ -79,10 +80,14 @@ Dynamic: summary
|
|
|
79
80
|
|
|
80
81
|
##### This fork will be kept up-to-date with [eth-utils](https://github.com/ethereum/eth-utils). I will pull updates as they are released and push new [faster-eth-utils](https://github.com/BobTheBuidler/faster-eth-utils) releases to [PyPI](https://pypi.org/project/faster-eth-utils/).
|
|
81
82
|
|
|
82
|
-
#####
|
|
83
|
+
##### Starting in [v5.3.11](https://github.com/BobTheBuidler/faster-eth-utils/releases/tag/v5.3.11), all `faster-eth-utils` Exception classes inherit from the matching Exception class in `eth-utils`, so porting to `faster-eth-utils` does not require any change to your existing exception handlers. All existing exception handling in your codebase will continue to work as it did when originaly implemented.
|
|
83
84
|
|
|
84
85
|
##### We benchmark `faster-eth-utils` against the original `eth-utils` for your convenience. [See results](https://github.com/BobTheBuidler/faster-eth-utils/tree/master/benchmarks/results).
|
|
85
86
|
|
|
87
|
+
##### You can find the compiled C code on faster-eth-utils [master](https://github.com/BobTheBuidler/eth-utils/tree/master) branch.
|
|
88
|
+
|
|
89
|
+
###### You may also be interested in: [faster-web3.py](https://github.com/BobTheBuidler/faster-web3.py/), [faster-eth-abi](https://github.com/BobTheBuidler/faster-eth-abi/), and [faster-hexbytes](https://github.com/BobTheBuidler/faster-hexbytes/)
|
|
90
|
+
|
|
86
91
|
##### The original eth-utils readme is below:
|
|
87
92
|
|
|
88
93
|
# Ethereum Utilities
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
faster_eth_utils__mypyc.cpython-39-i386-linux-gnu.so,sha256=rbLzjTH850X0LEPFLoJFiIaoSEsJNWJUrOXVgNNcZ7I,1401336
|
|
2
|
+
faster_eth_utils/__init__.py,sha256=hW-A_fjyQ76crTKwuxxSbvNzvPfW27dSlzhtOkseymg,2762
|
|
3
|
+
faster_eth_utils/__main__.py,sha256=mH37e49q7_A0-q1ymqkq1QyYABbQHVmXeuSKIBSahO8,86
|
|
4
|
+
faster_eth_utils/abi.cpython-39-i386-linux-gnu.so,sha256=owDVmVaLw4twfp6OC1JxepFs6UBAumg5HCrT67dKNp4,16560
|
|
5
|
+
faster_eth_utils/abi.py,sha256=3pAqpKXMOcOLCD4uUUVfxBcM9H1K311dpd1Zj0Qi21g,26404
|
|
6
|
+
faster_eth_utils/address.cpython-39-i386-linux-gnu.so,sha256=9SoCIoMMzroHB9Kk5FDA57X2BdASKnUXg7pMiKXfw5E,16576
|
|
7
|
+
faster_eth_utils/address.py,sha256=IIHlYuIz-F6-mAnRWdsD4uH5l56yVRFMokFQINao9lE,3680
|
|
8
|
+
faster_eth_utils/applicators.cpython-39-i386-linux-gnu.so,sha256=P4nHPu9DuVc8R9FF7xdlVN9APQ8qh3kG0Ffg-Y0lzbA,16592
|
|
9
|
+
faster_eth_utils/applicators.py,sha256=LEffyul-ZdsAhNB7H7E6e-J4fXw7bUt0NxrkjZWMHkA,5833
|
|
10
|
+
faster_eth_utils/conversions.cpython-39-i386-linux-gnu.so,sha256=-3hYoPP9-bSXnGj570Ul_RfjquVcKw2gVux7BpNHg3M,16592
|
|
11
|
+
faster_eth_utils/conversions.py,sha256=t2TEe0WsffqOFDbyQcERTSbHJYpDBWHKd8XPArhLoEE,5665
|
|
12
|
+
faster_eth_utils/crypto.cpython-39-i386-linux-gnu.so,sha256=8YJmV3Lkh2yXWZzNateDpGh85Yree-cxjBaMTGLDv3k,16572
|
|
13
|
+
faster_eth_utils/crypto.py,sha256=EQgupom_TnURbLNXodwbJoKB-mHyxgOTvo8EjnSzdxw,395
|
|
14
|
+
faster_eth_utils/currency.cpython-39-i386-linux-gnu.so,sha256=1SbEZ4A3vtsNvz2JPtmqC7yRWkZrrzmCARsKPdqd9l0,16580
|
|
15
|
+
faster_eth_utils/currency.py,sha256=01YVV2f2GL4830jfSjnC4XhLQjTNQB-5y7vbGzaMWbM,4150
|
|
16
|
+
faster_eth_utils/debug.cpython-39-i386-linux-gnu.so,sha256=XQFUA8ZRfSsshq_8aOjMtuB4iXllGHOsGEI77GvgQV0,16568
|
|
17
|
+
faster_eth_utils/debug.py,sha256=0Z-tNOqgQJunS4uHeSCCH1LWLoijlH34MBh6NRrrDrk,499
|
|
18
|
+
faster_eth_utils/decorators.cpython-39-i386-linux-gnu.so,sha256=pqdjWq9bJmD0pJUHn7y6YC1rILsKA-ylwN_29_lTA4Y,16588
|
|
19
|
+
faster_eth_utils/decorators.py,sha256=BdAz-imQIf0TlBm7Di7T05o3IC6ei-xJc7FgIOqqAyE,2145
|
|
20
|
+
faster_eth_utils/encoding.cpython-39-i386-linux-gnu.so,sha256=5p84WDSwYpcomkdpI6wNO8wQSDn4nItQ0h_WG2cUTJw,16580
|
|
21
|
+
faster_eth_utils/encoding.py,sha256=1qfDeuinLZ01XjYgknpm_p9LuWwaYvicYkYI8mS1iMc,199
|
|
22
|
+
faster_eth_utils/exceptions.cpython-39-i386-linux-gnu.so,sha256=YL01oXaStYEVwekVuXTwZL0kwNbhX-jTqg7lUxBc73Q,16588
|
|
23
|
+
faster_eth_utils/exceptions.py,sha256=7Cjxewj4g95RxNvjNqaB2w3HGk6068V82ppCHS_S-Y0,369
|
|
24
|
+
faster_eth_utils/functional.cpython-39-i386-linux-gnu.so,sha256=nuu9qIrtRHLbwUC4yOVxgrrxlnPTSdbvNR3I53mvoZ0,16588
|
|
25
|
+
faster_eth_utils/functional.py,sha256=nJTxE4_HDci0chos5mQdy05pJ8o7n0wx_o7_WCro2gI,2449
|
|
26
|
+
faster_eth_utils/hexadecimal.cpython-39-i386-linux-gnu.so,sha256=FceMgghWFKO69z3dYWIMhYYj0Mt67joBqSrsVdh0I30,16592
|
|
27
|
+
faster_eth_utils/hexadecimal.py,sha256=bPxUdJse6A3j3vF6KpnvSM2h3eRhgWSWeyicwnLdvHY,2082
|
|
28
|
+
faster_eth_utils/humanize.cpython-39-i386-linux-gnu.so,sha256=L--UTut-_ZrLTQn27cPKWZHJsXwoUbGqfirPbb6c8DQ,16580
|
|
29
|
+
faster_eth_utils/humanize.py,sha256=bCxXyx73NuVIDjRnpPZs7lybfrun-llC3ITy-0zZSns,4682
|
|
30
|
+
faster_eth_utils/logging.py,sha256=Gm0B2D7oDPByi-mNCEwLnl3lAU4_TJ4yc6EsOOJA8Rc,4590
|
|
31
|
+
faster_eth_utils/module_loading.cpython-39-i386-linux-gnu.so,sha256=g8HgbJqv3esTvKfBJyfYrNRHS6XsOQiXCHgueA63PZE,16604
|
|
32
|
+
faster_eth_utils/module_loading.py,sha256=DCLM4dEh1gqr8Ny-FWwD-_pINqeHzbLSupz4ZIpCCAw,842
|
|
33
|
+
faster_eth_utils/network.cpython-39-i386-linux-gnu.so,sha256=1PMiUALGmvhXorTRS2-dy_SCkFDLqb_YVhYCQ9AN6G4,16576
|
|
34
|
+
faster_eth_utils/network.py,sha256=O3yTtA93YyyZ6Obkusr_IbbcZ6upkCewN6EsAcF0Npc,2278
|
|
35
|
+
faster_eth_utils/numeric.cpython-39-i386-linux-gnu.so,sha256=7YhxEMIykBseRj_uBkuwkJF-XyMK77qLbWqzCxc6ixk,16576
|
|
36
|
+
faster_eth_utils/numeric.py,sha256=RrXdXI-bhhkEsz3aBtxHuGlc_2ZJvUGpvMc47wx408Y,1190
|
|
37
|
+
faster_eth_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
38
|
+
faster_eth_utils/pydantic.py,sha256=za0WJGWkjYQkRnMbEke7ueyhDt-kuqFmCq0Utaji46g,3393
|
|
39
|
+
faster_eth_utils/toolz.cpython-39-i386-linux-gnu.so,sha256=SM_7vF5aPTmAecW8o0f8RMDp65hKBbd5GrMx2ij5WSA,16568
|
|
40
|
+
faster_eth_utils/toolz.py,sha256=1QQY-aMbZrEgJsuqR0Ajsa32C_cXrQquzViw7OkxNLU,4410
|
|
41
|
+
faster_eth_utils/types.cpython-39-i386-linux-gnu.so,sha256=FIAK0pAe-rdYAdckoAAYVqkwGEXxyDBoZVlc9yLPkT8,16568
|
|
42
|
+
faster_eth_utils/types.py,sha256=-RDPzkoNhkp3dpDNK9iKzGmSQawwZ6wJ4exur0E_BuY,1519
|
|
43
|
+
faster_eth_utils/units.cpython-39-i386-linux-gnu.so,sha256=6noY8lZcVx-aIxpNHyvQqAbNB_yjWxj_XNk_hN29TEs,16568
|
|
44
|
+
faster_eth_utils/units.py,sha256=jRo8p6trxwuISBnT8kfxTNVyd_TSd5vVY5aiKDefB1U,1757
|
|
45
|
+
faster_eth_utils/__json/eth_networks.json,sha256=0S8HoWD6RTR6Hc0uQdQl2VHtopytIYl5NiDAzpuskBs,414773
|
|
46
|
+
faster_eth_utils/curried/__init__.py,sha256=x_nPjvTwmXeEl5jV86RRUvudu6ks1kMUxZfbjNuGx8Y,7407
|
|
47
|
+
faster_eth_utils/typing/__init__.py,sha256=84PxIxCvEHtBb-Ik6qnGvXH4alaWbamr_zDbtlbJh3A,325
|
|
48
|
+
faster_eth_utils/typing/misc.py,sha256=4N5raYXFAeRGpmch6qgHrtYNCDxCJM5XtAAsJ1FSzzU,190
|
|
49
|
+
faster_eth_utils-5.3.11.dist-info/METADATA,sha256=mWz6FEZ0Mh9sRbTKYAx0Lgohpb_fpXSIB6IzYmwd0GA,7788
|
|
50
|
+
faster_eth_utils-5.3.11.dist-info/WHEEL,sha256=6ZxVm38Ue7sbjv6r5hodKXk_rM6NU79rgzT63FMisdY,108
|
|
51
|
+
faster_eth_utils-5.3.11.dist-info/top_level.txt,sha256=wTH6UCItCCvEEiJ9EiOrm0Kn4p4xhB7VdmmTHktoo9Y,51
|
|
52
|
+
faster_eth_utils-5.3.11.dist-info/RECORD,,
|
|
53
|
+
faster_eth_utils-5.3.11.dist-info/licenses/LICENSE,sha256=STqznQ6A8OeJylPrTA7dlsMtH0isQQybRlnDZOKGVrM,1095
|
|
Binary file
|
|
Binary file
|
|
@@ -1,53 +0,0 @@
|
|
|
1
|
-
99c07adba6ff961eaf3e__mypyc.cpython-39-i386-linux-gnu.so,sha256=fQTyGgLyZZtK9GC_xjV0yRXqiwp9Dpde5X-Jq0adiLE,1421528
|
|
2
|
-
faster_eth_utils/__init__.py,sha256=hW-A_fjyQ76crTKwuxxSbvNzvPfW27dSlzhtOkseymg,2762
|
|
3
|
-
faster_eth_utils/__main__.py,sha256=mH37e49q7_A0-q1ymqkq1QyYABbQHVmXeuSKIBSahO8,86
|
|
4
|
-
faster_eth_utils/abi.cpython-39-i386-linux-gnu.so,sha256=K5Q2sLI0G-HGrZFaUJ3ZZ8M1LQkBbq3Z-agn_LAqRZA,16560
|
|
5
|
-
faster_eth_utils/abi.py,sha256=2Lk78YiWLIG_srH2nTYny8tYrxM7JS-zWNpBe8ACMEs,26544
|
|
6
|
-
faster_eth_utils/address.cpython-39-i386-linux-gnu.so,sha256=h0XZ9b6SCAamqPwCmss0obAkcYTs6I0VefT6LmkxQLw,16576
|
|
7
|
-
faster_eth_utils/address.py,sha256=IIHlYuIz-F6-mAnRWdsD4uH5l56yVRFMokFQINao9lE,3680
|
|
8
|
-
faster_eth_utils/applicators.cpython-39-i386-linux-gnu.so,sha256=9yVuxlvj9Cj3q2taWkUjfkjgoojD5Dem7J4gwOwVzr4,16592
|
|
9
|
-
faster_eth_utils/applicators.py,sha256=2BKYgRaXgUhA1sCMApuJvN6Qy59LBDkUzQcQkJdknJA,5301
|
|
10
|
-
faster_eth_utils/conversions.cpython-39-i386-linux-gnu.so,sha256=7m44AxrNX3BRId6vyWz0xOnGPOcfCOQUypxjBuBuK0U,16592
|
|
11
|
-
faster_eth_utils/conversions.py,sha256=t2TEe0WsffqOFDbyQcERTSbHJYpDBWHKd8XPArhLoEE,5665
|
|
12
|
-
faster_eth_utils/crypto.cpython-39-i386-linux-gnu.so,sha256=nxiwxXkTUI1ajUxLp0-YWYzWvBepfR4o1WF1T6Kedpk,16572
|
|
13
|
-
faster_eth_utils/crypto.py,sha256=EQgupom_TnURbLNXodwbJoKB-mHyxgOTvo8EjnSzdxw,395
|
|
14
|
-
faster_eth_utils/currency.cpython-39-i386-linux-gnu.so,sha256=u0TvJk83sEe8ahm0AEPxYOSZZsWWt4XxbZSpy6aJGEY,16580
|
|
15
|
-
faster_eth_utils/currency.py,sha256=01YVV2f2GL4830jfSjnC4XhLQjTNQB-5y7vbGzaMWbM,4150
|
|
16
|
-
faster_eth_utils/debug.cpython-39-i386-linux-gnu.so,sha256=OoVYuVpIHS5lNblXnn6faqIsBO2ufxKEk4wOEO6jpXA,16568
|
|
17
|
-
faster_eth_utils/debug.py,sha256=0Z-tNOqgQJunS4uHeSCCH1LWLoijlH34MBh6NRrrDrk,499
|
|
18
|
-
faster_eth_utils/decorators.cpython-39-i386-linux-gnu.so,sha256=xTgabps4jX8M11MH1cOD0VzHHNxaJ7azsjgFcBIJDyE,16588
|
|
19
|
-
faster_eth_utils/decorators.py,sha256=BdAz-imQIf0TlBm7Di7T05o3IC6ei-xJc7FgIOqqAyE,2145
|
|
20
|
-
faster_eth_utils/encoding.cpython-39-i386-linux-gnu.so,sha256=f6lJM-zGFs9phb22tHlfIGTpslJeEo8DxUUPdC9FokY,16580
|
|
21
|
-
faster_eth_utils/encoding.py,sha256=1qfDeuinLZ01XjYgknpm_p9LuWwaYvicYkYI8mS1iMc,199
|
|
22
|
-
faster_eth_utils/exceptions.cpython-39-i386-linux-gnu.so,sha256=F4K-ocb7IsIgfBOgGVaM6I_q9iyRykuoJF5nVbF4wvg,16588
|
|
23
|
-
faster_eth_utils/exceptions.py,sha256=3ndM6zl4QoSc6GupV9T1Klz9TByM8w2zr4ez8UJvzew,110
|
|
24
|
-
faster_eth_utils/functional.cpython-39-i386-linux-gnu.so,sha256=JBpLNC5zjhRS9JfvS3V3-ddPinhCLQd1prVhd4udlzI,16588
|
|
25
|
-
faster_eth_utils/functional.py,sha256=nJTxE4_HDci0chos5mQdy05pJ8o7n0wx_o7_WCro2gI,2449
|
|
26
|
-
faster_eth_utils/hexadecimal.cpython-39-i386-linux-gnu.so,sha256=F1GwbFqmh-WebaA7qkg_H3k3NJkhbwqEe3dB1MKfNm0,16592
|
|
27
|
-
faster_eth_utils/hexadecimal.py,sha256=bPxUdJse6A3j3vF6KpnvSM2h3eRhgWSWeyicwnLdvHY,2082
|
|
28
|
-
faster_eth_utils/humanize.cpython-39-i386-linux-gnu.so,sha256=ay04U3_yu_nXyfCL02QZW1nKolfdP8f9AscjEWVCXZY,16580
|
|
29
|
-
faster_eth_utils/humanize.py,sha256=bCxXyx73NuVIDjRnpPZs7lybfrun-llC3ITy-0zZSns,4682
|
|
30
|
-
faster_eth_utils/logging.py,sha256=Gm0B2D7oDPByi-mNCEwLnl3lAU4_TJ4yc6EsOOJA8Rc,4590
|
|
31
|
-
faster_eth_utils/module_loading.cpython-39-i386-linux-gnu.so,sha256=PDp2isMCPJj36XQjEUgToAIHael4seO_A3a2hie4MAs,16604
|
|
32
|
-
faster_eth_utils/module_loading.py,sha256=DCLM4dEh1gqr8Ny-FWwD-_pINqeHzbLSupz4ZIpCCAw,842
|
|
33
|
-
faster_eth_utils/network.cpython-39-i386-linux-gnu.so,sha256=WVeLzTYuPLQYdO-KVRwbsiP9MTf0NpcUQksKOhJh3Vs,16576
|
|
34
|
-
faster_eth_utils/network.py,sha256=O3yTtA93YyyZ6Obkusr_IbbcZ6upkCewN6EsAcF0Npc,2278
|
|
35
|
-
faster_eth_utils/numeric.cpython-39-i386-linux-gnu.so,sha256=JimwkcvHtiwsoj_Gx1wUtE4DOya_M1j6mM2UGv-wtw4,16576
|
|
36
|
-
faster_eth_utils/numeric.py,sha256=RrXdXI-bhhkEsz3aBtxHuGlc_2ZJvUGpvMc47wx408Y,1190
|
|
37
|
-
faster_eth_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
38
|
-
faster_eth_utils/pydantic.py,sha256=Bmj9J-Nia0bv5PvaFxxncyW9KrCNtsbDyf2PV4jPmUo,3366
|
|
39
|
-
faster_eth_utils/toolz.cpython-39-i386-linux-gnu.so,sha256=u0F44lTpJ-iOvm4RmHN7EP9YY_SELFjjKdLcJ7m-nbE,16568
|
|
40
|
-
faster_eth_utils/toolz.py,sha256=1QQY-aMbZrEgJsuqR0Ajsa32C_cXrQquzViw7OkxNLU,4410
|
|
41
|
-
faster_eth_utils/types.cpython-39-i386-linux-gnu.so,sha256=3EQJ--YvF0j-KQNp3hICIYz-L-6YKv5M9Mio2gPkejo,16568
|
|
42
|
-
faster_eth_utils/types.py,sha256=-RDPzkoNhkp3dpDNK9iKzGmSQawwZ6wJ4exur0E_BuY,1519
|
|
43
|
-
faster_eth_utils/units.cpython-39-i386-linux-gnu.so,sha256=WVzvf3BPFsSt4MhboXmL_BEPm0bA8vjBsp4mRDeOp0k,16568
|
|
44
|
-
faster_eth_utils/units.py,sha256=jRo8p6trxwuISBnT8kfxTNVyd_TSd5vVY5aiKDefB1U,1757
|
|
45
|
-
faster_eth_utils/__json/eth_networks.json,sha256=0S8HoWD6RTR6Hc0uQdQl2VHtopytIYl5NiDAzpuskBs,414773
|
|
46
|
-
faster_eth_utils/curried/__init__.py,sha256=x_nPjvTwmXeEl5jV86RRUvudu6ks1kMUxZfbjNuGx8Y,7407
|
|
47
|
-
faster_eth_utils/typing/__init__.py,sha256=84PxIxCvEHtBb-Ik6qnGvXH4alaWbamr_zDbtlbJh3A,325
|
|
48
|
-
faster_eth_utils/typing/misc.py,sha256=4N5raYXFAeRGpmch6qgHrtYNCDxCJM5XtAAsJ1FSzzU,190
|
|
49
|
-
faster_eth_utils-5.3.9.dist-info/METADATA,sha256=7TPPCO8PBRlno3m0Yay89SjK5b2SQ9EjEOksQb74RQQ,7096
|
|
50
|
-
faster_eth_utils-5.3.9.dist-info/WHEEL,sha256=6ZxVm38Ue7sbjv6r5hodKXk_rM6NU79rgzT63FMisdY,108
|
|
51
|
-
faster_eth_utils-5.3.9.dist-info/top_level.txt,sha256=8eOy3WlvVLCcmwPnl2UMylYQNmrXz76p9L_TH-NYSSM,55
|
|
52
|
-
faster_eth_utils-5.3.9.dist-info/RECORD,,
|
|
53
|
-
faster_eth_utils-5.3.9.dist-info/licenses/LICENSE,sha256=STqznQ6A8OeJylPrTA7dlsMtH0isQQybRlnDZOKGVrM,1095
|
|
File without changes
|
|
File without changes
|