wayfinder-paths 0.1.29__py3-none-any.whl → 0.1.30__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.

@@ -109,158 +109,7 @@ BOROS_ENABLE_MIN_TOTAL_USD = 80.0 # Skip Boros if capital below this
109
109
 
110
110
  # LayerZero OFT bridge (HyperEVM native HYPE -> Arbitrum OFT HYPE)
111
111
  # HYPE_OFT_ADDRESS imported from contracts.py
112
- LZ_EID_ARBITRUM = 30110
113
-
114
- # Minimal IOFT ABI for quoting + sending.
115
- HYPE_OFT_ABI = [
116
- {
117
- "inputs": [
118
- {
119
- "components": [
120
- {"internalType": "uint32", "name": "dstEid", "type": "uint32"},
121
- {"internalType": "bytes32", "name": "to", "type": "bytes32"},
122
- {"internalType": "uint256", "name": "amountLD", "type": "uint256"},
123
- {
124
- "internalType": "uint256",
125
- "name": "minAmountLD",
126
- "type": "uint256",
127
- },
128
- {
129
- "internalType": "bytes",
130
- "name": "extraOptions",
131
- "type": "bytes",
132
- },
133
- {"internalType": "bytes", "name": "composeMsg", "type": "bytes"},
134
- {"internalType": "bytes", "name": "oftCmd", "type": "bytes"},
135
- ],
136
- "internalType": "struct SendParam",
137
- "name": "_sendParam",
138
- "type": "tuple",
139
- },
140
- {"internalType": "bool", "name": "_payInLzToken", "type": "bool"},
141
- ],
142
- "name": "quoteSend",
143
- "outputs": [
144
- {
145
- "components": [
146
- {"internalType": "uint256", "name": "nativeFee", "type": "uint256"},
147
- {
148
- "internalType": "uint256",
149
- "name": "lzTokenFee",
150
- "type": "uint256",
151
- },
152
- ],
153
- "internalType": "struct MessagingFee",
154
- "name": "",
155
- "type": "tuple",
156
- }
157
- ],
158
- "stateMutability": "view",
159
- "type": "function",
160
- },
161
- {
162
- "inputs": [
163
- {
164
- "components": [
165
- {"internalType": "uint32", "name": "dstEid", "type": "uint32"},
166
- {"internalType": "bytes32", "name": "to", "type": "bytes32"},
167
- {"internalType": "uint256", "name": "amountLD", "type": "uint256"},
168
- {
169
- "internalType": "uint256",
170
- "name": "minAmountLD",
171
- "type": "uint256",
172
- },
173
- {
174
- "internalType": "bytes",
175
- "name": "extraOptions",
176
- "type": "bytes",
177
- },
178
- {"internalType": "bytes", "name": "composeMsg", "type": "bytes"},
179
- {"internalType": "bytes", "name": "oftCmd", "type": "bytes"},
180
- ],
181
- "internalType": "struct SendParam",
182
- "name": "_sendParam",
183
- "type": "tuple",
184
- },
185
- {
186
- "components": [
187
- {"internalType": "uint256", "name": "nativeFee", "type": "uint256"},
188
- {
189
- "internalType": "uint256",
190
- "name": "lzTokenFee",
191
- "type": "uint256",
192
- },
193
- ],
194
- "internalType": "struct MessagingFee",
195
- "name": "_fee",
196
- "type": "tuple",
197
- },
198
- {"internalType": "address", "name": "_refundAddress", "type": "address"},
199
- ],
200
- "name": "send",
201
- "outputs": [
202
- {
203
- "components": [
204
- {"internalType": "bytes32", "name": "guid", "type": "bytes32"},
205
- {"internalType": "uint64", "name": "nonce", "type": "uint64"},
206
- {
207
- "components": [
208
- {
209
- "internalType": "uint256",
210
- "name": "nativeFee",
211
- "type": "uint256",
212
- },
213
- {
214
- "internalType": "uint256",
215
- "name": "lzTokenFee",
216
- "type": "uint256",
217
- },
218
- ],
219
- "internalType": "struct MessagingFee",
220
- "name": "fee",
221
- "type": "tuple",
222
- },
223
- ],
224
- "internalType": "struct MessagingReceipt",
225
- "name": "",
226
- "type": "tuple",
227
- },
228
- {
229
- "components": [
230
- {
231
- "internalType": "uint256",
232
- "name": "amountSentLD",
233
- "type": "uint256",
234
- },
235
- {
236
- "internalType": "uint256",
237
- "name": "amountReceivedLD",
238
- "type": "uint256",
239
- },
240
- ],
241
- "internalType": "struct OFTReceipt",
242
- "name": "",
243
- "type": "tuple",
244
- },
245
- ],
246
- "stateMutability": "payable",
247
- "type": "function",
248
- },
249
- {
250
- "inputs": [],
251
- "name": "sharedDecimals",
252
- "outputs": [{"internalType": "uint8", "name": "", "type": "uint8"}],
253
- "stateMutability": "view",
254
- "type": "function",
255
- },
256
- {
257
- "inputs": [],
258
- "name": "decimalConversionRate",
259
- "outputs": [{"internalType": "uint256", "name": "", "type": "uint256"}],
260
- "stateMutability": "view",
261
- "type": "function",
262
- },
263
- ]
112
+ # ABI lives in `wayfinder_paths/core/constants/hype_oft_abi.py`.
264
113
 
265
114
  # ─────────────────────────────────────────────────────────────────────────────
266
115
  # GAS CONFIGURATION
@@ -196,10 +196,12 @@ class HyperlendStableYieldStrategy(Strategy):
196
196
  main_wallet_signing_callback: Callable[[dict], Awaitable[str]] | None = None,
197
197
  strategy_wallet_signing_callback: Callable[[dict], Awaitable[str]]
198
198
  | None = None,
199
+ strategy_sign_typed_data: Callable[[dict], Awaitable[str]] | None = None,
199
200
  ):
200
201
  super().__init__(
201
202
  main_wallet_signing_callback=main_wallet_signing_callback,
202
203
  strategy_wallet_signing_callback=strategy_wallet_signing_callback,
204
+ strategy_sign_typed_data=strategy_sign_typed_data,
203
205
  )
204
206
  merged_config: dict[str, Any] = dict(config or {})
205
207
  if main_wallet is not None:
@@ -181,10 +181,12 @@ class MoonwellWstethLoopStrategy(Strategy):
181
181
  main_wallet_signing_callback: Callable[[dict], Awaitable[str]] | None = None,
182
182
  strategy_wallet_signing_callback: Callable[[dict], Awaitable[str]]
183
183
  | None = None,
184
+ strategy_sign_typed_data: Callable[[dict], Awaitable[str]] | None = None,
184
185
  ):
185
186
  super().__init__(
186
187
  main_wallet_signing_callback=main_wallet_signing_callback,
187
188
  strategy_wallet_signing_callback=strategy_wallet_signing_callback,
189
+ strategy_sign_typed_data=strategy_sign_typed_data,
188
190
  )
189
191
  merged_config: dict[str, Any] = dict(config or {})
190
192
  if main_wallet is not None:
@@ -155,10 +155,12 @@ class StablecoinYieldStrategy(Strategy):
155
155
  main_wallet_signing_callback: Callable[[dict], Awaitable[str]] | None = None,
156
156
  strategy_wallet_signing_callback: Callable[[dict], Awaitable[str]]
157
157
  | None = None,
158
+ strategy_sign_typed_data: Callable[[dict], Awaitable[str]] | None = None,
158
159
  ):
159
160
  super().__init__(
160
161
  main_wallet_signing_callback=main_wallet_signing_callback,
161
162
  strategy_wallet_signing_callback=strategy_wallet_signing_callback,
163
+ strategy_sign_typed_data=strategy_sign_typed_data,
162
164
  )
163
165
  merged_config: dict[str, Any] = dict(config or {})
164
166
  if main_wallet is not None:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: wayfinder-paths
3
- Version: 0.1.29
3
+ Version: 0.1.30
4
4
  Summary: Wayfinder Path: strategies and adapters
5
5
  Author: Wayfinder
6
6
  Author-email: dev@wayfinder.ai
@@ -6,11 +6,11 @@ wayfinder_paths/adapters/balance_adapter/examples.json,sha256=3R1M4B_VsIy29viAuF
6
6
  wayfinder_paths/adapters/balance_adapter/manifest.yaml,sha256=w6Fb9Bui1QKjcGpRX1kzwe8GNGjQXAH6GtLp-D_Ez_Q,218
7
7
  wayfinder_paths/adapters/balance_adapter/test_adapter.py,sha256=BQWQWun9En4-10QUTSheSfp4bxypqDWWv1BjuHneu3w,2794
8
8
  wayfinder_paths/adapters/boros_adapter/__init__.py,sha256=y32d5WyoTzrqmnk3i1Vi13iMAVoJiWO2mO9YEpg5pGg,337
9
- wayfinder_paths/adapters/boros_adapter/adapter.py,sha256=vGQGxxGDKcX4fOX8ukp1QBoYXpTNrLpD1hbj4HJDLn4,66966
9
+ wayfinder_paths/adapters/boros_adapter/adapter.py,sha256=trBzDu5x0rHlwSFc5nJXaqXiB2AtiUiCndQAOLrmAKI,78755
10
10
  wayfinder_paths/adapters/boros_adapter/client.py,sha256=lEIMbVB3aH6JTsaqf619ppML5A1vNvkrHpcR4UJy-Xw,15406
11
11
  wayfinder_paths/adapters/boros_adapter/manifest.yaml,sha256=PGrhgw6A4Pf6Kqg9vGGL8QvL479K9yM0tpP3zhObxX4,240
12
12
  wayfinder_paths/adapters/boros_adapter/parsers.py,sha256=r_KtWeLhfIyfTgWZB0CUMGv8N4higojsTsLMhuFP7NM,2792
13
- wayfinder_paths/adapters/boros_adapter/test_adapter.py,sha256=5_tmQSj1s1XBkFjItL8bMHfNzmbOvCvhoypLd2_hNZU,21176
13
+ wayfinder_paths/adapters/boros_adapter/test_adapter.py,sha256=Y9Ddvff9iB3OFnBGYHkO_5RS5c2by4stym6WHxmnLJY,25456
14
14
  wayfinder_paths/adapters/boros_adapter/test_golden.py,sha256=9pQSYy8FdGfo38-jJPzvM9DlVK3OjuRQizEBsExp3FA,4895
15
15
  wayfinder_paths/adapters/boros_adapter/types.py,sha256=SJN1cUUZF9-_HZaa8TIsLbsOvJ6I-btqjhvjXk_D3cM,1613
16
16
  wayfinder_paths/adapters/boros_adapter/utils.py,sha256=fQY0AclEJbxFU4QHFcDsyRkEFPr2C3t6Mwp1FwtHfoU,2259
@@ -25,10 +25,10 @@ wayfinder_paths/adapters/hyperlend_adapter/adapter.py,sha256=knEb5j1kNZvOeus-4gy
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=R43_OsYjQt4qBFWbz8x_5VlTOmgfLz5mLQ06Kaj7HS4,45817
29
- wayfinder_paths/adapters/hyperliquid_adapter/exchange.py,sha256=VSSCmsSTnQ3qDjPRLZLA60mwHoBkn5l_f-h0H0g7yBw,12551
28
+ wayfinder_paths/adapters/hyperliquid_adapter/adapter.py,sha256=wtvssFgBAlxHwnMTmQWfmMgmX2TJZGPb3KWDu4S3FGM,45811
29
+ wayfinder_paths/adapters/hyperliquid_adapter/exchange.py,sha256=SELWlB3LDxLXj5T7ChKqawYr20uKmpJF5J9cgJJhQzo,12545
30
30
  wayfinder_paths/adapters/hyperliquid_adapter/executor.py,sha256=PDF8oM99m7EVgij8scLYkdpvFsq_lrhTVeLYrP_5vfY,18372
31
- wayfinder_paths/adapters/hyperliquid_adapter/local_signer.py,sha256=56RVsFy63pxXYzAxIyVbyn3NRBt1lQ6dCAvtBH7M9SU,2751
31
+ wayfinder_paths/adapters/hyperliquid_adapter/local_signer.py,sha256=OuUIFNYvN3_WyrvsVvGnvsOW97iiWJJnsdVBxCAulro,1637
32
32
  wayfinder_paths/adapters/hyperliquid_adapter/manifest.yaml,sha256=lwADwkooWOivqIUEAxiVTdHBYuchHyuQR8y40K_AUgw,315
33
33
  wayfinder_paths/adapters/hyperliquid_adapter/paired_filler.py,sha256=V_cIiNJYER6E3r8hYLTy1zR2YuO_GBKhn9rP5dkPaVs,35156
34
34
  wayfinder_paths/adapters/hyperliquid_adapter/test_adapter.py,sha256=1oMMoHG6hNeq08Tcwtt4XYjEdGaO5Jc0daCPuKvMWPM,3784
@@ -96,17 +96,17 @@ wayfinder_paths/core/constants/base.py,sha256=4jN3Qr8rBK2ZRAlFmRFeCyRPqwQwQufZx5
96
96
  wayfinder_paths/core/constants/chains.py,sha256=DA03zVjukRGndBB2EROaxvc1uW8bt2550ySh9Cn2J34,729
97
97
  wayfinder_paths/core/constants/contracts.py,sha256=frlJL90nHaXDv1DBPMVo5V4PljrneaW9RtonSQJ44MM,3344
98
98
  wayfinder_paths/core/constants/erc20_abi.py,sha256=o84ShHG1j59i1fkmG7qgBVo1bqdG5_5GRE1ptNlPBWU,2656
99
+ wayfinder_paths/core/constants/hype_oft_abi.py,sha256=JOuEWFWoB5COeW-4ba5oiOMXduDJk_G7nx4oUQfnb7g,5598
99
100
  wayfinder_paths/core/constants/hyperlend_abi.py,sha256=rcXnfYvw6Np40lNK1SVTXVknoapu0HbP1DHAR6g4x9A,3893
100
101
  wayfinder_paths/core/constants/hyperliquid.py,sha256=F-rWVvFd8DQdVB_2lmpvUbk9gIAxO2zzv9T6enIdBtY,904
101
102
  wayfinder_paths/core/constants/moonwell_abi.py,sha256=IERwnQKUG7yyKiICXcfybt8LgPCD1sze95dA2vJalLQ,10940
102
103
  wayfinder_paths/core/constants/tokens.py,sha256=lkpZXRJcnygcNKVvrIBgnUozPvcbpHT-BkqqpEG9Xug,326
103
104
  wayfinder_paths/core/engine/manifest.py,sha256=SLn87A2pZEPrSDH6ZmuMQJDyGINGjYueOwzVTGfcalI,2200
104
- wayfinder_paths/core/strategies/Strategy.py,sha256=CVV5hl9nVxtOnV8dB9vu3XJkYgS2yZ6Dh3_J-udgOD8,3772
105
+ wayfinder_paths/core/strategies/Strategy.py,sha256=-eHTG5kZJQRX7jjpGE8TYP-9z9gvndxXDk1mSDrHNC8,3718
105
106
  wayfinder_paths/core/strategies/__init__.py,sha256=5Hq9nJf1jS9oZuo0lRAOQw3hazZJg2jRmGCKtJF-1cs,247
106
107
  wayfinder_paths/core/strategies/base.py,sha256=-s0qeiGZl5CHTUL2PavGXM7ACkNlaa0c4jeZR_4DuBM,155
107
108
  wayfinder_paths/core/strategies/descriptors.py,sha256=2Olef0VWols1CWb-TWcb5pil2rztC0jP6F_Trpv2hIw,1958
108
109
  wayfinder_paths/core/strategies/opa_loop.py,sha256=Eoy4uUA2YSo9najJFUwS4wVykPKJ5A_i-Sf6XnwNsv0,5483
109
- wayfinder_paths/core/types.py,sha256=mArnxr6V09SNso3wH0ykvWX1AMx9NsYM6Ey3l-vEAGw,873
110
110
  wayfinder_paths/core/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
111
111
  wayfinder_paths/core/utils/evm_helpers.py,sha256=m_h9eMjcMW5a3Di6PGkpZOwpZkZ-tVdwiLsTZqFJacE,3809
112
112
  wayfinder_paths/core/utils/test_transaction.py,sha256=0GtXROAWmll-zgbIquO9TeqcClhhCmJJNFg1XoYAYIc,10613
@@ -127,7 +127,7 @@ wayfinder_paths/mcp/tools/balances.py,sha256=7uypGrWGPiy9035_7jxTV9sdehdD2Brz2Gq
127
127
  wayfinder_paths/mcp/tools/discovery.py,sha256=FQPhQFvrft0zKoC_YgOC2byLe8zPdZcjG0ZIuoy2xHQ,2945
128
128
  wayfinder_paths/mcp/tools/execute.py,sha256=CSNgwAk_SMwGgtcWg3B4RGVHFe546GMYXF40tMVIDg8,27269
129
129
  wayfinder_paths/mcp/tools/hyperliquid.py,sha256=mUtjXGPVj5eEzq346cg76fGzcC2eZIsih2g1dvecYkg,31844
130
- wayfinder_paths/mcp/tools/quotes.py,sha256=w-cJ1TB_t22RdTTo4dZ1O0HGPuYyMWNKFqGvAe72u7Y,9715
130
+ wayfinder_paths/mcp/tools/quotes.py,sha256=Tb5NawCd3-KeQz02azfIfTfiYI7nIyKAlv--35GMS40,6016
131
131
  wayfinder_paths/mcp/tools/run_script.py,sha256=RF83GyhXZlXEIcK24vS9bHDDm8Q1scQktBrxWBp6WX8,7887
132
132
  wayfinder_paths/mcp/tools/strategies.py,sha256=WSqVWXjvrOsS9X4sffI42lUf2h4QWRWjRQ0t9aHSifQ,6746
133
133
  wayfinder_paths/mcp/tools/tokens.py,sha256=AtFv39e6mJ9WeH1ufZ1U0KW6CUbUi2HtVAoiBbnD39A,1535
@@ -150,12 +150,12 @@ wayfinder_paths/strategies/basis_trading_strategy/__init__.py,sha256=kVcehFjBUto
150
150
  wayfinder_paths/strategies/basis_trading_strategy/constants.py,sha256=dYQn_297CB1x9whic8YEMdEig0vibclDGCasjJL10mI,122
151
151
  wayfinder_paths/strategies/basis_trading_strategy/examples.json,sha256=q2wlAH8Gr-LUJeamKzWL1EtChL3TBWe0HQ4_P-VCdqQ,429
152
152
  wayfinder_paths/strategies/basis_trading_strategy/snapshot_mixin.py,sha256=F324ILz9w6uT7fkOVUa7gltp2LMEyGBlw3tz-ANcff8,37634
153
- wayfinder_paths/strategies/basis_trading_strategy/strategy.py,sha256=3rB14SEOmhWgjw_2g11WtfCAk6mfEJjYcA1eDvImjsA,142354
153
+ wayfinder_paths/strategies/basis_trading_strategy/strategy.py,sha256=yJtE4hjilIq5EQFUNNGvizFSkDkVkn8qC8rDHa2nc-Y,142300
154
154
  wayfinder_paths/strategies/basis_trading_strategy/test_strategy.py,sha256=BnjgsYEDkqnG5Qm6zmyOXzgwnunB95UPtr7HLopU9tA,34126
155
155
  wayfinder_paths/strategies/basis_trading_strategy/types.py,sha256=xTkLYqwvS0meMdlRAvIKNH9AANRyz63bQSYFSxLI6n4,740
156
156
  wayfinder_paths/strategies/boros_hype_strategy/__init__.py,sha256=OZlSnGYwlMUsNWWBMIqA7glI5oX9XDQvlgEZ_Ph2uDY,73
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=VUdXhYKldd9094QQ5M6uLui-__3pHvHaqpPMY08ypW4,11490
157
+ wayfinder_paths/strategies/boros_hype_strategy/boros_ops_mixin.py,sha256=IXAVhR4hzZlUuu-0H4gSr4yRslS6PRISqF-z8eZCDxU,20796
158
+ wayfinder_paths/strategies/boros_hype_strategy/constants.py,sha256=0GuzgHWwtAHsaxp6M8BtdqtgHLrhrD9aZHPa934OzQw,5967
159
159
  wayfinder_paths/strategies/boros_hype_strategy/examples.json,sha256=_d3WauNJs6DTaS3oIhLn94lKn9_TtK26bdmS3bOrU9A,638
160
160
  wayfinder_paths/strategies/boros_hype_strategy/hyperevm_ops_mixin.py,sha256=dkihqyCSEMx9sQ6jFSin4yT62FDiOMvlexNWmWrXIYM,5878
161
161
  wayfinder_paths/strategies/boros_hype_strategy/hyperliquid_ops_mixin.py,sha256=aLqjRQvJjqLbNf3UhS62l9yPHQ0nxkq1shjFhCfAiXY,25109
@@ -170,21 +170,21 @@ wayfinder_paths/strategies/boros_hype_strategy/types.py,sha256=-tgHvKn7MvttRucxL
170
170
  wayfinder_paths/strategies/boros_hype_strategy/withdraw_mixin.py,sha256=kQEuDWSU-4UVeaXCC6SJw3FZkb2yI8iJaCxd0_txHcQ,47447
171
171
  wayfinder_paths/strategies/hyperlend_stable_yield_strategy/README.md,sha256=cqCmcWIPiOpCwt-82dnOgHnN64ZUITITR3jqIUYDXmA,2906
172
172
  wayfinder_paths/strategies/hyperlend_stable_yield_strategy/examples.json,sha256=GbVo2p6QiG6M7Ma5s671lw8G9JwnMl1h0n9mrtt-ZS8,164
173
- wayfinder_paths/strategies/hyperlend_stable_yield_strategy/strategy.py,sha256=zlCBrkz7reV4fSxNKQV3kRx2icv8kUDUyi0GGewG9Yg,92725
173
+ wayfinder_paths/strategies/hyperlend_stable_yield_strategy/strategy.py,sha256=PyBAbo-Q80xO3Icr8yVgihsGIrjAqla3q5GnHf5dB8g,92870
174
174
  wayfinder_paths/strategies/hyperlend_stable_yield_strategy/test_strategy.py,sha256=qHUXeTLr23gi7ADN0vuWpUgOGFQML3-kPAWBsL3cumw,14353
175
175
  wayfinder_paths/strategies/moonwell_wsteth_loop_strategy/README.md,sha256=PZVbRXfoMNNrZUZY3YOWBW9A-6By7vi-IBBDIfvcdNc,3594
176
176
  wayfinder_paths/strategies/moonwell_wsteth_loop_strategy/examples.json,sha256=kgNRdZcqne8XTm-Y8Hv1a1pdajRQsey4Qhd5La-iWss,164
177
- wayfinder_paths/strategies/moonwell_wsteth_loop_strategy/strategy.py,sha256=D3pou5S4tZ-48m1Z8l7XP5DRU2AfzYe-p_N9NVuZxps,152697
177
+ wayfinder_paths/strategies/moonwell_wsteth_loop_strategy/strategy.py,sha256=XTzH5vgUpHYvJaiUFpLNR5x0YT-Tr6pdie3VnxmcIOk,152842
178
178
  wayfinder_paths/strategies/moonwell_wsteth_loop_strategy/test_strategy.py,sha256=64Prr3m5Qibe4yBtAAVmNZutLV88xkjDRFobCbXXhLs,37059
179
179
  wayfinder_paths/strategies/stablecoin_yield_strategy/README.md,sha256=efyLd2AJHL_JtHF3eZsnHk2wF4NWzEnuLKRA2vOpLtE,2844
180
180
  wayfinder_paths/strategies/stablecoin_yield_strategy/examples.json,sha256=pL1DNFEvYvXKK7xXD5oQYFPQj3Cm1ocKnk6r_iZk0IY,423
181
- wayfinder_paths/strategies/stablecoin_yield_strategy/strategy.py,sha256=y6fb9J6-v-v1UNlCEx_Nn5s4veRJJwM47ZPXUbADq0E,71768
181
+ wayfinder_paths/strategies/stablecoin_yield_strategy/strategy.py,sha256=QgqrHsp1QK39e3DLl9FmGPSEOvxFZhiM1UV4TnBtWNo,71913
182
182
  wayfinder_paths/strategies/stablecoin_yield_strategy/test_strategy.py,sha256=PJVnFxbHtB6s-A5FaXqrQqQ9Nsg6F7LEnIMOkP_iBsw,17078
183
183
  wayfinder_paths/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
184
184
  wayfinder_paths/tests/test_mcp_quote_swap.py,sha256=In4SxTkjfy7f2dqr8z6g1onHk8N2hQRc7a5_zQwcpXI,5473
185
185
  wayfinder_paths/tests/test_test_coverage.py,sha256=ZU0zhlm1PllvQkrnESPtEVdr-VcFDT6EtPiPRreLukk,7118
186
186
  wayfinder_paths/tests/test_utils.py,sha256=VzweYVaO20deZOwR8RKGYFrDnKTW0gZLm3dBwZiMK28,1015
187
- wayfinder_paths-0.1.29.dist-info/LICENSE,sha256=dYKnlkC_xosBAEQNUvB6cHMuhFgcUtN0oBR7E8_aR2Y,1066
188
- wayfinder_paths-0.1.29.dist-info/METADATA,sha256=VCJEs0tsMttqtWiP90CZynD9OyUCOwbKQn3c9teclus,14473
189
- wayfinder_paths-0.1.29.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
190
- wayfinder_paths-0.1.29.dist-info/RECORD,,
187
+ wayfinder_paths-0.1.30.dist-info/LICENSE,sha256=dYKnlkC_xosBAEQNUvB6cHMuhFgcUtN0oBR7E8_aR2Y,1066
188
+ wayfinder_paths-0.1.30.dist-info/METADATA,sha256=wFbS3EY5pdJ8UpF-l_w08eeUV5gBgR2f9T96dUteJ4E,14473
189
+ wayfinder_paths-0.1.30.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
190
+ wayfinder_paths-0.1.30.dist-info/RECORD,,
@@ -1,19 +0,0 @@
1
- from collections.abc import Awaitable, Callable
2
- from typing import Any
3
-
4
- # EVM transaction signing callback
5
- # Used for signing EVM-compatible transactions (mainnet, Base, Arbitrum, etc.)
6
- # Parameters: transaction dict with to/from/data/value/etc.
7
- # Returns: signed transaction hex string
8
- TransactionSigningCallback = Callable[[dict], Awaitable[str]]
9
-
10
- # Hyperliquid signing callback
11
- # Used for signing Hyperliquid actions (orders, transfers, withdrawals, etc.)
12
- # Parameters:
13
- # - action: dict - The action being signed (order, transfer, etc.)
14
- # - payload: str - Either JSON string (EIP-712) or keccak hash (local) of typed data
15
- # - address: str - The address signing the transaction
16
- # Returns: signature dict {"r": "0x...", "s": "0x...", "v": 28} or None if declined
17
- HyperliquidSignCallback = Callable[
18
- [dict[str, Any], str, str], Awaitable[dict[str, str] | None]
19
- ]