wayfinder-paths 0.1.24__py3-none-any.whl → 0.1.27__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/adapters/brap_adapter/adapter.py +7 -47
- wayfinder_paths/adapters/hyperlend_adapter/adapter.py +10 -31
- wayfinder_paths/adapters/hyperliquid_adapter/adapter.py +128 -60
- wayfinder_paths/adapters/hyperliquid_adapter/exchange.py +399 -0
- wayfinder_paths/adapters/hyperliquid_adapter/executor.py +74 -0
- wayfinder_paths/adapters/hyperliquid_adapter/local_signer.py +82 -0
- wayfinder_paths/adapters/hyperliquid_adapter/test_adapter.py +1 -1
- wayfinder_paths/adapters/hyperliquid_adapter/test_adapter_live.py +1 -1
- wayfinder_paths/adapters/hyperliquid_adapter/util.py +237 -0
- wayfinder_paths/adapters/pendle_adapter/adapter.py +19 -55
- wayfinder_paths/adapters/pendle_adapter/test_adapter.py +14 -46
- wayfinder_paths/core/__init__.py +2 -0
- wayfinder_paths/core/clients/BalanceClient.py +72 -0
- wayfinder_paths/core/clients/TokenClient.py +1 -1
- wayfinder_paths/core/clients/__init__.py +2 -0
- wayfinder_paths/core/strategies/Strategy.py +3 -3
- wayfinder_paths/core/types.py +19 -0
- wayfinder_paths/core/utils/tokens.py +19 -1
- wayfinder_paths/core/utils/transaction.py +9 -7
- wayfinder_paths/mcp/tools/balances.py +122 -214
- wayfinder_paths/mcp/tools/execute.py +63 -41
- wayfinder_paths/mcp/tools/quotes.py +16 -5
- wayfinder_paths/strategies/basis_trading_strategy/strategy.py +6 -22
- wayfinder_paths/strategies/boros_hype_strategy/boros_ops_mixin.py +227 -33
- wayfinder_paths/strategies/boros_hype_strategy/constants.py +17 -1
- wayfinder_paths/strategies/boros_hype_strategy/hyperevm_ops_mixin.py +44 -1
- wayfinder_paths/strategies/boros_hype_strategy/planner.py +87 -32
- wayfinder_paths/strategies/boros_hype_strategy/risk_ops_mixin.py +50 -28
- wayfinder_paths/strategies/boros_hype_strategy/strategy.py +71 -50
- wayfinder_paths/strategies/boros_hype_strategy/test_planner_golden.py +3 -1
- wayfinder_paths/strategies/boros_hype_strategy/test_strategy.py +0 -2
- wayfinder_paths/strategies/boros_hype_strategy/types.py +4 -1
- wayfinder_paths/strategies/hyperlend_stable_yield_strategy/strategy.py +0 -2
- wayfinder_paths/strategies/hyperlend_stable_yield_strategy/test_strategy.py +0 -2
- wayfinder_paths/strategies/moonwell_wsteth_loop_strategy/strategy.py +0 -2
- wayfinder_paths/strategies/moonwell_wsteth_loop_strategy/test_strategy.py +0 -2
- wayfinder_paths/strategies/stablecoin_yield_strategy/strategy.py +0 -2
- wayfinder_paths/strategies/stablecoin_yield_strategy/test_strategy.py +0 -2
- wayfinder_paths/tests/test_mcp_quote_swap.py +3 -3
- {wayfinder_paths-0.1.24.dist-info → wayfinder_paths-0.1.27.dist-info}/METADATA +2 -3
- {wayfinder_paths-0.1.24.dist-info → wayfinder_paths-0.1.27.dist-info}/RECORD +44 -39
- {wayfinder_paths-0.1.24.dist-info → wayfinder_paths-0.1.27.dist-info}/WHEEL +1 -1
- {wayfinder_paths-0.1.24.dist-info → wayfinder_paths-0.1.27.dist-info}/LICENSE +0 -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
|
|
@@ -16,23 +16,26 @@ wayfinder_paths/adapters/boros_adapter/types.py,sha256=SJN1cUUZF9-_HZaa8TIsLbsOv
|
|
|
16
16
|
wayfinder_paths/adapters/boros_adapter/utils.py,sha256=fQY0AclEJbxFU4QHFcDsyRkEFPr2C3t6Mwp1FwtHfoU,2259
|
|
17
17
|
wayfinder_paths/adapters/brap_adapter/README.md,sha256=ZzVTYvVmQ-J8PakH2iy_oBKT1YwTEhkOtluCpZFcK1Q,1466
|
|
18
18
|
wayfinder_paths/adapters/brap_adapter/__init__.py,sha256=Hx4JW1tDijXS5YQhVliE0syw1RD1YKO2MM37wN_to9M,60
|
|
19
|
-
wayfinder_paths/adapters/brap_adapter/adapter.py,sha256=
|
|
19
|
+
wayfinder_paths/adapters/brap_adapter/adapter.py,sha256=oPJi1hhPg8cW4ypPQSxo5KV7jas24n8SZa2SIXbDxFU,9358
|
|
20
20
|
wayfinder_paths/adapters/brap_adapter/examples.json,sha256=XBr7JqtSLyECs9XywZ6oJ9OXJ0TaPPpwCzHcqQZOxCg,1994
|
|
21
21
|
wayfinder_paths/adapters/brap_adapter/manifest.yaml,sha256=nerZ7ShLAuV-ebTby0LJjOrxDEkp37Ku7wW78ZOX1Yw,209
|
|
22
22
|
wayfinder_paths/adapters/brap_adapter/test_adapter.py,sha256=YZq6I0S895ZKPbwv_TbdPjwlIfRVIRf-DVqQhitIvqc,2924
|
|
23
23
|
wayfinder_paths/adapters/hyperlend_adapter/__init__.py,sha256=IDgYOx5rF2Zd8DjZ_VzmZc6EUGS34SfIVQ_M1PdZ0YQ,112
|
|
24
|
-
wayfinder_paths/adapters/hyperlend_adapter/adapter.py,sha256=
|
|
24
|
+
wayfinder_paths/adapters/hyperlend_adapter/adapter.py,sha256=knEb5j1kNZvOeus-4gyWPp9y9EgpN8wJTGw18ecWt1c,11243
|
|
25
25
|
wayfinder_paths/adapters/hyperlend_adapter/manifest.yaml,sha256=M0xfk0KPpILSo-XtFgwFKIy-HZHunzBnXakh6yU_R_I,238
|
|
26
26
|
wayfinder_paths/adapters/hyperlend_adapter/test_adapter.py,sha256=QYpXpxSw-aG20DXPbNowPZs8Z9BnACa-OO8mc0EaR9I,13677
|
|
27
27
|
wayfinder_paths/adapters/hyperliquid_adapter/__init__.py,sha256=8kOiGrmGvk8BR16wHxVo1qaWwAQSTQbkcJg0cW46RCE,288
|
|
28
|
-
wayfinder_paths/adapters/hyperliquid_adapter/adapter.py,sha256=
|
|
29
|
-
wayfinder_paths/adapters/hyperliquid_adapter/
|
|
28
|
+
wayfinder_paths/adapters/hyperliquid_adapter/adapter.py,sha256=dmd6vpkSC5aOSrIx9T3EWutNklDyLm45K2djXjV92oE,46146
|
|
29
|
+
wayfinder_paths/adapters/hyperliquid_adapter/exchange.py,sha256=WV5PujGggl8y96A2QkkktdsxdoUtfvZG7YbUc50lWlw,14146
|
|
30
|
+
wayfinder_paths/adapters/hyperliquid_adapter/executor.py,sha256=PDF8oM99m7EVgij8scLYkdpvFsq_lrhTVeLYrP_5vfY,18372
|
|
31
|
+
wayfinder_paths/adapters/hyperliquid_adapter/local_signer.py,sha256=QrAOoUtFjNvT_san5DIuZzDK-EQAek7GnOTTD2ZSM0s,2738
|
|
30
32
|
wayfinder_paths/adapters/hyperliquid_adapter/manifest.yaml,sha256=lwADwkooWOivqIUEAxiVTdHBYuchHyuQR8y40K_AUgw,315
|
|
31
33
|
wayfinder_paths/adapters/hyperliquid_adapter/paired_filler.py,sha256=V_cIiNJYER6E3r8hYLTy1zR2YuO_GBKhn9rP5dkPaVs,35156
|
|
32
|
-
wayfinder_paths/adapters/hyperliquid_adapter/test_adapter.py,sha256=
|
|
33
|
-
wayfinder_paths/adapters/hyperliquid_adapter/test_adapter_live.py,sha256=
|
|
34
|
+
wayfinder_paths/adapters/hyperliquid_adapter/test_adapter.py,sha256=1oMMoHG6hNeq08Tcwtt4XYjEdGaO5Jc0daCPuKvMWPM,3784
|
|
35
|
+
wayfinder_paths/adapters/hyperliquid_adapter/test_adapter_live.py,sha256=AuNfPrsd4TAJveYjOt4YhYk9vhhxJgin0STdEOTrqtY,5803
|
|
34
36
|
wayfinder_paths/adapters/hyperliquid_adapter/test_executor.py,sha256=9VzTGtGjjfUOt5dpahOFvttP2Oyla6tpQopmWANL89g,3525
|
|
35
37
|
wayfinder_paths/adapters/hyperliquid_adapter/test_utils.py,sha256=n2_vLEqwDTQDweiDW3an6K9ceTweJMT96oi56J5ebfs,5596
|
|
38
|
+
wayfinder_paths/adapters/hyperliquid_adapter/util.py,sha256=f3LsIRNONSCcGVbZY7wd5-vPxsZpM5nEMYktnI79apA,8490
|
|
36
39
|
wayfinder_paths/adapters/hyperliquid_adapter/utils.py,sha256=J0UcXR60BHLj147qMZHocrcvIQ71GhGx90u3JDZ3gg8,3838
|
|
37
40
|
wayfinder_paths/adapters/ledger_adapter/README.md,sha256=hxBXJg_wfH7gDTYqUL6yXkDARKTb1zdyYYIIxbvQMDQ,2574
|
|
38
41
|
wayfinder_paths/adapters/ledger_adapter/__init__.py,sha256=CrFEf6_7I27g5CQPPOAFYzQvm33IpdkbQHCKiDdwiWk,64
|
|
@@ -51,10 +54,10 @@ wayfinder_paths/adapters/multicall_adapter/manifest.yaml,sha256=z8cGp0gNdWELgEvN
|
|
|
51
54
|
wayfinder_paths/adapters/multicall_adapter/test_adapter.py,sha256=g3ywwEAv5kb9xBDEM42YfKa9eFPGw4NnPYyFVpBkvgU,3265
|
|
52
55
|
wayfinder_paths/adapters/pendle_adapter/README.md,sha256=iPcaNx6U7jRWrTW6B89iHwo9wG3MzaxdwOnVpX2vy9I,4011
|
|
53
56
|
wayfinder_paths/adapters/pendle_adapter/__init__.py,sha256=cvxoKzRFaya_GtxrYTnLmZVLxEo8BEmrmkOK6uLyppg,127
|
|
54
|
-
wayfinder_paths/adapters/pendle_adapter/adapter.py,sha256=
|
|
57
|
+
wayfinder_paths/adapters/pendle_adapter/adapter.py,sha256=Wm_B7rGe_C10OB_9ICHAmW54P9gJHVQ5itaPxT1gcCE,72434
|
|
55
58
|
wayfinder_paths/adapters/pendle_adapter/examples.json,sha256=MnEudDmf4fbe7EAK-2m5PT-6voMl7hlZah0r-wjs1Tw,1132
|
|
56
59
|
wayfinder_paths/adapters/pendle_adapter/manifest.yaml,sha256=nnbV5ukA-Ewd9pL2v2rhfPqLQEwLgeuYl-44UyVdG1I,617
|
|
57
|
-
wayfinder_paths/adapters/pendle_adapter/test_adapter.py,sha256=
|
|
60
|
+
wayfinder_paths/adapters/pendle_adapter/test_adapter.py,sha256=738DLkEnQw-_iHOGyhJ3m_Obprh7oFV2COhFFzl5MY0,23201
|
|
58
61
|
wayfinder_paths/adapters/pool_adapter/README.md,sha256=qxXNcTgxQ4-YEDC-ZHiQ5wTpV_76t-vK58vyDh0IBgU,1282
|
|
59
62
|
wayfinder_paths/adapters/pool_adapter/__init__.py,sha256=LTbty0SuACoj3X5yeGESDUdtJQt8zyB2Loq8BuEp7rE,60
|
|
60
63
|
wayfinder_paths/adapters/pool_adapter/adapter.py,sha256=NHxtFOt10l320AClQUWchUVrQp0ivST25UOczS7aYeQ,1298
|
|
@@ -68,7 +71,7 @@ wayfinder_paths/adapters/token_adapter/examples.json,sha256=t4BYKxpkz4zASO91TbjZ
|
|
|
68
71
|
wayfinder_paths/adapters/token_adapter/manifest.yaml,sha256=KR6msMamsFW6aMlpYeYeguuA_4ppj1h4_JAiS8EJYpc,162
|
|
69
72
|
wayfinder_paths/adapters/token_adapter/test_adapter.py,sha256=jDenD0BYbbb_xE3jKrA84io8iVEcvjk5SExf6UjQ410,3980
|
|
70
73
|
wayfinder_paths/conftest.py,sha256=LaCl5qQ5K41O2U7jPI4Tx4EYR7EWj05ZvNeQqYDVKqI,853
|
|
71
|
-
wayfinder_paths/core/__init__.py,sha256=
|
|
74
|
+
wayfinder_paths/core/__init__.py,sha256=q7wKxLea5W_Z9qjYtq_nVYgLMhnYjLxarxDKmPsr3QY,305
|
|
72
75
|
wayfinder_paths/core/adapters/BaseAdapter.py,sha256=QlpZswyBTeE6cI9nEvAQvxEUCER7htSZMMHyuy_T7lE,418
|
|
73
76
|
wayfinder_paths/core/adapters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
74
77
|
wayfinder_paths/core/adapters/models.py,sha256=_d4ir3iHGbkTUyLOK6babxocYcjlBX9rXh6udPiN4Y0,1363
|
|
@@ -77,13 +80,14 @@ wayfinder_paths/core/analytics/bootstrap.py,sha256=npbLf9Jzx0tl4fHVumeUID5NnBwyH
|
|
|
77
80
|
wayfinder_paths/core/analytics/stats.py,sha256=5JzhHEHivXuK5xvQa9BWgkpRD7WwVvQdJDGuILlS7Pc,1161
|
|
78
81
|
wayfinder_paths/core/analytics/test_analytics.py,sha256=COyUP9UBhE6471z9lQA2yM51SNKXZz0i3bkBztcilbs,4193
|
|
79
82
|
wayfinder_paths/core/clients/BRAPClient.py,sha256=xeWmWyennpLS2kF0X2GB009Kxpv_E2QEOMc7H4yDfUI,3340
|
|
83
|
+
wayfinder_paths/core/clients/BalanceClient.py,sha256=xR4Ux9Wy8Ou2dANLhSbrtABcCMIoPzE9ZiVxr9y4OII,2267
|
|
80
84
|
wayfinder_paths/core/clients/ClientManager.py,sha256=rNGGcqU9Y7gdnlkNlXtWUW2EB8W50I7i-sxQVc8IZT8,2179
|
|
81
85
|
wayfinder_paths/core/clients/HyperlendClient.py,sha256=_10Hrbo3M4VbW3Nwlt1_rJMrz955u_AIanQotG0fwE8,5508
|
|
82
86
|
wayfinder_paths/core/clients/LedgerClient.py,sha256=9PtXW2o_WZGfvu7wIwBuCPzXYex2B1rsMDN70tKgJeA,11713
|
|
83
87
|
wayfinder_paths/core/clients/PoolClient.py,sha256=ij0aVwV73UiUndOmBrtpg1BhalSIr_Ab78pP7xQQHzY,4266
|
|
84
|
-
wayfinder_paths/core/clients/TokenClient.py,sha256
|
|
88
|
+
wayfinder_paths/core/clients/TokenClient.py,sha256=-Xh7fKtj_OTcoKfWDbgD_u3Ih0xEzgrFjlLenJFx4Rs,5011
|
|
85
89
|
wayfinder_paths/core/clients/WayfinderClient.py,sha256=y7S535kakRP7pFqYEqUXygdW5hv-FMmtxds9ZL476jQ,3423
|
|
86
|
-
wayfinder_paths/core/clients/__init__.py,sha256=
|
|
90
|
+
wayfinder_paths/core/clients/__init__.py,sha256=Lx2hdR0j6obO47WWFk8MqIF_5DycAvw8M7-LTTBNLrY,1041
|
|
87
91
|
wayfinder_paths/core/clients/protocols.py,sha256=kNNyUssPkZVc1f82YdkF8deUyWBMKKLUYygBcHZ4JmA,5180
|
|
88
92
|
wayfinder_paths/core/clients/test_ledger_client.py,sha256=RE-IJ3MfbR9AGEeFhPduYhJRqwLoMaKDuHRf_yq0AHo,15228
|
|
89
93
|
wayfinder_paths/core/config.py,sha256=JZLFdxCMj5naJb3SAoieM--w7UNDrHP0YEMpz1Mmdps,1396
|
|
@@ -97,16 +101,17 @@ wayfinder_paths/core/constants/hyperliquid.py,sha256=54RkDtsuvfm8LtE2W7cUkrxeSQZ
|
|
|
97
101
|
wayfinder_paths/core/constants/moonwell_abi.py,sha256=IERwnQKUG7yyKiICXcfybt8LgPCD1sze95dA2vJalLQ,10940
|
|
98
102
|
wayfinder_paths/core/constants/tokens.py,sha256=lkpZXRJcnygcNKVvrIBgnUozPvcbpHT-BkqqpEG9Xug,326
|
|
99
103
|
wayfinder_paths/core/engine/manifest.py,sha256=-bFBClnIx21FeAq4p-p3nLvzOuZ5OoGVofSbO1W6n80,2201
|
|
100
|
-
wayfinder_paths/core/strategies/Strategy.py,sha256=
|
|
104
|
+
wayfinder_paths/core/strategies/Strategy.py,sha256=CVV5hl9nVxtOnV8dB9vu3XJkYgS2yZ6Dh3_J-udgOD8,3772
|
|
101
105
|
wayfinder_paths/core/strategies/__init__.py,sha256=5Hq9nJf1jS9oZuo0lRAOQw3hazZJg2jRmGCKtJF-1cs,247
|
|
102
106
|
wayfinder_paths/core/strategies/base.py,sha256=-s0qeiGZl5CHTUL2PavGXM7ACkNlaa0c4jeZR_4DuBM,155
|
|
103
107
|
wayfinder_paths/core/strategies/descriptors.py,sha256=2Olef0VWols1CWb-TWcb5pil2rztC0jP6F_Trpv2hIw,1958
|
|
104
108
|
wayfinder_paths/core/strategies/opa_loop.py,sha256=Eoy4uUA2YSo9najJFUwS4wVykPKJ5A_i-Sf6XnwNsv0,5483
|
|
109
|
+
wayfinder_paths/core/types.py,sha256=mArnxr6V09SNso3wH0ykvWX1AMx9NsYM6Ey3l-vEAGw,873
|
|
105
110
|
wayfinder_paths/core/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
106
111
|
wayfinder_paths/core/utils/evm_helpers.py,sha256=m_h9eMjcMW5a3Di6PGkpZOwpZkZ-tVdwiLsTZqFJacE,3809
|
|
107
112
|
wayfinder_paths/core/utils/test_transaction.py,sha256=0GtXROAWmll-zgbIquO9TeqcClhhCmJJNFg1XoYAYIc,10613
|
|
108
|
-
wayfinder_paths/core/utils/tokens.py,sha256=
|
|
109
|
-
wayfinder_paths/core/utils/transaction.py,sha256=
|
|
113
|
+
wayfinder_paths/core/utils/tokens.py,sha256=rXJOpg18ckmh8AmXf5ZsNcuIJ7OebTuQPheeEGbEGJA,4935
|
|
114
|
+
wayfinder_paths/core/utils/transaction.py,sha256=If6HzsGXmngXMXMqwzjapa8Wpo0laLItUpLW5URSrb0,8251
|
|
110
115
|
wayfinder_paths/core/utils/wallets.py,sha256=ccCQ128lDShO265AFMOCdijzPLucWe-Neg5wjLrOsnk,1948
|
|
111
116
|
wayfinder_paths/core/utils/web3.py,sha256=KeoUjnVXR8ZQLqjd1ZH4fMowRGSBfykirZFWfiICfN8,2071
|
|
112
117
|
wayfinder_paths/mcp/__init__.py,sha256=ldUqhq_wbWe7-fJB9UWVFyh1rAoeqwD0TuYu0oSw5Ec,172
|
|
@@ -118,11 +123,11 @@ wayfinder_paths/mcp/state/profile_store.py,sha256=wth_EkIFiVV1Uw7s6na7TzsZLmqa63
|
|
|
118
123
|
wayfinder_paths/mcp/state/store.py,sha256=BPKwnVJUMAodMiFpXVSoLm0tQinb4GCH_fg--YbFM_g,2797
|
|
119
124
|
wayfinder_paths/mcp/test_scripting.py,sha256=X-Fyy3lkpqOQjU_g5G9OaAOeliVqOJmh3u_PA-ogGe0,9314
|
|
120
125
|
wayfinder_paths/mcp/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
121
|
-
wayfinder_paths/mcp/tools/balances.py,sha256=
|
|
126
|
+
wayfinder_paths/mcp/tools/balances.py,sha256=7uypGrWGPiy9035_7jxTV9sdehdD2Brz2GqHrXHM6kI,6854
|
|
122
127
|
wayfinder_paths/mcp/tools/discovery.py,sha256=tFcRc7EF95Cy1ClVwNJ-fmOp_hNzX-GjchoZwrZjOKw,5595
|
|
123
|
-
wayfinder_paths/mcp/tools/execute.py,sha256=
|
|
128
|
+
wayfinder_paths/mcp/tools/execute.py,sha256=EaZDI10db74gqGdX96iDUC5iIY6DLVDufwqdw546CVQ,27097
|
|
124
129
|
wayfinder_paths/mcp/tools/hyperliquid.py,sha256=10GZOtyKlNVW31ZT7S7-SkG-18C7GOg2OZAsds7L3s0,31845
|
|
125
|
-
wayfinder_paths/mcp/tools/quotes.py,sha256=
|
|
130
|
+
wayfinder_paths/mcp/tools/quotes.py,sha256=9n4O1DJLn_UP94xLA05cTVbJ4jFADzsFWCs8sUJtYTw,9739
|
|
126
131
|
wayfinder_paths/mcp/tools/run_script.py,sha256=RF83GyhXZlXEIcK24vS9bHDDm8Q1scQktBrxWBp6WX8,7887
|
|
127
132
|
wayfinder_paths/mcp/tools/strategies.py,sha256=WSqVWXjvrOsS9X4sffI42lUf2h4QWRWjRQ0t9aHSifQ,6746
|
|
128
133
|
wayfinder_paths/mcp/tools/tokens.py,sha256=AtFv39e6mJ9WeH1ufZ1U0KW6CUbUi2HtVAoiBbnD39A,1535
|
|
@@ -145,41 +150,41 @@ wayfinder_paths/strategies/basis_trading_strategy/__init__.py,sha256=kVcehFjBUto
|
|
|
145
150
|
wayfinder_paths/strategies/basis_trading_strategy/constants.py,sha256=dYQn_297CB1x9whic8YEMdEig0vibclDGCasjJL10mI,122
|
|
146
151
|
wayfinder_paths/strategies/basis_trading_strategy/examples.json,sha256=q2wlAH8Gr-LUJeamKzWL1EtChL3TBWe0HQ4_P-VCdqQ,429
|
|
147
152
|
wayfinder_paths/strategies/basis_trading_strategy/snapshot_mixin.py,sha256=F324ILz9w6uT7fkOVUa7gltp2LMEyGBlw3tz-ANcff8,37634
|
|
148
|
-
wayfinder_paths/strategies/basis_trading_strategy/strategy.py,sha256=
|
|
153
|
+
wayfinder_paths/strategies/basis_trading_strategy/strategy.py,sha256=EIXZgDbbJloFSRdXloogzEOynS7hlsPxwdxcLufpRf8,142409
|
|
149
154
|
wayfinder_paths/strategies/basis_trading_strategy/test_strategy.py,sha256=BnjgsYEDkqnG5Qm6zmyOXzgwnunB95UPtr7HLopU9tA,34126
|
|
150
155
|
wayfinder_paths/strategies/basis_trading_strategy/types.py,sha256=xTkLYqwvS0meMdlRAvIKNH9AANRyz63bQSYFSxLI6n4,740
|
|
151
156
|
wayfinder_paths/strategies/boros_hype_strategy/__init__.py,sha256=OZlSnGYwlMUsNWWBMIqA7glI5oX9XDQvlgEZ_Ph2uDY,73
|
|
152
|
-
wayfinder_paths/strategies/boros_hype_strategy/boros_ops_mixin.py,sha256=
|
|
153
|
-
wayfinder_paths/strategies/boros_hype_strategy/constants.py,sha256=
|
|
157
|
+
wayfinder_paths/strategies/boros_hype_strategy/boros_ops_mixin.py,sha256=WGq2c_BPmHYf0gJNf849Fuxhpb2amF40GpB5BBNiDAY,27287
|
|
158
|
+
wayfinder_paths/strategies/boros_hype_strategy/constants.py,sha256=FAvDN_G9H-0Slhky6yYjDgOAl5VsQ1ZgETPAfhrtev4,11924
|
|
154
159
|
wayfinder_paths/strategies/boros_hype_strategy/examples.json,sha256=_d3WauNJs6DTaS3oIhLn94lKn9_TtK26bdmS3bOrU9A,638
|
|
155
|
-
wayfinder_paths/strategies/boros_hype_strategy/hyperevm_ops_mixin.py,sha256=
|
|
160
|
+
wayfinder_paths/strategies/boros_hype_strategy/hyperevm_ops_mixin.py,sha256=dkihqyCSEMx9sQ6jFSin4yT62FDiOMvlexNWmWrXIYM,5878
|
|
156
161
|
wayfinder_paths/strategies/boros_hype_strategy/hyperliquid_ops_mixin.py,sha256=aLqjRQvJjqLbNf3UhS62l9yPHQ0nxkq1shjFhCfAiXY,25109
|
|
157
162
|
wayfinder_paths/strategies/boros_hype_strategy/manifest.yaml,sha256=Tb7lfXD1261qNhCupRJgHzqEoDRcP0dCkZ4B_PsTXv8,1763
|
|
158
|
-
wayfinder_paths/strategies/boros_hype_strategy/planner.py,sha256=
|
|
159
|
-
wayfinder_paths/strategies/boros_hype_strategy/risk_ops_mixin.py,sha256=
|
|
163
|
+
wayfinder_paths/strategies/boros_hype_strategy/planner.py,sha256=wBGzn_x9TDASU0vCeHHPzyhYTPQM3OFoxm3bJ930vrI,20419
|
|
164
|
+
wayfinder_paths/strategies/boros_hype_strategy/risk_ops_mixin.py,sha256=xtICtw760hmqyNoGz7FZn9kqEpazjZ4xArQ25AfAgLk,40623
|
|
160
165
|
wayfinder_paths/strategies/boros_hype_strategy/snapshot_mixin.py,sha256=UtciP6cwFW0I_x_j8CIpFaS9Jvf4CZeNXV3XpZgK5k8,20685
|
|
161
|
-
wayfinder_paths/strategies/boros_hype_strategy/strategy.py,sha256=
|
|
162
|
-
wayfinder_paths/strategies/boros_hype_strategy/test_planner_golden.py,sha256=
|
|
163
|
-
wayfinder_paths/strategies/boros_hype_strategy/test_strategy.py,sha256=
|
|
164
|
-
wayfinder_paths/strategies/boros_hype_strategy/types.py,sha256
|
|
166
|
+
wayfinder_paths/strategies/boros_hype_strategy/strategy.py,sha256=4mWRJqZuA-EFSzML6RQ79sQ2MtCIdYab62S4J3i35KM,50524
|
|
167
|
+
wayfinder_paths/strategies/boros_hype_strategy/test_planner_golden.py,sha256=hLvYWrSf6aDPMfpfhMAUklMrjIaiAYYiQKv885iDBCQ,10641
|
|
168
|
+
wayfinder_paths/strategies/boros_hype_strategy/test_strategy.py,sha256=1Lg2LWZYd-pkOdxysooMhSF_vTs_IpiWErBoXtxwuXM,6625
|
|
169
|
+
wayfinder_paths/strategies/boros_hype_strategy/types.py,sha256=-tgHvKn7MvttRucxLWV9aY677DfTuCZq0TNneh_LRLM,12425
|
|
165
170
|
wayfinder_paths/strategies/boros_hype_strategy/withdraw_mixin.py,sha256=kQEuDWSU-4UVeaXCC6SJw3FZkb2yI8iJaCxd0_txHcQ,47447
|
|
166
171
|
wayfinder_paths/strategies/hyperlend_stable_yield_strategy/README.md,sha256=cqCmcWIPiOpCwt-82dnOgHnN64ZUITITR3jqIUYDXmA,2906
|
|
167
172
|
wayfinder_paths/strategies/hyperlend_stable_yield_strategy/examples.json,sha256=GbVo2p6QiG6M7Ma5s671lw8G9JwnMl1h0n9mrtt-ZS8,164
|
|
168
|
-
wayfinder_paths/strategies/hyperlend_stable_yield_strategy/strategy.py,sha256=
|
|
169
|
-
wayfinder_paths/strategies/hyperlend_stable_yield_strategy/test_strategy.py,sha256=
|
|
173
|
+
wayfinder_paths/strategies/hyperlend_stable_yield_strategy/strategy.py,sha256=zlCBrkz7reV4fSxNKQV3kRx2icv8kUDUyi0GGewG9Yg,92725
|
|
174
|
+
wayfinder_paths/strategies/hyperlend_stable_yield_strategy/test_strategy.py,sha256=qHUXeTLr23gi7ADN0vuWpUgOGFQML3-kPAWBsL3cumw,14353
|
|
170
175
|
wayfinder_paths/strategies/moonwell_wsteth_loop_strategy/README.md,sha256=PZVbRXfoMNNrZUZY3YOWBW9A-6By7vi-IBBDIfvcdNc,3594
|
|
171
176
|
wayfinder_paths/strategies/moonwell_wsteth_loop_strategy/examples.json,sha256=kgNRdZcqne8XTm-Y8Hv1a1pdajRQsey4Qhd5La-iWss,164
|
|
172
|
-
wayfinder_paths/strategies/moonwell_wsteth_loop_strategy/strategy.py,sha256=
|
|
173
|
-
wayfinder_paths/strategies/moonwell_wsteth_loop_strategy/test_strategy.py,sha256=
|
|
177
|
+
wayfinder_paths/strategies/moonwell_wsteth_loop_strategy/strategy.py,sha256=D3pou5S4tZ-48m1Z8l7XP5DRU2AfzYe-p_N9NVuZxps,152697
|
|
178
|
+
wayfinder_paths/strategies/moonwell_wsteth_loop_strategy/test_strategy.py,sha256=64Prr3m5Qibe4yBtAAVmNZutLV88xkjDRFobCbXXhLs,37059
|
|
174
179
|
wayfinder_paths/strategies/stablecoin_yield_strategy/README.md,sha256=efyLd2AJHL_JtHF3eZsnHk2wF4NWzEnuLKRA2vOpLtE,2844
|
|
175
180
|
wayfinder_paths/strategies/stablecoin_yield_strategy/examples.json,sha256=pL1DNFEvYvXKK7xXD5oQYFPQj3Cm1ocKnk6r_iZk0IY,423
|
|
176
|
-
wayfinder_paths/strategies/stablecoin_yield_strategy/strategy.py,sha256=
|
|
177
|
-
wayfinder_paths/strategies/stablecoin_yield_strategy/test_strategy.py,sha256=
|
|
181
|
+
wayfinder_paths/strategies/stablecoin_yield_strategy/strategy.py,sha256=CFrGyCo3rL2Ko71ZIj-pVL_cKZg6gt1xdPMagySo9s8,71736
|
|
182
|
+
wayfinder_paths/strategies/stablecoin_yield_strategy/test_strategy.py,sha256=PJVnFxbHtB6s-A5FaXqrQqQ9Nsg6F7LEnIMOkP_iBsw,17078
|
|
178
183
|
wayfinder_paths/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
179
|
-
wayfinder_paths/tests/test_mcp_quote_swap.py,sha256=
|
|
184
|
+
wayfinder_paths/tests/test_mcp_quote_swap.py,sha256=In4SxTkjfy7f2dqr8z6g1onHk8N2hQRc7a5_zQwcpXI,5473
|
|
180
185
|
wayfinder_paths/tests/test_test_coverage.py,sha256=ZU0zhlm1PllvQkrnESPtEVdr-VcFDT6EtPiPRreLukk,7118
|
|
181
186
|
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.
|
|
187
|
+
wayfinder_paths-0.1.27.dist-info/LICENSE,sha256=dYKnlkC_xosBAEQNUvB6cHMuhFgcUtN0oBR7E8_aR2Y,1066
|
|
188
|
+
wayfinder_paths-0.1.27.dist-info/METADATA,sha256=WNeDzpbrIXWTklz_ps0086oPvLE9WyqdIbekvYNHfxA,14422
|
|
189
|
+
wayfinder_paths-0.1.27.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
|
|
190
|
+
wayfinder_paths-0.1.27.dist-info/RECORD,,
|
|
File without changes
|