wayfinder-paths 0.1.24__py3-none-any.whl → 0.1.25__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 wayfinder-paths might be problematic. Click here for more details.
- wayfinder_paths/__init__.py +2 -0
- wayfinder_paths/core/__init__.py +2 -0
- {wayfinder_paths-0.1.24.dist-info → wayfinder_paths-0.1.25.dist-info}/METADATA +2 -3
- {wayfinder_paths-0.1.24.dist-info → wayfinder_paths-0.1.25.dist-info}/RECORD +6 -6
- {wayfinder_paths-0.1.24.dist-info → wayfinder_paths-0.1.25.dist-info}/WHEEL +1 -1
- {wayfinder_paths-0.1.24.dist-info → wayfinder_paths-0.1.25.dist-info}/LICENSE +0 -0
wayfinder_paths/__init__.py
CHANGED
|
@@ -2,6 +2,7 @@ __version__ = "0.1.0"
|
|
|
2
2
|
|
|
3
3
|
from wayfinder_paths.core import (
|
|
4
4
|
BaseAdapter,
|
|
5
|
+
LiquidationResult,
|
|
5
6
|
StatusDict,
|
|
6
7
|
StatusTuple,
|
|
7
8
|
Strategy,
|
|
@@ -10,6 +11,7 @@ from wayfinder_paths.core import (
|
|
|
10
11
|
__all__ = [
|
|
11
12
|
"__version__",
|
|
12
13
|
"BaseAdapter",
|
|
14
|
+
"LiquidationResult",
|
|
13
15
|
"Strategy",
|
|
14
16
|
"StatusDict",
|
|
15
17
|
"StatusTuple",
|
wayfinder_paths/core/__init__.py
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
from wayfinder_paths.core.adapters.BaseAdapter import BaseAdapter
|
|
2
2
|
from wayfinder_paths.core.strategies.Strategy import (
|
|
3
|
+
LiquidationResult,
|
|
3
4
|
StatusDict,
|
|
4
5
|
StatusTuple,
|
|
5
6
|
Strategy,
|
|
@@ -7,6 +8,7 @@ from wayfinder_paths.core.strategies.Strategy import (
|
|
|
7
8
|
|
|
8
9
|
__all__ = [
|
|
9
10
|
"Strategy",
|
|
11
|
+
"LiquidationResult",
|
|
10
12
|
"StatusDict",
|
|
11
13
|
"StatusTuple",
|
|
12
14
|
"BaseAdapter",
|
|
@@ -1,13 +1,12 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
2
|
Name: wayfinder-paths
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.25
|
|
4
4
|
Summary: Wayfinder Path: strategies and adapters
|
|
5
5
|
Author: Wayfinder
|
|
6
6
|
Author-email: dev@wayfinder.ai
|
|
7
7
|
Requires-Python: >=3.12,<4.0
|
|
8
8
|
Classifier: Programming Language :: Python :: 3
|
|
9
9
|
Classifier: Programming Language :: Python :: 3.12
|
|
10
|
-
Classifier: Programming Language :: Python :: 3.13
|
|
11
10
|
Requires-Dist: aiocache (>=0.12.3,<0.13.0)
|
|
12
11
|
Requires-Dist: aiohttp (>=3.13.0,<4.0.0)
|
|
13
12
|
Requires-Dist: eth-account (>=0.13.7,<0.14.0)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
wayfinder_paths/__init__.py,sha256=
|
|
1
|
+
wayfinder_paths/__init__.py,sha256=Qi-4SLA6bBSwQgxwcFcZhgaCj7K2DN69_e4ipLxQMHo,278
|
|
2
2
|
wayfinder_paths/adapters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
3
|
wayfinder_paths/adapters/balance_adapter/README.md,sha256=xek-ZekUPDCUEiyciSYHOp3Z_QA1bgEW1RzXvwTySVE,2363
|
|
4
4
|
wayfinder_paths/adapters/balance_adapter/adapter.py,sha256=__gVhz2agQjjptPuXG4vuJEnLvqDHLYnDoBLAvGxyQc,16897
|
|
@@ -68,7 +68,7 @@ wayfinder_paths/adapters/token_adapter/examples.json,sha256=t4BYKxpkz4zASO91TbjZ
|
|
|
68
68
|
wayfinder_paths/adapters/token_adapter/manifest.yaml,sha256=KR6msMamsFW6aMlpYeYeguuA_4ppj1h4_JAiS8EJYpc,162
|
|
69
69
|
wayfinder_paths/adapters/token_adapter/test_adapter.py,sha256=jDenD0BYbbb_xE3jKrA84io8iVEcvjk5SExf6UjQ410,3980
|
|
70
70
|
wayfinder_paths/conftest.py,sha256=LaCl5qQ5K41O2U7jPI4Tx4EYR7EWj05ZvNeQqYDVKqI,853
|
|
71
|
-
wayfinder_paths/core/__init__.py,sha256=
|
|
71
|
+
wayfinder_paths/core/__init__.py,sha256=q7wKxLea5W_Z9qjYtq_nVYgLMhnYjLxarxDKmPsr3QY,305
|
|
72
72
|
wayfinder_paths/core/adapters/BaseAdapter.py,sha256=QlpZswyBTeE6cI9nEvAQvxEUCER7htSZMMHyuy_T7lE,418
|
|
73
73
|
wayfinder_paths/core/adapters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
74
74
|
wayfinder_paths/core/adapters/models.py,sha256=_d4ir3iHGbkTUyLOK6babxocYcjlBX9rXh6udPiN4Y0,1363
|
|
@@ -179,7 +179,7 @@ wayfinder_paths/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3h
|
|
|
179
179
|
wayfinder_paths/tests/test_mcp_quote_swap.py,sha256=kRYLfAD5WZ4myqNdFxZ9wZ0NMDFgZpriCIkPQA1B1L8,5475
|
|
180
180
|
wayfinder_paths/tests/test_test_coverage.py,sha256=ZU0zhlm1PllvQkrnESPtEVdr-VcFDT6EtPiPRreLukk,7118
|
|
181
181
|
wayfinder_paths/tests/test_utils.py,sha256=VzweYVaO20deZOwR8RKGYFrDnKTW0gZLm3dBwZiMK28,1015
|
|
182
|
-
wayfinder_paths-0.1.
|
|
183
|
-
wayfinder_paths-0.1.
|
|
184
|
-
wayfinder_paths-0.1.
|
|
185
|
-
wayfinder_paths-0.1.
|
|
182
|
+
wayfinder_paths-0.1.25.dist-info/LICENSE,sha256=dYKnlkC_xosBAEQNUvB6cHMuhFgcUtN0oBR7E8_aR2Y,1066
|
|
183
|
+
wayfinder_paths-0.1.25.dist-info/METADATA,sha256=_E182S_vewy08kpbsq6XKsJ_CnpWP_6wyQBrUGBieZY,14422
|
|
184
|
+
wayfinder_paths-0.1.25.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
|
|
185
|
+
wayfinder_paths-0.1.25.dist-info/RECORD,,
|
|
File without changes
|