wayfinder-paths 0.1.14__py3-none-any.whl → 0.1.15__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/adapters/balance_adapter/adapter.py +40 -0
- wayfinder_paths/adapters/balance_adapter/test_adapter.py +3 -3
- wayfinder_paths/adapters/brap_adapter/adapter.py +66 -15
- wayfinder_paths/adapters/brap_adapter/test_adapter.py +6 -6
- wayfinder_paths/adapters/hyperlend_adapter/adapter.py +14 -0
- wayfinder_paths/adapters/hyperlend_adapter/test_adapter.py +7 -7
- wayfinder_paths/adapters/hyperliquid_adapter/test_adapter.py +6 -6
- wayfinder_paths/adapters/hyperliquid_adapter/test_adapter_live.py +12 -12
- wayfinder_paths/adapters/ledger_adapter/test_adapter.py +6 -6
- wayfinder_paths/adapters/moonwell_adapter/adapter.py +332 -9
- wayfinder_paths/adapters/moonwell_adapter/test_adapter.py +13 -13
- wayfinder_paths/adapters/pool_adapter/test_adapter.py +2 -2
- wayfinder_paths/adapters/token_adapter/test_adapter.py +4 -4
- wayfinder_paths/core/constants/erc20_abi.py +0 -11
- wayfinder_paths/core/engine/StrategyJob.py +3 -1
- wayfinder_paths/core/services/base.py +1 -0
- wayfinder_paths/core/services/local_evm_txn.py +19 -3
- wayfinder_paths/core/services/local_token_txn.py +1 -5
- wayfinder_paths/core/services/test_local_evm_txn.py +145 -0
- wayfinder_paths/core/strategies/Strategy.py +16 -2
- wayfinder_paths/core/utils/evm_helpers.py +0 -7
- wayfinder_paths/policies/erc20.py +1 -1
- wayfinder_paths/run_strategy.py +5 -0
- wayfinder_paths/strategies/basis_trading_strategy/strategy.py +67 -0
- wayfinder_paths/strategies/basis_trading_strategy/test_strategy.py +6 -6
- wayfinder_paths/strategies/hyperlend_stable_yield_strategy/strategy.py +71 -2
- wayfinder_paths/strategies/moonwell_wsteth_loop_strategy/README.md +6 -5
- wayfinder_paths/strategies/moonwell_wsteth_loop_strategy/strategy.py +2249 -1282
- wayfinder_paths/strategies/moonwell_wsteth_loop_strategy/test_strategy.py +282 -121
- wayfinder_paths/strategies/stablecoin_yield_strategy/strategy.py +65 -0
- wayfinder_paths/templates/adapter/README.md +1 -1
- {wayfinder_paths-0.1.14.dist-info → wayfinder_paths-0.1.15.dist-info}/METADATA +1 -1
- {wayfinder_paths-0.1.14.dist-info → wayfinder_paths-0.1.15.dist-info}/RECORD +35 -35
- wayfinder_paths/abis/generic/erc20.json +0 -383
- {wayfinder_paths-0.1.14.dist-info → wayfinder_paths-0.1.15.dist-info}/LICENSE +0 -0
- {wayfinder_paths-0.1.14.dist-info → wayfinder_paths-0.1.15.dist-info}/WHEEL +0 -0
|
@@ -1,24 +1,23 @@
|
|
|
1
1
|
wayfinder_paths/__init__.py,sha256=YgOg-PRPT3ROh0zg6hgQyQE-YFkFGw6TM77zDvB4_sE,427
|
|
2
|
-
wayfinder_paths/abis/generic/erc20.json,sha256=geyzVzdTNt3u1XHKxi4seszP_GIWIzPTl0FYgiftRnM,9336
|
|
3
2
|
wayfinder_paths/adapters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
3
|
wayfinder_paths/adapters/balance_adapter/README.md,sha256=VCBvhAzgWayVgRZonwAB0oMIip1iXvRWb0cYSmeDmPI,3789
|
|
5
|
-
wayfinder_paths/adapters/balance_adapter/adapter.py,sha256=
|
|
4
|
+
wayfinder_paths/adapters/balance_adapter/adapter.py,sha256=gNWn27olX-bnw-qrY9wmUFqpEtq4hewvRUUFyQ1j370,9921
|
|
6
5
|
wayfinder_paths/adapters/balance_adapter/examples.json,sha256=3R1M4B_VsIy29viAuFT9nQbnQShWl8ZbU-rnSNWUW9U,129
|
|
7
|
-
wayfinder_paths/adapters/balance_adapter/test_adapter.py,sha256=
|
|
6
|
+
wayfinder_paths/adapters/balance_adapter/test_adapter.py,sha256=KxCmbo_fMC1oMNS3B1u7uNsEIzoi0kXTjCqsnnBIHac,6287
|
|
8
7
|
wayfinder_paths/adapters/brap_adapter/README.md,sha256=eOWIwAPdaBuvPCmT_E4myucUSvgupvvQQKDcptgRluw,7756
|
|
9
8
|
wayfinder_paths/adapters/brap_adapter/__init__.py,sha256=jpqxZ-Bv_8kBo-lhgO_QCWaVZNq_WwlkNBHD4RsqOJg,90
|
|
10
|
-
wayfinder_paths/adapters/brap_adapter/adapter.py,sha256=
|
|
9
|
+
wayfinder_paths/adapters/brap_adapter/adapter.py,sha256=0x9UAr6p1NlaIPn36SIp2kFQk6g6Di2IT3YOlAdutMw,32638
|
|
11
10
|
wayfinder_paths/adapters/brap_adapter/examples.json,sha256=FGZhNaMCAQ56KhovEGSsV1BHOcMd_QqQBNmCU6m8zfQ,5389
|
|
12
|
-
wayfinder_paths/adapters/brap_adapter/test_adapter.py,sha256=
|
|
11
|
+
wayfinder_paths/adapters/brap_adapter/test_adapter.py,sha256=XdNMY6nuxkq5xPGor0VXGGZj0vDwsOys5sDgz-co81U,12800
|
|
13
12
|
wayfinder_paths/adapters/hyperlend_adapter/__init__.py,sha256=DsWOnEn-Tlu9ZoIoGaFeSqOYI3b4lXGVK3_FTntWpLw,139
|
|
14
|
-
wayfinder_paths/adapters/hyperlend_adapter/adapter.py,sha256=
|
|
15
|
-
wayfinder_paths/adapters/hyperlend_adapter/test_adapter.py,sha256=
|
|
13
|
+
wayfinder_paths/adapters/hyperlend_adapter/adapter.py,sha256=FnxNa44_BRtUbSaaChZUNZ081an0ajxqYfNhQqYYg1M,10765
|
|
14
|
+
wayfinder_paths/adapters/hyperlend_adapter/test_adapter.py,sha256=rCoy8tkHIOUE31xH0zc3non6E58T-GfAInNpac_f2ls,12096
|
|
16
15
|
wayfinder_paths/adapters/hyperliquid_adapter/__init__.py,sha256=QpA258RzVbxzsha86HQduAuNVG0g0qvsI5OcZunQ8DQ,467
|
|
17
16
|
wayfinder_paths/adapters/hyperliquid_adapter/adapter.py,sha256=Z5Gl9M9wk7PVUIyP_i2oAMegmCTbVFd48Zp57DURh6M,34510
|
|
18
17
|
wayfinder_paths/adapters/hyperliquid_adapter/executor.py,sha256=ix1FmRO6DPiPk0BwGy4zrCP5IfKzzMSQNhnOmIewfGA,18977
|
|
19
18
|
wayfinder_paths/adapters/hyperliquid_adapter/paired_filler.py,sha256=nOBsrAka8PKv5h8SuoJuLTH4HYS4n0vpTIADUCyDKlA,37546
|
|
20
|
-
wayfinder_paths/adapters/hyperliquid_adapter/test_adapter.py,sha256=
|
|
21
|
-
wayfinder_paths/adapters/hyperliquid_adapter/test_adapter_live.py,sha256=
|
|
19
|
+
wayfinder_paths/adapters/hyperliquid_adapter/test_adapter.py,sha256=pZb8FcreC_Y9-_B7BRBZnihquuR2noEddlsJeBQIoAw,4494
|
|
20
|
+
wayfinder_paths/adapters/hyperliquid_adapter/test_adapter_live.py,sha256=RVqfPVLeER7GLFwpIc-66T09pDkFPhyueMB6Ju1yDuY,7576
|
|
22
21
|
wayfinder_paths/adapters/hyperliquid_adapter/test_executor.py,sha256=6tAstfO2fFTWWYSqYsd3jzY5iQ1RrCsLl_0pbwJO-bE,4147
|
|
23
22
|
wayfinder_paths/adapters/hyperliquid_adapter/test_utils.py,sha256=2gSrXJgtfrTqNOQIhBS92vUkfcwhFsMLgFRkf1bzLy8,7290
|
|
24
23
|
wayfinder_paths/adapters/hyperliquid_adapter/utils.py,sha256=WjLEaNVvcB8FfYlTrwZBrmw7k2MLS5KhBeW4NNoLlVI,4254
|
|
@@ -26,21 +25,21 @@ wayfinder_paths/adapters/ledger_adapter/README.md,sha256=_tGIpIkg-TCYddf8d4FhJvJ
|
|
|
26
25
|
wayfinder_paths/adapters/ledger_adapter/__init__.py,sha256=DK9GShIUiQ57YKSqhCKoS43GCweBxi0lzkUQ9sYVxUA,96
|
|
27
26
|
wayfinder_paths/adapters/ledger_adapter/adapter.py,sha256=6Fjxltvn9iXp_-CZtN7lDz1Xt0lWaNQX2drx6lgeryw,10260
|
|
28
27
|
wayfinder_paths/adapters/ledger_adapter/examples.json,sha256=DdqTSe4vnBrfIycQVQQ_JZom7fBGHbL7MR4ppK9ljCY,3936
|
|
29
|
-
wayfinder_paths/adapters/ledger_adapter/test_adapter.py,sha256=
|
|
28
|
+
wayfinder_paths/adapters/ledger_adapter/test_adapter.py,sha256=9q38ublf4mxc8c8K5Rttb8JevljHNz7urEab6czWPpg,7422
|
|
30
29
|
wayfinder_paths/adapters/moonwell_adapter/README.md,sha256=PyQllVXgW0aUUoWhAZ5phLPAxtR9A5GkwesnZznckV8,5465
|
|
31
30
|
wayfinder_paths/adapters/moonwell_adapter/__init__.py,sha256=Gf6AM4BylxxPenUQ_cveUg70QcB9i61SIYaCsXMSjXw,135
|
|
32
|
-
wayfinder_paths/adapters/moonwell_adapter/adapter.py,sha256=
|
|
33
|
-
wayfinder_paths/adapters/moonwell_adapter/test_adapter.py,sha256=
|
|
31
|
+
wayfinder_paths/adapters/moonwell_adapter/adapter.py,sha256=m3RGcjVdPZk-2csd-6jzFnplXX69jslDQjRUZM9BwUw,57712
|
|
32
|
+
wayfinder_paths/adapters/moonwell_adapter/test_adapter.py,sha256=rN8j7zQJCxBdzVDk38rablNmpM4JaU91odKModAjmMA,23336
|
|
34
33
|
wayfinder_paths/adapters/pool_adapter/README.md,sha256=cBeWz8UzOOIKCkyBUDGTujR1vZNPyhgqKO2HNgq0j3I,2470
|
|
35
34
|
wayfinder_paths/adapters/pool_adapter/__init__.py,sha256=rv56pYzz2Gqiz33uoPJktCQRe3CRt8U9ry5GbjVgK3A,90
|
|
36
35
|
wayfinder_paths/adapters/pool_adapter/adapter.py,sha256=zHYCcCjum3jJpG4BZnTJ8YuOyI9ZJlSN5r8TMO4KCDM,1806
|
|
37
36
|
wayfinder_paths/adapters/pool_adapter/examples.json,sha256=NW-7J6_zXxky8uMDRym3jJaPP8hZLEiytQ3WKoZEP54,855
|
|
38
|
-
wayfinder_paths/adapters/pool_adapter/test_adapter.py,sha256=
|
|
37
|
+
wayfinder_paths/adapters/pool_adapter/test_adapter.py,sha256=5AEDGdrCR-D31b8hOhfYo4RpwkPXrJ1Chca38T71fsU,2609
|
|
39
38
|
wayfinder_paths/adapters/token_adapter/README.md,sha256=mvsfm1fZDsNim4A_H0o54l4y4BNH9mxDu2UB_mNz1xw,2338
|
|
40
39
|
wayfinder_paths/adapters/token_adapter/__init__.py,sha256=nEmxrvffEygn3iKH3cZTNLkhnUUhlUAEtshmrFRAjq8,62
|
|
41
40
|
wayfinder_paths/adapters/token_adapter/adapter.py,sha256=aAfcMpxlG5W9UbYQ4mPks0o7A1KsrYyMZzWw-1dQz8Q,3729
|
|
42
41
|
wayfinder_paths/adapters/token_adapter/examples.json,sha256=bvwP9XL9c_endFlMQgkavXh_IzNEEUyJd4gh5QjrcqY,2944
|
|
43
|
-
wayfinder_paths/adapters/token_adapter/test_adapter.py,sha256=
|
|
42
|
+
wayfinder_paths/adapters/token_adapter/test_adapter.py,sha256=vu8evYdDV5I0iOBkMrrfCtGWgcgjTX_Wi2WAFhm_Kvw,4473
|
|
44
43
|
wayfinder_paths/conftest.py,sha256=pqDNijXn9_zmbAdkt_2a18UQLjtsDkNTBJVTgC6H2nA,1136
|
|
45
44
|
wayfinder_paths/core/__init__.py,sha256=AJK8oS2dCVuJ2pmSxqXOCvuWacNaVEU3yALEqsD3rog,398
|
|
46
45
|
wayfinder_paths/core/adapters/BaseAdapter.py,sha256=bzc3ER7aKOsmk9cxyoJxGdI54eibbpcMC8nGYJUrsp0,2033
|
|
@@ -65,28 +64,29 @@ wayfinder_paths/core/clients/sdk_example.py,sha256=SETyEJ_vw7pJcZVMxBMSjJk9Ag3le
|
|
|
65
64
|
wayfinder_paths/core/config.py,sha256=ADdrYAapSCwpV4ljSziBmxZV2Z2ORsu8ku-_MptSjjc,9060
|
|
66
65
|
wayfinder_paths/core/constants/__init__.py,sha256=upAVwHDgMXJ3DWaAuXo52UZktS8NZ17s5XwVH0qxgzg,591
|
|
67
66
|
wayfinder_paths/core/constants/base.py,sha256=BYQAD72XrsY6WRrOMIlUOpXLVANS7EYaS5Ell4Nj1H4,1551
|
|
68
|
-
wayfinder_paths/core/constants/erc20_abi.py,sha256=
|
|
67
|
+
wayfinder_paths/core/constants/erc20_abi.py,sha256=cgqNPvuuJcNBRgcGZrDmm7dIsILWMf_14C5I0sUL_yQ,2898
|
|
69
68
|
wayfinder_paths/core/constants/hyperlend_abi.py,sha256=nIaqsfMl5-_InYN82pjz0FIKsT-AnNkwz0DIc9VrZSc,4331
|
|
70
69
|
wayfinder_paths/core/constants/moonwell_abi.py,sha256=ALb-kKdfF9aUtEHR8OlqvA-3zJ48N66RvVptTJyCfe4,13135
|
|
71
|
-
wayfinder_paths/core/engine/StrategyJob.py,sha256=
|
|
70
|
+
wayfinder_paths/core/engine/StrategyJob.py,sha256=zkYo8TmHdj1Hj8cHMmeLgyWJzO7Vy_onF7I0hq_H_2k,5355
|
|
72
71
|
wayfinder_paths/core/engine/__init__.py,sha256=WZ2KWnmOZnBocYrqdwq6EUHp6lmTyrKyXgHSHyQswnU,108
|
|
73
72
|
wayfinder_paths/core/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
74
|
-
wayfinder_paths/core/services/base.py,sha256=
|
|
75
|
-
wayfinder_paths/core/services/local_evm_txn.py,sha256=
|
|
76
|
-
wayfinder_paths/core/services/local_token_txn.py,sha256=
|
|
73
|
+
wayfinder_paths/core/services/base.py,sha256=xnedv_dOh5sjJkpFzkgPab1ILSzJeHN_A19q54FywHk,4128
|
|
74
|
+
wayfinder_paths/core/services/local_evm_txn.py,sha256=hOVbCKtDJmcYlFdb2OxGjkfdmOd4TV6nj6m2b7lAneQ,13459
|
|
75
|
+
wayfinder_paths/core/services/local_token_txn.py,sha256=R7IHcvM4hyMxY17AjYAelVZm_kztkOyjZtg3KpCJzTY,8327
|
|
76
|
+
wayfinder_paths/core/services/test_local_evm_txn.py,sha256=tmP3pt4QBihA6T3PgCSd8hjBkVh4ImNtKGFiFKOkWWA,4829
|
|
77
77
|
wayfinder_paths/core/services/web3_service.py,sha256=7iR7bfqfUQCQcdfEWVGqy04PZBtZTuzCDpfLt1a-4OI,1485
|
|
78
|
-
wayfinder_paths/core/strategies/Strategy.py,sha256=
|
|
78
|
+
wayfinder_paths/core/strategies/Strategy.py,sha256=Y6UidZ_1LVD_RSlbr9trySCZ4u9Sps4667sc0RXGVQw,9707
|
|
79
79
|
wayfinder_paths/core/strategies/__init__.py,sha256=2NjvvDw6sIQGUFV4Qo1olXTxUOY3GmCM8Ivz_J1FSmc,157
|
|
80
80
|
wayfinder_paths/core/strategies/base.py,sha256=-s0qeiGZl5CHTUL2PavGXM7ACkNlaa0c4jeZR_4DuBM,155
|
|
81
81
|
wayfinder_paths/core/strategies/descriptors.py,sha256=2Olef0VWols1CWb-TWcb5pil2rztC0jP6F_Trpv2hIw,1958
|
|
82
82
|
wayfinder_paths/core/utils/__init__.py,sha256=TEylMYHnG37Z3mizSmw28bUm0vyNBFzf0Nc8dB_7l1A,73
|
|
83
|
-
wayfinder_paths/core/utils/evm_helpers.py,sha256=
|
|
83
|
+
wayfinder_paths/core/utils/evm_helpers.py,sha256=QvVBgjVrdtblzgHSmJMXPeq6UALgvZxXDuv47OKh5KU,5440
|
|
84
84
|
wayfinder_paths/core/utils/wallets.py,sha256=ccCQ128lDShO265AFMOCdijzPLucWe-Neg5wjLrOsnk,1948
|
|
85
85
|
wayfinder_paths/core/wallets/README.md,sha256=ks3tqO3I69PiOXp4hXfZ7ayupvfS0kB8PW3fBR2bDNA,3700
|
|
86
86
|
wayfinder_paths/core/wallets/WalletManager.py,sha256=sptj0Dya9iM87BDzUktrYM_Mw33xyVJNrRUTVfBjHGw,1870
|
|
87
87
|
wayfinder_paths/core/wallets/__init__.py,sha256=hIuhy64pJOs_8mAP7Zup28goXbT8qjBeeVYMkbqlyu8,315
|
|
88
88
|
wayfinder_paths/policies/enso.py,sha256=oytco04eeGjiRbZPGFE1YpH4NxvV0tfVM14QmlyzjkY,428
|
|
89
|
-
wayfinder_paths/policies/erc20.py,sha256=
|
|
89
|
+
wayfinder_paths/policies/erc20.py,sha256=K5PQCUivBrU2nYmIdsIARzRiFy36Rijver-RJnaxNT8,960
|
|
90
90
|
wayfinder_paths/policies/evm.py,sha256=8fJpjAl6XVxr51sVMw_VkWmIaI_lj2T7qrLcR8_sWgs,713
|
|
91
91
|
wayfinder_paths/policies/hyper_evm.py,sha256=wLkrE158rPaDjfU5q-PyRXuQ6KA67VcqWo484UHsLb8,649
|
|
92
92
|
wayfinder_paths/policies/hyperlend.py,sha256=4u0NP80t7rpHlw_nvParUN90sIXypWyXACfE0OPqFys,370
|
|
@@ -94,7 +94,7 @@ wayfinder_paths/policies/hyperliquid.py,sha256=hAxNtWdxavwf_a-AnlXMOmEYakkNBkrPT
|
|
|
94
94
|
wayfinder_paths/policies/moonwell.py,sha256=sKWLbruMKiW7Yh1DhXdVPRe0JBP-nooNybRz0G9PgvA,1605
|
|
95
95
|
wayfinder_paths/policies/prjx.py,sha256=6kfZ6OQFroFHYJl4vSWT-svwwfvoHlS_ZrcHt8nmZMU,743
|
|
96
96
|
wayfinder_paths/policies/util.py,sha256=r8xQLPvE3kU21_LG6VbkFI9sUSYltcsKunryZdHOUDA,912
|
|
97
|
-
wayfinder_paths/run_strategy.py,sha256=
|
|
97
|
+
wayfinder_paths/run_strategy.py,sha256=I6K7ILOniVtB_0n8oJTkmdfB8qdsNWgEyfrKP5tZYK8,11672
|
|
98
98
|
wayfinder_paths/scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
99
99
|
wayfinder_paths/scripts/create_strategy.py,sha256=WQQLBhClfjyLxEaKubQkBqBpSOFESnk1m6WTau9LylQ,5352
|
|
100
100
|
wayfinder_paths/scripts/make_wallets.py,sha256=RuCa9uYAsOzv8TyFdeOH89-SPJVGXwl5RuAqfJesLOk,5237
|
|
@@ -105,23 +105,23 @@ wayfinder_paths/strategies/basis_trading_strategy/__init__.py,sha256=kVcehFjBUto
|
|
|
105
105
|
wayfinder_paths/strategies/basis_trading_strategy/constants.py,sha256=PJ1WtSALxiuW1FXx-BF30ciFISEhO5VBfrSZyfhPuz0,45
|
|
106
106
|
wayfinder_paths/strategies/basis_trading_strategy/examples.json,sha256=q2wlAH8Gr-LUJeamKzWL1EtChL3TBWe0HQ4_P-VCdqQ,429
|
|
107
107
|
wayfinder_paths/strategies/basis_trading_strategy/snapshot_mixin.py,sha256=jjXv-w-uXdkw3-eSUgMmWCE7cPCRrkhyD4_TQjOnRO0,38640
|
|
108
|
-
wayfinder_paths/strategies/basis_trading_strategy/strategy.py,sha256=
|
|
109
|
-
wayfinder_paths/strategies/basis_trading_strategy/test_strategy.py,sha256=
|
|
108
|
+
wayfinder_paths/strategies/basis_trading_strategy/strategy.py,sha256=M0t-EyqM8iuR69PItBfaEgv1myhqm4TjTwvxOkQme7Q,163957
|
|
109
|
+
wayfinder_paths/strategies/basis_trading_strategy/test_strategy.py,sha256=0BHLaUda3hnEjyu6pR45ER_Yjd4UL91-nKhgYcleTAE,40101
|
|
110
110
|
wayfinder_paths/strategies/basis_trading_strategy/types.py,sha256=rlbouTUOVPLfGPzMbsf-fUmMcn0R_OsG-IdfiBJmmqI,845
|
|
111
111
|
wayfinder_paths/strategies/config.py,sha256=5dv-8tWwoxH3Sxd9jtiw90shrLipEe3UlU-IYUBfciM,2762
|
|
112
112
|
wayfinder_paths/strategies/hyperlend_stable_yield_strategy/README.md,sha256=3dOmUCjs_zu4TgPhis0WG-U1XP_dl9aEGi49EkW_-jw,4180
|
|
113
113
|
wayfinder_paths/strategies/hyperlend_stable_yield_strategy/examples.json,sha256=GbVo2p6QiG6M7Ma5s671lw8G9JwnMl1h0n9mrtt-ZS8,164
|
|
114
|
-
wayfinder_paths/strategies/hyperlend_stable_yield_strategy/strategy.py,sha256=
|
|
114
|
+
wayfinder_paths/strategies/hyperlend_stable_yield_strategy/strategy.py,sha256=rHrTWb0oozvXd9FaBu8MQryW16cQhA2m6EudM4aEd1Q,95263
|
|
115
115
|
wayfinder_paths/strategies/hyperlend_stable_yield_strategy/test_strategy.py,sha256=YFyfls9HjlB5DbzcPWa7_OFbAJrW7i_HWhGtA6_YXPo,17067
|
|
116
|
-
wayfinder_paths/strategies/moonwell_wsteth_loop_strategy/README.md,sha256=
|
|
116
|
+
wayfinder_paths/strategies/moonwell_wsteth_loop_strategy/README.md,sha256=93JLdakJO-URxnLuggvXEZrCjf-6kFKnZt4J04i_3qI,4854
|
|
117
117
|
wayfinder_paths/strategies/moonwell_wsteth_loop_strategy/examples.json,sha256=kgNRdZcqne8XTm-Y8Hv1a1pdajRQsey4Qhd5La-iWss,164
|
|
118
|
-
wayfinder_paths/strategies/moonwell_wsteth_loop_strategy/strategy.py,sha256=
|
|
119
|
-
wayfinder_paths/strategies/moonwell_wsteth_loop_strategy/test_strategy.py,sha256=
|
|
118
|
+
wayfinder_paths/strategies/moonwell_wsteth_loop_strategy/strategy.py,sha256=q-BuaLzY-vtXXqIFb0cUQi7tSWYFMwrJBcnP7o6yGPc,162764
|
|
119
|
+
wayfinder_paths/strategies/moonwell_wsteth_loop_strategy/test_strategy.py,sha256=f1w6jYZlfg0pdZDLmD01PNXENph8MIb03_GgPRNEXZ4,38348
|
|
120
120
|
wayfinder_paths/strategies/stablecoin_yield_strategy/README.md,sha256=ZiHXmnyvh85sC-X1a_HzUcUZRvNEjwbmrSQkRIK8OQQ,4980
|
|
121
121
|
wayfinder_paths/strategies/stablecoin_yield_strategy/examples.json,sha256=pL1DNFEvYvXKK7xXD5oQYFPQj3Cm1ocKnk6r_iZk0IY,423
|
|
122
|
-
wayfinder_paths/strategies/stablecoin_yield_strategy/strategy.py,sha256=
|
|
122
|
+
wayfinder_paths/strategies/stablecoin_yield_strategy/strategy.py,sha256=vJ7FdHxhsDxaQhHmLZ6788gpLsGsVNt6n3jjtvQ7qEI,79937
|
|
123
123
|
wayfinder_paths/strategies/stablecoin_yield_strategy/test_strategy.py,sha256=gEw7kEeC9-TPTbsbAjhalsNQEcAdwelh_w8fT0i_bW0,21085
|
|
124
|
-
wayfinder_paths/templates/adapter/README.md,sha256=
|
|
124
|
+
wayfinder_paths/templates/adapter/README.md,sha256=saBsgYOjdI-EMZIjc8wO0CYm4KgsC7zN7I_ucH6iNeg,2886
|
|
125
125
|
wayfinder_paths/templates/adapter/adapter.py,sha256=UGPvD8SNcrEtYQXRTUxvK9WZ9Bzx1Xwb8sr9zSbqnuc,763
|
|
126
126
|
wayfinder_paths/templates/adapter/examples.json,sha256=KLHy3AgPIplAaZN0qY2A-HBMa1xXkMhIyusORovTD9w,79
|
|
127
127
|
wayfinder_paths/templates/adapter/test_adapter.py,sha256=PeG9ZZwx-cWXCDUKxrvj1cR8ljo9aXrKANZuz2hFAhk,1510
|
|
@@ -133,7 +133,7 @@ wayfinder_paths/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3h
|
|
|
133
133
|
wayfinder_paths/tests/test_smoke_manifest.py,sha256=kTcIa4qikcspVh2ohQIk0aHUdIvBvcQBfNbm3PNiVvg,1636
|
|
134
134
|
wayfinder_paths/tests/test_test_coverage.py,sha256=9NrZeVmP02D4W7Qc0XjciC05bhvdTCVibYjTGfa_GQk,7893
|
|
135
135
|
wayfinder_paths/tests/test_utils.py,sha256=pxHT0QKFlyJeJo8bFnKXzWcOdi6t8rbJ0JFCBaFCBRQ,2112
|
|
136
|
-
wayfinder_paths-0.1.
|
|
137
|
-
wayfinder_paths-0.1.
|
|
138
|
-
wayfinder_paths-0.1.
|
|
139
|
-
wayfinder_paths-0.1.
|
|
136
|
+
wayfinder_paths-0.1.15.dist-info/LICENSE,sha256=dYKnlkC_xosBAEQNUvB6cHMuhFgcUtN0oBR7E8_aR2Y,1066
|
|
137
|
+
wayfinder_paths-0.1.15.dist-info/METADATA,sha256=klcqgBmJs6xKwmJQfuI63h0wZLUzErhMESrrF0t8Fx8,24314
|
|
138
|
+
wayfinder_paths-0.1.15.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
|
|
139
|
+
wayfinder_paths-0.1.15.dist-info/RECORD,,
|
|
@@ -1,383 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"constant": true,
|
|
4
|
-
"inputs": [
|
|
5
|
-
{
|
|
6
|
-
"name": "owner",
|
|
7
|
-
"type": "address"
|
|
8
|
-
},
|
|
9
|
-
{
|
|
10
|
-
"name": "spender",
|
|
11
|
-
"type": "address"
|
|
12
|
-
}
|
|
13
|
-
],
|
|
14
|
-
"name": "allowance",
|
|
15
|
-
"outputs": [
|
|
16
|
-
{
|
|
17
|
-
"name": "",
|
|
18
|
-
"type": "uint256"
|
|
19
|
-
}
|
|
20
|
-
],
|
|
21
|
-
"type": "function"
|
|
22
|
-
},
|
|
23
|
-
{
|
|
24
|
-
"constant": true,
|
|
25
|
-
"inputs": [
|
|
26
|
-
{
|
|
27
|
-
"name": "account",
|
|
28
|
-
"type": "address"
|
|
29
|
-
}
|
|
30
|
-
],
|
|
31
|
-
"name": "balanceOf",
|
|
32
|
-
"outputs": [
|
|
33
|
-
{
|
|
34
|
-
"name": "",
|
|
35
|
-
"type": "uint256"
|
|
36
|
-
}
|
|
37
|
-
],
|
|
38
|
-
"type": "function"
|
|
39
|
-
},
|
|
40
|
-
{
|
|
41
|
-
"constant": true,
|
|
42
|
-
"inputs": [],
|
|
43
|
-
"name": "decimals",
|
|
44
|
-
"outputs": [
|
|
45
|
-
{
|
|
46
|
-
"name": "",
|
|
47
|
-
"type": "uint8"
|
|
48
|
-
}
|
|
49
|
-
],
|
|
50
|
-
"type": "function"
|
|
51
|
-
},
|
|
52
|
-
{
|
|
53
|
-
"constant": true,
|
|
54
|
-
"inputs": [],
|
|
55
|
-
"name": "name",
|
|
56
|
-
"outputs": [
|
|
57
|
-
{
|
|
58
|
-
"name": "",
|
|
59
|
-
"type": "string"
|
|
60
|
-
}
|
|
61
|
-
],
|
|
62
|
-
"type": "function"
|
|
63
|
-
},
|
|
64
|
-
{
|
|
65
|
-
"constant": true,
|
|
66
|
-
"inputs": [],
|
|
67
|
-
"name": "symbol",
|
|
68
|
-
"outputs": [
|
|
69
|
-
{
|
|
70
|
-
"name": "",
|
|
71
|
-
"type": "string"
|
|
72
|
-
}
|
|
73
|
-
],
|
|
74
|
-
"type": "function"
|
|
75
|
-
},
|
|
76
|
-
{
|
|
77
|
-
"constant": false,
|
|
78
|
-
"inputs": [
|
|
79
|
-
{
|
|
80
|
-
"name": "recipient",
|
|
81
|
-
"type": "address"
|
|
82
|
-
},
|
|
83
|
-
{
|
|
84
|
-
"name": "amount",
|
|
85
|
-
"type": "uint256"
|
|
86
|
-
}
|
|
87
|
-
],
|
|
88
|
-
"name": "transfer",
|
|
89
|
-
"outputs": [
|
|
90
|
-
{
|
|
91
|
-
"name": "",
|
|
92
|
-
"type": "bool"
|
|
93
|
-
}
|
|
94
|
-
],
|
|
95
|
-
"type": "function"
|
|
96
|
-
},
|
|
97
|
-
{
|
|
98
|
-
"constant": false,
|
|
99
|
-
"inputs": [
|
|
100
|
-
{
|
|
101
|
-
"name": "spender",
|
|
102
|
-
"type": "address"
|
|
103
|
-
},
|
|
104
|
-
{
|
|
105
|
-
"name": "amount",
|
|
106
|
-
"type": "uint256"
|
|
107
|
-
}
|
|
108
|
-
],
|
|
109
|
-
"name": "approve",
|
|
110
|
-
"outputs": [
|
|
111
|
-
{
|
|
112
|
-
"name": "",
|
|
113
|
-
"type": "bool"
|
|
114
|
-
}
|
|
115
|
-
],
|
|
116
|
-
"type": "function"
|
|
117
|
-
},
|
|
118
|
-
{
|
|
119
|
-
"inputs": [
|
|
120
|
-
{
|
|
121
|
-
"internalType": "address",
|
|
122
|
-
"name": "tokenA",
|
|
123
|
-
"type": "address"
|
|
124
|
-
},
|
|
125
|
-
{
|
|
126
|
-
"internalType": "address",
|
|
127
|
-
"name": "tokenB",
|
|
128
|
-
"type": "address"
|
|
129
|
-
},
|
|
130
|
-
{
|
|
131
|
-
"internalType": "bool",
|
|
132
|
-
"name": "stable",
|
|
133
|
-
"type": "bool"
|
|
134
|
-
},
|
|
135
|
-
{
|
|
136
|
-
"internalType": "uint256",
|
|
137
|
-
"name": "amountADesired",
|
|
138
|
-
"type": "uint256"
|
|
139
|
-
},
|
|
140
|
-
{
|
|
141
|
-
"internalType": "uint256",
|
|
142
|
-
"name": "amountBDesired",
|
|
143
|
-
"type": "uint256"
|
|
144
|
-
},
|
|
145
|
-
{
|
|
146
|
-
"internalType": "uint256",
|
|
147
|
-
"name": "amountAMin",
|
|
148
|
-
"type": "uint256"
|
|
149
|
-
},
|
|
150
|
-
{
|
|
151
|
-
"internalType": "uint256",
|
|
152
|
-
"name": "amountBMin",
|
|
153
|
-
"type": "uint256"
|
|
154
|
-
},
|
|
155
|
-
{
|
|
156
|
-
"internalType": "address",
|
|
157
|
-
"name": "to",
|
|
158
|
-
"type": "address"
|
|
159
|
-
},
|
|
160
|
-
{
|
|
161
|
-
"internalType": "uint256",
|
|
162
|
-
"name": "deadline",
|
|
163
|
-
"type": "uint256"
|
|
164
|
-
}
|
|
165
|
-
],
|
|
166
|
-
"name": "addLiquidity",
|
|
167
|
-
"outputs": [
|
|
168
|
-
{
|
|
169
|
-
"internalType": "uint256",
|
|
170
|
-
"name": "amountA",
|
|
171
|
-
"type": "uint256"
|
|
172
|
-
},
|
|
173
|
-
{
|
|
174
|
-
"internalType": "uint256",
|
|
175
|
-
"name": "amountB",
|
|
176
|
-
"type": "uint256"
|
|
177
|
-
},
|
|
178
|
-
{
|
|
179
|
-
"internalType": "uint256",
|
|
180
|
-
"name": "liquidity",
|
|
181
|
-
"type": "uint256"
|
|
182
|
-
}
|
|
183
|
-
],
|
|
184
|
-
"stateMutability": "nonpayable",
|
|
185
|
-
"type": "function"
|
|
186
|
-
},
|
|
187
|
-
{
|
|
188
|
-
"inputs": [
|
|
189
|
-
{
|
|
190
|
-
"internalType": "address",
|
|
191
|
-
"name": "tokenA",
|
|
192
|
-
"type": "address"
|
|
193
|
-
},
|
|
194
|
-
{
|
|
195
|
-
"internalType": "address",
|
|
196
|
-
"name": "tokenB",
|
|
197
|
-
"type": "address"
|
|
198
|
-
},
|
|
199
|
-
{
|
|
200
|
-
"internalType": "bool",
|
|
201
|
-
"name": "stable",
|
|
202
|
-
"type": "bool"
|
|
203
|
-
},
|
|
204
|
-
{
|
|
205
|
-
"internalType": "address",
|
|
206
|
-
"name": "_factory",
|
|
207
|
-
"type": "address"
|
|
208
|
-
},
|
|
209
|
-
{
|
|
210
|
-
"internalType": "uint256",
|
|
211
|
-
"name": "amountADesired",
|
|
212
|
-
"type": "uint256"
|
|
213
|
-
},
|
|
214
|
-
{
|
|
215
|
-
"internalType": "uint256",
|
|
216
|
-
"name": "amountBDesired",
|
|
217
|
-
"type": "uint256"
|
|
218
|
-
}
|
|
219
|
-
],
|
|
220
|
-
"name": "quoteAddLiquidity",
|
|
221
|
-
"outputs": [
|
|
222
|
-
{
|
|
223
|
-
"internalType": "uint256",
|
|
224
|
-
"name": "amountA",
|
|
225
|
-
"type": "uint256"
|
|
226
|
-
},
|
|
227
|
-
{
|
|
228
|
-
"internalType": "uint256",
|
|
229
|
-
"name": "amountB",
|
|
230
|
-
"type": "uint256"
|
|
231
|
-
},
|
|
232
|
-
{
|
|
233
|
-
"internalType": "uint256",
|
|
234
|
-
"name": "liquidity",
|
|
235
|
-
"type": "uint256"
|
|
236
|
-
}
|
|
237
|
-
],
|
|
238
|
-
"stateMutability": "view",
|
|
239
|
-
"type": "function"
|
|
240
|
-
},
|
|
241
|
-
{
|
|
242
|
-
"inputs": [],
|
|
243
|
-
"name": "defaultFactory",
|
|
244
|
-
"outputs": [
|
|
245
|
-
{
|
|
246
|
-
"internalType": "address",
|
|
247
|
-
"name": "",
|
|
248
|
-
"type": "address"
|
|
249
|
-
}
|
|
250
|
-
],
|
|
251
|
-
"stateMutability": "view",
|
|
252
|
-
"type": "function"
|
|
253
|
-
},
|
|
254
|
-
{
|
|
255
|
-
"inputs": [
|
|
256
|
-
{
|
|
257
|
-
"internalType": "address",
|
|
258
|
-
"name": "tokenA",
|
|
259
|
-
"type": "address"
|
|
260
|
-
},
|
|
261
|
-
{
|
|
262
|
-
"internalType": "address",
|
|
263
|
-
"name": "tokenB",
|
|
264
|
-
"type": "address"
|
|
265
|
-
},
|
|
266
|
-
{
|
|
267
|
-
"internalType": "bool",
|
|
268
|
-
"name": "stable",
|
|
269
|
-
"type": "bool"
|
|
270
|
-
},
|
|
271
|
-
{
|
|
272
|
-
"internalType": "address",
|
|
273
|
-
"name": "_factory",
|
|
274
|
-
"type": "address"
|
|
275
|
-
},
|
|
276
|
-
{
|
|
277
|
-
"internalType": "uint256",
|
|
278
|
-
"name": "liquidity",
|
|
279
|
-
"type": "uint256"
|
|
280
|
-
}
|
|
281
|
-
],
|
|
282
|
-
"name": "quoteRemoveLiquidity",
|
|
283
|
-
"outputs": [
|
|
284
|
-
{
|
|
285
|
-
"internalType": "uint256",
|
|
286
|
-
"name": "amountA",
|
|
287
|
-
"type": "uint256"
|
|
288
|
-
},
|
|
289
|
-
{
|
|
290
|
-
"internalType": "uint256",
|
|
291
|
-
"name": "amountB",
|
|
292
|
-
"type": "uint256"
|
|
293
|
-
}
|
|
294
|
-
],
|
|
295
|
-
"stateMutability": "view",
|
|
296
|
-
"type": "function"
|
|
297
|
-
},
|
|
298
|
-
{
|
|
299
|
-
"inputs": [
|
|
300
|
-
{
|
|
301
|
-
"internalType": "address",
|
|
302
|
-
"name": "tokenA",
|
|
303
|
-
"type": "address"
|
|
304
|
-
},
|
|
305
|
-
{
|
|
306
|
-
"internalType": "address",
|
|
307
|
-
"name": "tokenB",
|
|
308
|
-
"type": "address"
|
|
309
|
-
},
|
|
310
|
-
{
|
|
311
|
-
"internalType": "bool",
|
|
312
|
-
"name": "stable",
|
|
313
|
-
"type": "bool"
|
|
314
|
-
},
|
|
315
|
-
{
|
|
316
|
-
"internalType": "uint256",
|
|
317
|
-
"name": "liquidity",
|
|
318
|
-
"type": "uint256"
|
|
319
|
-
},
|
|
320
|
-
{
|
|
321
|
-
"internalType": "uint256",
|
|
322
|
-
"name": "amountAMin",
|
|
323
|
-
"type": "uint256"
|
|
324
|
-
},
|
|
325
|
-
{
|
|
326
|
-
"internalType": "uint256",
|
|
327
|
-
"name": "amountBMin",
|
|
328
|
-
"type": "uint256"
|
|
329
|
-
},
|
|
330
|
-
{
|
|
331
|
-
"internalType": "address",
|
|
332
|
-
"name": "to",
|
|
333
|
-
"type": "address"
|
|
334
|
-
},
|
|
335
|
-
{
|
|
336
|
-
"internalType": "uint256",
|
|
337
|
-
"name": "deadline",
|
|
338
|
-
"type": "uint256"
|
|
339
|
-
}
|
|
340
|
-
],
|
|
341
|
-
"name": "removeLiquidity",
|
|
342
|
-
"outputs": [
|
|
343
|
-
{
|
|
344
|
-
"internalType": "uint256",
|
|
345
|
-
"name": "amountA",
|
|
346
|
-
"type": "uint256"
|
|
347
|
-
},
|
|
348
|
-
{
|
|
349
|
-
"internalType": "uint256",
|
|
350
|
-
"name": "amountB",
|
|
351
|
-
"type": "uint256"
|
|
352
|
-
}
|
|
353
|
-
],
|
|
354
|
-
"stateMutability": "nonpayable",
|
|
355
|
-
"type": "function"
|
|
356
|
-
},
|
|
357
|
-
{
|
|
358
|
-
"inputs": [
|
|
359
|
-
{
|
|
360
|
-
"internalType": "uint256",
|
|
361
|
-
"name": "_amount",
|
|
362
|
-
"type": "uint256"
|
|
363
|
-
}
|
|
364
|
-
],
|
|
365
|
-
"name": "deposit",
|
|
366
|
-
"outputs": [],
|
|
367
|
-
"stateMutability": "nonpayable",
|
|
368
|
-
"type": "function"
|
|
369
|
-
},
|
|
370
|
-
{
|
|
371
|
-
"inputs": [
|
|
372
|
-
{
|
|
373
|
-
"internalType": "uint256",
|
|
374
|
-
"name": "_shares",
|
|
375
|
-
"type": "uint256"
|
|
376
|
-
}
|
|
377
|
-
],
|
|
378
|
-
"name": "withdraw",
|
|
379
|
-
"outputs": [],
|
|
380
|
-
"stateMutability": "nonpayable",
|
|
381
|
-
"type": "function"
|
|
382
|
-
}
|
|
383
|
-
]
|
|
File without changes
|
|
File without changes
|