@defisaver/sdk 1.3.15 → 1.3.17
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/summerfi/SummerfiUnsubAction.d.ts +12 -0
- package/esm/src/actions/summerfi/SummerfiUnsubAction.js +18 -0
- package/esm/src/actions/summerfi/SummerfiUnsubV2Action.d.ts +13 -0
- package/esm/src/actions/summerfi/SummerfiUnsubV2Action.js +20 -0
- package/esm/src/actions/summerfi/index.d.ts +2 -0
- package/esm/src/actions/summerfi/index.js +2 -0
- package/esm/src/addresses.d.ts +17 -0
- package/esm/src/addresses.js +23 -11
- package/esm/src/index.d.ts +68 -0
- package/package.json +1 -1
- package/src/actions/summerfi/SummerfiUnsubAction.ts +28 -0
- package/src/actions/summerfi/SummerfiUnsubV2Action.ts +31 -0
- package/src/actions/summerfi/index.ts +2 -0
- package/src/addresses.ts +99 -49
- package/umd/index.js +334 -260
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Action } from '../../Action';
|
|
2
|
+
import { uint256 } from '../../types';
|
|
3
|
+
/**
|
|
4
|
+
* @category Summerfi
|
|
5
|
+
*/
|
|
6
|
+
export declare class SummerfiUnsubAction extends Action {
|
|
7
|
+
/**
|
|
8
|
+
* @param cdpIds Array of CDP IDs to remove approval for
|
|
9
|
+
* @param triggerIds Array of Trigger IDs that correspond to CDP IDs
|
|
10
|
+
*/
|
|
11
|
+
constructor(cdpIds: uint256[], triggerIds: uint256[]);
|
|
12
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Action } from '../../Action';
|
|
2
|
+
import { getAddr } from '../../addresses';
|
|
3
|
+
/**
|
|
4
|
+
* @category Summerfi
|
|
5
|
+
*/
|
|
6
|
+
export class SummerfiUnsubAction extends Action {
|
|
7
|
+
/**
|
|
8
|
+
* @param cdpIds Array of CDP IDs to remove approval for
|
|
9
|
+
* @param triggerIds Array of Trigger IDs that correspond to CDP IDs
|
|
10
|
+
*/
|
|
11
|
+
constructor(cdpIds, triggerIds) {
|
|
12
|
+
super('SummerfiUnsub', getAddr('SummerfiUnsub'), ['uint256[]', 'uint256[]'], [cdpIds, triggerIds]);
|
|
13
|
+
this.mappableArgs = [
|
|
14
|
+
this.args[0],
|
|
15
|
+
this.args[1],
|
|
16
|
+
];
|
|
17
|
+
}
|
|
18
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Action } from '../../Action';
|
|
2
|
+
import { uint256 } from '../../types';
|
|
3
|
+
/**
|
|
4
|
+
* @category Summerfi
|
|
5
|
+
*/
|
|
6
|
+
export declare class SummerfiUnsubV2Action extends Action {
|
|
7
|
+
/**
|
|
8
|
+
* @param triggerIds Array of trigger ID arrays to remove
|
|
9
|
+
* @param triggerData Array of trigger data arrays (must match triggerIds length)
|
|
10
|
+
* @param removeAllowance Array of booleans indicating whether to remove allowance for each trigger group
|
|
11
|
+
*/
|
|
12
|
+
constructor(triggerIds: uint256[][], triggerData: string[][], removeAllowance: boolean[]);
|
|
13
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { Action } from '../../Action';
|
|
2
|
+
import { getAddr } from '../../addresses';
|
|
3
|
+
/**
|
|
4
|
+
* @category Summerfi
|
|
5
|
+
*/
|
|
6
|
+
export class SummerfiUnsubV2Action extends Action {
|
|
7
|
+
/**
|
|
8
|
+
* @param triggerIds Array of trigger ID arrays to remove
|
|
9
|
+
* @param triggerData Array of trigger data arrays (must match triggerIds length)
|
|
10
|
+
* @param removeAllowance Array of booleans indicating whether to remove allowance for each trigger group
|
|
11
|
+
*/
|
|
12
|
+
constructor(triggerIds, triggerData, removeAllowance) {
|
|
13
|
+
super('SummerfiUnsubV2', getAddr('SummerfiUnsubV2'), ['uint256[][]', 'bytes[][]', 'bool[]'], [triggerIds, triggerData, removeAllowance]);
|
|
14
|
+
this.mappableArgs = [
|
|
15
|
+
this.args[0],
|
|
16
|
+
this.args[1],
|
|
17
|
+
this.args[2],
|
|
18
|
+
];
|
|
19
|
+
}
|
|
20
|
+
}
|
package/esm/src/addresses.d.ts
CHANGED
|
@@ -275,6 +275,8 @@ export declare const actionAddresses: {
|
|
|
275
275
|
UmbrellaStake: string;
|
|
276
276
|
UmbrellaUnstake: string;
|
|
277
277
|
SFApproveTokens: string;
|
|
278
|
+
SummerfiUnsub: string;
|
|
279
|
+
SummerfiUnsubV2: string;
|
|
278
280
|
AaveV3DelegateCredit?: undefined;
|
|
279
281
|
AaveV3RatioTrigger?: undefined;
|
|
280
282
|
GasFeeTakerL2?: undefined;
|
|
@@ -332,6 +334,8 @@ export declare const actionAddresses: {
|
|
|
332
334
|
CompV3Transfer: string;
|
|
333
335
|
CompV3Withdraw: string;
|
|
334
336
|
SFApproveTokens: string;
|
|
337
|
+
SummerfiUnsub: string;
|
|
338
|
+
SummerfiUnsubV2: string;
|
|
335
339
|
AutomationV2Unsub?: undefined;
|
|
336
340
|
TransferNFT?: undefined;
|
|
337
341
|
SDaiWrap?: undefined;
|
|
@@ -636,6 +640,8 @@ export declare const actionAddresses: {
|
|
|
636
640
|
FluidDexPayback: string;
|
|
637
641
|
FluidDexWithdraw: string;
|
|
638
642
|
SFApproveTokens: string;
|
|
643
|
+
SummerfiUnsub: string;
|
|
644
|
+
SummerfiUnsubV2: string;
|
|
639
645
|
MorphoBlueSupply: string;
|
|
640
646
|
MorphoBlueSupplyCollateral: string;
|
|
641
647
|
MorphoBlueWithdraw: string;
|
|
@@ -909,6 +915,8 @@ export declare const actionAddresses: {
|
|
|
909
915
|
FluidDexWithdraw: string;
|
|
910
916
|
TokenizedVaultAdapter: string;
|
|
911
917
|
SFApproveTokens: string;
|
|
918
|
+
SummerfiUnsub: string;
|
|
919
|
+
SummerfiUnsubV2: string;
|
|
912
920
|
AutomationV2Unsub?: undefined;
|
|
913
921
|
SendTokenAndUnwrap?: undefined;
|
|
914
922
|
SDaiWrap?: undefined;
|
|
@@ -1396,6 +1404,8 @@ export declare const actionAddresses: {
|
|
|
1396
1404
|
UmbrellaStake?: undefined;
|
|
1397
1405
|
UmbrellaUnstake?: undefined;
|
|
1398
1406
|
SFApproveTokens?: undefined;
|
|
1407
|
+
SummerfiUnsub?: undefined;
|
|
1408
|
+
SummerfiUnsubV2?: undefined;
|
|
1399
1409
|
AaveV3RatioTrigger?: undefined;
|
|
1400
1410
|
GasFeeTakerL2?: undefined;
|
|
1401
1411
|
AaveV3RatioCheck?: undefined;
|
|
@@ -1676,6 +1686,8 @@ export declare const actionAddresses: {
|
|
|
1676
1686
|
UmbrellaStake?: undefined;
|
|
1677
1687
|
UmbrellaUnstake?: undefined;
|
|
1678
1688
|
SFApproveTokens?: undefined;
|
|
1689
|
+
SummerfiUnsub?: undefined;
|
|
1690
|
+
SummerfiUnsubV2?: undefined;
|
|
1679
1691
|
AaveV3RatioTrigger?: undefined;
|
|
1680
1692
|
GasFeeTakerL2?: undefined;
|
|
1681
1693
|
AaveV3RatioCheck?: undefined;
|
|
@@ -1689,6 +1701,7 @@ export declare const otherAddresses: {
|
|
|
1689
1701
|
DFSRegistry: string;
|
|
1690
1702
|
DFSProxyRegistry: string;
|
|
1691
1703
|
ProxyRegistry: string;
|
|
1704
|
+
SFProxyEntryPoint: string;
|
|
1692
1705
|
McdCdpManager: string;
|
|
1693
1706
|
BCdpManager: string;
|
|
1694
1707
|
AaveDefaultMarket: string;
|
|
@@ -1710,6 +1723,7 @@ export declare const otherAddresses: {
|
|
|
1710
1723
|
RecipeExecutorForTxSaver: string;
|
|
1711
1724
|
DFSRegistry: string;
|
|
1712
1725
|
ProxyRegistry: string;
|
|
1726
|
+
SFProxyEntryPoint: string;
|
|
1713
1727
|
DSGuardFactory: string;
|
|
1714
1728
|
AdminVault: string;
|
|
1715
1729
|
DefisaverLogger: string;
|
|
@@ -1732,6 +1746,7 @@ export declare const otherAddresses: {
|
|
|
1732
1746
|
RecipeExecutorForTxSaver: string;
|
|
1733
1747
|
DFSRegistry: string;
|
|
1734
1748
|
ProxyRegistry: string;
|
|
1749
|
+
SFProxyEntryPoint: string;
|
|
1735
1750
|
DSGuardFactory: string;
|
|
1736
1751
|
AdminVault: string;
|
|
1737
1752
|
DefisaverLogger: string;
|
|
@@ -1759,6 +1774,7 @@ export declare const otherAddresses: {
|
|
|
1759
1774
|
RecipeExecutorForTxSaver?: undefined;
|
|
1760
1775
|
DFSProxyRegistry?: undefined;
|
|
1761
1776
|
ProxyRegistry?: undefined;
|
|
1777
|
+
SFProxyEntryPoint?: undefined;
|
|
1762
1778
|
McdCdpManager?: undefined;
|
|
1763
1779
|
BCdpManager?: undefined;
|
|
1764
1780
|
AaveDefaultMarket?: undefined;
|
|
@@ -1780,6 +1796,7 @@ export declare const otherAddresses: {
|
|
|
1780
1796
|
RecipeExecutorForTxSaver?: undefined;
|
|
1781
1797
|
DFSProxyRegistry?: undefined;
|
|
1782
1798
|
ProxyRegistry?: undefined;
|
|
1799
|
+
SFProxyEntryPoint?: undefined;
|
|
1783
1800
|
McdCdpManager?: undefined;
|
|
1784
1801
|
BCdpManager?: undefined;
|
|
1785
1802
|
AaveDefaultMarket?: undefined;
|
package/esm/src/addresses.js
CHANGED
|
@@ -131,7 +131,7 @@ export const actionAddresses = {
|
|
|
131
131
|
FLMaker: '0x0f8C3368cADF78167F5355D746Ed7b2A826A6e3b',
|
|
132
132
|
FLBalancer: '0x93d333930c7f7260a1E6061B0a8C0CbdEC95F367',
|
|
133
133
|
FLSpark: '0xe9Fe5a0f5e4B370Ae60d837da58744666D5C06F7',
|
|
134
|
-
FLAction: '
|
|
134
|
+
FLAction: '0xE78C05c508405207ecc256781B9415e6De1c8336',
|
|
135
135
|
FLUniV3: '0x9CAdAC8Be718572F82B672b950c53F0b58483A35',
|
|
136
136
|
FLGho: '0xbb67b81dD080a406227A38965d0393f396ddECBc',
|
|
137
137
|
FLMorphoBlue: '0x6206C96EAc5EAC546861438A9f953B6BEa50EBAB',
|
|
@@ -316,6 +316,8 @@ export const actionAddresses = {
|
|
|
316
316
|
UmbrellaUnstake: '0xc27634A1D6c5Ed151ebd963Ef35487000C28dc0b',
|
|
317
317
|
// summer.fi
|
|
318
318
|
SFApproveTokens: '0x0aC29D44eeC8e8f3b010c2e8FC960957db0c8298',
|
|
319
|
+
SummerfiUnsub: '0x926405D69b77A514ED974901095AcFf9e5131366',
|
|
320
|
+
SummerfiUnsubV2: '0x5E805eD9B7581a9f1398F75833f9663a459F5E30',
|
|
319
321
|
},
|
|
320
322
|
[NETWORKS.optimism.chainId]: {
|
|
321
323
|
DFSSell: '0x9f234af5c10c136863a20865ba00b26951ab8269',
|
|
@@ -355,7 +357,7 @@ export const actionAddresses = {
|
|
|
355
357
|
FLAaveV3NoFee: '0xfbcF23D2BeF8A2C491cfa4dD409D8dF12d431c85',
|
|
356
358
|
FLAaveV3: '0x8A07E93d2B74A80D726eE4E4A0aC1F906aB5Cc63',
|
|
357
359
|
FLBalancer: '0x79d6bf536b8DD65909a3174C87eA6395310d5c41',
|
|
358
|
-
FLAction: '
|
|
360
|
+
FLAction: '0xB57b666dAB46229e2b80113b5187F6DCD91AB159',
|
|
359
361
|
AaveV3RatioTrigger: '0xB76e3f7694589D0f34ba43b17AD0D15350Ab5f85',
|
|
360
362
|
GasFeeTakerL2: '0xB3dB299622A9DB0E944ccda2Ef899d6fF365B082',
|
|
361
363
|
AaveV3RatioCheck: '0x7A36779a7b5F1128B28932604057d5b63361297c',
|
|
@@ -375,6 +377,8 @@ export const actionAddresses = {
|
|
|
375
377
|
CompV3Withdraw: '0x744ad24e92d092e0788d429f5178286672288782',
|
|
376
378
|
// summer.fi
|
|
377
379
|
SFApproveTokens: '0xcc63B281b29a4c7f33aF780e9B480A15eb676e81',
|
|
380
|
+
SummerfiUnsub: '0x0000000000000000000000000000000000000000',
|
|
381
|
+
SummerfiUnsubV2: '0xC24863ce3397316b743112AeBc2eBCF5507bFD42',
|
|
378
382
|
},
|
|
379
383
|
[NETWORKS.arbitrum.chainId]: {
|
|
380
384
|
DFSSell: '0x1393eef11454ab068dd5e0d0be5eb922603eef1a',
|
|
@@ -422,9 +426,9 @@ export const actionAddresses = {
|
|
|
422
426
|
FLAaveV3NoFee: '0x219ac6dA971dE6d943cffD1BD62abde71525d382',
|
|
423
427
|
FLAaveV3: '0x53953aCEe438c083e4299F7976f03Ff3cb862161',
|
|
424
428
|
FLBalancer: '0xdb28fE77709D88badC86868B27937428C3F48E73',
|
|
425
|
-
FLUniV3: '
|
|
426
|
-
FLAction: '
|
|
427
|
-
FLMorphoBlue: '
|
|
429
|
+
FLUniV3: '0xf041C72e201CD7d04a240fe06c5783E2Ee2D92b3',
|
|
430
|
+
FLAction: '0xf041C72e201CD7d04a240fe06c5783E2Ee2D92b3',
|
|
431
|
+
FLMorphoBlue: '0xf041C72e201CD7d04a240fe06c5783E2Ee2D92b3',
|
|
428
432
|
GasFeeTakerL2: '0x2F64f73B222B4978CAfd0295c0fa106cE5f34996',
|
|
429
433
|
AaveV3RatioCheck: '0x4a5c2cbCFB921b596Dec049389899CC8Eb4678ED',
|
|
430
434
|
// uniswap V3
|
|
@@ -460,6 +464,8 @@ export const actionAddresses = {
|
|
|
460
464
|
FluidDexWithdraw: '0x076D5434793798b153298bF70b014f5E6145aB2E',
|
|
461
465
|
// summer.fi
|
|
462
466
|
SFApproveTokens: '0x98101bDBFaA3f8efa4A14a5A6a2f9A20D514a5D5',
|
|
467
|
+
SummerfiUnsub: '0x0000000000000000000000000000000000000000',
|
|
468
|
+
SummerfiUnsubV2: '0xFAb1D6fe62081BfB997558216769a7029f7d52A4',
|
|
463
469
|
// MorphoBlue
|
|
464
470
|
MorphoBlueSupply: '0xeaF1c037716b447C178f3604BCFd10e650704525',
|
|
465
471
|
MorphoBlueSupplyCollateral: '0x65A5900F2faab9cC495b92389844739DF08A290D',
|
|
@@ -499,8 +505,8 @@ export const actionAddresses = {
|
|
|
499
505
|
FLAaveV3: '0x79Eb9cEe432Cd3e7b09A9eFdB21A733A6d7b4c3A',
|
|
500
506
|
FLBalancer: '0x862E533198C9656B75bB6A5dDF0953F7ED5E8507',
|
|
501
507
|
FLUniV3: '0x1bA6082D2ef1aB92a55B96264c72Eb8049C964Ce',
|
|
502
|
-
FLAction: '
|
|
503
|
-
FLMorphoBlue: '
|
|
508
|
+
FLAction: '0x87Af4769e4134379125A262408e1f3EC60d2Ab52',
|
|
509
|
+
FLMorphoBlue: '0x87Af4769e4134379125A262408e1f3EC60d2Ab52',
|
|
504
510
|
// AaveV3
|
|
505
511
|
AaveV3Withdraw: '0x1d2Fa7dAcC660A9124c3685EE8a6E699d10409Eb',
|
|
506
512
|
AaveV3SwapBorrowRateMode: '0x9d1D7A0dD5e82cCe9CC131eC0C807B0F543be70e',
|
|
@@ -549,6 +555,8 @@ export const actionAddresses = {
|
|
|
549
555
|
TokenizedVaultAdapter: '0x88cf6cfa51b6f771570f6df450edf1c886212d3e',
|
|
550
556
|
// summer.fi
|
|
551
557
|
SFApproveTokens: '0x03EDC9A683f37BFB7516FF234223fFb6E38D5eb9',
|
|
558
|
+
SummerfiUnsub: '0x0000000000000000000000000000000000000000',
|
|
559
|
+
SummerfiUnsubV2: '0x60587B8Fe62Fc149d285a611822263206b4138da',
|
|
552
560
|
},
|
|
553
561
|
[NETWORKS.linea.chainId]: {
|
|
554
562
|
// Basic
|
|
@@ -636,11 +644,12 @@ export const actionAddresses = {
|
|
|
636
644
|
};
|
|
637
645
|
export const otherAddresses = {
|
|
638
646
|
[NETWORKS.ethereum.chainId]: {
|
|
639
|
-
RecipeExecutor: '
|
|
647
|
+
RecipeExecutor: '0xbc3Fc959FeF3F12a41738f406c02198cdeE7481F',
|
|
640
648
|
RecipeExecutorForTxSaver: '0x2ee96cf53ae5fbd5309284704f978d0ca66cb963',
|
|
641
649
|
DFSRegistry: '0x287778F121F134C66212FB16c9b53eC991D32f5b',
|
|
642
650
|
DFSProxyRegistry: '0x29474FdaC7142f9aB7773B8e38264FA15E3805ed',
|
|
643
651
|
ProxyRegistry: '0x4678f0a6958e4D2Bc4F1BAF7Bc52E8F3564f3fE4',
|
|
652
|
+
SFProxyEntryPoint: '0xAa15ca459659F35B1064EC546A44d962d54bA89e',
|
|
644
653
|
McdCdpManager: '0x5ef30b9986345249bc32d8928b7ee64de9435e39',
|
|
645
654
|
BCdpManager: '0x3f30c2381CD8B917Dd96EB2f1A4F96D91324BBed',
|
|
646
655
|
AaveDefaultMarket: '0xB53C1a33016B2DC2fF3653530bfF1848a515c8c5',
|
|
@@ -656,10 +665,11 @@ export const otherAddresses = {
|
|
|
656
665
|
Empty: '0x0000000000000000000000000000000000000000',
|
|
657
666
|
},
|
|
658
667
|
[NETWORKS.optimism.chainId]: {
|
|
659
|
-
RecipeExecutor: '
|
|
668
|
+
RecipeExecutor: '0xEC891E6b5A93F5f29241De6B234a4e77A5456A1C',
|
|
660
669
|
RecipeExecutorForTxSaver: '0x993A8c81142044E1CB0Cf0c3d84BEa235d842Fb0',
|
|
661
670
|
DFSRegistry: '0xAf707Ee480204Ed6e2640B53cE86F680D28Afcbd',
|
|
662
671
|
ProxyRegistry: '0x283Cc5C26e53D66ed2Ea252D986F094B37E6e895',
|
|
672
|
+
SFProxyEntryPoint: '0x06299D4A07E8C6D7C1aEc14Ab2F46DF05Dd9588E',
|
|
663
673
|
DSGuardFactory: '0xc19d0F1E2b38AA283E226Ca4044766A43aA7B02b',
|
|
664
674
|
AdminVault: '0x136b1bEAfff362530F98f10E3D8C38f3a3F3d38C',
|
|
665
675
|
DefisaverLogger: '0xFc2f1355296ab7dd98a1260E3Ff5E906999d4Acb',
|
|
@@ -667,10 +677,11 @@ export const otherAddresses = {
|
|
|
667
677
|
UniswapV3PositionManager: '0xC36442b4a4522E871399CD717aBDD847Ab11FE88',
|
|
668
678
|
},
|
|
669
679
|
[NETWORKS.arbitrum.chainId]: {
|
|
670
|
-
RecipeExecutor: '
|
|
680
|
+
RecipeExecutor: '0x667609f05DdC5E9Fb939eC376F07953403745cf3',
|
|
671
681
|
RecipeExecutorForTxSaver: '0x7a25174229ea402d8ccd35fc6d55af079c399884',
|
|
672
682
|
DFSRegistry: '0xBF1CaC12DB60819Bfa71A328282ecbc1D40443aA',
|
|
673
683
|
ProxyRegistry: '0x283Cc5C26e53D66ed2Ea252D986F094B37E6e895',
|
|
684
|
+
SFProxyEntryPoint: '0x15D776C062bF292f8F70A81533E49adC7C06Cb69',
|
|
674
685
|
DSGuardFactory: '0x5261abC3a94a6475D0A1171daE94A5f84fbaEcD2',
|
|
675
686
|
AdminVault: '0xd47D8D97cAd12A866900eEc6Cde1962529F25351',
|
|
676
687
|
DefisaverLogger: '0xE6f9A5C850dbcD12bc64f40d692F537250aDEC38',
|
|
@@ -678,10 +689,11 @@ export const otherAddresses = {
|
|
|
678
689
|
UniswapV3PositionManager: '0xC36442b4a4522E871399CD717aBDD847Ab11FE88',
|
|
679
690
|
},
|
|
680
691
|
[NETWORKS.base.chainId]: {
|
|
681
|
-
RecipeExecutor: '
|
|
692
|
+
RecipeExecutor: '0xc91305DdE651c899EF8eE1D0C33E7dab1B5ABF0D',
|
|
682
693
|
RecipeExecutorForTxSaver: '0x7a87565b77dd65bbc153fe20e97743842f1a6e0c',
|
|
683
694
|
DFSRegistry: '0x347FB634271F666353F23A3362f3935D96F97476',
|
|
684
695
|
ProxyRegistry: '0x425fA97285965E01Cc5F951B62A51F6CDEA5cc0d',
|
|
696
|
+
SFProxyEntryPoint: '0xab6e5cde983fF98Cdb0F61f5F99cb58D40D0c837',
|
|
685
697
|
DSGuardFactory: '0x7783da8958013a57a5514737a4FBDFF06A0056e1',
|
|
686
698
|
AdminVault: '0xD8E67968d8a0df4beCf2D50daE1e34d4d80C701C',
|
|
687
699
|
DefisaverLogger: '0xc9D6EfA6e08B66a5Cdc516Bcd5807c2fa69E0f2A',
|
package/esm/src/index.d.ts
CHANGED
|
@@ -286,6 +286,8 @@ declare const actionAddressesAllChains: {
|
|
|
286
286
|
UmbrellaStake: string;
|
|
287
287
|
UmbrellaUnstake: string;
|
|
288
288
|
SFApproveTokens: string;
|
|
289
|
+
SummerfiUnsub: string;
|
|
290
|
+
SummerfiUnsubV2: string;
|
|
289
291
|
AaveV3DelegateCredit?: undefined;
|
|
290
292
|
AaveV3RatioTrigger?: undefined;
|
|
291
293
|
GasFeeTakerL2?: undefined;
|
|
@@ -343,6 +345,8 @@ declare const actionAddressesAllChains: {
|
|
|
343
345
|
CompV3Transfer: string;
|
|
344
346
|
CompV3Withdraw: string;
|
|
345
347
|
SFApproveTokens: string;
|
|
348
|
+
SummerfiUnsub: string;
|
|
349
|
+
SummerfiUnsubV2: string;
|
|
346
350
|
AutomationV2Unsub?: undefined;
|
|
347
351
|
TransferNFT?: undefined;
|
|
348
352
|
SDaiWrap?: undefined;
|
|
@@ -647,6 +651,8 @@ declare const actionAddressesAllChains: {
|
|
|
647
651
|
FluidDexPayback: string;
|
|
648
652
|
FluidDexWithdraw: string;
|
|
649
653
|
SFApproveTokens: string;
|
|
654
|
+
SummerfiUnsub: string;
|
|
655
|
+
SummerfiUnsubV2: string;
|
|
650
656
|
MorphoBlueSupply: string;
|
|
651
657
|
MorphoBlueSupplyCollateral: string;
|
|
652
658
|
MorphoBlueWithdraw: string;
|
|
@@ -920,6 +926,8 @@ declare const actionAddressesAllChains: {
|
|
|
920
926
|
FluidDexWithdraw: string;
|
|
921
927
|
TokenizedVaultAdapter: string;
|
|
922
928
|
SFApproveTokens: string;
|
|
929
|
+
SummerfiUnsub: string;
|
|
930
|
+
SummerfiUnsubV2: string;
|
|
923
931
|
AutomationV2Unsub?: undefined;
|
|
924
932
|
SendTokenAndUnwrap?: undefined;
|
|
925
933
|
SDaiWrap?: undefined;
|
|
@@ -1407,6 +1415,8 @@ declare const actionAddressesAllChains: {
|
|
|
1407
1415
|
UmbrellaStake?: undefined;
|
|
1408
1416
|
UmbrellaUnstake?: undefined;
|
|
1409
1417
|
SFApproveTokens?: undefined;
|
|
1418
|
+
SummerfiUnsub?: undefined;
|
|
1419
|
+
SummerfiUnsubV2?: undefined;
|
|
1410
1420
|
AaveV3RatioTrigger?: undefined;
|
|
1411
1421
|
GasFeeTakerL2?: undefined;
|
|
1412
1422
|
AaveV3RatioCheck?: undefined;
|
|
@@ -1687,6 +1697,8 @@ declare const actionAddressesAllChains: {
|
|
|
1687
1697
|
UmbrellaStake?: undefined;
|
|
1688
1698
|
UmbrellaUnstake?: undefined;
|
|
1689
1699
|
SFApproveTokens?: undefined;
|
|
1700
|
+
SummerfiUnsub?: undefined;
|
|
1701
|
+
SummerfiUnsubV2?: undefined;
|
|
1690
1702
|
AaveV3RatioTrigger?: undefined;
|
|
1691
1703
|
GasFeeTakerL2?: undefined;
|
|
1692
1704
|
AaveV3RatioCheck?: undefined;
|
|
@@ -1968,6 +1980,8 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1968
1980
|
UmbrellaStake: string;
|
|
1969
1981
|
UmbrellaUnstake: string;
|
|
1970
1982
|
SFApproveTokens: string;
|
|
1983
|
+
SummerfiUnsub: string;
|
|
1984
|
+
SummerfiUnsubV2: string;
|
|
1971
1985
|
AaveV3DelegateCredit?: undefined;
|
|
1972
1986
|
AaveV3RatioTrigger?: undefined;
|
|
1973
1987
|
GasFeeTakerL2?: undefined;
|
|
@@ -2025,6 +2039,8 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
2025
2039
|
CompV3Transfer: string;
|
|
2026
2040
|
CompV3Withdraw: string;
|
|
2027
2041
|
SFApproveTokens: string;
|
|
2042
|
+
SummerfiUnsub: string;
|
|
2043
|
+
SummerfiUnsubV2: string;
|
|
2028
2044
|
AutomationV2Unsub?: undefined;
|
|
2029
2045
|
TransferNFT?: undefined;
|
|
2030
2046
|
SDaiWrap?: undefined;
|
|
@@ -2329,6 +2345,8 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
2329
2345
|
FluidDexPayback: string;
|
|
2330
2346
|
FluidDexWithdraw: string;
|
|
2331
2347
|
SFApproveTokens: string;
|
|
2348
|
+
SummerfiUnsub: string;
|
|
2349
|
+
SummerfiUnsubV2: string;
|
|
2332
2350
|
MorphoBlueSupply: string;
|
|
2333
2351
|
MorphoBlueSupplyCollateral: string;
|
|
2334
2352
|
MorphoBlueWithdraw: string;
|
|
@@ -2602,6 +2620,8 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
2602
2620
|
FluidDexWithdraw: string;
|
|
2603
2621
|
TokenizedVaultAdapter: string;
|
|
2604
2622
|
SFApproveTokens: string;
|
|
2623
|
+
SummerfiUnsub: string;
|
|
2624
|
+
SummerfiUnsubV2: string;
|
|
2605
2625
|
AutomationV2Unsub?: undefined;
|
|
2606
2626
|
SendTokenAndUnwrap?: undefined;
|
|
2607
2627
|
SDaiWrap?: undefined;
|
|
@@ -3089,6 +3109,8 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
3089
3109
|
UmbrellaStake?: undefined;
|
|
3090
3110
|
UmbrellaUnstake?: undefined;
|
|
3091
3111
|
SFApproveTokens?: undefined;
|
|
3112
|
+
SummerfiUnsub?: undefined;
|
|
3113
|
+
SummerfiUnsubV2?: undefined;
|
|
3092
3114
|
AaveV3RatioTrigger?: undefined;
|
|
3093
3115
|
GasFeeTakerL2?: undefined;
|
|
3094
3116
|
AaveV3RatioCheck?: undefined;
|
|
@@ -3369,6 +3391,8 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
3369
3391
|
UmbrellaStake?: undefined;
|
|
3370
3392
|
UmbrellaUnstake?: undefined;
|
|
3371
3393
|
SFApproveTokens?: undefined;
|
|
3394
|
+
SummerfiUnsub?: undefined;
|
|
3395
|
+
SummerfiUnsubV2?: undefined;
|
|
3372
3396
|
AaveV3RatioTrigger?: undefined;
|
|
3373
3397
|
GasFeeTakerL2?: undefined;
|
|
3374
3398
|
AaveV3RatioCheck?: undefined;
|
|
@@ -3381,6 +3405,7 @@ declare const otherAddressesAllChains: {
|
|
|
3381
3405
|
DFSRegistry: string;
|
|
3382
3406
|
DFSProxyRegistry: string;
|
|
3383
3407
|
ProxyRegistry: string;
|
|
3408
|
+
SFProxyEntryPoint: string;
|
|
3384
3409
|
McdCdpManager: string;
|
|
3385
3410
|
BCdpManager: string;
|
|
3386
3411
|
AaveDefaultMarket: string;
|
|
@@ -3402,6 +3427,7 @@ declare const otherAddressesAllChains: {
|
|
|
3402
3427
|
RecipeExecutorForTxSaver: string;
|
|
3403
3428
|
DFSRegistry: string;
|
|
3404
3429
|
ProxyRegistry: string;
|
|
3430
|
+
SFProxyEntryPoint: string;
|
|
3405
3431
|
DSGuardFactory: string;
|
|
3406
3432
|
AdminVault: string;
|
|
3407
3433
|
DefisaverLogger: string;
|
|
@@ -3424,6 +3450,7 @@ declare const otherAddressesAllChains: {
|
|
|
3424
3450
|
RecipeExecutorForTxSaver: string;
|
|
3425
3451
|
DFSRegistry: string;
|
|
3426
3452
|
ProxyRegistry: string;
|
|
3453
|
+
SFProxyEntryPoint: string;
|
|
3427
3454
|
DSGuardFactory: string;
|
|
3428
3455
|
AdminVault: string;
|
|
3429
3456
|
DefisaverLogger: string;
|
|
@@ -3451,6 +3478,7 @@ declare const otherAddressesAllChains: {
|
|
|
3451
3478
|
RecipeExecutorForTxSaver?: undefined;
|
|
3452
3479
|
DFSProxyRegistry?: undefined;
|
|
3453
3480
|
ProxyRegistry?: undefined;
|
|
3481
|
+
SFProxyEntryPoint?: undefined;
|
|
3454
3482
|
McdCdpManager?: undefined;
|
|
3455
3483
|
BCdpManager?: undefined;
|
|
3456
3484
|
AaveDefaultMarket?: undefined;
|
|
@@ -3472,6 +3500,7 @@ declare const otherAddressesAllChains: {
|
|
|
3472
3500
|
RecipeExecutorForTxSaver?: undefined;
|
|
3473
3501
|
DFSProxyRegistry?: undefined;
|
|
3474
3502
|
ProxyRegistry?: undefined;
|
|
3503
|
+
SFProxyEntryPoint?: undefined;
|
|
3475
3504
|
McdCdpManager?: undefined;
|
|
3476
3505
|
BCdpManager?: undefined;
|
|
3477
3506
|
AaveDefaultMarket?: undefined;
|
|
@@ -3493,6 +3522,7 @@ declare const otherAddresses: (chainId?: null) => {
|
|
|
3493
3522
|
DFSRegistry: string;
|
|
3494
3523
|
DFSProxyRegistry: string;
|
|
3495
3524
|
ProxyRegistry: string;
|
|
3525
|
+
SFProxyEntryPoint: string;
|
|
3496
3526
|
McdCdpManager: string;
|
|
3497
3527
|
BCdpManager: string;
|
|
3498
3528
|
AaveDefaultMarket: string;
|
|
@@ -3514,6 +3544,7 @@ declare const otherAddresses: (chainId?: null) => {
|
|
|
3514
3544
|
RecipeExecutorForTxSaver: string;
|
|
3515
3545
|
DFSRegistry: string;
|
|
3516
3546
|
ProxyRegistry: string;
|
|
3547
|
+
SFProxyEntryPoint: string;
|
|
3517
3548
|
DSGuardFactory: string;
|
|
3518
3549
|
AdminVault: string;
|
|
3519
3550
|
DefisaverLogger: string;
|
|
@@ -3536,6 +3567,7 @@ declare const otherAddresses: (chainId?: null) => {
|
|
|
3536
3567
|
RecipeExecutorForTxSaver: string;
|
|
3537
3568
|
DFSRegistry: string;
|
|
3538
3569
|
ProxyRegistry: string;
|
|
3570
|
+
SFProxyEntryPoint: string;
|
|
3539
3571
|
DSGuardFactory: string;
|
|
3540
3572
|
AdminVault: string;
|
|
3541
3573
|
DefisaverLogger: string;
|
|
@@ -3563,6 +3595,7 @@ declare const otherAddresses: (chainId?: null) => {
|
|
|
3563
3595
|
RecipeExecutorForTxSaver?: undefined;
|
|
3564
3596
|
DFSProxyRegistry?: undefined;
|
|
3565
3597
|
ProxyRegistry?: undefined;
|
|
3598
|
+
SFProxyEntryPoint?: undefined;
|
|
3566
3599
|
McdCdpManager?: undefined;
|
|
3567
3600
|
BCdpManager?: undefined;
|
|
3568
3601
|
AaveDefaultMarket?: undefined;
|
|
@@ -3584,6 +3617,7 @@ declare const otherAddresses: (chainId?: null) => {
|
|
|
3584
3617
|
RecipeExecutorForTxSaver?: undefined;
|
|
3585
3618
|
DFSProxyRegistry?: undefined;
|
|
3586
3619
|
ProxyRegistry?: undefined;
|
|
3620
|
+
SFProxyEntryPoint?: undefined;
|
|
3587
3621
|
McdCdpManager?: undefined;
|
|
3588
3622
|
BCdpManager?: undefined;
|
|
3589
3623
|
AaveDefaultMarket?: undefined;
|
|
@@ -3887,6 +3921,8 @@ declare const _default: {
|
|
|
3887
3921
|
UmbrellaStake: string;
|
|
3888
3922
|
UmbrellaUnstake: string;
|
|
3889
3923
|
SFApproveTokens: string;
|
|
3924
|
+
SummerfiUnsub: string;
|
|
3925
|
+
SummerfiUnsubV2: string;
|
|
3890
3926
|
AaveV3DelegateCredit?: undefined;
|
|
3891
3927
|
AaveV3RatioTrigger?: undefined;
|
|
3892
3928
|
GasFeeTakerL2?: undefined;
|
|
@@ -3944,6 +3980,8 @@ declare const _default: {
|
|
|
3944
3980
|
CompV3Transfer: string;
|
|
3945
3981
|
CompV3Withdraw: string;
|
|
3946
3982
|
SFApproveTokens: string;
|
|
3983
|
+
SummerfiUnsub: string;
|
|
3984
|
+
SummerfiUnsubV2: string;
|
|
3947
3985
|
AutomationV2Unsub?: undefined;
|
|
3948
3986
|
TransferNFT?: undefined;
|
|
3949
3987
|
SDaiWrap?: undefined;
|
|
@@ -4248,6 +4286,8 @@ declare const _default: {
|
|
|
4248
4286
|
FluidDexPayback: string;
|
|
4249
4287
|
FluidDexWithdraw: string;
|
|
4250
4288
|
SFApproveTokens: string;
|
|
4289
|
+
SummerfiUnsub: string;
|
|
4290
|
+
SummerfiUnsubV2: string;
|
|
4251
4291
|
MorphoBlueSupply: string;
|
|
4252
4292
|
MorphoBlueSupplyCollateral: string;
|
|
4253
4293
|
MorphoBlueWithdraw: string;
|
|
@@ -4521,6 +4561,8 @@ declare const _default: {
|
|
|
4521
4561
|
FluidDexWithdraw: string;
|
|
4522
4562
|
TokenizedVaultAdapter: string;
|
|
4523
4563
|
SFApproveTokens: string;
|
|
4564
|
+
SummerfiUnsub: string;
|
|
4565
|
+
SummerfiUnsubV2: string;
|
|
4524
4566
|
AutomationV2Unsub?: undefined;
|
|
4525
4567
|
SendTokenAndUnwrap?: undefined;
|
|
4526
4568
|
SDaiWrap?: undefined;
|
|
@@ -5008,6 +5050,8 @@ declare const _default: {
|
|
|
5008
5050
|
UmbrellaStake?: undefined;
|
|
5009
5051
|
UmbrellaUnstake?: undefined;
|
|
5010
5052
|
SFApproveTokens?: undefined;
|
|
5053
|
+
SummerfiUnsub?: undefined;
|
|
5054
|
+
SummerfiUnsubV2?: undefined;
|
|
5011
5055
|
AaveV3RatioTrigger?: undefined;
|
|
5012
5056
|
GasFeeTakerL2?: undefined;
|
|
5013
5057
|
AaveV3RatioCheck?: undefined;
|
|
@@ -5288,6 +5332,8 @@ declare const _default: {
|
|
|
5288
5332
|
UmbrellaStake?: undefined;
|
|
5289
5333
|
UmbrellaUnstake?: undefined;
|
|
5290
5334
|
SFApproveTokens?: undefined;
|
|
5335
|
+
SummerfiUnsub?: undefined;
|
|
5336
|
+
SummerfiUnsubV2?: undefined;
|
|
5291
5337
|
AaveV3RatioTrigger?: undefined;
|
|
5292
5338
|
GasFeeTakerL2?: undefined;
|
|
5293
5339
|
AaveV3RatioCheck?: undefined;
|
|
@@ -5569,6 +5615,8 @@ declare const _default: {
|
|
|
5569
5615
|
UmbrellaStake: string;
|
|
5570
5616
|
UmbrellaUnstake: string;
|
|
5571
5617
|
SFApproveTokens: string;
|
|
5618
|
+
SummerfiUnsub: string;
|
|
5619
|
+
SummerfiUnsubV2: string;
|
|
5572
5620
|
AaveV3DelegateCredit?: undefined;
|
|
5573
5621
|
AaveV3RatioTrigger?: undefined;
|
|
5574
5622
|
GasFeeTakerL2?: undefined;
|
|
@@ -5626,6 +5674,8 @@ declare const _default: {
|
|
|
5626
5674
|
CompV3Transfer: string;
|
|
5627
5675
|
CompV3Withdraw: string;
|
|
5628
5676
|
SFApproveTokens: string;
|
|
5677
|
+
SummerfiUnsub: string;
|
|
5678
|
+
SummerfiUnsubV2: string;
|
|
5629
5679
|
AutomationV2Unsub?: undefined;
|
|
5630
5680
|
TransferNFT?: undefined;
|
|
5631
5681
|
SDaiWrap?: undefined;
|
|
@@ -5930,6 +5980,8 @@ declare const _default: {
|
|
|
5930
5980
|
FluidDexPayback: string;
|
|
5931
5981
|
FluidDexWithdraw: string;
|
|
5932
5982
|
SFApproveTokens: string;
|
|
5983
|
+
SummerfiUnsub: string;
|
|
5984
|
+
SummerfiUnsubV2: string;
|
|
5933
5985
|
MorphoBlueSupply: string;
|
|
5934
5986
|
MorphoBlueSupplyCollateral: string;
|
|
5935
5987
|
MorphoBlueWithdraw: string;
|
|
@@ -6203,6 +6255,8 @@ declare const _default: {
|
|
|
6203
6255
|
FluidDexWithdraw: string;
|
|
6204
6256
|
TokenizedVaultAdapter: string;
|
|
6205
6257
|
SFApproveTokens: string;
|
|
6258
|
+
SummerfiUnsub: string;
|
|
6259
|
+
SummerfiUnsubV2: string;
|
|
6206
6260
|
AutomationV2Unsub?: undefined;
|
|
6207
6261
|
SendTokenAndUnwrap?: undefined;
|
|
6208
6262
|
SDaiWrap?: undefined;
|
|
@@ -6690,6 +6744,8 @@ declare const _default: {
|
|
|
6690
6744
|
UmbrellaStake?: undefined;
|
|
6691
6745
|
UmbrellaUnstake?: undefined;
|
|
6692
6746
|
SFApproveTokens?: undefined;
|
|
6747
|
+
SummerfiUnsub?: undefined;
|
|
6748
|
+
SummerfiUnsubV2?: undefined;
|
|
6693
6749
|
AaveV3RatioTrigger?: undefined;
|
|
6694
6750
|
GasFeeTakerL2?: undefined;
|
|
6695
6751
|
AaveV3RatioCheck?: undefined;
|
|
@@ -6970,6 +7026,8 @@ declare const _default: {
|
|
|
6970
7026
|
UmbrellaStake?: undefined;
|
|
6971
7027
|
UmbrellaUnstake?: undefined;
|
|
6972
7028
|
SFApproveTokens?: undefined;
|
|
7029
|
+
SummerfiUnsub?: undefined;
|
|
7030
|
+
SummerfiUnsubV2?: undefined;
|
|
6973
7031
|
AaveV3RatioTrigger?: undefined;
|
|
6974
7032
|
GasFeeTakerL2?: undefined;
|
|
6975
7033
|
AaveV3RatioCheck?: undefined;
|
|
@@ -6982,6 +7040,7 @@ declare const _default: {
|
|
|
6982
7040
|
DFSRegistry: string;
|
|
6983
7041
|
DFSProxyRegistry: string;
|
|
6984
7042
|
ProxyRegistry: string;
|
|
7043
|
+
SFProxyEntryPoint: string;
|
|
6985
7044
|
McdCdpManager: string;
|
|
6986
7045
|
BCdpManager: string;
|
|
6987
7046
|
AaveDefaultMarket: string;
|
|
@@ -7003,6 +7062,7 @@ declare const _default: {
|
|
|
7003
7062
|
RecipeExecutorForTxSaver: string;
|
|
7004
7063
|
DFSRegistry: string;
|
|
7005
7064
|
ProxyRegistry: string;
|
|
7065
|
+
SFProxyEntryPoint: string;
|
|
7006
7066
|
DSGuardFactory: string;
|
|
7007
7067
|
AdminVault: string;
|
|
7008
7068
|
DefisaverLogger: string;
|
|
@@ -7025,6 +7085,7 @@ declare const _default: {
|
|
|
7025
7085
|
RecipeExecutorForTxSaver: string;
|
|
7026
7086
|
DFSRegistry: string;
|
|
7027
7087
|
ProxyRegistry: string;
|
|
7088
|
+
SFProxyEntryPoint: string;
|
|
7028
7089
|
DSGuardFactory: string;
|
|
7029
7090
|
AdminVault: string;
|
|
7030
7091
|
DefisaverLogger: string;
|
|
@@ -7052,6 +7113,7 @@ declare const _default: {
|
|
|
7052
7113
|
RecipeExecutorForTxSaver?: undefined;
|
|
7053
7114
|
DFSProxyRegistry?: undefined;
|
|
7054
7115
|
ProxyRegistry?: undefined;
|
|
7116
|
+
SFProxyEntryPoint?: undefined;
|
|
7055
7117
|
McdCdpManager?: undefined;
|
|
7056
7118
|
BCdpManager?: undefined;
|
|
7057
7119
|
AaveDefaultMarket?: undefined;
|
|
@@ -7073,6 +7135,7 @@ declare const _default: {
|
|
|
7073
7135
|
RecipeExecutorForTxSaver?: undefined;
|
|
7074
7136
|
DFSProxyRegistry?: undefined;
|
|
7075
7137
|
ProxyRegistry?: undefined;
|
|
7138
|
+
SFProxyEntryPoint?: undefined;
|
|
7076
7139
|
McdCdpManager?: undefined;
|
|
7077
7140
|
BCdpManager?: undefined;
|
|
7078
7141
|
AaveDefaultMarket?: undefined;
|
|
@@ -7094,6 +7157,7 @@ declare const _default: {
|
|
|
7094
7157
|
DFSRegistry: string;
|
|
7095
7158
|
DFSProxyRegistry: string;
|
|
7096
7159
|
ProxyRegistry: string;
|
|
7160
|
+
SFProxyEntryPoint: string;
|
|
7097
7161
|
McdCdpManager: string;
|
|
7098
7162
|
BCdpManager: string;
|
|
7099
7163
|
AaveDefaultMarket: string;
|
|
@@ -7115,6 +7179,7 @@ declare const _default: {
|
|
|
7115
7179
|
RecipeExecutorForTxSaver: string;
|
|
7116
7180
|
DFSRegistry: string;
|
|
7117
7181
|
ProxyRegistry: string;
|
|
7182
|
+
SFProxyEntryPoint: string;
|
|
7118
7183
|
DSGuardFactory: string;
|
|
7119
7184
|
AdminVault: string;
|
|
7120
7185
|
DefisaverLogger: string;
|
|
@@ -7137,6 +7202,7 @@ declare const _default: {
|
|
|
7137
7202
|
RecipeExecutorForTxSaver: string;
|
|
7138
7203
|
DFSRegistry: string;
|
|
7139
7204
|
ProxyRegistry: string;
|
|
7205
|
+
SFProxyEntryPoint: string;
|
|
7140
7206
|
DSGuardFactory: string;
|
|
7141
7207
|
AdminVault: string;
|
|
7142
7208
|
DefisaverLogger: string;
|
|
@@ -7164,6 +7230,7 @@ declare const _default: {
|
|
|
7164
7230
|
RecipeExecutorForTxSaver?: undefined;
|
|
7165
7231
|
DFSProxyRegistry?: undefined;
|
|
7166
7232
|
ProxyRegistry?: undefined;
|
|
7233
|
+
SFProxyEntryPoint?: undefined;
|
|
7167
7234
|
McdCdpManager?: undefined;
|
|
7168
7235
|
BCdpManager?: undefined;
|
|
7169
7236
|
AaveDefaultMarket?: undefined;
|
|
@@ -7185,6 +7252,7 @@ declare const _default: {
|
|
|
7185
7252
|
RecipeExecutorForTxSaver?: undefined;
|
|
7186
7253
|
DFSProxyRegistry?: undefined;
|
|
7187
7254
|
ProxyRegistry?: undefined;
|
|
7255
|
+
SFProxyEntryPoint?: undefined;
|
|
7188
7256
|
McdCdpManager?: undefined;
|
|
7189
7257
|
BCdpManager?: undefined;
|
|
7190
7258
|
AaveDefaultMarket?: undefined;
|