@defisaver/sdk 1.3.18-aave-v4-2-dev → 1.3.18-aave-v4-4-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/esm/src/actions/aavev4/AaveV4DelegateSetUsingAsCollateralWithSigAction.d.ts +14 -0
- package/esm/src/actions/aavev4/AaveV4DelegateSetUsingAsCollateralWithSigAction.js +19 -0
- package/esm/src/actions/aavev4/index.d.ts +1 -0
- package/esm/src/actions/aavev4/index.js +1 -0
- package/esm/src/addresses.d.ts +6 -0
- package/esm/src/addresses.js +10 -9
- package/esm/src/index.d.ts +24 -0
- package/package.json +1 -1
- package/src/actions/aavev4/AaveV4DelegateSetUsingAsCollateralWithSigAction.ts +29 -0
- package/src/actions/aavev4/index.ts +2 -1
- package/src/addresses.ts +10 -9
- package/umd/index.js +125 -94
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { Action } from '../../Action';
|
|
2
|
+
import { bytes } from '../../types';
|
|
3
|
+
/**
|
|
4
|
+
* AaveV4DelegateSetUsingAsCollateralWithSigAction - Approves a delegatee to set using as collateral on behalf of delegator using an EIP712-typed intent.
|
|
5
|
+
*
|
|
6
|
+
* @category AaveV4
|
|
7
|
+
*/
|
|
8
|
+
export declare class AaveV4DelegateSetUsingAsCollateralWithSigAction extends Action {
|
|
9
|
+
/**
|
|
10
|
+
* @param permit EIP712-typed intent.
|
|
11
|
+
* @param signature The EIP712-compliant signature bytes.
|
|
12
|
+
*/
|
|
13
|
+
constructor(permit: Array<any>, signature: bytes);
|
|
14
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Action } from '../../Action';
|
|
2
|
+
import { getAddr } from '../../addresses';
|
|
3
|
+
/**
|
|
4
|
+
* AaveV4DelegateSetUsingAsCollateralWithSigAction - Approves a delegatee to set using as collateral on behalf of delegator using an EIP712-typed intent.
|
|
5
|
+
*
|
|
6
|
+
* @category AaveV4
|
|
7
|
+
*/
|
|
8
|
+
export class AaveV4DelegateSetUsingAsCollateralWithSigAction extends Action {
|
|
9
|
+
/**
|
|
10
|
+
* @param permit EIP712-typed intent.
|
|
11
|
+
* @param signature The EIP712-compliant signature bytes.
|
|
12
|
+
*/
|
|
13
|
+
constructor(permit, signature) {
|
|
14
|
+
super('AaveV4DelegateSetUsingAsCollateralWithSig', getAddr('AaveV4DelegateSetUsingAsCollateralWithSig'), [
|
|
15
|
+
['address', 'address', 'address', 'bool', 'uint256', 'uint256'],
|
|
16
|
+
'bytes',
|
|
17
|
+
], [permit, signature]);
|
|
18
|
+
}
|
|
19
|
+
}
|
|
@@ -8,3 +8,4 @@ export * from './AaveV4RefreshPremiumAction';
|
|
|
8
8
|
export * from './AaveV4DelegateBorrowWithSigAction';
|
|
9
9
|
export * from './AaveV4DelegateWithdrawWithSigAction';
|
|
10
10
|
export * from './AaveV4SetUserManagersWithSigAction';
|
|
11
|
+
export * from './AaveV4DelegateSetUsingAsCollateralWithSigAction';
|
|
@@ -8,3 +8,4 @@ export * from './AaveV4RefreshPremiumAction';
|
|
|
8
8
|
export * from './AaveV4DelegateBorrowWithSigAction';
|
|
9
9
|
export * from './AaveV4DelegateWithdrawWithSigAction';
|
|
10
10
|
export * from './AaveV4SetUserManagersWithSigAction';
|
|
11
|
+
export * from './AaveV4DelegateSetUsingAsCollateralWithSigAction';
|
package/esm/src/addresses.d.ts
CHANGED
|
@@ -286,6 +286,7 @@ export declare const actionAddresses: {
|
|
|
286
286
|
AaveV4SetUserManagersWithSig: string;
|
|
287
287
|
AaveV4DelegateWithdrawWithSig: string;
|
|
288
288
|
AaveV4DelegateBorrowWithSig: string;
|
|
289
|
+
AaveV4DelegateSetUsingAsCollateralWithSig: string;
|
|
289
290
|
AaveV3DelegateCredit?: undefined;
|
|
290
291
|
AaveV3RatioTrigger?: undefined;
|
|
291
292
|
GasFeeTakerL2?: undefined;
|
|
@@ -581,6 +582,7 @@ export declare const actionAddresses: {
|
|
|
581
582
|
AaveV4SetUserManagersWithSig?: undefined;
|
|
582
583
|
AaveV4DelegateWithdrawWithSig?: undefined;
|
|
583
584
|
AaveV4DelegateBorrowWithSig?: undefined;
|
|
585
|
+
AaveV4DelegateSetUsingAsCollateralWithSig?: undefined;
|
|
584
586
|
MorphoBlueView?: undefined;
|
|
585
587
|
} | {
|
|
586
588
|
DFSSell: string;
|
|
@@ -871,6 +873,7 @@ export declare const actionAddresses: {
|
|
|
871
873
|
AaveV4SetUserManagersWithSig?: undefined;
|
|
872
874
|
AaveV4DelegateWithdrawWithSig?: undefined;
|
|
873
875
|
AaveV4DelegateBorrowWithSig?: undefined;
|
|
876
|
+
AaveV4DelegateSetUsingAsCollateralWithSig?: undefined;
|
|
874
877
|
AaveV3DelegateCredit?: undefined;
|
|
875
878
|
AaveV3RatioTrigger?: undefined;
|
|
876
879
|
} | {
|
|
@@ -1161,6 +1164,7 @@ export declare const actionAddresses: {
|
|
|
1161
1164
|
AaveV4SetUserManagersWithSig?: undefined;
|
|
1162
1165
|
AaveV4DelegateWithdrawWithSig?: undefined;
|
|
1163
1166
|
AaveV4DelegateBorrowWithSig?: undefined;
|
|
1167
|
+
AaveV4DelegateSetUsingAsCollateralWithSig?: undefined;
|
|
1164
1168
|
AaveV3DelegateCredit?: undefined;
|
|
1165
1169
|
AaveV3RatioTrigger?: undefined;
|
|
1166
1170
|
AaveV3RatioCheck?: undefined;
|
|
@@ -1451,6 +1455,7 @@ export declare const actionAddresses: {
|
|
|
1451
1455
|
AaveV4SetUserManagersWithSig?: undefined;
|
|
1452
1456
|
AaveV4DelegateWithdrawWithSig?: undefined;
|
|
1453
1457
|
AaveV4DelegateBorrowWithSig?: undefined;
|
|
1458
|
+
AaveV4DelegateSetUsingAsCollateralWithSig?: undefined;
|
|
1454
1459
|
AaveV3RatioTrigger?: undefined;
|
|
1455
1460
|
GasFeeTakerL2?: undefined;
|
|
1456
1461
|
AaveV3RatioCheck?: undefined;
|
|
@@ -1742,6 +1747,7 @@ export declare const actionAddresses: {
|
|
|
1742
1747
|
AaveV4SetUserManagersWithSig?: undefined;
|
|
1743
1748
|
AaveV4DelegateWithdrawWithSig?: undefined;
|
|
1744
1749
|
AaveV4DelegateBorrowWithSig?: undefined;
|
|
1750
|
+
AaveV4DelegateSetUsingAsCollateralWithSig?: undefined;
|
|
1745
1751
|
AaveV3RatioTrigger?: undefined;
|
|
1746
1752
|
GasFeeTakerL2?: undefined;
|
|
1747
1753
|
AaveV3RatioCheck?: undefined;
|
package/esm/src/addresses.js
CHANGED
|
@@ -319,15 +319,16 @@ export const actionAddresses = {
|
|
|
319
319
|
SummerfiUnsub: '0x926405D69b77A514ED974901095AcFf9e5131366',
|
|
320
320
|
SummerfiUnsubV2: '0x5E805eD9B7581a9f1398F75833f9663a459F5E30',
|
|
321
321
|
// AaveV4
|
|
322
|
-
AaveV4Supply: '
|
|
323
|
-
AaveV4Withdraw: '
|
|
324
|
-
AaveV4Borrow: '
|
|
325
|
-
AaveV4Payback: '
|
|
326
|
-
AaveV4CollateralSwitch: '
|
|
327
|
-
AaveV4RefreshPremium: '
|
|
328
|
-
AaveV4SetUserManagersWithSig: '
|
|
329
|
-
AaveV4DelegateWithdrawWithSig: '
|
|
330
|
-
AaveV4DelegateBorrowWithSig: '
|
|
322
|
+
AaveV4Supply: '0x089c2b1DB0f68D94E67e8d969509D45B26fD0ceC',
|
|
323
|
+
AaveV4Withdraw: '0x563EC9e76b335A8218c04Ac4Ae9A58ae464CaAD6',
|
|
324
|
+
AaveV4Borrow: '0x2a560B72Fb88b9Bb90dd997CD94D7611740961B9',
|
|
325
|
+
AaveV4Payback: '0xEBafec920888E735e61353A8792cBd452B8406a0',
|
|
326
|
+
AaveV4CollateralSwitch: '0x742c8676E90958C8b8e264b70Ca0685c365Eec5f',
|
|
327
|
+
AaveV4RefreshPremium: '0xca7Cec8D88Bf495166CAeC045F0d467Aa4ceBE4E',
|
|
328
|
+
AaveV4SetUserManagersWithSig: '0x70CB26167153298aF397dF58200799A24B060b0d',
|
|
329
|
+
AaveV4DelegateWithdrawWithSig: '0x81864dBd69c46B19463eC7BEC6cE0B271126531a',
|
|
330
|
+
AaveV4DelegateBorrowWithSig: '0x9D68b41BB9f9e9Ac1E1ee49d3566CAd4624886BA',
|
|
331
|
+
AaveV4DelegateSetUsingAsCollateralWithSig: '0xF3D7C7e8F5154c669EAA0dE996cdE0575D7d3A00',
|
|
331
332
|
},
|
|
332
333
|
[NETWORKS.optimism.chainId]: {
|
|
333
334
|
DFSSell: '0x9f234af5c10c136863a20865ba00b26951ab8269',
|
package/esm/src/index.d.ts
CHANGED
|
@@ -297,6 +297,7 @@ declare const actionAddressesAllChains: {
|
|
|
297
297
|
AaveV4SetUserManagersWithSig: string;
|
|
298
298
|
AaveV4DelegateWithdrawWithSig: string;
|
|
299
299
|
AaveV4DelegateBorrowWithSig: string;
|
|
300
|
+
AaveV4DelegateSetUsingAsCollateralWithSig: string;
|
|
300
301
|
AaveV3DelegateCredit?: undefined;
|
|
301
302
|
AaveV3RatioTrigger?: undefined;
|
|
302
303
|
GasFeeTakerL2?: undefined;
|
|
@@ -592,6 +593,7 @@ declare const actionAddressesAllChains: {
|
|
|
592
593
|
AaveV4SetUserManagersWithSig?: undefined;
|
|
593
594
|
AaveV4DelegateWithdrawWithSig?: undefined;
|
|
594
595
|
AaveV4DelegateBorrowWithSig?: undefined;
|
|
596
|
+
AaveV4DelegateSetUsingAsCollateralWithSig?: undefined;
|
|
595
597
|
MorphoBlueView?: undefined;
|
|
596
598
|
} | {
|
|
597
599
|
DFSSell: string;
|
|
@@ -882,6 +884,7 @@ declare const actionAddressesAllChains: {
|
|
|
882
884
|
AaveV4SetUserManagersWithSig?: undefined;
|
|
883
885
|
AaveV4DelegateWithdrawWithSig?: undefined;
|
|
884
886
|
AaveV4DelegateBorrowWithSig?: undefined;
|
|
887
|
+
AaveV4DelegateSetUsingAsCollateralWithSig?: undefined;
|
|
885
888
|
AaveV3DelegateCredit?: undefined;
|
|
886
889
|
AaveV3RatioTrigger?: undefined;
|
|
887
890
|
} | {
|
|
@@ -1172,6 +1175,7 @@ declare const actionAddressesAllChains: {
|
|
|
1172
1175
|
AaveV4SetUserManagersWithSig?: undefined;
|
|
1173
1176
|
AaveV4DelegateWithdrawWithSig?: undefined;
|
|
1174
1177
|
AaveV4DelegateBorrowWithSig?: undefined;
|
|
1178
|
+
AaveV4DelegateSetUsingAsCollateralWithSig?: undefined;
|
|
1175
1179
|
AaveV3DelegateCredit?: undefined;
|
|
1176
1180
|
AaveV3RatioTrigger?: undefined;
|
|
1177
1181
|
AaveV3RatioCheck?: undefined;
|
|
@@ -1462,6 +1466,7 @@ declare const actionAddressesAllChains: {
|
|
|
1462
1466
|
AaveV4SetUserManagersWithSig?: undefined;
|
|
1463
1467
|
AaveV4DelegateWithdrawWithSig?: undefined;
|
|
1464
1468
|
AaveV4DelegateBorrowWithSig?: undefined;
|
|
1469
|
+
AaveV4DelegateSetUsingAsCollateralWithSig?: undefined;
|
|
1465
1470
|
AaveV3RatioTrigger?: undefined;
|
|
1466
1471
|
GasFeeTakerL2?: undefined;
|
|
1467
1472
|
AaveV3RatioCheck?: undefined;
|
|
@@ -1753,6 +1758,7 @@ declare const actionAddressesAllChains: {
|
|
|
1753
1758
|
AaveV4SetUserManagersWithSig?: undefined;
|
|
1754
1759
|
AaveV4DelegateWithdrawWithSig?: undefined;
|
|
1755
1760
|
AaveV4DelegateBorrowWithSig?: undefined;
|
|
1761
|
+
AaveV4DelegateSetUsingAsCollateralWithSig?: undefined;
|
|
1756
1762
|
AaveV3RatioTrigger?: undefined;
|
|
1757
1763
|
GasFeeTakerL2?: undefined;
|
|
1758
1764
|
AaveV3RatioCheck?: undefined;
|
|
@@ -2045,6 +2051,7 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
2045
2051
|
AaveV4SetUserManagersWithSig: string;
|
|
2046
2052
|
AaveV4DelegateWithdrawWithSig: string;
|
|
2047
2053
|
AaveV4DelegateBorrowWithSig: string;
|
|
2054
|
+
AaveV4DelegateSetUsingAsCollateralWithSig: string;
|
|
2048
2055
|
AaveV3DelegateCredit?: undefined;
|
|
2049
2056
|
AaveV3RatioTrigger?: undefined;
|
|
2050
2057
|
GasFeeTakerL2?: undefined;
|
|
@@ -2340,6 +2347,7 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
2340
2347
|
AaveV4SetUserManagersWithSig?: undefined;
|
|
2341
2348
|
AaveV4DelegateWithdrawWithSig?: undefined;
|
|
2342
2349
|
AaveV4DelegateBorrowWithSig?: undefined;
|
|
2350
|
+
AaveV4DelegateSetUsingAsCollateralWithSig?: undefined;
|
|
2343
2351
|
MorphoBlueView?: undefined;
|
|
2344
2352
|
} | {
|
|
2345
2353
|
DFSSell: string;
|
|
@@ -2630,6 +2638,7 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
2630
2638
|
AaveV4SetUserManagersWithSig?: undefined;
|
|
2631
2639
|
AaveV4DelegateWithdrawWithSig?: undefined;
|
|
2632
2640
|
AaveV4DelegateBorrowWithSig?: undefined;
|
|
2641
|
+
AaveV4DelegateSetUsingAsCollateralWithSig?: undefined;
|
|
2633
2642
|
AaveV3DelegateCredit?: undefined;
|
|
2634
2643
|
AaveV3RatioTrigger?: undefined;
|
|
2635
2644
|
} | {
|
|
@@ -2920,6 +2929,7 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
2920
2929
|
AaveV4SetUserManagersWithSig?: undefined;
|
|
2921
2930
|
AaveV4DelegateWithdrawWithSig?: undefined;
|
|
2922
2931
|
AaveV4DelegateBorrowWithSig?: undefined;
|
|
2932
|
+
AaveV4DelegateSetUsingAsCollateralWithSig?: undefined;
|
|
2923
2933
|
AaveV3DelegateCredit?: undefined;
|
|
2924
2934
|
AaveV3RatioTrigger?: undefined;
|
|
2925
2935
|
AaveV3RatioCheck?: undefined;
|
|
@@ -3210,6 +3220,7 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
3210
3220
|
AaveV4SetUserManagersWithSig?: undefined;
|
|
3211
3221
|
AaveV4DelegateWithdrawWithSig?: undefined;
|
|
3212
3222
|
AaveV4DelegateBorrowWithSig?: undefined;
|
|
3223
|
+
AaveV4DelegateSetUsingAsCollateralWithSig?: undefined;
|
|
3213
3224
|
AaveV3RatioTrigger?: undefined;
|
|
3214
3225
|
GasFeeTakerL2?: undefined;
|
|
3215
3226
|
AaveV3RatioCheck?: undefined;
|
|
@@ -3501,6 +3512,7 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
3501
3512
|
AaveV4SetUserManagersWithSig?: undefined;
|
|
3502
3513
|
AaveV4DelegateWithdrawWithSig?: undefined;
|
|
3503
3514
|
AaveV4DelegateBorrowWithSig?: undefined;
|
|
3515
|
+
AaveV4DelegateSetUsingAsCollateralWithSig?: undefined;
|
|
3504
3516
|
AaveV3RatioTrigger?: undefined;
|
|
3505
3517
|
GasFeeTakerL2?: undefined;
|
|
3506
3518
|
AaveV3RatioCheck?: undefined;
|
|
@@ -4030,6 +4042,7 @@ declare const _default: {
|
|
|
4030
4042
|
AaveV4SetUserManagersWithSig: string;
|
|
4031
4043
|
AaveV4DelegateWithdrawWithSig: string;
|
|
4032
4044
|
AaveV4DelegateBorrowWithSig: string;
|
|
4045
|
+
AaveV4DelegateSetUsingAsCollateralWithSig: string;
|
|
4033
4046
|
AaveV3DelegateCredit?: undefined;
|
|
4034
4047
|
AaveV3RatioTrigger?: undefined;
|
|
4035
4048
|
GasFeeTakerL2?: undefined;
|
|
@@ -4325,6 +4338,7 @@ declare const _default: {
|
|
|
4325
4338
|
AaveV4SetUserManagersWithSig?: undefined;
|
|
4326
4339
|
AaveV4DelegateWithdrawWithSig?: undefined;
|
|
4327
4340
|
AaveV4DelegateBorrowWithSig?: undefined;
|
|
4341
|
+
AaveV4DelegateSetUsingAsCollateralWithSig?: undefined;
|
|
4328
4342
|
MorphoBlueView?: undefined;
|
|
4329
4343
|
} | {
|
|
4330
4344
|
DFSSell: string;
|
|
@@ -4615,6 +4629,7 @@ declare const _default: {
|
|
|
4615
4629
|
AaveV4SetUserManagersWithSig?: undefined;
|
|
4616
4630
|
AaveV4DelegateWithdrawWithSig?: undefined;
|
|
4617
4631
|
AaveV4DelegateBorrowWithSig?: undefined;
|
|
4632
|
+
AaveV4DelegateSetUsingAsCollateralWithSig?: undefined;
|
|
4618
4633
|
AaveV3DelegateCredit?: undefined;
|
|
4619
4634
|
AaveV3RatioTrigger?: undefined;
|
|
4620
4635
|
} | {
|
|
@@ -4905,6 +4920,7 @@ declare const _default: {
|
|
|
4905
4920
|
AaveV4SetUserManagersWithSig?: undefined;
|
|
4906
4921
|
AaveV4DelegateWithdrawWithSig?: undefined;
|
|
4907
4922
|
AaveV4DelegateBorrowWithSig?: undefined;
|
|
4923
|
+
AaveV4DelegateSetUsingAsCollateralWithSig?: undefined;
|
|
4908
4924
|
AaveV3DelegateCredit?: undefined;
|
|
4909
4925
|
AaveV3RatioTrigger?: undefined;
|
|
4910
4926
|
AaveV3RatioCheck?: undefined;
|
|
@@ -5195,6 +5211,7 @@ declare const _default: {
|
|
|
5195
5211
|
AaveV4SetUserManagersWithSig?: undefined;
|
|
5196
5212
|
AaveV4DelegateWithdrawWithSig?: undefined;
|
|
5197
5213
|
AaveV4DelegateBorrowWithSig?: undefined;
|
|
5214
|
+
AaveV4DelegateSetUsingAsCollateralWithSig?: undefined;
|
|
5198
5215
|
AaveV3RatioTrigger?: undefined;
|
|
5199
5216
|
GasFeeTakerL2?: undefined;
|
|
5200
5217
|
AaveV3RatioCheck?: undefined;
|
|
@@ -5486,6 +5503,7 @@ declare const _default: {
|
|
|
5486
5503
|
AaveV4SetUserManagersWithSig?: undefined;
|
|
5487
5504
|
AaveV4DelegateWithdrawWithSig?: undefined;
|
|
5488
5505
|
AaveV4DelegateBorrowWithSig?: undefined;
|
|
5506
|
+
AaveV4DelegateSetUsingAsCollateralWithSig?: undefined;
|
|
5489
5507
|
AaveV3RatioTrigger?: undefined;
|
|
5490
5508
|
GasFeeTakerL2?: undefined;
|
|
5491
5509
|
AaveV3RatioCheck?: undefined;
|
|
@@ -5778,6 +5796,7 @@ declare const _default: {
|
|
|
5778
5796
|
AaveV4SetUserManagersWithSig: string;
|
|
5779
5797
|
AaveV4DelegateWithdrawWithSig: string;
|
|
5780
5798
|
AaveV4DelegateBorrowWithSig: string;
|
|
5799
|
+
AaveV4DelegateSetUsingAsCollateralWithSig: string;
|
|
5781
5800
|
AaveV3DelegateCredit?: undefined;
|
|
5782
5801
|
AaveV3RatioTrigger?: undefined;
|
|
5783
5802
|
GasFeeTakerL2?: undefined;
|
|
@@ -6073,6 +6092,7 @@ declare const _default: {
|
|
|
6073
6092
|
AaveV4SetUserManagersWithSig?: undefined;
|
|
6074
6093
|
AaveV4DelegateWithdrawWithSig?: undefined;
|
|
6075
6094
|
AaveV4DelegateBorrowWithSig?: undefined;
|
|
6095
|
+
AaveV4DelegateSetUsingAsCollateralWithSig?: undefined;
|
|
6076
6096
|
MorphoBlueView?: undefined;
|
|
6077
6097
|
} | {
|
|
6078
6098
|
DFSSell: string;
|
|
@@ -6363,6 +6383,7 @@ declare const _default: {
|
|
|
6363
6383
|
AaveV4SetUserManagersWithSig?: undefined;
|
|
6364
6384
|
AaveV4DelegateWithdrawWithSig?: undefined;
|
|
6365
6385
|
AaveV4DelegateBorrowWithSig?: undefined;
|
|
6386
|
+
AaveV4DelegateSetUsingAsCollateralWithSig?: undefined;
|
|
6366
6387
|
AaveV3DelegateCredit?: undefined;
|
|
6367
6388
|
AaveV3RatioTrigger?: undefined;
|
|
6368
6389
|
} | {
|
|
@@ -6653,6 +6674,7 @@ declare const _default: {
|
|
|
6653
6674
|
AaveV4SetUserManagersWithSig?: undefined;
|
|
6654
6675
|
AaveV4DelegateWithdrawWithSig?: undefined;
|
|
6655
6676
|
AaveV4DelegateBorrowWithSig?: undefined;
|
|
6677
|
+
AaveV4DelegateSetUsingAsCollateralWithSig?: undefined;
|
|
6656
6678
|
AaveV3DelegateCredit?: undefined;
|
|
6657
6679
|
AaveV3RatioTrigger?: undefined;
|
|
6658
6680
|
AaveV3RatioCheck?: undefined;
|
|
@@ -6943,6 +6965,7 @@ declare const _default: {
|
|
|
6943
6965
|
AaveV4SetUserManagersWithSig?: undefined;
|
|
6944
6966
|
AaveV4DelegateWithdrawWithSig?: undefined;
|
|
6945
6967
|
AaveV4DelegateBorrowWithSig?: undefined;
|
|
6968
|
+
AaveV4DelegateSetUsingAsCollateralWithSig?: undefined;
|
|
6946
6969
|
AaveV3RatioTrigger?: undefined;
|
|
6947
6970
|
GasFeeTakerL2?: undefined;
|
|
6948
6971
|
AaveV3RatioCheck?: undefined;
|
|
@@ -7234,6 +7257,7 @@ declare const _default: {
|
|
|
7234
7257
|
AaveV4SetUserManagersWithSig?: undefined;
|
|
7235
7258
|
AaveV4DelegateWithdrawWithSig?: undefined;
|
|
7236
7259
|
AaveV4DelegateBorrowWithSig?: undefined;
|
|
7260
|
+
AaveV4DelegateSetUsingAsCollateralWithSig?: undefined;
|
|
7237
7261
|
AaveV3RatioTrigger?: undefined;
|
|
7238
7262
|
GasFeeTakerL2?: undefined;
|
|
7239
7263
|
AaveV3RatioCheck?: undefined;
|
package/package.json
CHANGED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { Action } from '../../Action';
|
|
2
|
+
import { getAddr } from '../../addresses';
|
|
3
|
+
import { bytes } from '../../types';
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* AaveV4DelegateSetUsingAsCollateralWithSigAction - Approves a delegatee to set using as collateral on behalf of delegator using an EIP712-typed intent.
|
|
7
|
+
*
|
|
8
|
+
* @category AaveV4
|
|
9
|
+
*/
|
|
10
|
+
export class AaveV4DelegateSetUsingAsCollateralWithSigAction extends Action {
|
|
11
|
+
/**
|
|
12
|
+
* @param permit EIP712-typed intent.
|
|
13
|
+
* @param signature The EIP712-compliant signature bytes.
|
|
14
|
+
*/
|
|
15
|
+
constructor(
|
|
16
|
+
permit: Array<any>,
|
|
17
|
+
signature: bytes,
|
|
18
|
+
) {
|
|
19
|
+
super(
|
|
20
|
+
'AaveV4DelegateSetUsingAsCollateralWithSig',
|
|
21
|
+
getAddr('AaveV4DelegateSetUsingAsCollateralWithSig'),
|
|
22
|
+
[
|
|
23
|
+
['address', 'address', 'address', 'bool', 'uint256', 'uint256'],
|
|
24
|
+
'bytes',
|
|
25
|
+
],
|
|
26
|
+
[permit, signature],
|
|
27
|
+
);
|
|
28
|
+
}
|
|
29
|
+
}
|
|
@@ -7,4 +7,5 @@ export * from './AaveV4StoreRatioAction';
|
|
|
7
7
|
export * from './AaveV4RefreshPremiumAction';
|
|
8
8
|
export * from './AaveV4DelegateBorrowWithSigAction';
|
|
9
9
|
export * from './AaveV4DelegateWithdrawWithSigAction';
|
|
10
|
-
export * from './AaveV4SetUserManagersWithSigAction';
|
|
10
|
+
export * from './AaveV4SetUserManagersWithSigAction';
|
|
11
|
+
export * from './AaveV4DelegateSetUsingAsCollateralWithSigAction';
|
package/src/addresses.ts
CHANGED
|
@@ -391,15 +391,16 @@ export const actionAddresses = {
|
|
|
391
391
|
SummerfiUnsubV2: '0x5E805eD9B7581a9f1398F75833f9663a459F5E30',
|
|
392
392
|
|
|
393
393
|
// AaveV4
|
|
394
|
-
AaveV4Supply: '
|
|
395
|
-
AaveV4Withdraw: '
|
|
396
|
-
AaveV4Borrow: '
|
|
397
|
-
AaveV4Payback: '
|
|
398
|
-
AaveV4CollateralSwitch: '
|
|
399
|
-
AaveV4RefreshPremium: '
|
|
400
|
-
AaveV4SetUserManagersWithSig: '
|
|
401
|
-
AaveV4DelegateWithdrawWithSig: '
|
|
402
|
-
AaveV4DelegateBorrowWithSig: '
|
|
394
|
+
AaveV4Supply: '0x089c2b1DB0f68D94E67e8d969509D45B26fD0ceC',
|
|
395
|
+
AaveV4Withdraw: '0x563EC9e76b335A8218c04Ac4Ae9A58ae464CaAD6',
|
|
396
|
+
AaveV4Borrow: '0x2a560B72Fb88b9Bb90dd997CD94D7611740961B9',
|
|
397
|
+
AaveV4Payback: '0xEBafec920888E735e61353A8792cBd452B8406a0',
|
|
398
|
+
AaveV4CollateralSwitch: '0x742c8676E90958C8b8e264b70Ca0685c365Eec5f',
|
|
399
|
+
AaveV4RefreshPremium: '0xca7Cec8D88Bf495166CAeC045F0d467Aa4ceBE4E',
|
|
400
|
+
AaveV4SetUserManagersWithSig: '0x70CB26167153298aF397dF58200799A24B060b0d',
|
|
401
|
+
AaveV4DelegateWithdrawWithSig: '0x81864dBd69c46B19463eC7BEC6cE0B271126531a',
|
|
402
|
+
AaveV4DelegateBorrowWithSig: '0x9D68b41BB9f9e9Ac1E1ee49d3566CAd4624886BA',
|
|
403
|
+
AaveV4DelegateSetUsingAsCollateralWithSig: '0xF3D7C7e8F5154c669EAA0dE996cdE0575D7d3A00',
|
|
403
404
|
},
|
|
404
405
|
[NETWORKS.optimism.chainId]: {
|
|
405
406
|
DFSSell: '0x9f234af5c10c136863a20865ba00b26951ab8269',
|
package/umd/index.js
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
exports["defisaver-sdk"] = factory(require("web3-eth-abi"), require("web3-utils"), require("decimal.js"), require("@defisaver/tokens"), require("@ethersproject/solidity"), require("@ethersproject/address"), require("axios"));
|
|
8
8
|
else
|
|
9
9
|
root["defisaver-sdk"] = factory(root["web3-eth-abi"], root["web3-utils"], root["decimal.js"], root["@defisaver/tokens"], root["@ethersproject/solidity"], root["@ethersproject/address"], root["axios"]);
|
|
10
|
-
})(this, (__WEBPACK_EXTERNAL_MODULE__2__, __WEBPACK_EXTERNAL_MODULE__3__, __WEBPACK_EXTERNAL_MODULE__5__, __WEBPACK_EXTERNAL_MODULE__6__, __WEBPACK_EXTERNAL_MODULE__138__, __WEBPACK_EXTERNAL_MODULE__139__,
|
|
10
|
+
})(this, (__WEBPACK_EXTERNAL_MODULE__2__, __WEBPACK_EXTERNAL_MODULE__3__, __WEBPACK_EXTERNAL_MODULE__5__, __WEBPACK_EXTERNAL_MODULE__6__, __WEBPACK_EXTERNAL_MODULE__138__, __WEBPACK_EXTERNAL_MODULE__139__, __WEBPACK_EXTERNAL_MODULE__462__) => {
|
|
11
11
|
return /******/ (() => { // webpackBootstrap
|
|
12
12
|
/******/ "use strict";
|
|
13
13
|
/******/ var __webpack_modules__ = ([
|
|
@@ -1632,15 +1632,16 @@ var actionAddresses = {
|
|
|
1632
1632
|
SummerfiUnsub: '0x926405D69b77A514ED974901095AcFf9e5131366',
|
|
1633
1633
|
SummerfiUnsubV2: '0x5E805eD9B7581a9f1398F75833f9663a459F5E30',
|
|
1634
1634
|
// AaveV4
|
|
1635
|
-
AaveV4Supply: '
|
|
1636
|
-
AaveV4Withdraw: '
|
|
1637
|
-
AaveV4Borrow: '
|
|
1638
|
-
AaveV4Payback: '
|
|
1639
|
-
AaveV4CollateralSwitch: '
|
|
1640
|
-
AaveV4RefreshPremium: '
|
|
1641
|
-
AaveV4SetUserManagersWithSig: '
|
|
1642
|
-
AaveV4DelegateWithdrawWithSig: '
|
|
1643
|
-
AaveV4DelegateBorrowWithSig: '
|
|
1635
|
+
AaveV4Supply: '0x089c2b1DB0f68D94E67e8d969509D45B26fD0ceC',
|
|
1636
|
+
AaveV4Withdraw: '0x563EC9e76b335A8218c04Ac4Ae9A58ae464CaAD6',
|
|
1637
|
+
AaveV4Borrow: '0x2a560B72Fb88b9Bb90dd997CD94D7611740961B9',
|
|
1638
|
+
AaveV4Payback: '0xEBafec920888E735e61353A8792cBd452B8406a0',
|
|
1639
|
+
AaveV4CollateralSwitch: '0x742c8676E90958C8b8e264b70Ca0685c365Eec5f',
|
|
1640
|
+
AaveV4RefreshPremium: '0xca7Cec8D88Bf495166CAeC045F0d467Aa4ceBE4E',
|
|
1641
|
+
AaveV4SetUserManagersWithSig: '0x70CB26167153298aF397dF58200799A24B060b0d',
|
|
1642
|
+
AaveV4DelegateWithdrawWithSig: '0x81864dBd69c46B19463eC7BEC6cE0B271126531a',
|
|
1643
|
+
AaveV4DelegateBorrowWithSig: '0x9D68b41BB9f9e9Ac1E1ee49d3566CAd4624886BA',
|
|
1644
|
+
AaveV4DelegateSetUsingAsCollateralWithSig: '0xF3D7C7e8F5154c669EAA0dE996cdE0575D7d3A00'
|
|
1644
1645
|
},
|
|
1645
1646
|
[_config__WEBPACK_IMPORTED_MODULE_0__.NETWORKS.optimism.chainId]: {
|
|
1646
1647
|
DFSSell: '0x9f234af5c10c136863a20865ba00b26951ab8269',
|
|
@@ -16498,6 +16499,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
16498
16499
|
/* harmony export */ AaveV4BorrowAction: () => (/* reexport safe */ _AaveV4BorrowAction__WEBPACK_IMPORTED_MODULE_2__.AaveV4BorrowAction),
|
|
16499
16500
|
/* harmony export */ AaveV4CollateralSwitchAction: () => (/* reexport safe */ _AaveV4CollateralSwitchAction__WEBPACK_IMPORTED_MODULE_4__.AaveV4CollateralSwitchAction),
|
|
16500
16501
|
/* harmony export */ AaveV4DelegateBorrowWithSigAction: () => (/* reexport safe */ _AaveV4DelegateBorrowWithSigAction__WEBPACK_IMPORTED_MODULE_7__.AaveV4DelegateBorrowWithSigAction),
|
|
16502
|
+
/* harmony export */ AaveV4DelegateSetUsingAsCollateralWithSigAction: () => (/* reexport safe */ _AaveV4DelegateSetUsingAsCollateralWithSigAction__WEBPACK_IMPORTED_MODULE_10__.AaveV4DelegateSetUsingAsCollateralWithSigAction),
|
|
16501
16503
|
/* harmony export */ AaveV4DelegateWithdrawWithSigAction: () => (/* reexport safe */ _AaveV4DelegateWithdrawWithSigAction__WEBPACK_IMPORTED_MODULE_8__.AaveV4DelegateWithdrawWithSigAction),
|
|
16502
16504
|
/* harmony export */ AaveV4PaybackAction: () => (/* reexport safe */ _AaveV4PaybackAction__WEBPACK_IMPORTED_MODULE_3__.AaveV4PaybackAction),
|
|
16503
16505
|
/* harmony export */ AaveV4RefreshPremiumAction: () => (/* reexport safe */ _AaveV4RefreshPremiumAction__WEBPACK_IMPORTED_MODULE_6__.AaveV4RefreshPremiumAction),
|
|
@@ -16516,6 +16518,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
16516
16518
|
/* harmony import */ var _AaveV4DelegateBorrowWithSigAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(419);
|
|
16517
16519
|
/* harmony import */ var _AaveV4DelegateWithdrawWithSigAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(420);
|
|
16518
16520
|
/* harmony import */ var _AaveV4SetUserManagersWithSigAction__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(421);
|
|
16521
|
+
/* harmony import */ var _AaveV4DelegateSetUsingAsCollateralWithSigAction__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(422);
|
|
16522
|
+
|
|
16519
16523
|
|
|
16520
16524
|
|
|
16521
16525
|
|
|
@@ -16875,6 +16879,33 @@ class AaveV4SetUserManagersWithSigAction extends _Action__WEBPACK_IMPORTED_MODUL
|
|
|
16875
16879
|
/* 422 */
|
|
16876
16880
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
16877
16881
|
|
|
16882
|
+
__webpack_require__.r(__webpack_exports__);
|
|
16883
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
16884
|
+
/* harmony export */ AaveV4DelegateSetUsingAsCollateralWithSigAction: () => (/* binding */ AaveV4DelegateSetUsingAsCollateralWithSigAction)
|
|
16885
|
+
/* harmony export */ });
|
|
16886
|
+
/* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1);
|
|
16887
|
+
/* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(27);
|
|
16888
|
+
|
|
16889
|
+
|
|
16890
|
+
/**
|
|
16891
|
+
* AaveV4DelegateSetUsingAsCollateralWithSigAction - Approves a delegatee to set using as collateral on behalf of delegator using an EIP712-typed intent.
|
|
16892
|
+
*
|
|
16893
|
+
* @category AaveV4
|
|
16894
|
+
*/
|
|
16895
|
+
class AaveV4DelegateSetUsingAsCollateralWithSigAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
16896
|
+
/**
|
|
16897
|
+
* @param permit EIP712-typed intent.
|
|
16898
|
+
* @param signature The EIP712-compliant signature bytes.
|
|
16899
|
+
*/
|
|
16900
|
+
constructor(permit, signature) {
|
|
16901
|
+
super('AaveV4DelegateSetUsingAsCollateralWithSig', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('AaveV4DelegateSetUsingAsCollateralWithSig'), [['address', 'address', 'address', 'bool', 'uint256', 'uint256'], 'bytes'], [permit, signature]);
|
|
16902
|
+
}
|
|
16903
|
+
}
|
|
16904
|
+
|
|
16905
|
+
/***/ }),
|
|
16906
|
+
/* 423 */
|
|
16907
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
16908
|
+
|
|
16878
16909
|
__webpack_require__.r(__webpack_exports__);
|
|
16879
16910
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
16880
16911
|
/* harmony export */ AaveV2RatioTrigger: () => (/* reexport safe */ _AaveV2RatioTrigger__WEBPACK_IMPORTED_MODULE_13__.AaveV2RatioTrigger),
|
|
@@ -16914,42 +16945,42 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
16914
16945
|
/* harmony export */ TrailingStopTrigger: () => (/* reexport safe */ _TrailingStopTrigger__WEBPACK_IMPORTED_MODULE_10__.TrailingStopTrigger),
|
|
16915
16946
|
/* harmony export */ UniV3CurrentTickTrigger: () => (/* reexport safe */ _UniV3CurrentTickTrigger__WEBPACK_IMPORTED_MODULE_2__.UniV3CurrentTickTrigger)
|
|
16916
16947
|
/* harmony export */ });
|
|
16917
|
-
/* harmony import */ var _MakerRatioTrigger__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
16918
|
-
/* harmony import */ var _ChainLinkPriceTrigger__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
16919
|
-
/* harmony import */ var _UniV3CurrentTickTrigger__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
16920
|
-
/* harmony import */ var _TimestampTrigger__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
16921
|
-
/* harmony import */ var _GasPriceTrigger__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(
|
|
16922
|
-
/* harmony import */ var _CompoundRatioTrigger__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(
|
|
16923
|
-
/* harmony import */ var _ReflexerRatioTrigger__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(
|
|
16924
|
-
/* harmony import */ var _LiquityRatioTrigger__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(
|
|
16925
|
-
/* harmony import */ var _AaveV3RatioTrigger__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(
|
|
16926
|
-
/* harmony import */ var _CompV3RatioTrigger__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(
|
|
16927
|
-
/* harmony import */ var _TrailingStopTrigger__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(
|
|
16928
|
-
/* harmony import */ var _CBRebondTrigger__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(
|
|
16929
|
-
/* harmony import */ var _AaveV3QuotePriceTrigger__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(
|
|
16930
|
-
/* harmony import */ var _AaveV2RatioTrigger__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(
|
|
16931
|
-
/* harmony import */ var _MorphoAaveV2RatioTrigger__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(
|
|
16932
|
-
/* harmony import */ var _SparkRatioTrigger__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(
|
|
16933
|
-
/* harmony import */ var _SparkQuotePriceTrigger__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(
|
|
16934
|
-
/* harmony import */ var _LiquityDebtInFrontWithLimitTrigger__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(
|
|
16935
|
-
/* harmony import */ var _CurveUsdCollRatioTrigger__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(
|
|
16936
|
-
/* harmony import */ var _CurveUsdHealthRatioTrigger__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(
|
|
16937
|
-
/* harmony import */ var _MorphoBlueRatioTrigger__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(
|
|
16938
|
-
/* harmony import */ var _OffchainPriceTrigger__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(
|
|
16939
|
-
/* harmony import */ var _MorphoBluePriceTrigger__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(
|
|
16940
|
-
/* harmony import */ var _LiquityV2RatioTrigger__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(
|
|
16941
|
-
/* harmony import */ var _ClosePriceTrigger__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(
|
|
16942
|
-
/* harmony import */ var _LiquityV2QuotePriceTrigger__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(
|
|
16943
|
-
/* harmony import */ var _FluidRatioTrigger__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(
|
|
16944
|
-
/* harmony import */ var _CompV3PriceTrigger__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(
|
|
16945
|
-
/* harmony import */ var _CompV3PriceRangeTrigger__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(
|
|
16946
|
-
/* harmony import */ var _LiquityV2AdjustRateDebtInFrontTrigger__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(
|
|
16947
|
-
/* harmony import */ var _AaveV3QuotePriceRangeTrigger__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(
|
|
16948
|
-
/* harmony import */ var _SparkQuotePriceRangeTrigger__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(
|
|
16949
|
-
/* harmony import */ var _MorphoBluePriceRangeTrigger__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(
|
|
16950
|
-
/* harmony import */ var _AaveV4QuotePriceTrigger__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(
|
|
16951
|
-
/* harmony import */ var _AaveV4QuotePriceRangeTrigger__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(
|
|
16952
|
-
/* harmony import */ var _AaveV4RatioTrigger__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(
|
|
16948
|
+
/* harmony import */ var _MakerRatioTrigger__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(424);
|
|
16949
|
+
/* harmony import */ var _ChainLinkPriceTrigger__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(425);
|
|
16950
|
+
/* harmony import */ var _UniV3CurrentTickTrigger__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(426);
|
|
16951
|
+
/* harmony import */ var _TimestampTrigger__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(427);
|
|
16952
|
+
/* harmony import */ var _GasPriceTrigger__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(428);
|
|
16953
|
+
/* harmony import */ var _CompoundRatioTrigger__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(429);
|
|
16954
|
+
/* harmony import */ var _ReflexerRatioTrigger__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(430);
|
|
16955
|
+
/* harmony import */ var _LiquityRatioTrigger__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(431);
|
|
16956
|
+
/* harmony import */ var _AaveV3RatioTrigger__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(432);
|
|
16957
|
+
/* harmony import */ var _CompV3RatioTrigger__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(433);
|
|
16958
|
+
/* harmony import */ var _TrailingStopTrigger__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(434);
|
|
16959
|
+
/* harmony import */ var _CBRebondTrigger__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(435);
|
|
16960
|
+
/* harmony import */ var _AaveV3QuotePriceTrigger__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(436);
|
|
16961
|
+
/* harmony import */ var _AaveV2RatioTrigger__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(437);
|
|
16962
|
+
/* harmony import */ var _MorphoAaveV2RatioTrigger__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(438);
|
|
16963
|
+
/* harmony import */ var _SparkRatioTrigger__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(439);
|
|
16964
|
+
/* harmony import */ var _SparkQuotePriceTrigger__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(440);
|
|
16965
|
+
/* harmony import */ var _LiquityDebtInFrontWithLimitTrigger__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(441);
|
|
16966
|
+
/* harmony import */ var _CurveUsdCollRatioTrigger__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(442);
|
|
16967
|
+
/* harmony import */ var _CurveUsdHealthRatioTrigger__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(443);
|
|
16968
|
+
/* harmony import */ var _MorphoBlueRatioTrigger__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(444);
|
|
16969
|
+
/* harmony import */ var _OffchainPriceTrigger__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(445);
|
|
16970
|
+
/* harmony import */ var _MorphoBluePriceTrigger__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(446);
|
|
16971
|
+
/* harmony import */ var _LiquityV2RatioTrigger__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(447);
|
|
16972
|
+
/* harmony import */ var _ClosePriceTrigger__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(448);
|
|
16973
|
+
/* harmony import */ var _LiquityV2QuotePriceTrigger__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(449);
|
|
16974
|
+
/* harmony import */ var _FluidRatioTrigger__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(450);
|
|
16975
|
+
/* harmony import */ var _CompV3PriceTrigger__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(451);
|
|
16976
|
+
/* harmony import */ var _CompV3PriceRangeTrigger__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(452);
|
|
16977
|
+
/* harmony import */ var _LiquityV2AdjustRateDebtInFrontTrigger__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(453);
|
|
16978
|
+
/* harmony import */ var _AaveV3QuotePriceRangeTrigger__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(454);
|
|
16979
|
+
/* harmony import */ var _SparkQuotePriceRangeTrigger__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(455);
|
|
16980
|
+
/* harmony import */ var _MorphoBluePriceRangeTrigger__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(456);
|
|
16981
|
+
/* harmony import */ var _AaveV4QuotePriceTrigger__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(457);
|
|
16982
|
+
/* harmony import */ var _AaveV4QuotePriceRangeTrigger__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(458);
|
|
16983
|
+
/* harmony import */ var _AaveV4RatioTrigger__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(459);
|
|
16953
16984
|
|
|
16954
16985
|
|
|
16955
16986
|
|
|
@@ -16988,7 +17019,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
16988
17019
|
|
|
16989
17020
|
|
|
16990
17021
|
/***/ }),
|
|
16991
|
-
/*
|
|
17022
|
+
/* 424 */
|
|
16992
17023
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
16993
17024
|
|
|
16994
17025
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17011,7 +17042,7 @@ class MakerRatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
17011
17042
|
}
|
|
17012
17043
|
|
|
17013
17044
|
/***/ }),
|
|
17014
|
-
/*
|
|
17045
|
+
/* 425 */
|
|
17015
17046
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17016
17047
|
|
|
17017
17048
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17034,7 +17065,7 @@ class ChainLinkPriceTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
17034
17065
|
}
|
|
17035
17066
|
|
|
17036
17067
|
/***/ }),
|
|
17037
|
-
/*
|
|
17068
|
+
/* 426 */
|
|
17038
17069
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17039
17070
|
|
|
17040
17071
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17057,7 +17088,7 @@ class UniV3CurrentTickTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Actio
|
|
|
17057
17088
|
}
|
|
17058
17089
|
|
|
17059
17090
|
/***/ }),
|
|
17060
|
-
/*
|
|
17091
|
+
/* 427 */
|
|
17061
17092
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17062
17093
|
|
|
17063
17094
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17080,7 +17111,7 @@ class TimestampTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
17080
17111
|
}
|
|
17081
17112
|
|
|
17082
17113
|
/***/ }),
|
|
17083
|
-
/*
|
|
17114
|
+
/* 428 */
|
|
17084
17115
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17085
17116
|
|
|
17086
17117
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17103,7 +17134,7 @@ class GasPriceTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
17103
17134
|
}
|
|
17104
17135
|
|
|
17105
17136
|
/***/ }),
|
|
17106
|
-
/*
|
|
17137
|
+
/* 429 */
|
|
17107
17138
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17108
17139
|
|
|
17109
17140
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17126,7 +17157,7 @@ class CompoundRatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
17126
17157
|
}
|
|
17127
17158
|
|
|
17128
17159
|
/***/ }),
|
|
17129
|
-
/*
|
|
17160
|
+
/* 430 */
|
|
17130
17161
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17131
17162
|
|
|
17132
17163
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17149,7 +17180,7 @@ class ReflexerRatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
17149
17180
|
}
|
|
17150
17181
|
|
|
17151
17182
|
/***/ }),
|
|
17152
|
-
/*
|
|
17183
|
+
/* 431 */
|
|
17153
17184
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17154
17185
|
|
|
17155
17186
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17172,7 +17203,7 @@ class LiquityRatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
17172
17203
|
}
|
|
17173
17204
|
|
|
17174
17205
|
/***/ }),
|
|
17175
|
-
/*
|
|
17206
|
+
/* 432 */
|
|
17176
17207
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17177
17208
|
|
|
17178
17209
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17195,7 +17226,7 @@ class AaveV3RatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
17195
17226
|
}
|
|
17196
17227
|
|
|
17197
17228
|
/***/ }),
|
|
17198
|
-
/*
|
|
17229
|
+
/* 433 */
|
|
17199
17230
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17200
17231
|
|
|
17201
17232
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17218,7 +17249,7 @@ class CompV3RatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
17218
17249
|
}
|
|
17219
17250
|
|
|
17220
17251
|
/***/ }),
|
|
17221
|
-
/*
|
|
17252
|
+
/* 434 */
|
|
17222
17253
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17223
17254
|
|
|
17224
17255
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17241,7 +17272,7 @@ class TrailingStopTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
17241
17272
|
}
|
|
17242
17273
|
|
|
17243
17274
|
/***/ }),
|
|
17244
|
-
/*
|
|
17275
|
+
/* 435 */
|
|
17245
17276
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17246
17277
|
|
|
17247
17278
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17264,7 +17295,7 @@ class CBRebondTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
17264
17295
|
}
|
|
17265
17296
|
|
|
17266
17297
|
/***/ }),
|
|
17267
|
-
/*
|
|
17298
|
+
/* 436 */
|
|
17268
17299
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17269
17300
|
|
|
17270
17301
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17287,7 +17318,7 @@ class AaveV3QuotePriceTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Actio
|
|
|
17287
17318
|
}
|
|
17288
17319
|
|
|
17289
17320
|
/***/ }),
|
|
17290
|
-
/*
|
|
17321
|
+
/* 437 */
|
|
17291
17322
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17292
17323
|
|
|
17293
17324
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17310,7 +17341,7 @@ class AaveV2RatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
17310
17341
|
}
|
|
17311
17342
|
|
|
17312
17343
|
/***/ }),
|
|
17313
|
-
/*
|
|
17344
|
+
/* 438 */
|
|
17314
17345
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17315
17346
|
|
|
17316
17347
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17333,7 +17364,7 @@ class MorphoAaveV2RatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Acti
|
|
|
17333
17364
|
}
|
|
17334
17365
|
|
|
17335
17366
|
/***/ }),
|
|
17336
|
-
/*
|
|
17367
|
+
/* 439 */
|
|
17337
17368
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17338
17369
|
|
|
17339
17370
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17356,7 +17387,7 @@ class SparkRatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
17356
17387
|
}
|
|
17357
17388
|
|
|
17358
17389
|
/***/ }),
|
|
17359
|
-
/*
|
|
17390
|
+
/* 440 */
|
|
17360
17391
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17361
17392
|
|
|
17362
17393
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17379,7 +17410,7 @@ class SparkQuotePriceTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
17379
17410
|
}
|
|
17380
17411
|
|
|
17381
17412
|
/***/ }),
|
|
17382
|
-
/*
|
|
17413
|
+
/* 441 */
|
|
17383
17414
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17384
17415
|
|
|
17385
17416
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17402,7 +17433,7 @@ class LiquityDebtInFrontWithLimitTrigger extends _Action__WEBPACK_IMPORTED_MODUL
|
|
|
17402
17433
|
}
|
|
17403
17434
|
|
|
17404
17435
|
/***/ }),
|
|
17405
|
-
/*
|
|
17436
|
+
/* 442 */
|
|
17406
17437
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17407
17438
|
|
|
17408
17439
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17425,7 +17456,7 @@ class CurveUsdCollRatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Acti
|
|
|
17425
17456
|
}
|
|
17426
17457
|
|
|
17427
17458
|
/***/ }),
|
|
17428
|
-
/*
|
|
17459
|
+
/* 443 */
|
|
17429
17460
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17430
17461
|
|
|
17431
17462
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17448,7 +17479,7 @@ class CurveUsdHealthRatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Ac
|
|
|
17448
17479
|
}
|
|
17449
17480
|
|
|
17450
17481
|
/***/ }),
|
|
17451
|
-
/*
|
|
17482
|
+
/* 444 */
|
|
17452
17483
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17453
17484
|
|
|
17454
17485
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17471,7 +17502,7 @@ class MorphoBlueRatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
17471
17502
|
}
|
|
17472
17503
|
|
|
17473
17504
|
/***/ }),
|
|
17474
|
-
/*
|
|
17505
|
+
/* 445 */
|
|
17475
17506
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17476
17507
|
|
|
17477
17508
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17494,7 +17525,7 @@ class OffchainPriceTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
17494
17525
|
}
|
|
17495
17526
|
|
|
17496
17527
|
/***/ }),
|
|
17497
|
-
/*
|
|
17528
|
+
/* 446 */
|
|
17498
17529
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17499
17530
|
|
|
17500
17531
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17523,7 +17554,7 @@ class MorphoBluePriceTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
17523
17554
|
}
|
|
17524
17555
|
|
|
17525
17556
|
/***/ }),
|
|
17526
|
-
/*
|
|
17557
|
+
/* 447 */
|
|
17527
17558
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17528
17559
|
|
|
17529
17560
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17544,7 +17575,7 @@ class LiquityV2RatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
17544
17575
|
}
|
|
17545
17576
|
|
|
17546
17577
|
/***/ }),
|
|
17547
|
-
/*
|
|
17578
|
+
/* 448 */
|
|
17548
17579
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17549
17580
|
|
|
17550
17581
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17567,7 +17598,7 @@ class ClosePriceTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
17567
17598
|
}
|
|
17568
17599
|
|
|
17569
17600
|
/***/ }),
|
|
17570
|
-
/*
|
|
17601
|
+
/* 449 */
|
|
17571
17602
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17572
17603
|
|
|
17573
17604
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17588,7 +17619,7 @@ class LiquityV2QuotePriceTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Ac
|
|
|
17588
17619
|
}
|
|
17589
17620
|
|
|
17590
17621
|
/***/ }),
|
|
17591
|
-
/*
|
|
17622
|
+
/* 450 */
|
|
17592
17623
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17593
17624
|
|
|
17594
17625
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17611,7 +17642,7 @@ class FluidRatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
17611
17642
|
}
|
|
17612
17643
|
|
|
17613
17644
|
/***/ }),
|
|
17614
|
-
/*
|
|
17645
|
+
/* 451 */
|
|
17615
17646
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17616
17647
|
|
|
17617
17648
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17634,7 +17665,7 @@ class CompV3PriceTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
17634
17665
|
}
|
|
17635
17666
|
|
|
17636
17667
|
/***/ }),
|
|
17637
|
-
/*
|
|
17668
|
+
/* 452 */
|
|
17638
17669
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17639
17670
|
|
|
17640
17671
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17657,7 +17688,7 @@ class CompV3PriceRangeTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Actio
|
|
|
17657
17688
|
}
|
|
17658
17689
|
|
|
17659
17690
|
/***/ }),
|
|
17660
|
-
/*
|
|
17691
|
+
/* 453 */
|
|
17661
17692
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17662
17693
|
|
|
17663
17694
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17678,7 +17709,7 @@ class LiquityV2AdjustRateDebtInFrontTrigger extends _Action__WEBPACK_IMPORTED_MO
|
|
|
17678
17709
|
}
|
|
17679
17710
|
|
|
17680
17711
|
/***/ }),
|
|
17681
|
-
/*
|
|
17712
|
+
/* 454 */
|
|
17682
17713
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17683
17714
|
|
|
17684
17715
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17704,7 +17735,7 @@ class AaveV3QuotePriceRangeTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.
|
|
|
17704
17735
|
}
|
|
17705
17736
|
|
|
17706
17737
|
/***/ }),
|
|
17707
|
-
/*
|
|
17738
|
+
/* 455 */
|
|
17708
17739
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17709
17740
|
|
|
17710
17741
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17730,7 +17761,7 @@ class SparkQuotePriceRangeTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.A
|
|
|
17730
17761
|
}
|
|
17731
17762
|
|
|
17732
17763
|
/***/ }),
|
|
17733
|
-
/*
|
|
17764
|
+
/* 456 */
|
|
17734
17765
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17735
17766
|
|
|
17736
17767
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17759,7 +17790,7 @@ class MorphoBluePriceRangeTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.A
|
|
|
17759
17790
|
}
|
|
17760
17791
|
|
|
17761
17792
|
/***/ }),
|
|
17762
|
-
/*
|
|
17793
|
+
/* 457 */
|
|
17763
17794
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17764
17795
|
|
|
17765
17796
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17782,7 +17813,7 @@ class AaveV4QuotePriceTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Actio
|
|
|
17782
17813
|
}
|
|
17783
17814
|
|
|
17784
17815
|
/***/ }),
|
|
17785
|
-
/*
|
|
17816
|
+
/* 458 */
|
|
17786
17817
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17787
17818
|
|
|
17788
17819
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17805,7 +17836,7 @@ class AaveV4QuotePriceRangeTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.
|
|
|
17805
17836
|
}
|
|
17806
17837
|
|
|
17807
17838
|
/***/ }),
|
|
17808
|
-
/*
|
|
17839
|
+
/* 459 */
|
|
17809
17840
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17810
17841
|
|
|
17811
17842
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17828,7 +17859,7 @@ class AaveV4RatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
17828
17859
|
}
|
|
17829
17860
|
|
|
17830
17861
|
/***/ }),
|
|
17831
|
-
/*
|
|
17862
|
+
/* 460 */
|
|
17832
17863
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17833
17864
|
|
|
17834
17865
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17842,9 +17873,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
17842
17873
|
/* harmony export */ uniswapV3LP: () => (/* reexport module object */ _uniswapV3LP__WEBPACK_IMPORTED_MODULE_2__),
|
|
17843
17874
|
/* harmony export */ zeroExExchange: () => (/* reexport module object */ _zeroExExchange__WEBPACK_IMPORTED_MODULE_0__)
|
|
17844
17875
|
/* harmony export */ });
|
|
17845
|
-
/* harmony import */ var _zeroExExchange__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
17876
|
+
/* harmony import */ var _zeroExExchange__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(461);
|
|
17846
17877
|
/* harmony import */ var _uniswapLP__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(137);
|
|
17847
|
-
/* harmony import */ var _uniswapV3LP__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
17878
|
+
/* harmony import */ var _uniswapV3LP__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(463);
|
|
17848
17879
|
/* harmony import */ var _convex_utils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(244);
|
|
17849
17880
|
/* harmony import */ var _mstableAssetPairs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(224);
|
|
17850
17881
|
/* harmony import */ var _curve_utils__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(210);
|
|
@@ -17861,7 +17892,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
17861
17892
|
|
|
17862
17893
|
|
|
17863
17894
|
/***/ }),
|
|
17864
|
-
/*
|
|
17895
|
+
/* 461 */
|
|
17865
17896
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17866
17897
|
|
|
17867
17898
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17872,7 +17903,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
17872
17903
|
/* harmony export */ });
|
|
17873
17904
|
/* harmony import */ var decimal_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(5);
|
|
17874
17905
|
/* harmony import */ var decimal_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(decimal_js__WEBPACK_IMPORTED_MODULE_0__);
|
|
17875
|
-
/* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
17906
|
+
/* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(462);
|
|
17876
17907
|
/* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(axios__WEBPACK_IMPORTED_MODULE_1__);
|
|
17877
17908
|
/* harmony import */ var _defisaver_tokens__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(6);
|
|
17878
17909
|
/* harmony import */ var _defisaver_tokens__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_defisaver_tokens__WEBPACK_IMPORTED_MODULE_2__);
|
|
@@ -18074,20 +18105,20 @@ var createSellAction = /*#__PURE__*/function () {
|
|
|
18074
18105
|
}();
|
|
18075
18106
|
|
|
18076
18107
|
/***/ }),
|
|
18077
|
-
/*
|
|
18108
|
+
/* 462 */
|
|
18078
18109
|
/***/ ((module) => {
|
|
18079
18110
|
|
|
18080
|
-
module.exports =
|
|
18111
|
+
module.exports = __WEBPACK_EXTERNAL_MODULE__462__;
|
|
18081
18112
|
|
|
18082
18113
|
/***/ }),
|
|
18083
|
-
/*
|
|
18114
|
+
/* 463 */
|
|
18084
18115
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
18085
18116
|
|
|
18086
18117
|
__webpack_require__.r(__webpack_exports__);
|
|
18087
18118
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
18088
18119
|
/* harmony export */ getAssetAddrByTokenId: () => (/* binding */ getAssetAddrByTokenId)
|
|
18089
18120
|
/* harmony export */ });
|
|
18090
|
-
/* harmony import */ var _abis_UniV3PositionManager_json__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
18121
|
+
/* harmony import */ var _abis_UniV3PositionManager_json__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(464);
|
|
18091
18122
|
function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }
|
|
18092
18123
|
function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; }
|
|
18093
18124
|
/**
|
|
@@ -18112,7 +18143,7 @@ var getAssetAddrByTokenId = /*#__PURE__*/function () {
|
|
|
18112
18143
|
}();
|
|
18113
18144
|
|
|
18114
18145
|
/***/ }),
|
|
18115
|
-
/*
|
|
18146
|
+
/* 464 */
|
|
18116
18147
|
/***/ ((module) => {
|
|
18117
18148
|
|
|
18118
18149
|
module.exports = /*#__PURE__*/JSON.parse('[{"constant":false,"inputs":[{"name":"tokenId","type":"uint256"}],"name":"positions","outputs":[{"name":"nonce","type":"uint96"},{"name":"operator","type":"address"},{"name":"token0","type":"address"},{"name":"token1","type":"address"},{"name":"fee","type":"uint24"},{"name":"tickLower","type":"int24"},{"name":"tickUpper","type":"int24"},{"name":"liquidity","type":"uint128"},{"name":"feeGrowthInside0LastX128","type":"uint256"},{"name":"feeGrowthInside1LastX128","type":"uint256"},{"name":"tokensOwed0","type":"uint128"},{"name":"tokensOwed1","type":"uint128"}],"payable":false,"stateMutability":"view","type":"function"}]');
|
|
@@ -18216,8 +18247,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
18216
18247
|
/* harmony import */ var _Strategy__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(29);
|
|
18217
18248
|
/* harmony import */ var _DfsWeb3__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(30);
|
|
18218
18249
|
/* harmony import */ var _actions__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(35);
|
|
18219
|
-
/* harmony import */ var _triggers__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(
|
|
18220
|
-
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(
|
|
18250
|
+
/* harmony import */ var _triggers__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(423);
|
|
18251
|
+
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(460);
|
|
18221
18252
|
/* harmony import */ var _config__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(4);
|
|
18222
18253
|
/* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(27);
|
|
18223
18254
|
/* Export types here */
|