@defisaver/automation-sdk 3.0.8 → 3.0.9-dev
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.
- package/README.md +1 -1
- package/all_comits.txt +2134 -0
- package/esm/abis/SubStorage.json +4 -0
- package/esm/abis/UniMulticall.json +3 -0
- package/esm/automation/public/BaseStrategies.d.ts +5 -0
- package/esm/automation/public/BaseStrategies.js +13 -0
- package/esm/constants/index.d.ts +5 -1
- package/esm/constants/index.js +49 -1
- package/esm/index.d.ts +2 -1
- package/esm/index.js +3 -1
- package/esm/services/strategiesService.js +1 -0
- package/esm/services/strategySubService.d.ts +2 -2
- package/esm/types/enums.d.ts +14 -1
- package/esm/types/enums.js +15 -0
- package/esm/types/index.d.ts +7 -3
- package/package.json +1 -1
- package/src/abis/SubStorage.json +4 -0
- package/src/abis/UniMulticall.json +3 -0
- package/src/automation/public/BaseStrategies.ts +10 -0
- package/src/constants/index.ts +52 -1
- package/src/index.ts +2 -1
- package/src/services/strategiesService.ts +2 -0
- package/src/types/enums.ts +15 -0
- package/src/types/index.ts +11 -5
- package/umd/index.js +120 -23
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# SDK for fetching DeFi Saver strategies data from the blockchain.
|
|
2
2
|
|
|
3
3
|
Fetch strategies data from the blockchain, and parse it into a readable format.
|
|
4
|
-
Use one of the following classes to fetch data for strategies: EthereumStrategies, OptimismStrategies, or
|
|
4
|
+
Use one of the following classes to fetch data for strategies: EthereumStrategies, OptimismStrategies, ArbitrumStrategies or BaseStrategies.
|
|
5
5
|
Use one of the following classes to fetch data for legacy automation: LegacyMakerAutomation, LegacyAaveAutomation, or LegacyCompoundAutomation.
|
|
6
6
|
Various services and constants also available for use.
|
|
7
7
|
|