@defisaver/automation-sdk 3.0.9 → 3.1.1-dev-2

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.
Files changed (242) hide show
  1. package/.babelrc +3 -3
  2. package/.editorconfig +9 -9
  3. package/.env.dev +4 -4
  4. package/.eslintignore +6 -7
  5. package/.eslintrc.js +39 -41
  6. package/.mocharc.json +5 -0
  7. package/.nvmrc +1 -0
  8. package/README.md +47 -41
  9. package/cjs/abis/Erc20.json +223 -0
  10. package/cjs/abis/SubStorage.json +21 -0
  11. package/cjs/abis/UniMulticall.json +17 -0
  12. package/cjs/abis/index.d.ts +9 -0
  13. package/cjs/abis/index.js +30 -0
  14. package/cjs/abis/legacy_AaveV2Subscriptions.json +8 -0
  15. package/cjs/abis/legacy_AuthCheck.json +8 -0
  16. package/cjs/abis/legacy_CompoundV2Subscriptions.json +9 -0
  17. package/cjs/abis/legacy_MakerSubscriptions.json +9 -0
  18. package/cjs/automation/private/Automation.d.ts +12 -0
  19. package/cjs/automation/private/Automation.js +42 -0
  20. package/cjs/automation/private/LegacyAutomation.d.ts +25 -0
  21. package/cjs/automation/private/LegacyAutomation.js +118 -0
  22. package/cjs/automation/private/LegacyProtocol.d.ts +22 -0
  23. package/cjs/automation/private/LegacyProtocol.js +41 -0
  24. package/cjs/automation/private/LegacyProtocol.test.d.ts +1 -0
  25. package/cjs/automation/private/LegacyProtocol.test.js +25 -0
  26. package/cjs/automation/private/Protocol.d.ts +22 -0
  27. package/cjs/automation/private/Protocol.js +41 -0
  28. package/cjs/automation/private/Protocol.test.d.ts +1 -0
  29. package/cjs/automation/private/Protocol.test.js +25 -0
  30. package/cjs/automation/private/StrategiesAutomation.d.ts +33 -0
  31. package/cjs/automation/private/StrategiesAutomation.js +181 -0
  32. package/cjs/automation/private/StrategiesAutomation.test.d.ts +1 -0
  33. package/cjs/automation/private/StrategiesAutomation.test.js +671 -0
  34. package/cjs/automation/public/ArbitrumStrategies.d.ts +5 -0
  35. package/cjs/automation/public/ArbitrumStrategies.js +13 -0
  36. package/cjs/automation/public/BaseStrategies.d.ts +5 -0
  37. package/cjs/automation/public/BaseStrategies.js +13 -0
  38. package/cjs/automation/public/EthereumStrategies.d.ts +5 -0
  39. package/cjs/automation/public/EthereumStrategies.js +13 -0
  40. package/cjs/automation/public/OptimismStrategies.d.ts +5 -0
  41. package/cjs/automation/public/OptimismStrategies.js +13 -0
  42. package/cjs/automation/public/legacy/LegacyAaveAutomation.d.ts +6 -0
  43. package/cjs/automation/public/legacy/LegacyAaveAutomation.js +20 -0
  44. package/cjs/automation/public/legacy/LegacyCompoundAutomation.d.ts +6 -0
  45. package/cjs/automation/public/legacy/LegacyCompoundAutomation.js +20 -0
  46. package/cjs/automation/public/legacy/LegacyMakerAutomation.d.ts +6 -0
  47. package/cjs/automation/public/legacy/LegacyMakerAutomation.js +20 -0
  48. package/cjs/configuration.d.ts +1 -0
  49. package/cjs/configuration.js +12 -0
  50. package/cjs/constants/index.d.ts +28 -0
  51. package/cjs/constants/index.js +489 -0
  52. package/cjs/index.d.ts +23 -0
  53. package/cjs/index.js +65 -0
  54. package/cjs/services/contractService.d.ts +12 -0
  55. package/cjs/services/contractService.js +54 -0
  56. package/cjs/services/ethereumService.d.ts +7 -0
  57. package/cjs/services/ethereumService.js +49 -0
  58. package/cjs/services/ethereumService.test.d.ts +1 -0
  59. package/cjs/services/ethereumService.test.js +242 -0
  60. package/cjs/services/strategiesService.d.ts +2 -0
  61. package/cjs/services/strategiesService.js +778 -0
  62. package/cjs/services/strategiesService.test.d.ts +1 -0
  63. package/cjs/services/strategiesService.test.js +110 -0
  64. package/cjs/services/strategySubService.d.ts +104 -0
  65. package/cjs/services/strategySubService.js +286 -0
  66. package/cjs/services/strategySubService.test.d.ts +1 -0
  67. package/cjs/services/strategySubService.test.js +934 -0
  68. package/cjs/services/subDataService.d.ts +211 -0
  69. package/cjs/services/subDataService.js +529 -0
  70. package/cjs/services/subDataService.test.d.ts +1 -0
  71. package/cjs/services/subDataService.test.js +1282 -0
  72. package/cjs/services/triggerService.d.ts +208 -0
  73. package/cjs/services/triggerService.js +399 -0
  74. package/cjs/services/triggerService.test.d.ts +1 -0
  75. package/cjs/services/triggerService.test.js +926 -0
  76. package/cjs/services/utils.d.ts +26 -0
  77. package/cjs/services/utils.js +159 -0
  78. package/cjs/services/utils.test.d.ts +1 -0
  79. package/cjs/services/utils.test.js +376 -0
  80. package/cjs/types/contracts/generated/Erc20.d.ts +53 -0
  81. package/cjs/types/contracts/generated/Erc20.js +5 -0
  82. package/cjs/types/contracts/generated/Legacy_AaveV2Subscriptions.d.ts +129 -0
  83. package/cjs/types/contracts/generated/Legacy_AaveV2Subscriptions.js +5 -0
  84. package/cjs/types/contracts/generated/Legacy_AuthCheck.d.ts +20 -0
  85. package/cjs/types/contracts/generated/Legacy_AuthCheck.js +5 -0
  86. package/cjs/types/contracts/generated/Legacy_CompoundV2Subscriptions.d.ts +128 -0
  87. package/cjs/types/contracts/generated/Legacy_CompoundV2Subscriptions.js +5 -0
  88. package/cjs/types/contracts/generated/Legacy_MakerSubscriptions.d.ts +246 -0
  89. package/cjs/types/contracts/generated/Legacy_MakerSubscriptions.js +5 -0
  90. package/cjs/types/contracts/generated/SubStorage.d.ts +114 -0
  91. package/cjs/types/contracts/generated/SubStorage.js +5 -0
  92. package/cjs/types/contracts/generated/UniMulticall.d.ts +55 -0
  93. package/cjs/types/contracts/generated/UniMulticall.js +5 -0
  94. package/cjs/types/contracts/generated/index.d.ts +7 -0
  95. package/cjs/types/contracts/generated/index.js +2 -0
  96. package/cjs/types/contracts/generated/types.d.ts +54 -0
  97. package/cjs/types/contracts/generated/types.js +2 -0
  98. package/cjs/types/enums.d.ts +208 -0
  99. package/cjs/types/enums.js +234 -0
  100. package/cjs/types/index.d.ts +224 -0
  101. package/cjs/types/index.js +2 -0
  102. package/esm/abis/Erc20.json +223 -223
  103. package/esm/abis/SubStorage.json +21 -17
  104. package/esm/abis/UniMulticall.json +17 -14
  105. package/esm/abis/index.d.ts +9 -9
  106. package/esm/abis/index.js +18 -30
  107. package/esm/abis/legacy_AaveV2Subscriptions.json +8 -8
  108. package/esm/abis/legacy_AuthCheck.json +8 -8
  109. package/esm/abis/legacy_CompoundV2Subscriptions.json +9 -9
  110. package/esm/abis/legacy_MakerSubscriptions.json +9 -9
  111. package/esm/automation/private/Automation.d.ts +12 -12
  112. package/esm/automation/private/Automation.js +39 -42
  113. package/esm/automation/private/LegacyAutomation.d.ts +25 -25
  114. package/esm/automation/private/LegacyAutomation.js +112 -118
  115. package/esm/automation/private/LegacyProtocol.d.ts +22 -22
  116. package/esm/automation/private/LegacyProtocol.js +38 -41
  117. package/esm/automation/private/LegacyProtocol.test.d.ts +1 -1
  118. package/esm/automation/private/LegacyProtocol.test.js +20 -25
  119. package/esm/automation/private/Protocol.d.ts +22 -22
  120. package/esm/automation/private/Protocol.js +38 -41
  121. package/esm/automation/private/Protocol.test.d.ts +1 -1
  122. package/esm/automation/private/Protocol.test.js +20 -25
  123. package/esm/automation/private/StrategiesAutomation.d.ts +33 -33
  124. package/esm/automation/private/StrategiesAutomation.js +175 -181
  125. package/esm/automation/private/StrategiesAutomation.test.d.ts +1 -1
  126. package/esm/automation/private/StrategiesAutomation.test.js +666 -671
  127. package/esm/automation/public/ArbitrumStrategies.d.ts +5 -5
  128. package/esm/automation/public/ArbitrumStrategies.js +7 -13
  129. package/esm/automation/public/BaseStrategies.d.ts +5 -0
  130. package/esm/automation/public/BaseStrategies.js +7 -0
  131. package/esm/automation/public/EthereumStrategies.d.ts +5 -5
  132. package/esm/automation/public/EthereumStrategies.js +7 -13
  133. package/esm/automation/public/OptimismStrategies.d.ts +5 -5
  134. package/esm/automation/public/OptimismStrategies.js +7 -13
  135. package/esm/automation/public/legacy/LegacyAaveAutomation.d.ts +6 -6
  136. package/esm/automation/public/legacy/LegacyAaveAutomation.js +14 -20
  137. package/esm/automation/public/legacy/LegacyCompoundAutomation.d.ts +6 -6
  138. package/esm/automation/public/legacy/LegacyCompoundAutomation.js +14 -20
  139. package/esm/automation/public/legacy/LegacyMakerAutomation.d.ts +6 -6
  140. package/esm/automation/public/legacy/LegacyMakerAutomation.js +14 -20
  141. package/esm/configuration.d.ts +1 -1
  142. package/esm/configuration.js +7 -12
  143. package/esm/constants/index.d.ts +28 -24
  144. package/esm/constants/index.js +483 -426
  145. package/esm/index.d.ts +23 -22
  146. package/esm/index.js +23 -63
  147. package/esm/services/contractService.d.ts +12 -12
  148. package/esm/services/contractService.js +45 -54
  149. package/esm/services/ethereumService.d.ts +7 -7
  150. package/esm/services/ethereumService.js +41 -49
  151. package/esm/services/ethereumService.test.d.ts +1 -1
  152. package/esm/services/ethereumService.test.js +237 -242
  153. package/esm/services/strategiesService.d.ts +2 -2
  154. package/esm/services/strategiesService.js +751 -722
  155. package/esm/services/strategiesService.test.d.ts +1 -1
  156. package/esm/services/strategiesService.test.js +108 -110
  157. package/esm/services/strategySubService.d.ts +104 -100
  158. package/esm/services/strategySubService.js +257 -264
  159. package/esm/services/strategySubService.test.d.ts +1 -1
  160. package/esm/services/strategySubService.test.js +906 -934
  161. package/esm/services/subDataService.d.ts +211 -192
  162. package/esm/services/subDataService.js +523 -475
  163. package/esm/services/subDataService.test.d.ts +1 -1
  164. package/esm/services/subDataService.test.js +1254 -1282
  165. package/esm/services/triggerService.d.ts +208 -191
  166. package/esm/services/triggerService.js +370 -367
  167. package/esm/services/triggerService.test.d.ts +1 -1
  168. package/esm/services/triggerService.test.js +901 -926
  169. package/esm/services/utils.d.ts +26 -25
  170. package/esm/services/utils.js +109 -131
  171. package/esm/services/utils.test.d.ts +1 -1
  172. package/esm/services/utils.test.js +348 -376
  173. package/esm/types/contracts/generated/Erc20.d.ts +53 -53
  174. package/esm/types/contracts/generated/Erc20.js +4 -5
  175. package/esm/types/contracts/generated/Legacy_AaveV2Subscriptions.d.ts +129 -129
  176. package/esm/types/contracts/generated/Legacy_AaveV2Subscriptions.js +4 -5
  177. package/esm/types/contracts/generated/Legacy_AuthCheck.d.ts +20 -20
  178. package/esm/types/contracts/generated/Legacy_AuthCheck.js +4 -5
  179. package/esm/types/contracts/generated/Legacy_CompoundV2Subscriptions.d.ts +128 -128
  180. package/esm/types/contracts/generated/Legacy_CompoundV2Subscriptions.js +4 -5
  181. package/esm/types/contracts/generated/Legacy_MakerSubscriptions.d.ts +246 -246
  182. package/esm/types/contracts/generated/Legacy_MakerSubscriptions.js +4 -5
  183. package/esm/types/contracts/generated/SubStorage.d.ts +114 -114
  184. package/esm/types/contracts/generated/SubStorage.js +4 -5
  185. package/esm/types/contracts/generated/UniMulticall.d.ts +55 -55
  186. package/esm/types/contracts/generated/UniMulticall.js +4 -5
  187. package/esm/types/contracts/generated/index.d.ts +7 -7
  188. package/esm/types/contracts/generated/index.js +1 -2
  189. package/esm/types/contracts/generated/types.d.ts +54 -54
  190. package/esm/types/contracts/generated/types.js +1 -2
  191. package/esm/types/enums.d.ts +208 -168
  192. package/esm/types/enums.js +231 -188
  193. package/esm/types/index.d.ts +224 -220
  194. package/esm/types/index.js +1 -2
  195. package/package.json +61 -71
  196. package/scripts/generateContractTypes.js +39 -39
  197. package/src/abis/Erc20.json +222 -222
  198. package/src/abis/SubStorage.json +21 -17
  199. package/src/abis/UniMulticall.json +17 -14
  200. package/src/abis/index.ts +28 -28
  201. package/src/abis/legacy_AaveV2Subscriptions.json +7 -7
  202. package/src/abis/legacy_AuthCheck.json +7 -7
  203. package/src/abis/legacy_CompoundV2Subscriptions.json +8 -8
  204. package/src/abis/legacy_MakerSubscriptions.json +8 -8
  205. package/src/automation/private/Automation.ts +44 -44
  206. package/src/automation/private/LegacyAutomation.ts +135 -135
  207. package/src/automation/private/LegacyProtocol.test.ts +23 -23
  208. package/src/automation/private/LegacyProtocol.ts +51 -51
  209. package/src/automation/private/Protocol.test.ts +23 -23
  210. package/src/automation/private/Protocol.ts +51 -51
  211. package/src/automation/private/StrategiesAutomation.test.ts +663 -663
  212. package/src/automation/private/StrategiesAutomation.ts +242 -242
  213. package/src/automation/public/ArbitrumStrategies.ts +10 -10
  214. package/src/automation/public/BaseStrategies.ts +10 -0
  215. package/src/automation/public/EthereumStrategies.ts +10 -10
  216. package/src/automation/public/OptimismStrategies.ts +10 -10
  217. package/src/automation/public/legacy/LegacyAaveAutomation.ts +20 -20
  218. package/src/automation/public/legacy/LegacyCompoundAutomation.ts +20 -20
  219. package/src/automation/public/legacy/LegacyMakerAutomation.ts +20 -20
  220. package/src/configuration.ts +8 -8
  221. package/src/constants/index.ts +507 -441
  222. package/src/index.ts +39 -38
  223. package/src/services/contractService.ts +77 -77
  224. package/src/services/ethereumService.test.ts +257 -257
  225. package/src/services/ethereumService.ts +69 -69
  226. package/src/services/strategiesService.test.ts +105 -105
  227. package/src/services/strategiesService.ts +1008 -932
  228. package/src/services/strategySubService.test.ts +1119 -1119
  229. package/src/services/strategySubService.ts +567 -518
  230. package/src/services/subDataService.test.ts +1387 -1387
  231. package/src/services/subDataService.ts +725 -644
  232. package/src/services/triggerService.test.ts +1004 -1004
  233. package/src/services/triggerService.ts +502 -449
  234. package/src/services/utils.test.ts +430 -430
  235. package/src/services/utils.ts +137 -103
  236. package/src/types/enums.ts +228 -182
  237. package/src/types/index.ts +279 -273
  238. package/tsconfig.esm.json +8 -0
  239. package/tsconfig.json +22 -79
  240. package/umd/index.js +17 -133
  241. package/.tests.sh +0 -3
  242. package/webpack.umd.js +0 -52
@@ -0,0 +1,55 @@
1
+ /// <reference types="node" />
2
+ import type BN from "bn.js";
3
+ import type { ContractOptions } from "web3-eth-contract";
4
+ import type { EventLog } from "web3-core";
5
+ import type { EventEmitter } from "events";
6
+ import type { Callback, NonPayableTransactionObject, BlockType, BaseContract } from "./types";
7
+ export interface EventOptions {
8
+ filter?: object;
9
+ fromBlock?: BlockType;
10
+ topics?: string[];
11
+ }
12
+ export declare namespace UniswapInterfaceMulticall {
13
+ type CallStruct = [string, number | string | BN, string | number[]] | {
14
+ target: string;
15
+ gasLimit: number | string | BN;
16
+ callData: string | number[];
17
+ };
18
+ type CallStructOutputArray = [string, string, string];
19
+ type CallStructOutputStruct = {
20
+ target: string;
21
+ gasLimit: string;
22
+ callData: string;
23
+ };
24
+ type CallStructOutput = CallStructOutputArray & CallStructOutputStruct;
25
+ type ResultStruct = [boolean, number | string | BN, string | number[]] | {
26
+ success: boolean;
27
+ gasUsed: number | string | BN;
28
+ returnData: string | number[];
29
+ };
30
+ type ResultStructOutputArray = [boolean, string, string];
31
+ type ResultStructOutputStruct = {
32
+ success: boolean;
33
+ gasUsed: string;
34
+ returnData: string;
35
+ };
36
+ type ResultStructOutput = ResultStructOutputArray & ResultStructOutputStruct;
37
+ }
38
+ export interface UniMulticall extends BaseContract {
39
+ constructor(jsonInterface: any[], address?: string, options?: ContractOptions): UniMulticall;
40
+ clone(): UniMulticall;
41
+ methods: {
42
+ getCurrentBlockTimestamp(): NonPayableTransactionObject<string>;
43
+ getEthBalance(addr: string): NonPayableTransactionObject<string>;
44
+ multicall(calls: UniswapInterfaceMulticall.CallStruct[]): NonPayableTransactionObject<[
45
+ string,
46
+ UniswapInterfaceMulticall.ResultStructOutput[]
47
+ ] & {
48
+ blockNumber: string;
49
+ returnData: UniswapInterfaceMulticall.ResultStructOutput[];
50
+ }>;
51
+ };
52
+ events: {
53
+ allEvents(options?: EventOptions, cb?: Callback<EventLog>): EventEmitter;
54
+ };
55
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /* Autogenerated file. Do not edit manually. */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,7 @@
1
+ export type { Erc20 } from "./Erc20";
2
+ export type { SubStorage } from "./SubStorage";
3
+ export type { UniMulticall } from "./UniMulticall";
4
+ export type { Legacy_AaveV2Subscriptions } from "./Legacy_AaveV2Subscriptions";
5
+ export type { Legacy_AuthCheck } from "./Legacy_AuthCheck";
6
+ export type { Legacy_CompoundV2Subscriptions } from "./Legacy_CompoundV2Subscriptions";
7
+ export type { Legacy_MakerSubscriptions } from "./Legacy_MakerSubscriptions";
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,54 @@
1
+ /// <reference types="node" />
2
+ import type BN from "bn.js";
3
+ import type { EventEmitter } from "events";
4
+ import type { EventLog, PromiEvent, TransactionReceipt } from "web3-core/types";
5
+ import type { Contract } from "web3-eth-contract";
6
+ export interface EstimateGasOptions {
7
+ from?: string;
8
+ gas?: number;
9
+ value?: number | string | BN;
10
+ }
11
+ export interface EventOptions {
12
+ filter?: object;
13
+ fromBlock?: BlockType;
14
+ topics?: string[];
15
+ }
16
+ export type Callback<T> = (error: Error, result: T) => void;
17
+ export interface ContractEventLog<T> extends EventLog {
18
+ returnValues: T;
19
+ }
20
+ export interface ContractEventEmitter<T> extends EventEmitter {
21
+ on(event: "connected", listener: (subscriptionId: string) => void): this;
22
+ on(event: "data" | "changed", listener: (event: ContractEventLog<T>) => void): this;
23
+ on(event: "error", listener: (error: Error) => void): this;
24
+ }
25
+ export interface NonPayableTx {
26
+ nonce?: string | number | BN;
27
+ chainId?: string | number | BN;
28
+ from?: string;
29
+ to?: string;
30
+ data?: string;
31
+ gas?: string | number | BN;
32
+ maxPriorityFeePerGas?: string | number | BN;
33
+ maxFeePerGas?: string | number | BN;
34
+ gasPrice?: string | number | BN;
35
+ }
36
+ export interface PayableTx extends NonPayableTx {
37
+ value?: string | number | BN;
38
+ }
39
+ export interface NonPayableTransactionObject<T> {
40
+ arguments: any[];
41
+ call(tx?: NonPayableTx, block?: BlockType): Promise<T>;
42
+ send(tx?: NonPayableTx): PromiEvent<TransactionReceipt>;
43
+ estimateGas(tx?: NonPayableTx): Promise<number>;
44
+ encodeABI(): string;
45
+ }
46
+ export interface PayableTransactionObject<T> {
47
+ arguments: any[];
48
+ call(tx?: PayableTx, block?: BlockType): Promise<T>;
49
+ send(tx?: PayableTx): PromiEvent<TransactionReceipt>;
50
+ estimateGas(tx?: PayableTx): Promise<number>;
51
+ encodeABI(): string;
52
+ }
53
+ export type BlockType = "latest" | "pending" | "genesis" | "earliest" | number | BN;
54
+ export type BaseContract = Omit<Contract, "clone" | "once">;
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,208 @@
1
+ export declare enum ChainId {
2
+ Ethereum = 1,
3
+ Optimism = 10,
4
+ Arbitrum = 42161,
5
+ Base = 8453
6
+ }
7
+ export declare enum RatioState {
8
+ OVER = 0,
9
+ UNDER = 1
10
+ }
11
+ export declare enum OrderType {
12
+ TAKE_PROFIT = 0,
13
+ STOP_LOSS = 1
14
+ }
15
+ export declare enum BundleProtocols {
16
+ MStable = "mstable",
17
+ Yearn = "yearn",
18
+ Rari = "rari"
19
+ }
20
+ export declare enum CollActionType {
21
+ SUPPLY = 0,
22
+ WITHDRAW = 1
23
+ }
24
+ export declare enum DebtActionType {
25
+ PAYBACK = 0,
26
+ BORROW = 1
27
+ }
28
+ export declare enum CloseStrategyType {
29
+ TAKE_PROFIT_IN_COLLATERAL = 0,
30
+ STOP_LOSS_IN_COLLATERAL = 1,
31
+ TAKE_PROFIT_IN_DEBT = 2,
32
+ STOP_LOSS_IN_DEBT = 3,
33
+ TAKE_PROFIT_AND_STOP_LOSS_IN_COLLATERAL = 4,
34
+ TAKE_PROFIT_IN_COLLATERAL_AND_STOP_LOSS_IN_DEBT = 5,
35
+ TAKE_PROFIT_AND_STOP_LOSS_IN_DEBT = 6,
36
+ TAKE_PROFIT_IN_DEBT_AND_STOP_LOSS_IN_COLLATERAL = 7
37
+ }
38
+ export declare enum CloseToAssetType {
39
+ COLLATERAL = 0,
40
+ DEBT = 1
41
+ }
42
+ /**
43
+ * @dev Follow the naming convention:
44
+ * - Enum name consists of two parts, name and version
45
+ * - Name should be human-readable name of the protocol, it can include spaces or any characters needed
46
+ * - Version should be separated from the name with double underscores `__` (If there is no version leave it out)
47
+ * - Example `Name of ThePROTOCOL__v1` (Without version `Name of ThePROTOCOL`)
48
+ */
49
+ export declare namespace ProtocolIdentifiers {
50
+ enum StrategiesAutomation {
51
+ MakerDAO = "MakerDAO",
52
+ Liquity = "Liquity",
53
+ LiquityV2 = "Liquity__V2",
54
+ ChickenBonds = "Chicken Bonds",
55
+ CompoundV2 = "Compound__V2",
56
+ CompoundV3 = "Compound__V3",
57
+ AaveV2 = "Aave__V2",
58
+ AaveV3 = "Aave__V3",
59
+ MorphoAaveV2 = "Morpho-Aave__V2",
60
+ Exchange = "Exchange",
61
+ Spark = "Spark",
62
+ CrvUSD = "CurveUSD",
63
+ MorphoBlue = "MorphoBlue"
64
+ }
65
+ enum LegacyAutomation {
66
+ MakerDAO = "MakerDAO",
67
+ CompoundV2 = "Compound__V2",
68
+ AaveV2 = "Aave__V2"
69
+ }
70
+ }
71
+ export declare namespace Strategies {
72
+ enum MainnetIds {
73
+ MAKER_CLOSE_ON_PRICE_TO_DAI = 7,
74
+ MAKER_CLOSE_ON_PRICE_TO_COLL = 9,
75
+ LIQUITY_CLOSE_ON_PRICE_TO_COLL_DEPRECATED = 10,
76
+ MAKER_TRAILING_STOP_LOSS_TO_COLL = 11,
77
+ MAKER_TRAILING_STOP_LOSS_TO_DAI = 12,
78
+ LIQUITY_TRAILING_STOP_LOSS_TO_COLL = 13,
79
+ LIQUITY_CLOSE_ON_PRICE_TO_COLL = 14,
80
+ CHICKEN_BONDS_REBOND = 31,
81
+ EXCHANGE_DCA = 46,
82
+ EXCHANGE_LIMIT_ORDER = 51,
83
+ LIQUITY_DSR_PAYBACK = 69,
84
+ LIQUITY_DSR_SUPPLY = 70,
85
+ LIQUITY_DEBT_IN_FRONT_REPAY = 75,
86
+ CURVEUSD_PAYBACK = 92,
87
+ AAVE_V3_OPEN_ORDER_FROM_DEBT = 96
88
+ }
89
+ enum OptimismIds {
90
+ EXCHANGE_DCA = 8,
91
+ EXCHANGE_LIMIT_ORDER = 9,
92
+ AAVE_V3_OPEN_ORDER_FROM_DEBT = 12
93
+ }
94
+ enum BaseIds {
95
+ EXCHANGE_DCA = 8,
96
+ EXCHANGE_LIMIT_ORDER = 9
97
+ }
98
+ enum ArbitrumIds {
99
+ EXCHANGE_DCA = 8,
100
+ EXCHANGE_LIMIT_ORDER = 9,
101
+ AAVE_V3_OPEN_ORDER_FROM_DEBT = 16
102
+ }
103
+ enum Identifiers {
104
+ SavingsLiqProtection = "smart-savings-liquidation-protection",
105
+ SavingsDsrPayback = "smart-savings-dsr-payback",
106
+ SavingsDsrSupply = "smart-savings-dsr-supply",
107
+ Repay = "repay",
108
+ EoaRepay = "eoa-repay",
109
+ Boost = "boost",
110
+ EoaBoost = "eoa-boost",
111
+ CloseToDebt = "close-to-debt",
112
+ CloseToDebtWithGasPrice = "close-to-debt-with-gas-price",
113
+ CloseToCollateral = "close-to-collateral",
114
+ CloseToCollateralWithGasPrice = "close-to-collateral-with-gas-price",
115
+ CloseOnPriceToDebt = "close-on-price-to-debt",
116
+ CloseOnPriceToColl = "close-on-price-to-collateral",
117
+ CloseOnPrice = "close-on-price",
118
+ TrailingStopToColl = "trailing-stop-to-collateral",
119
+ TrailingStopToDebt = "trailing-stop-to-debt",
120
+ Rebond = "rebond",
121
+ Payback = "payback",
122
+ BondProtection = "bond-protection",
123
+ Dca = "dca",
124
+ LimitOrder = "limit-order",
125
+ DebtInFrontRepay = "debt-in-front-repay",
126
+ OpenOrderFromCollateral = "open-order-from-collateral",
127
+ OpenOrderFromDebt = "open-order-from-debt"
128
+ }
129
+ enum IdOverrides {
130
+ TakeProfit = "take-profit",
131
+ StopLoss = "stop-loss",
132
+ TakeProfitWithGasPrice = "take-profit-with-gas-price",
133
+ StopLossWithGasPrice = "stop-loss-with-gas-price",
134
+ TrailingStop = "trailing-stop",
135
+ LeverageManagement = "leverage-management",
136
+ EoaLeverageManagement = "leverage-management-eoa"
137
+ }
138
+ }
139
+ export declare namespace Bundles {
140
+ enum MainnetIds {
141
+ MAKER_REPAY_FROM_SMART_SAVINGS_YEARN = 0,
142
+ MAKER_REPAY_FROM_SMART_SAVINGS_MSTABLE = 1,
143
+ MAKER_REPAY_FROM_SMART_SAVINGS_RARI = 2,
144
+ COMP_V3_SW_REPAY_BUNDLE = 3,
145
+ COMP_V3_SW_BOOST_BUNDLE = 4,
146
+ COMP_V3_EOA_REPAY_BUNDLE = 5,
147
+ COMP_V3_EOA_BOOST_BUNDLE = 6,
148
+ LIQUITY_PAYBACK_USING_CHICKEN_BOND = 7,
149
+ AAVE_V3_REPAY = 8,
150
+ AAVE_V3_BOOST = 9,
151
+ MAKER_REPAY = 10,
152
+ MAKER_BOOST = 11,
153
+ AAVE_V3_CLOSE_TO_DEBT = 12,
154
+ AAVE_V3_CLOSE_TO_DEBT_WITH_GAS_PRICE = 24,
155
+ AAVE_V3_CLOSE_TO_COLLATERAL = 13,
156
+ AAVE_V3_CLOSE_TO_COLLATERAL_WITH_GAS_PRICE = 25,
157
+ MORPHO_AAVE_V2_REPAY = 14,
158
+ MORPHO_AAVE_V2_BOOST = 15,
159
+ LIQUITY_REPAY = 16,
160
+ LIQUITY_BOOST = 17,
161
+ SPARK_REPAY = 18,
162
+ SPARK_BOOST = 19,
163
+ SPARK_CLOSE_TO_DEBT = -21231230,
164
+ SPARK_CLOSE_TO_COLLATERAL = -21231231,
165
+ AAVE_V2_REPAY = 22,
166
+ AAVE_V2_BOOST = 23,
167
+ COMP_V2_REPAY = 20,
168
+ COMP_V2_BOOST = 21,
169
+ CRVUSD_REPAY = 26,
170
+ CRVUSD_BOOST = 27,
171
+ COMP_V3_SW_REPAY_V2_BUNDLE = 28,
172
+ COMP_V3_SW_BOOST_V2_BUNDLE = 29,
173
+ COMP_V3_EOA_REPAY_V2_BUNDLE = 30,
174
+ COMP_V3_EOA_BOOST_V2_BUNDLE = 31,
175
+ MORPHO_BLUE_REPAY = 32,
176
+ MORPHO_BLUE_BOOST = 33,
177
+ MORPHO_BLUE_EOA_REPAY = 34,
178
+ MORPHO_BLUE_EOA_BOOST = 35,
179
+ AAVE_V3_OPEN_ORDER_FROM_COLLATERAL = 36,
180
+ LIQUITY_V2_REPAY = 37,
181
+ LIQUITY_V2_BOOST = 38,
182
+ LIQUITY_V2_CLOSE = 39
183
+ }
184
+ enum OptimismIds {
185
+ AAVE_V3_REPAY = 0,
186
+ AAVE_V3_BOOST = 1,
187
+ AAVE_V3_CLOSE_TO_DEBT = 2,
188
+ AAVE_V3_CLOSE_TO_COLLATERAL = 3,
189
+ AAVE_V3_OPEN_ORDER_FROM_COLLATERAL = 4
190
+ }
191
+ enum BaseIds {
192
+ AAVE_V3_REPAY = 0,
193
+ AAVE_V3_BOOST = 1,
194
+ AAVE_V3_CLOSE_TO_DEBT = 2,
195
+ AAVE_V3_CLOSE_TO_COLLATERAL = 3,
196
+ COMP_V3_SW_REPAY_BUNDLE = 4,
197
+ COMP_V3_SW_BOOST_BUNDLE = 5
198
+ }
199
+ enum ArbitrumIds {
200
+ AAVE_V3_REPAY = 0,
201
+ AAVE_V3_BOOST = 1,
202
+ AAVE_V3_CLOSE_TO_DEBT = 2,
203
+ AAVE_V3_CLOSE_TO_COLLATERAL = 3,
204
+ COMP_V3_SW_REPAY_BUNDLE = 4,
205
+ COMP_V3_SW_BOOST_BUNDLE = 5,
206
+ AAVE_V3_OPEN_ORDER_FROM_COLLATERAL = 6
207
+ }
208
+ }
@@ -0,0 +1,234 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Bundles = exports.Strategies = exports.ProtocolIdentifiers = exports.CloseToAssetType = exports.CloseStrategyType = exports.DebtActionType = exports.CollActionType = exports.BundleProtocols = exports.OrderType = exports.RatioState = exports.ChainId = void 0;
4
+ var ChainId;
5
+ (function (ChainId) {
6
+ ChainId[ChainId["Ethereum"] = 1] = "Ethereum";
7
+ ChainId[ChainId["Optimism"] = 10] = "Optimism";
8
+ ChainId[ChainId["Arbitrum"] = 42161] = "Arbitrum";
9
+ ChainId[ChainId["Base"] = 8453] = "Base";
10
+ })(ChainId = exports.ChainId || (exports.ChainId = {}));
11
+ var RatioState;
12
+ (function (RatioState) {
13
+ RatioState[RatioState["OVER"] = 0] = "OVER";
14
+ RatioState[RatioState["UNDER"] = 1] = "UNDER";
15
+ })(RatioState = exports.RatioState || (exports.RatioState = {}));
16
+ var OrderType;
17
+ (function (OrderType) {
18
+ OrderType[OrderType["TAKE_PROFIT"] = 0] = "TAKE_PROFIT";
19
+ OrderType[OrderType["STOP_LOSS"] = 1] = "STOP_LOSS";
20
+ })(OrderType = exports.OrderType || (exports.OrderType = {}));
21
+ var BundleProtocols;
22
+ (function (BundleProtocols) {
23
+ BundleProtocols["MStable"] = "mstable";
24
+ BundleProtocols["Yearn"] = "yearn";
25
+ BundleProtocols["Rari"] = "rari";
26
+ })(BundleProtocols = exports.BundleProtocols || (exports.BundleProtocols = {}));
27
+ var CollActionType;
28
+ (function (CollActionType) {
29
+ CollActionType[CollActionType["SUPPLY"] = 0] = "SUPPLY";
30
+ CollActionType[CollActionType["WITHDRAW"] = 1] = "WITHDRAW";
31
+ })(CollActionType = exports.CollActionType || (exports.CollActionType = {}));
32
+ var DebtActionType;
33
+ (function (DebtActionType) {
34
+ DebtActionType[DebtActionType["PAYBACK"] = 0] = "PAYBACK";
35
+ DebtActionType[DebtActionType["BORROW"] = 1] = "BORROW";
36
+ })(DebtActionType = exports.DebtActionType || (exports.DebtActionType = {}));
37
+ var CloseStrategyType;
38
+ (function (CloseStrategyType) {
39
+ CloseStrategyType[CloseStrategyType["TAKE_PROFIT_IN_COLLATERAL"] = 0] = "TAKE_PROFIT_IN_COLLATERAL";
40
+ CloseStrategyType[CloseStrategyType["STOP_LOSS_IN_COLLATERAL"] = 1] = "STOP_LOSS_IN_COLLATERAL";
41
+ CloseStrategyType[CloseStrategyType["TAKE_PROFIT_IN_DEBT"] = 2] = "TAKE_PROFIT_IN_DEBT";
42
+ CloseStrategyType[CloseStrategyType["STOP_LOSS_IN_DEBT"] = 3] = "STOP_LOSS_IN_DEBT";
43
+ CloseStrategyType[CloseStrategyType["TAKE_PROFIT_AND_STOP_LOSS_IN_COLLATERAL"] = 4] = "TAKE_PROFIT_AND_STOP_LOSS_IN_COLLATERAL";
44
+ CloseStrategyType[CloseStrategyType["TAKE_PROFIT_IN_COLLATERAL_AND_STOP_LOSS_IN_DEBT"] = 5] = "TAKE_PROFIT_IN_COLLATERAL_AND_STOP_LOSS_IN_DEBT";
45
+ CloseStrategyType[CloseStrategyType["TAKE_PROFIT_AND_STOP_LOSS_IN_DEBT"] = 6] = "TAKE_PROFIT_AND_STOP_LOSS_IN_DEBT";
46
+ CloseStrategyType[CloseStrategyType["TAKE_PROFIT_IN_DEBT_AND_STOP_LOSS_IN_COLLATERAL"] = 7] = "TAKE_PROFIT_IN_DEBT_AND_STOP_LOSS_IN_COLLATERAL";
47
+ })(CloseStrategyType = exports.CloseStrategyType || (exports.CloseStrategyType = {}));
48
+ var CloseToAssetType;
49
+ (function (CloseToAssetType) {
50
+ CloseToAssetType[CloseToAssetType["COLLATERAL"] = 0] = "COLLATERAL";
51
+ CloseToAssetType[CloseToAssetType["DEBT"] = 1] = "DEBT";
52
+ })(CloseToAssetType = exports.CloseToAssetType || (exports.CloseToAssetType = {}));
53
+ /**
54
+ * @dev Follow the naming convention:
55
+ * - Enum name consists of two parts, name and version
56
+ * - Name should be human-readable name of the protocol, it can include spaces or any characters needed
57
+ * - Version should be separated from the name with double underscores `__` (If there is no version leave it out)
58
+ * - Example `Name of ThePROTOCOL__v1` (Without version `Name of ThePROTOCOL`)
59
+ */
60
+ var ProtocolIdentifiers;
61
+ (function (ProtocolIdentifiers) {
62
+ let StrategiesAutomation;
63
+ (function (StrategiesAutomation) {
64
+ StrategiesAutomation["MakerDAO"] = "MakerDAO";
65
+ StrategiesAutomation["Liquity"] = "Liquity";
66
+ StrategiesAutomation["LiquityV2"] = "Liquity__V2";
67
+ StrategiesAutomation["ChickenBonds"] = "Chicken Bonds";
68
+ StrategiesAutomation["CompoundV2"] = "Compound__V2";
69
+ StrategiesAutomation["CompoundV3"] = "Compound__V3";
70
+ StrategiesAutomation["AaveV2"] = "Aave__V2";
71
+ StrategiesAutomation["AaveV3"] = "Aave__V3";
72
+ StrategiesAutomation["MorphoAaveV2"] = "Morpho-Aave__V2";
73
+ StrategiesAutomation["Exchange"] = "Exchange";
74
+ StrategiesAutomation["Spark"] = "Spark";
75
+ StrategiesAutomation["CrvUSD"] = "CurveUSD";
76
+ StrategiesAutomation["MorphoBlue"] = "MorphoBlue";
77
+ })(StrategiesAutomation = ProtocolIdentifiers.StrategiesAutomation || (ProtocolIdentifiers.StrategiesAutomation = {}));
78
+ let LegacyAutomation;
79
+ (function (LegacyAutomation) {
80
+ LegacyAutomation["MakerDAO"] = "MakerDAO";
81
+ LegacyAutomation["CompoundV2"] = "Compound__V2";
82
+ LegacyAutomation["AaveV2"] = "Aave__V2";
83
+ })(LegacyAutomation = ProtocolIdentifiers.LegacyAutomation || (ProtocolIdentifiers.LegacyAutomation = {}));
84
+ })(ProtocolIdentifiers = exports.ProtocolIdentifiers || (exports.ProtocolIdentifiers = {}));
85
+ var Strategies;
86
+ (function (Strategies) {
87
+ let MainnetIds;
88
+ (function (MainnetIds) {
89
+ MainnetIds[MainnetIds["MAKER_CLOSE_ON_PRICE_TO_DAI"] = 7] = "MAKER_CLOSE_ON_PRICE_TO_DAI";
90
+ MainnetIds[MainnetIds["MAKER_CLOSE_ON_PRICE_TO_COLL"] = 9] = "MAKER_CLOSE_ON_PRICE_TO_COLL";
91
+ MainnetIds[MainnetIds["LIQUITY_CLOSE_ON_PRICE_TO_COLL_DEPRECATED"] = 10] = "LIQUITY_CLOSE_ON_PRICE_TO_COLL_DEPRECATED";
92
+ MainnetIds[MainnetIds["MAKER_TRAILING_STOP_LOSS_TO_COLL"] = 11] = "MAKER_TRAILING_STOP_LOSS_TO_COLL";
93
+ MainnetIds[MainnetIds["MAKER_TRAILING_STOP_LOSS_TO_DAI"] = 12] = "MAKER_TRAILING_STOP_LOSS_TO_DAI";
94
+ MainnetIds[MainnetIds["LIQUITY_TRAILING_STOP_LOSS_TO_COLL"] = 13] = "LIQUITY_TRAILING_STOP_LOSS_TO_COLL";
95
+ MainnetIds[MainnetIds["LIQUITY_CLOSE_ON_PRICE_TO_COLL"] = 14] = "LIQUITY_CLOSE_ON_PRICE_TO_COLL";
96
+ MainnetIds[MainnetIds["CHICKEN_BONDS_REBOND"] = 31] = "CHICKEN_BONDS_REBOND";
97
+ MainnetIds[MainnetIds["EXCHANGE_DCA"] = 46] = "EXCHANGE_DCA";
98
+ MainnetIds[MainnetIds["EXCHANGE_LIMIT_ORDER"] = 51] = "EXCHANGE_LIMIT_ORDER";
99
+ MainnetIds[MainnetIds["LIQUITY_DSR_PAYBACK"] = 69] = "LIQUITY_DSR_PAYBACK";
100
+ MainnetIds[MainnetIds["LIQUITY_DSR_SUPPLY"] = 70] = "LIQUITY_DSR_SUPPLY";
101
+ MainnetIds[MainnetIds["LIQUITY_DEBT_IN_FRONT_REPAY"] = 75] = "LIQUITY_DEBT_IN_FRONT_REPAY";
102
+ MainnetIds[MainnetIds["CURVEUSD_PAYBACK"] = 92] = "CURVEUSD_PAYBACK";
103
+ MainnetIds[MainnetIds["AAVE_V3_OPEN_ORDER_FROM_DEBT"] = 96] = "AAVE_V3_OPEN_ORDER_FROM_DEBT";
104
+ })(MainnetIds = Strategies.MainnetIds || (Strategies.MainnetIds = {}));
105
+ let OptimismIds;
106
+ (function (OptimismIds) {
107
+ OptimismIds[OptimismIds["EXCHANGE_DCA"] = 8] = "EXCHANGE_DCA";
108
+ OptimismIds[OptimismIds["EXCHANGE_LIMIT_ORDER"] = 9] = "EXCHANGE_LIMIT_ORDER";
109
+ OptimismIds[OptimismIds["AAVE_V3_OPEN_ORDER_FROM_DEBT"] = 12] = "AAVE_V3_OPEN_ORDER_FROM_DEBT";
110
+ })(OptimismIds = Strategies.OptimismIds || (Strategies.OptimismIds = {}));
111
+ let BaseIds;
112
+ (function (BaseIds) {
113
+ BaseIds[BaseIds["EXCHANGE_DCA"] = 8] = "EXCHANGE_DCA";
114
+ BaseIds[BaseIds["EXCHANGE_LIMIT_ORDER"] = 9] = "EXCHANGE_LIMIT_ORDER";
115
+ })(BaseIds = Strategies.BaseIds || (Strategies.BaseIds = {}));
116
+ let ArbitrumIds;
117
+ (function (ArbitrumIds) {
118
+ ArbitrumIds[ArbitrumIds["EXCHANGE_DCA"] = 8] = "EXCHANGE_DCA";
119
+ ArbitrumIds[ArbitrumIds["EXCHANGE_LIMIT_ORDER"] = 9] = "EXCHANGE_LIMIT_ORDER";
120
+ ArbitrumIds[ArbitrumIds["AAVE_V3_OPEN_ORDER_FROM_DEBT"] = 16] = "AAVE_V3_OPEN_ORDER_FROM_DEBT";
121
+ })(ArbitrumIds = Strategies.ArbitrumIds || (Strategies.ArbitrumIds = {}));
122
+ let Identifiers;
123
+ (function (Identifiers) {
124
+ Identifiers["SavingsLiqProtection"] = "smart-savings-liquidation-protection";
125
+ Identifiers["SavingsDsrPayback"] = "smart-savings-dsr-payback";
126
+ Identifiers["SavingsDsrSupply"] = "smart-savings-dsr-supply";
127
+ Identifiers["Repay"] = "repay";
128
+ Identifiers["EoaRepay"] = "eoa-repay";
129
+ Identifiers["Boost"] = "boost";
130
+ Identifiers["EoaBoost"] = "eoa-boost";
131
+ Identifiers["CloseToDebt"] = "close-to-debt";
132
+ Identifiers["CloseToDebtWithGasPrice"] = "close-to-debt-with-gas-price";
133
+ Identifiers["CloseToCollateral"] = "close-to-collateral";
134
+ Identifiers["CloseToCollateralWithGasPrice"] = "close-to-collateral-with-gas-price";
135
+ Identifiers["CloseOnPriceToDebt"] = "close-on-price-to-debt";
136
+ Identifiers["CloseOnPriceToColl"] = "close-on-price-to-collateral";
137
+ Identifiers["CloseOnPrice"] = "close-on-price";
138
+ Identifiers["TrailingStopToColl"] = "trailing-stop-to-collateral";
139
+ Identifiers["TrailingStopToDebt"] = "trailing-stop-to-debt";
140
+ Identifiers["Rebond"] = "rebond";
141
+ Identifiers["Payback"] = "payback";
142
+ Identifiers["BondProtection"] = "bond-protection";
143
+ Identifiers["Dca"] = "dca";
144
+ Identifiers["LimitOrder"] = "limit-order";
145
+ Identifiers["DebtInFrontRepay"] = "debt-in-front-repay";
146
+ Identifiers["OpenOrderFromCollateral"] = "open-order-from-collateral";
147
+ Identifiers["OpenOrderFromDebt"] = "open-order-from-debt";
148
+ })(Identifiers = Strategies.Identifiers || (Strategies.Identifiers = {}));
149
+ let IdOverrides;
150
+ (function (IdOverrides) {
151
+ IdOverrides["TakeProfit"] = "take-profit";
152
+ IdOverrides["StopLoss"] = "stop-loss";
153
+ IdOverrides["TakeProfitWithGasPrice"] = "take-profit-with-gas-price";
154
+ IdOverrides["StopLossWithGasPrice"] = "stop-loss-with-gas-price";
155
+ IdOverrides["TrailingStop"] = "trailing-stop";
156
+ IdOverrides["LeverageManagement"] = "leverage-management";
157
+ IdOverrides["EoaLeverageManagement"] = "leverage-management-eoa";
158
+ })(IdOverrides = Strategies.IdOverrides || (Strategies.IdOverrides = {}));
159
+ })(Strategies = exports.Strategies || (exports.Strategies = {}));
160
+ var Bundles;
161
+ (function (Bundles) {
162
+ let MainnetIds;
163
+ (function (MainnetIds) {
164
+ MainnetIds[MainnetIds["MAKER_REPAY_FROM_SMART_SAVINGS_YEARN"] = 0] = "MAKER_REPAY_FROM_SMART_SAVINGS_YEARN";
165
+ MainnetIds[MainnetIds["MAKER_REPAY_FROM_SMART_SAVINGS_MSTABLE"] = 1] = "MAKER_REPAY_FROM_SMART_SAVINGS_MSTABLE";
166
+ MainnetIds[MainnetIds["MAKER_REPAY_FROM_SMART_SAVINGS_RARI"] = 2] = "MAKER_REPAY_FROM_SMART_SAVINGS_RARI";
167
+ MainnetIds[MainnetIds["COMP_V3_SW_REPAY_BUNDLE"] = 3] = "COMP_V3_SW_REPAY_BUNDLE";
168
+ MainnetIds[MainnetIds["COMP_V3_SW_BOOST_BUNDLE"] = 4] = "COMP_V3_SW_BOOST_BUNDLE";
169
+ MainnetIds[MainnetIds["COMP_V3_EOA_REPAY_BUNDLE"] = 5] = "COMP_V3_EOA_REPAY_BUNDLE";
170
+ MainnetIds[MainnetIds["COMP_V3_EOA_BOOST_BUNDLE"] = 6] = "COMP_V3_EOA_BOOST_BUNDLE";
171
+ MainnetIds[MainnetIds["LIQUITY_PAYBACK_USING_CHICKEN_BOND"] = 7] = "LIQUITY_PAYBACK_USING_CHICKEN_BOND";
172
+ MainnetIds[MainnetIds["AAVE_V3_REPAY"] = 8] = "AAVE_V3_REPAY";
173
+ MainnetIds[MainnetIds["AAVE_V3_BOOST"] = 9] = "AAVE_V3_BOOST";
174
+ MainnetIds[MainnetIds["MAKER_REPAY"] = 10] = "MAKER_REPAY";
175
+ MainnetIds[MainnetIds["MAKER_BOOST"] = 11] = "MAKER_BOOST";
176
+ MainnetIds[MainnetIds["AAVE_V3_CLOSE_TO_DEBT"] = 12] = "AAVE_V3_CLOSE_TO_DEBT";
177
+ MainnetIds[MainnetIds["AAVE_V3_CLOSE_TO_DEBT_WITH_GAS_PRICE"] = 24] = "AAVE_V3_CLOSE_TO_DEBT_WITH_GAS_PRICE";
178
+ MainnetIds[MainnetIds["AAVE_V3_CLOSE_TO_COLLATERAL"] = 13] = "AAVE_V3_CLOSE_TO_COLLATERAL";
179
+ MainnetIds[MainnetIds["AAVE_V3_CLOSE_TO_COLLATERAL_WITH_GAS_PRICE"] = 25] = "AAVE_V3_CLOSE_TO_COLLATERAL_WITH_GAS_PRICE";
180
+ MainnetIds[MainnetIds["MORPHO_AAVE_V2_REPAY"] = 14] = "MORPHO_AAVE_V2_REPAY";
181
+ MainnetIds[MainnetIds["MORPHO_AAVE_V2_BOOST"] = 15] = "MORPHO_AAVE_V2_BOOST";
182
+ MainnetIds[MainnetIds["LIQUITY_REPAY"] = 16] = "LIQUITY_REPAY";
183
+ MainnetIds[MainnetIds["LIQUITY_BOOST"] = 17] = "LIQUITY_BOOST";
184
+ MainnetIds[MainnetIds["SPARK_REPAY"] = 18] = "SPARK_REPAY";
185
+ MainnetIds[MainnetIds["SPARK_BOOST"] = 19] = "SPARK_BOOST";
186
+ MainnetIds[MainnetIds["SPARK_CLOSE_TO_DEBT"] = -21231230] = "SPARK_CLOSE_TO_DEBT";
187
+ MainnetIds[MainnetIds["SPARK_CLOSE_TO_COLLATERAL"] = -21231231] = "SPARK_CLOSE_TO_COLLATERAL";
188
+ MainnetIds[MainnetIds["AAVE_V2_REPAY"] = 22] = "AAVE_V2_REPAY";
189
+ MainnetIds[MainnetIds["AAVE_V2_BOOST"] = 23] = "AAVE_V2_BOOST";
190
+ MainnetIds[MainnetIds["COMP_V2_REPAY"] = 20] = "COMP_V2_REPAY";
191
+ MainnetIds[MainnetIds["COMP_V2_BOOST"] = 21] = "COMP_V2_BOOST";
192
+ MainnetIds[MainnetIds["CRVUSD_REPAY"] = 26] = "CRVUSD_REPAY";
193
+ MainnetIds[MainnetIds["CRVUSD_BOOST"] = 27] = "CRVUSD_BOOST";
194
+ MainnetIds[MainnetIds["COMP_V3_SW_REPAY_V2_BUNDLE"] = 28] = "COMP_V3_SW_REPAY_V2_BUNDLE";
195
+ MainnetIds[MainnetIds["COMP_V3_SW_BOOST_V2_BUNDLE"] = 29] = "COMP_V3_SW_BOOST_V2_BUNDLE";
196
+ MainnetIds[MainnetIds["COMP_V3_EOA_REPAY_V2_BUNDLE"] = 30] = "COMP_V3_EOA_REPAY_V2_BUNDLE";
197
+ MainnetIds[MainnetIds["COMP_V3_EOA_BOOST_V2_BUNDLE"] = 31] = "COMP_V3_EOA_BOOST_V2_BUNDLE";
198
+ MainnetIds[MainnetIds["MORPHO_BLUE_REPAY"] = 32] = "MORPHO_BLUE_REPAY";
199
+ MainnetIds[MainnetIds["MORPHO_BLUE_BOOST"] = 33] = "MORPHO_BLUE_BOOST";
200
+ MainnetIds[MainnetIds["MORPHO_BLUE_EOA_REPAY"] = 34] = "MORPHO_BLUE_EOA_REPAY";
201
+ MainnetIds[MainnetIds["MORPHO_BLUE_EOA_BOOST"] = 35] = "MORPHO_BLUE_EOA_BOOST";
202
+ MainnetIds[MainnetIds["AAVE_V3_OPEN_ORDER_FROM_COLLATERAL"] = 36] = "AAVE_V3_OPEN_ORDER_FROM_COLLATERAL";
203
+ MainnetIds[MainnetIds["LIQUITY_V2_REPAY"] = 37] = "LIQUITY_V2_REPAY";
204
+ MainnetIds[MainnetIds["LIQUITY_V2_BOOST"] = 38] = "LIQUITY_V2_BOOST";
205
+ MainnetIds[MainnetIds["LIQUITY_V2_CLOSE"] = 39] = "LIQUITY_V2_CLOSE";
206
+ })(MainnetIds = Bundles.MainnetIds || (Bundles.MainnetIds = {}));
207
+ let OptimismIds;
208
+ (function (OptimismIds) {
209
+ OptimismIds[OptimismIds["AAVE_V3_REPAY"] = 0] = "AAVE_V3_REPAY";
210
+ OptimismIds[OptimismIds["AAVE_V3_BOOST"] = 1] = "AAVE_V3_BOOST";
211
+ OptimismIds[OptimismIds["AAVE_V3_CLOSE_TO_DEBT"] = 2] = "AAVE_V3_CLOSE_TO_DEBT";
212
+ OptimismIds[OptimismIds["AAVE_V3_CLOSE_TO_COLLATERAL"] = 3] = "AAVE_V3_CLOSE_TO_COLLATERAL";
213
+ OptimismIds[OptimismIds["AAVE_V3_OPEN_ORDER_FROM_COLLATERAL"] = 4] = "AAVE_V3_OPEN_ORDER_FROM_COLLATERAL";
214
+ })(OptimismIds = Bundles.OptimismIds || (Bundles.OptimismIds = {}));
215
+ let BaseIds;
216
+ (function (BaseIds) {
217
+ BaseIds[BaseIds["AAVE_V3_REPAY"] = 0] = "AAVE_V3_REPAY";
218
+ BaseIds[BaseIds["AAVE_V3_BOOST"] = 1] = "AAVE_V3_BOOST";
219
+ BaseIds[BaseIds["AAVE_V3_CLOSE_TO_DEBT"] = 2] = "AAVE_V3_CLOSE_TO_DEBT";
220
+ BaseIds[BaseIds["AAVE_V3_CLOSE_TO_COLLATERAL"] = 3] = "AAVE_V3_CLOSE_TO_COLLATERAL";
221
+ BaseIds[BaseIds["COMP_V3_SW_REPAY_BUNDLE"] = 4] = "COMP_V3_SW_REPAY_BUNDLE";
222
+ BaseIds[BaseIds["COMP_V3_SW_BOOST_BUNDLE"] = 5] = "COMP_V3_SW_BOOST_BUNDLE";
223
+ })(BaseIds = Bundles.BaseIds || (Bundles.BaseIds = {}));
224
+ let ArbitrumIds;
225
+ (function (ArbitrumIds) {
226
+ ArbitrumIds[ArbitrumIds["AAVE_V3_REPAY"] = 0] = "AAVE_V3_REPAY";
227
+ ArbitrumIds[ArbitrumIds["AAVE_V3_BOOST"] = 1] = "AAVE_V3_BOOST";
228
+ ArbitrumIds[ArbitrumIds["AAVE_V3_CLOSE_TO_DEBT"] = 2] = "AAVE_V3_CLOSE_TO_DEBT";
229
+ ArbitrumIds[ArbitrumIds["AAVE_V3_CLOSE_TO_COLLATERAL"] = 3] = "AAVE_V3_CLOSE_TO_COLLATERAL";
230
+ ArbitrumIds[ArbitrumIds["COMP_V3_SW_REPAY_BUNDLE"] = 4] = "COMP_V3_SW_REPAY_BUNDLE";
231
+ ArbitrumIds[ArbitrumIds["COMP_V3_SW_BOOST_BUNDLE"] = 5] = "COMP_V3_SW_BOOST_BUNDLE";
232
+ ArbitrumIds[ArbitrumIds["AAVE_V3_OPEN_ORDER_FROM_COLLATERAL"] = 6] = "AAVE_V3_OPEN_ORDER_FROM_COLLATERAL";
233
+ })(ArbitrumIds = Bundles.ArbitrumIds || (Bundles.ArbitrumIds = {}));
234
+ })(Bundles = exports.Bundles || (exports.Bundles = {}));