@defisaver/sdk 1.3.15 → 1.3.17-aave-v4-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/Strategy.d.ts +1 -0
- package/esm/src/Strategy.js +3 -0
- package/esm/src/actions/aavev4/AaveV4BorrowAction.d.ts +17 -0
- package/esm/src/actions/aavev4/AaveV4BorrowAction.js +26 -0
- package/esm/src/actions/aavev4/AaveV4CollateralSwitchAction.d.ts +16 -0
- package/esm/src/actions/aavev4/AaveV4CollateralSwitchAction.js +24 -0
- package/esm/src/actions/aavev4/AaveV4PaybackAction.d.ts +23 -0
- package/esm/src/actions/aavev4/AaveV4PaybackAction.js +46 -0
- package/esm/src/actions/aavev4/AaveV4StoreRatioAction.d.ts +14 -0
- package/esm/src/actions/aavev4/AaveV4StoreRatioAction.js +20 -0
- package/esm/src/actions/aavev4/AaveV4SupplyAction.d.ts +25 -0
- package/esm/src/actions/aavev4/AaveV4SupplyAction.js +49 -0
- package/esm/src/actions/aavev4/AaveV4WithdrawAction.d.ts +17 -0
- package/esm/src/actions/aavev4/AaveV4WithdrawAction.js +26 -0
- package/esm/src/actions/aavev4/index.d.ts +6 -0
- package/esm/src/actions/aavev4/index.js +6 -0
- package/esm/src/actions/checkers/AaveV4RatioCheckAction.d.ts +16 -0
- package/esm/src/actions/checkers/AaveV4RatioCheckAction.js +24 -0
- package/esm/src/actions/checkers/index.d.ts +1 -0
- package/esm/src/actions/checkers/index.js +1 -0
- package/esm/src/actions/index.d.ts +2 -1
- package/esm/src/actions/index.js +2 -1
- 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 +47 -0
- package/esm/src/addresses.js +29 -11
- package/esm/src/index.d.ts +188 -0
- package/esm/src/triggers/AaveV4QuotePriceRangeTrigger.d.ts +10 -0
- package/esm/src/triggers/AaveV4QuotePriceRangeTrigger.js +12 -0
- package/esm/src/triggers/AaveV4QuotePriceTrigger.d.ts +10 -0
- package/esm/src/triggers/AaveV4QuotePriceTrigger.js +12 -0
- package/esm/src/triggers/AaveV4RatioTrigger.d.ts +10 -0
- package/esm/src/triggers/AaveV4RatioTrigger.js +12 -0
- package/esm/src/triggers/index.d.ts +3 -0
- package/esm/src/triggers/index.js +3 -0
- package/package.json +1 -1
- package/src/Strategy.ts +4 -0
- package/src/actions/aavev4/AaveV4BorrowAction.ts +39 -0
- package/src/actions/aavev4/AaveV4CollateralSwitchAction.ts +36 -0
- package/src/actions/aavev4/AaveV4PaybackAction.ts +51 -0
- package/src/actions/aavev4/AaveV4StoreRatioAction.ts +30 -0
- package/src/actions/aavev4/AaveV4SupplyAction.ts +55 -0
- package/src/actions/aavev4/AaveV4WithdrawAction.ts +39 -0
- package/src/actions/aavev4/index.ts +6 -0
- package/src/actions/checkers/AaveV4RatioCheckAction.ts +36 -0
- package/src/actions/checkers/index.ts +2 -1
- package/src/actions/index.ts +2 -0
- 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 +106 -49
- package/src/triggers/AaveV4QuotePriceRangeTrigger.ts +25 -0
- package/src/triggers/AaveV4QuotePriceTrigger.ts +25 -0
- package/src/triggers/AaveV4RatioTrigger.ts +24 -0
- package/src/triggers/index.ts +4 -1
- package/umd/index.js +1023 -570
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,14 @@ export const actionAddresses = {
|
|
|
316
316
|
UmbrellaUnstake: '0xc27634A1D6c5Ed151ebd963Ef35487000C28dc0b',
|
|
317
317
|
// summer.fi
|
|
318
318
|
SFApproveTokens: '0x0aC29D44eeC8e8f3b010c2e8FC960957db0c8298',
|
|
319
|
+
SummerfiUnsub: '0x926405D69b77A514ED974901095AcFf9e5131366',
|
|
320
|
+
SummerfiUnsubV2: '0x5E805eD9B7581a9f1398F75833f9663a459F5E30',
|
|
321
|
+
// AaveV4
|
|
322
|
+
AaveV4Supply: '0x30f333997eA08CA7Af95E32F4f90DACEf284D746',
|
|
323
|
+
AaveV4Withdraw: '0x8fc7F5dCeb5da1B0293A246ed6aeDc44EB37dB38',
|
|
324
|
+
AaveV4Borrow: '0x0a58710A67837E6d026B83c434519c5f0A0cD7a1',
|
|
325
|
+
AaveV4Payback: '0xCbcbD3b3e0D704Ad26b7dCfe1BdA6e85CDd8DBf0',
|
|
326
|
+
AaveV4CollateralSwitch: '0x19Ef19d6b8818103b8Cae086BB23e183EF7E433f',
|
|
319
327
|
},
|
|
320
328
|
[NETWORKS.optimism.chainId]: {
|
|
321
329
|
DFSSell: '0x9f234af5c10c136863a20865ba00b26951ab8269',
|
|
@@ -355,7 +363,7 @@ export const actionAddresses = {
|
|
|
355
363
|
FLAaveV3NoFee: '0xfbcF23D2BeF8A2C491cfa4dD409D8dF12d431c85',
|
|
356
364
|
FLAaveV3: '0x8A07E93d2B74A80D726eE4E4A0aC1F906aB5Cc63',
|
|
357
365
|
FLBalancer: '0x79d6bf536b8DD65909a3174C87eA6395310d5c41',
|
|
358
|
-
FLAction: '
|
|
366
|
+
FLAction: '0xB57b666dAB46229e2b80113b5187F6DCD91AB159',
|
|
359
367
|
AaveV3RatioTrigger: '0xB76e3f7694589D0f34ba43b17AD0D15350Ab5f85',
|
|
360
368
|
GasFeeTakerL2: '0xB3dB299622A9DB0E944ccda2Ef899d6fF365B082',
|
|
361
369
|
AaveV3RatioCheck: '0x7A36779a7b5F1128B28932604057d5b63361297c',
|
|
@@ -375,6 +383,8 @@ export const actionAddresses = {
|
|
|
375
383
|
CompV3Withdraw: '0x744ad24e92d092e0788d429f5178286672288782',
|
|
376
384
|
// summer.fi
|
|
377
385
|
SFApproveTokens: '0xcc63B281b29a4c7f33aF780e9B480A15eb676e81',
|
|
386
|
+
SummerfiUnsub: '0x0000000000000000000000000000000000000000',
|
|
387
|
+
SummerfiUnsubV2: '0xC24863ce3397316b743112AeBc2eBCF5507bFD42',
|
|
378
388
|
},
|
|
379
389
|
[NETWORKS.arbitrum.chainId]: {
|
|
380
390
|
DFSSell: '0x1393eef11454ab068dd5e0d0be5eb922603eef1a',
|
|
@@ -422,9 +432,9 @@ export const actionAddresses = {
|
|
|
422
432
|
FLAaveV3NoFee: '0x219ac6dA971dE6d943cffD1BD62abde71525d382',
|
|
423
433
|
FLAaveV3: '0x53953aCEe438c083e4299F7976f03Ff3cb862161',
|
|
424
434
|
FLBalancer: '0xdb28fE77709D88badC86868B27937428C3F48E73',
|
|
425
|
-
FLUniV3: '
|
|
426
|
-
FLAction: '
|
|
427
|
-
FLMorphoBlue: '
|
|
435
|
+
FLUniV3: '0xf041C72e201CD7d04a240fe06c5783E2Ee2D92b3',
|
|
436
|
+
FLAction: '0xf041C72e201CD7d04a240fe06c5783E2Ee2D92b3',
|
|
437
|
+
FLMorphoBlue: '0xf041C72e201CD7d04a240fe06c5783E2Ee2D92b3',
|
|
428
438
|
GasFeeTakerL2: '0x2F64f73B222B4978CAfd0295c0fa106cE5f34996',
|
|
429
439
|
AaveV3RatioCheck: '0x4a5c2cbCFB921b596Dec049389899CC8Eb4678ED',
|
|
430
440
|
// uniswap V3
|
|
@@ -460,6 +470,8 @@ export const actionAddresses = {
|
|
|
460
470
|
FluidDexWithdraw: '0x076D5434793798b153298bF70b014f5E6145aB2E',
|
|
461
471
|
// summer.fi
|
|
462
472
|
SFApproveTokens: '0x98101bDBFaA3f8efa4A14a5A6a2f9A20D514a5D5',
|
|
473
|
+
SummerfiUnsub: '0x0000000000000000000000000000000000000000',
|
|
474
|
+
SummerfiUnsubV2: '0xFAb1D6fe62081BfB997558216769a7029f7d52A4',
|
|
463
475
|
// MorphoBlue
|
|
464
476
|
MorphoBlueSupply: '0xeaF1c037716b447C178f3604BCFd10e650704525',
|
|
465
477
|
MorphoBlueSupplyCollateral: '0x65A5900F2faab9cC495b92389844739DF08A290D',
|
|
@@ -499,8 +511,8 @@ export const actionAddresses = {
|
|
|
499
511
|
FLAaveV3: '0x79Eb9cEe432Cd3e7b09A9eFdB21A733A6d7b4c3A',
|
|
500
512
|
FLBalancer: '0x862E533198C9656B75bB6A5dDF0953F7ED5E8507',
|
|
501
513
|
FLUniV3: '0x1bA6082D2ef1aB92a55B96264c72Eb8049C964Ce',
|
|
502
|
-
FLAction: '
|
|
503
|
-
FLMorphoBlue: '
|
|
514
|
+
FLAction: '0x87Af4769e4134379125A262408e1f3EC60d2Ab52',
|
|
515
|
+
FLMorphoBlue: '0x87Af4769e4134379125A262408e1f3EC60d2Ab52',
|
|
504
516
|
// AaveV3
|
|
505
517
|
AaveV3Withdraw: '0x1d2Fa7dAcC660A9124c3685EE8a6E699d10409Eb',
|
|
506
518
|
AaveV3SwapBorrowRateMode: '0x9d1D7A0dD5e82cCe9CC131eC0C807B0F543be70e',
|
|
@@ -549,6 +561,8 @@ export const actionAddresses = {
|
|
|
549
561
|
TokenizedVaultAdapter: '0x88cf6cfa51b6f771570f6df450edf1c886212d3e',
|
|
550
562
|
// summer.fi
|
|
551
563
|
SFApproveTokens: '0x03EDC9A683f37BFB7516FF234223fFb6E38D5eb9',
|
|
564
|
+
SummerfiUnsub: '0x0000000000000000000000000000000000000000',
|
|
565
|
+
SummerfiUnsubV2: '0x60587B8Fe62Fc149d285a611822263206b4138da',
|
|
552
566
|
},
|
|
553
567
|
[NETWORKS.linea.chainId]: {
|
|
554
568
|
// Basic
|
|
@@ -636,11 +650,12 @@ export const actionAddresses = {
|
|
|
636
650
|
};
|
|
637
651
|
export const otherAddresses = {
|
|
638
652
|
[NETWORKS.ethereum.chainId]: {
|
|
639
|
-
RecipeExecutor: '
|
|
653
|
+
RecipeExecutor: '0xbc3Fc959FeF3F12a41738f406c02198cdeE7481F',
|
|
640
654
|
RecipeExecutorForTxSaver: '0x2ee96cf53ae5fbd5309284704f978d0ca66cb963',
|
|
641
655
|
DFSRegistry: '0x287778F121F134C66212FB16c9b53eC991D32f5b',
|
|
642
656
|
DFSProxyRegistry: '0x29474FdaC7142f9aB7773B8e38264FA15E3805ed',
|
|
643
657
|
ProxyRegistry: '0x4678f0a6958e4D2Bc4F1BAF7Bc52E8F3564f3fE4',
|
|
658
|
+
SFProxyEntryPoint: '0xAa15ca459659F35B1064EC546A44d962d54bA89e',
|
|
644
659
|
McdCdpManager: '0x5ef30b9986345249bc32d8928b7ee64de9435e39',
|
|
645
660
|
BCdpManager: '0x3f30c2381CD8B917Dd96EB2f1A4F96D91324BBed',
|
|
646
661
|
AaveDefaultMarket: '0xB53C1a33016B2DC2fF3653530bfF1848a515c8c5',
|
|
@@ -656,10 +671,11 @@ export const otherAddresses = {
|
|
|
656
671
|
Empty: '0x0000000000000000000000000000000000000000',
|
|
657
672
|
},
|
|
658
673
|
[NETWORKS.optimism.chainId]: {
|
|
659
|
-
RecipeExecutor: '
|
|
674
|
+
RecipeExecutor: '0xEC891E6b5A93F5f29241De6B234a4e77A5456A1C',
|
|
660
675
|
RecipeExecutorForTxSaver: '0x993A8c81142044E1CB0Cf0c3d84BEa235d842Fb0',
|
|
661
676
|
DFSRegistry: '0xAf707Ee480204Ed6e2640B53cE86F680D28Afcbd',
|
|
662
677
|
ProxyRegistry: '0x283Cc5C26e53D66ed2Ea252D986F094B37E6e895',
|
|
678
|
+
SFProxyEntryPoint: '0x06299D4A07E8C6D7C1aEc14Ab2F46DF05Dd9588E',
|
|
663
679
|
DSGuardFactory: '0xc19d0F1E2b38AA283E226Ca4044766A43aA7B02b',
|
|
664
680
|
AdminVault: '0x136b1bEAfff362530F98f10E3D8C38f3a3F3d38C',
|
|
665
681
|
DefisaverLogger: '0xFc2f1355296ab7dd98a1260E3Ff5E906999d4Acb',
|
|
@@ -667,10 +683,11 @@ export const otherAddresses = {
|
|
|
667
683
|
UniswapV3PositionManager: '0xC36442b4a4522E871399CD717aBDD847Ab11FE88',
|
|
668
684
|
},
|
|
669
685
|
[NETWORKS.arbitrum.chainId]: {
|
|
670
|
-
RecipeExecutor: '
|
|
686
|
+
RecipeExecutor: '0x667609f05DdC5E9Fb939eC376F07953403745cf3',
|
|
671
687
|
RecipeExecutorForTxSaver: '0x7a25174229ea402d8ccd35fc6d55af079c399884',
|
|
672
688
|
DFSRegistry: '0xBF1CaC12DB60819Bfa71A328282ecbc1D40443aA',
|
|
673
689
|
ProxyRegistry: '0x283Cc5C26e53D66ed2Ea252D986F094B37E6e895',
|
|
690
|
+
SFProxyEntryPoint: '0x15D776C062bF292f8F70A81533E49adC7C06Cb69',
|
|
674
691
|
DSGuardFactory: '0x5261abC3a94a6475D0A1171daE94A5f84fbaEcD2',
|
|
675
692
|
AdminVault: '0xd47D8D97cAd12A866900eEc6Cde1962529F25351',
|
|
676
693
|
DefisaverLogger: '0xE6f9A5C850dbcD12bc64f40d692F537250aDEC38',
|
|
@@ -678,10 +695,11 @@ export const otherAddresses = {
|
|
|
678
695
|
UniswapV3PositionManager: '0xC36442b4a4522E871399CD717aBDD847Ab11FE88',
|
|
679
696
|
},
|
|
680
697
|
[NETWORKS.base.chainId]: {
|
|
681
|
-
RecipeExecutor: '
|
|
698
|
+
RecipeExecutor: '0xc91305DdE651c899EF8eE1D0C33E7dab1B5ABF0D',
|
|
682
699
|
RecipeExecutorForTxSaver: '0x7a87565b77dd65bbc153fe20e97743842f1a6e0c',
|
|
683
700
|
DFSRegistry: '0x347FB634271F666353F23A3362f3935D96F97476',
|
|
684
701
|
ProxyRegistry: '0x425fA97285965E01Cc5F951B62A51F6CDEA5cc0d',
|
|
702
|
+
SFProxyEntryPoint: '0xab6e5cde983fF98Cdb0F61f5F99cb58D40D0c837',
|
|
685
703
|
DSGuardFactory: '0x7783da8958013a57a5514737a4FBDFF06A0056e1',
|
|
686
704
|
AdminVault: '0xD8E67968d8a0df4beCf2D50daE1e34d4d80C701C',
|
|
687
705
|
DefisaverLogger: '0xc9D6EfA6e08B66a5Cdc516Bcd5807c2fa69E0f2A',
|
package/esm/src/index.d.ts
CHANGED
|
@@ -286,6 +286,13 @@ declare const actionAddressesAllChains: {
|
|
|
286
286
|
UmbrellaStake: string;
|
|
287
287
|
UmbrellaUnstake: string;
|
|
288
288
|
SFApproveTokens: string;
|
|
289
|
+
SummerfiUnsub: string;
|
|
290
|
+
SummerfiUnsubV2: string;
|
|
291
|
+
AaveV4Supply: string;
|
|
292
|
+
AaveV4Withdraw: string;
|
|
293
|
+
AaveV4Borrow: string;
|
|
294
|
+
AaveV4Payback: string;
|
|
295
|
+
AaveV4CollateralSwitch: string;
|
|
289
296
|
AaveV3DelegateCredit?: undefined;
|
|
290
297
|
AaveV3RatioTrigger?: undefined;
|
|
291
298
|
GasFeeTakerL2?: undefined;
|
|
@@ -343,6 +350,8 @@ declare const actionAddressesAllChains: {
|
|
|
343
350
|
CompV3Transfer: string;
|
|
344
351
|
CompV3Withdraw: string;
|
|
345
352
|
SFApproveTokens: string;
|
|
353
|
+
SummerfiUnsub: string;
|
|
354
|
+
SummerfiUnsubV2: string;
|
|
346
355
|
AutomationV2Unsub?: undefined;
|
|
347
356
|
TransferNFT?: undefined;
|
|
348
357
|
SDaiWrap?: undefined;
|
|
@@ -570,6 +579,11 @@ declare const actionAddressesAllChains: {
|
|
|
570
579
|
UmbrellaClaimRewards?: undefined;
|
|
571
580
|
UmbrellaStake?: undefined;
|
|
572
581
|
UmbrellaUnstake?: undefined;
|
|
582
|
+
AaveV4Supply?: undefined;
|
|
583
|
+
AaveV4Withdraw?: undefined;
|
|
584
|
+
AaveV4Borrow?: undefined;
|
|
585
|
+
AaveV4Payback?: undefined;
|
|
586
|
+
AaveV4CollateralSwitch?: undefined;
|
|
573
587
|
MorphoBlueView?: undefined;
|
|
574
588
|
} | {
|
|
575
589
|
DFSSell: string;
|
|
@@ -647,6 +661,8 @@ declare const actionAddressesAllChains: {
|
|
|
647
661
|
FluidDexPayback: string;
|
|
648
662
|
FluidDexWithdraw: string;
|
|
649
663
|
SFApproveTokens: string;
|
|
664
|
+
SummerfiUnsub: string;
|
|
665
|
+
SummerfiUnsubV2: string;
|
|
650
666
|
MorphoBlueSupply: string;
|
|
651
667
|
MorphoBlueSupplyCollateral: string;
|
|
652
668
|
MorphoBlueWithdraw: string;
|
|
@@ -849,6 +865,11 @@ declare const actionAddressesAllChains: {
|
|
|
849
865
|
UmbrellaClaimRewards?: undefined;
|
|
850
866
|
UmbrellaStake?: undefined;
|
|
851
867
|
UmbrellaUnstake?: undefined;
|
|
868
|
+
AaveV4Supply?: undefined;
|
|
869
|
+
AaveV4Withdraw?: undefined;
|
|
870
|
+
AaveV4Borrow?: undefined;
|
|
871
|
+
AaveV4Payback?: undefined;
|
|
872
|
+
AaveV4CollateralSwitch?: undefined;
|
|
852
873
|
AaveV3DelegateCredit?: undefined;
|
|
853
874
|
AaveV3RatioTrigger?: undefined;
|
|
854
875
|
} | {
|
|
@@ -920,6 +941,8 @@ declare const actionAddressesAllChains: {
|
|
|
920
941
|
FluidDexWithdraw: string;
|
|
921
942
|
TokenizedVaultAdapter: string;
|
|
922
943
|
SFApproveTokens: string;
|
|
944
|
+
SummerfiUnsub: string;
|
|
945
|
+
SummerfiUnsubV2: string;
|
|
923
946
|
AutomationV2Unsub?: undefined;
|
|
924
947
|
SendTokenAndUnwrap?: undefined;
|
|
925
948
|
SDaiWrap?: undefined;
|
|
@@ -1128,6 +1151,11 @@ declare const actionAddressesAllChains: {
|
|
|
1128
1151
|
UmbrellaClaimRewards?: undefined;
|
|
1129
1152
|
UmbrellaStake?: undefined;
|
|
1130
1153
|
UmbrellaUnstake?: undefined;
|
|
1154
|
+
AaveV4Supply?: undefined;
|
|
1155
|
+
AaveV4Withdraw?: undefined;
|
|
1156
|
+
AaveV4Borrow?: undefined;
|
|
1157
|
+
AaveV4Payback?: undefined;
|
|
1158
|
+
AaveV4CollateralSwitch?: undefined;
|
|
1131
1159
|
AaveV3DelegateCredit?: undefined;
|
|
1132
1160
|
AaveV3RatioTrigger?: undefined;
|
|
1133
1161
|
AaveV3RatioCheck?: undefined;
|
|
@@ -1407,6 +1435,13 @@ declare const actionAddressesAllChains: {
|
|
|
1407
1435
|
UmbrellaStake?: undefined;
|
|
1408
1436
|
UmbrellaUnstake?: undefined;
|
|
1409
1437
|
SFApproveTokens?: undefined;
|
|
1438
|
+
SummerfiUnsub?: undefined;
|
|
1439
|
+
SummerfiUnsubV2?: undefined;
|
|
1440
|
+
AaveV4Supply?: undefined;
|
|
1441
|
+
AaveV4Withdraw?: undefined;
|
|
1442
|
+
AaveV4Borrow?: undefined;
|
|
1443
|
+
AaveV4Payback?: undefined;
|
|
1444
|
+
AaveV4CollateralSwitch?: undefined;
|
|
1410
1445
|
AaveV3RatioTrigger?: undefined;
|
|
1411
1446
|
GasFeeTakerL2?: undefined;
|
|
1412
1447
|
AaveV3RatioCheck?: undefined;
|
|
@@ -1687,6 +1722,13 @@ declare const actionAddressesAllChains: {
|
|
|
1687
1722
|
UmbrellaStake?: undefined;
|
|
1688
1723
|
UmbrellaUnstake?: undefined;
|
|
1689
1724
|
SFApproveTokens?: undefined;
|
|
1725
|
+
SummerfiUnsub?: undefined;
|
|
1726
|
+
SummerfiUnsubV2?: undefined;
|
|
1727
|
+
AaveV4Supply?: undefined;
|
|
1728
|
+
AaveV4Withdraw?: undefined;
|
|
1729
|
+
AaveV4Borrow?: undefined;
|
|
1730
|
+
AaveV4Payback?: undefined;
|
|
1731
|
+
AaveV4CollateralSwitch?: undefined;
|
|
1690
1732
|
AaveV3RatioTrigger?: undefined;
|
|
1691
1733
|
GasFeeTakerL2?: undefined;
|
|
1692
1734
|
AaveV3RatioCheck?: undefined;
|
|
@@ -1968,6 +2010,13 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1968
2010
|
UmbrellaStake: string;
|
|
1969
2011
|
UmbrellaUnstake: string;
|
|
1970
2012
|
SFApproveTokens: string;
|
|
2013
|
+
SummerfiUnsub: string;
|
|
2014
|
+
SummerfiUnsubV2: string;
|
|
2015
|
+
AaveV4Supply: string;
|
|
2016
|
+
AaveV4Withdraw: string;
|
|
2017
|
+
AaveV4Borrow: string;
|
|
2018
|
+
AaveV4Payback: string;
|
|
2019
|
+
AaveV4CollateralSwitch: string;
|
|
1971
2020
|
AaveV3DelegateCredit?: undefined;
|
|
1972
2021
|
AaveV3RatioTrigger?: undefined;
|
|
1973
2022
|
GasFeeTakerL2?: undefined;
|
|
@@ -2025,6 +2074,8 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
2025
2074
|
CompV3Transfer: string;
|
|
2026
2075
|
CompV3Withdraw: string;
|
|
2027
2076
|
SFApproveTokens: string;
|
|
2077
|
+
SummerfiUnsub: string;
|
|
2078
|
+
SummerfiUnsubV2: string;
|
|
2028
2079
|
AutomationV2Unsub?: undefined;
|
|
2029
2080
|
TransferNFT?: undefined;
|
|
2030
2081
|
SDaiWrap?: undefined;
|
|
@@ -2252,6 +2303,11 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
2252
2303
|
UmbrellaClaimRewards?: undefined;
|
|
2253
2304
|
UmbrellaStake?: undefined;
|
|
2254
2305
|
UmbrellaUnstake?: undefined;
|
|
2306
|
+
AaveV4Supply?: undefined;
|
|
2307
|
+
AaveV4Withdraw?: undefined;
|
|
2308
|
+
AaveV4Borrow?: undefined;
|
|
2309
|
+
AaveV4Payback?: undefined;
|
|
2310
|
+
AaveV4CollateralSwitch?: undefined;
|
|
2255
2311
|
MorphoBlueView?: undefined;
|
|
2256
2312
|
} | {
|
|
2257
2313
|
DFSSell: string;
|
|
@@ -2329,6 +2385,8 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
2329
2385
|
FluidDexPayback: string;
|
|
2330
2386
|
FluidDexWithdraw: string;
|
|
2331
2387
|
SFApproveTokens: string;
|
|
2388
|
+
SummerfiUnsub: string;
|
|
2389
|
+
SummerfiUnsubV2: string;
|
|
2332
2390
|
MorphoBlueSupply: string;
|
|
2333
2391
|
MorphoBlueSupplyCollateral: string;
|
|
2334
2392
|
MorphoBlueWithdraw: string;
|
|
@@ -2531,6 +2589,11 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
2531
2589
|
UmbrellaClaimRewards?: undefined;
|
|
2532
2590
|
UmbrellaStake?: undefined;
|
|
2533
2591
|
UmbrellaUnstake?: undefined;
|
|
2592
|
+
AaveV4Supply?: undefined;
|
|
2593
|
+
AaveV4Withdraw?: undefined;
|
|
2594
|
+
AaveV4Borrow?: undefined;
|
|
2595
|
+
AaveV4Payback?: undefined;
|
|
2596
|
+
AaveV4CollateralSwitch?: undefined;
|
|
2534
2597
|
AaveV3DelegateCredit?: undefined;
|
|
2535
2598
|
AaveV3RatioTrigger?: undefined;
|
|
2536
2599
|
} | {
|
|
@@ -2602,6 +2665,8 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
2602
2665
|
FluidDexWithdraw: string;
|
|
2603
2666
|
TokenizedVaultAdapter: string;
|
|
2604
2667
|
SFApproveTokens: string;
|
|
2668
|
+
SummerfiUnsub: string;
|
|
2669
|
+
SummerfiUnsubV2: string;
|
|
2605
2670
|
AutomationV2Unsub?: undefined;
|
|
2606
2671
|
SendTokenAndUnwrap?: undefined;
|
|
2607
2672
|
SDaiWrap?: undefined;
|
|
@@ -2810,6 +2875,11 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
2810
2875
|
UmbrellaClaimRewards?: undefined;
|
|
2811
2876
|
UmbrellaStake?: undefined;
|
|
2812
2877
|
UmbrellaUnstake?: undefined;
|
|
2878
|
+
AaveV4Supply?: undefined;
|
|
2879
|
+
AaveV4Withdraw?: undefined;
|
|
2880
|
+
AaveV4Borrow?: undefined;
|
|
2881
|
+
AaveV4Payback?: undefined;
|
|
2882
|
+
AaveV4CollateralSwitch?: undefined;
|
|
2813
2883
|
AaveV3DelegateCredit?: undefined;
|
|
2814
2884
|
AaveV3RatioTrigger?: undefined;
|
|
2815
2885
|
AaveV3RatioCheck?: undefined;
|
|
@@ -3089,6 +3159,13 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
3089
3159
|
UmbrellaStake?: undefined;
|
|
3090
3160
|
UmbrellaUnstake?: undefined;
|
|
3091
3161
|
SFApproveTokens?: undefined;
|
|
3162
|
+
SummerfiUnsub?: undefined;
|
|
3163
|
+
SummerfiUnsubV2?: undefined;
|
|
3164
|
+
AaveV4Supply?: undefined;
|
|
3165
|
+
AaveV4Withdraw?: undefined;
|
|
3166
|
+
AaveV4Borrow?: undefined;
|
|
3167
|
+
AaveV4Payback?: undefined;
|
|
3168
|
+
AaveV4CollateralSwitch?: undefined;
|
|
3092
3169
|
AaveV3RatioTrigger?: undefined;
|
|
3093
3170
|
GasFeeTakerL2?: undefined;
|
|
3094
3171
|
AaveV3RatioCheck?: undefined;
|
|
@@ -3369,6 +3446,13 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
3369
3446
|
UmbrellaStake?: undefined;
|
|
3370
3447
|
UmbrellaUnstake?: undefined;
|
|
3371
3448
|
SFApproveTokens?: undefined;
|
|
3449
|
+
SummerfiUnsub?: undefined;
|
|
3450
|
+
SummerfiUnsubV2?: undefined;
|
|
3451
|
+
AaveV4Supply?: undefined;
|
|
3452
|
+
AaveV4Withdraw?: undefined;
|
|
3453
|
+
AaveV4Borrow?: undefined;
|
|
3454
|
+
AaveV4Payback?: undefined;
|
|
3455
|
+
AaveV4CollateralSwitch?: undefined;
|
|
3372
3456
|
AaveV3RatioTrigger?: undefined;
|
|
3373
3457
|
GasFeeTakerL2?: undefined;
|
|
3374
3458
|
AaveV3RatioCheck?: undefined;
|
|
@@ -3381,6 +3465,7 @@ declare const otherAddressesAllChains: {
|
|
|
3381
3465
|
DFSRegistry: string;
|
|
3382
3466
|
DFSProxyRegistry: string;
|
|
3383
3467
|
ProxyRegistry: string;
|
|
3468
|
+
SFProxyEntryPoint: string;
|
|
3384
3469
|
McdCdpManager: string;
|
|
3385
3470
|
BCdpManager: string;
|
|
3386
3471
|
AaveDefaultMarket: string;
|
|
@@ -3402,6 +3487,7 @@ declare const otherAddressesAllChains: {
|
|
|
3402
3487
|
RecipeExecutorForTxSaver: string;
|
|
3403
3488
|
DFSRegistry: string;
|
|
3404
3489
|
ProxyRegistry: string;
|
|
3490
|
+
SFProxyEntryPoint: string;
|
|
3405
3491
|
DSGuardFactory: string;
|
|
3406
3492
|
AdminVault: string;
|
|
3407
3493
|
DefisaverLogger: string;
|
|
@@ -3424,6 +3510,7 @@ declare const otherAddressesAllChains: {
|
|
|
3424
3510
|
RecipeExecutorForTxSaver: string;
|
|
3425
3511
|
DFSRegistry: string;
|
|
3426
3512
|
ProxyRegistry: string;
|
|
3513
|
+
SFProxyEntryPoint: string;
|
|
3427
3514
|
DSGuardFactory: string;
|
|
3428
3515
|
AdminVault: string;
|
|
3429
3516
|
DefisaverLogger: string;
|
|
@@ -3451,6 +3538,7 @@ declare const otherAddressesAllChains: {
|
|
|
3451
3538
|
RecipeExecutorForTxSaver?: undefined;
|
|
3452
3539
|
DFSProxyRegistry?: undefined;
|
|
3453
3540
|
ProxyRegistry?: undefined;
|
|
3541
|
+
SFProxyEntryPoint?: undefined;
|
|
3454
3542
|
McdCdpManager?: undefined;
|
|
3455
3543
|
BCdpManager?: undefined;
|
|
3456
3544
|
AaveDefaultMarket?: undefined;
|
|
@@ -3472,6 +3560,7 @@ declare const otherAddressesAllChains: {
|
|
|
3472
3560
|
RecipeExecutorForTxSaver?: undefined;
|
|
3473
3561
|
DFSProxyRegistry?: undefined;
|
|
3474
3562
|
ProxyRegistry?: undefined;
|
|
3563
|
+
SFProxyEntryPoint?: undefined;
|
|
3475
3564
|
McdCdpManager?: undefined;
|
|
3476
3565
|
BCdpManager?: undefined;
|
|
3477
3566
|
AaveDefaultMarket?: undefined;
|
|
@@ -3493,6 +3582,7 @@ declare const otherAddresses: (chainId?: null) => {
|
|
|
3493
3582
|
DFSRegistry: string;
|
|
3494
3583
|
DFSProxyRegistry: string;
|
|
3495
3584
|
ProxyRegistry: string;
|
|
3585
|
+
SFProxyEntryPoint: string;
|
|
3496
3586
|
McdCdpManager: string;
|
|
3497
3587
|
BCdpManager: string;
|
|
3498
3588
|
AaveDefaultMarket: string;
|
|
@@ -3514,6 +3604,7 @@ declare const otherAddresses: (chainId?: null) => {
|
|
|
3514
3604
|
RecipeExecutorForTxSaver: string;
|
|
3515
3605
|
DFSRegistry: string;
|
|
3516
3606
|
ProxyRegistry: string;
|
|
3607
|
+
SFProxyEntryPoint: string;
|
|
3517
3608
|
DSGuardFactory: string;
|
|
3518
3609
|
AdminVault: string;
|
|
3519
3610
|
DefisaverLogger: string;
|
|
@@ -3536,6 +3627,7 @@ declare const otherAddresses: (chainId?: null) => {
|
|
|
3536
3627
|
RecipeExecutorForTxSaver: string;
|
|
3537
3628
|
DFSRegistry: string;
|
|
3538
3629
|
ProxyRegistry: string;
|
|
3630
|
+
SFProxyEntryPoint: string;
|
|
3539
3631
|
DSGuardFactory: string;
|
|
3540
3632
|
AdminVault: string;
|
|
3541
3633
|
DefisaverLogger: string;
|
|
@@ -3563,6 +3655,7 @@ declare const otherAddresses: (chainId?: null) => {
|
|
|
3563
3655
|
RecipeExecutorForTxSaver?: undefined;
|
|
3564
3656
|
DFSProxyRegistry?: undefined;
|
|
3565
3657
|
ProxyRegistry?: undefined;
|
|
3658
|
+
SFProxyEntryPoint?: undefined;
|
|
3566
3659
|
McdCdpManager?: undefined;
|
|
3567
3660
|
BCdpManager?: undefined;
|
|
3568
3661
|
AaveDefaultMarket?: undefined;
|
|
@@ -3584,6 +3677,7 @@ declare const otherAddresses: (chainId?: null) => {
|
|
|
3584
3677
|
RecipeExecutorForTxSaver?: undefined;
|
|
3585
3678
|
DFSProxyRegistry?: undefined;
|
|
3586
3679
|
ProxyRegistry?: undefined;
|
|
3680
|
+
SFProxyEntryPoint?: undefined;
|
|
3587
3681
|
McdCdpManager?: undefined;
|
|
3588
3682
|
BCdpManager?: undefined;
|
|
3589
3683
|
AaveDefaultMarket?: undefined;
|
|
@@ -3887,6 +3981,13 @@ declare const _default: {
|
|
|
3887
3981
|
UmbrellaStake: string;
|
|
3888
3982
|
UmbrellaUnstake: string;
|
|
3889
3983
|
SFApproveTokens: string;
|
|
3984
|
+
SummerfiUnsub: string;
|
|
3985
|
+
SummerfiUnsubV2: string;
|
|
3986
|
+
AaveV4Supply: string;
|
|
3987
|
+
AaveV4Withdraw: string;
|
|
3988
|
+
AaveV4Borrow: string;
|
|
3989
|
+
AaveV4Payback: string;
|
|
3990
|
+
AaveV4CollateralSwitch: string;
|
|
3890
3991
|
AaveV3DelegateCredit?: undefined;
|
|
3891
3992
|
AaveV3RatioTrigger?: undefined;
|
|
3892
3993
|
GasFeeTakerL2?: undefined;
|
|
@@ -3944,6 +4045,8 @@ declare const _default: {
|
|
|
3944
4045
|
CompV3Transfer: string;
|
|
3945
4046
|
CompV3Withdraw: string;
|
|
3946
4047
|
SFApproveTokens: string;
|
|
4048
|
+
SummerfiUnsub: string;
|
|
4049
|
+
SummerfiUnsubV2: string;
|
|
3947
4050
|
AutomationV2Unsub?: undefined;
|
|
3948
4051
|
TransferNFT?: undefined;
|
|
3949
4052
|
SDaiWrap?: undefined;
|
|
@@ -4171,6 +4274,11 @@ declare const _default: {
|
|
|
4171
4274
|
UmbrellaClaimRewards?: undefined;
|
|
4172
4275
|
UmbrellaStake?: undefined;
|
|
4173
4276
|
UmbrellaUnstake?: undefined;
|
|
4277
|
+
AaveV4Supply?: undefined;
|
|
4278
|
+
AaveV4Withdraw?: undefined;
|
|
4279
|
+
AaveV4Borrow?: undefined;
|
|
4280
|
+
AaveV4Payback?: undefined;
|
|
4281
|
+
AaveV4CollateralSwitch?: undefined;
|
|
4174
4282
|
MorphoBlueView?: undefined;
|
|
4175
4283
|
} | {
|
|
4176
4284
|
DFSSell: string;
|
|
@@ -4248,6 +4356,8 @@ declare const _default: {
|
|
|
4248
4356
|
FluidDexPayback: string;
|
|
4249
4357
|
FluidDexWithdraw: string;
|
|
4250
4358
|
SFApproveTokens: string;
|
|
4359
|
+
SummerfiUnsub: string;
|
|
4360
|
+
SummerfiUnsubV2: string;
|
|
4251
4361
|
MorphoBlueSupply: string;
|
|
4252
4362
|
MorphoBlueSupplyCollateral: string;
|
|
4253
4363
|
MorphoBlueWithdraw: string;
|
|
@@ -4450,6 +4560,11 @@ declare const _default: {
|
|
|
4450
4560
|
UmbrellaClaimRewards?: undefined;
|
|
4451
4561
|
UmbrellaStake?: undefined;
|
|
4452
4562
|
UmbrellaUnstake?: undefined;
|
|
4563
|
+
AaveV4Supply?: undefined;
|
|
4564
|
+
AaveV4Withdraw?: undefined;
|
|
4565
|
+
AaveV4Borrow?: undefined;
|
|
4566
|
+
AaveV4Payback?: undefined;
|
|
4567
|
+
AaveV4CollateralSwitch?: undefined;
|
|
4453
4568
|
AaveV3DelegateCredit?: undefined;
|
|
4454
4569
|
AaveV3RatioTrigger?: undefined;
|
|
4455
4570
|
} | {
|
|
@@ -4521,6 +4636,8 @@ declare const _default: {
|
|
|
4521
4636
|
FluidDexWithdraw: string;
|
|
4522
4637
|
TokenizedVaultAdapter: string;
|
|
4523
4638
|
SFApproveTokens: string;
|
|
4639
|
+
SummerfiUnsub: string;
|
|
4640
|
+
SummerfiUnsubV2: string;
|
|
4524
4641
|
AutomationV2Unsub?: undefined;
|
|
4525
4642
|
SendTokenAndUnwrap?: undefined;
|
|
4526
4643
|
SDaiWrap?: undefined;
|
|
@@ -4729,6 +4846,11 @@ declare const _default: {
|
|
|
4729
4846
|
UmbrellaClaimRewards?: undefined;
|
|
4730
4847
|
UmbrellaStake?: undefined;
|
|
4731
4848
|
UmbrellaUnstake?: undefined;
|
|
4849
|
+
AaveV4Supply?: undefined;
|
|
4850
|
+
AaveV4Withdraw?: undefined;
|
|
4851
|
+
AaveV4Borrow?: undefined;
|
|
4852
|
+
AaveV4Payback?: undefined;
|
|
4853
|
+
AaveV4CollateralSwitch?: undefined;
|
|
4732
4854
|
AaveV3DelegateCredit?: undefined;
|
|
4733
4855
|
AaveV3RatioTrigger?: undefined;
|
|
4734
4856
|
AaveV3RatioCheck?: undefined;
|
|
@@ -5008,6 +5130,13 @@ declare const _default: {
|
|
|
5008
5130
|
UmbrellaStake?: undefined;
|
|
5009
5131
|
UmbrellaUnstake?: undefined;
|
|
5010
5132
|
SFApproveTokens?: undefined;
|
|
5133
|
+
SummerfiUnsub?: undefined;
|
|
5134
|
+
SummerfiUnsubV2?: undefined;
|
|
5135
|
+
AaveV4Supply?: undefined;
|
|
5136
|
+
AaveV4Withdraw?: undefined;
|
|
5137
|
+
AaveV4Borrow?: undefined;
|
|
5138
|
+
AaveV4Payback?: undefined;
|
|
5139
|
+
AaveV4CollateralSwitch?: undefined;
|
|
5011
5140
|
AaveV3RatioTrigger?: undefined;
|
|
5012
5141
|
GasFeeTakerL2?: undefined;
|
|
5013
5142
|
AaveV3RatioCheck?: undefined;
|
|
@@ -5288,6 +5417,13 @@ declare const _default: {
|
|
|
5288
5417
|
UmbrellaStake?: undefined;
|
|
5289
5418
|
UmbrellaUnstake?: undefined;
|
|
5290
5419
|
SFApproveTokens?: undefined;
|
|
5420
|
+
SummerfiUnsub?: undefined;
|
|
5421
|
+
SummerfiUnsubV2?: undefined;
|
|
5422
|
+
AaveV4Supply?: undefined;
|
|
5423
|
+
AaveV4Withdraw?: undefined;
|
|
5424
|
+
AaveV4Borrow?: undefined;
|
|
5425
|
+
AaveV4Payback?: undefined;
|
|
5426
|
+
AaveV4CollateralSwitch?: undefined;
|
|
5291
5427
|
AaveV3RatioTrigger?: undefined;
|
|
5292
5428
|
GasFeeTakerL2?: undefined;
|
|
5293
5429
|
AaveV3RatioCheck?: undefined;
|
|
@@ -5569,6 +5705,13 @@ declare const _default: {
|
|
|
5569
5705
|
UmbrellaStake: string;
|
|
5570
5706
|
UmbrellaUnstake: string;
|
|
5571
5707
|
SFApproveTokens: string;
|
|
5708
|
+
SummerfiUnsub: string;
|
|
5709
|
+
SummerfiUnsubV2: string;
|
|
5710
|
+
AaveV4Supply: string;
|
|
5711
|
+
AaveV4Withdraw: string;
|
|
5712
|
+
AaveV4Borrow: string;
|
|
5713
|
+
AaveV4Payback: string;
|
|
5714
|
+
AaveV4CollateralSwitch: string;
|
|
5572
5715
|
AaveV3DelegateCredit?: undefined;
|
|
5573
5716
|
AaveV3RatioTrigger?: undefined;
|
|
5574
5717
|
GasFeeTakerL2?: undefined;
|
|
@@ -5626,6 +5769,8 @@ declare const _default: {
|
|
|
5626
5769
|
CompV3Transfer: string;
|
|
5627
5770
|
CompV3Withdraw: string;
|
|
5628
5771
|
SFApproveTokens: string;
|
|
5772
|
+
SummerfiUnsub: string;
|
|
5773
|
+
SummerfiUnsubV2: string;
|
|
5629
5774
|
AutomationV2Unsub?: undefined;
|
|
5630
5775
|
TransferNFT?: undefined;
|
|
5631
5776
|
SDaiWrap?: undefined;
|
|
@@ -5853,6 +5998,11 @@ declare const _default: {
|
|
|
5853
5998
|
UmbrellaClaimRewards?: undefined;
|
|
5854
5999
|
UmbrellaStake?: undefined;
|
|
5855
6000
|
UmbrellaUnstake?: undefined;
|
|
6001
|
+
AaveV4Supply?: undefined;
|
|
6002
|
+
AaveV4Withdraw?: undefined;
|
|
6003
|
+
AaveV4Borrow?: undefined;
|
|
6004
|
+
AaveV4Payback?: undefined;
|
|
6005
|
+
AaveV4CollateralSwitch?: undefined;
|
|
5856
6006
|
MorphoBlueView?: undefined;
|
|
5857
6007
|
} | {
|
|
5858
6008
|
DFSSell: string;
|
|
@@ -5930,6 +6080,8 @@ declare const _default: {
|
|
|
5930
6080
|
FluidDexPayback: string;
|
|
5931
6081
|
FluidDexWithdraw: string;
|
|
5932
6082
|
SFApproveTokens: string;
|
|
6083
|
+
SummerfiUnsub: string;
|
|
6084
|
+
SummerfiUnsubV2: string;
|
|
5933
6085
|
MorphoBlueSupply: string;
|
|
5934
6086
|
MorphoBlueSupplyCollateral: string;
|
|
5935
6087
|
MorphoBlueWithdraw: string;
|
|
@@ -6132,6 +6284,11 @@ declare const _default: {
|
|
|
6132
6284
|
UmbrellaClaimRewards?: undefined;
|
|
6133
6285
|
UmbrellaStake?: undefined;
|
|
6134
6286
|
UmbrellaUnstake?: undefined;
|
|
6287
|
+
AaveV4Supply?: undefined;
|
|
6288
|
+
AaveV4Withdraw?: undefined;
|
|
6289
|
+
AaveV4Borrow?: undefined;
|
|
6290
|
+
AaveV4Payback?: undefined;
|
|
6291
|
+
AaveV4CollateralSwitch?: undefined;
|
|
6135
6292
|
AaveV3DelegateCredit?: undefined;
|
|
6136
6293
|
AaveV3RatioTrigger?: undefined;
|
|
6137
6294
|
} | {
|
|
@@ -6203,6 +6360,8 @@ declare const _default: {
|
|
|
6203
6360
|
FluidDexWithdraw: string;
|
|
6204
6361
|
TokenizedVaultAdapter: string;
|
|
6205
6362
|
SFApproveTokens: string;
|
|
6363
|
+
SummerfiUnsub: string;
|
|
6364
|
+
SummerfiUnsubV2: string;
|
|
6206
6365
|
AutomationV2Unsub?: undefined;
|
|
6207
6366
|
SendTokenAndUnwrap?: undefined;
|
|
6208
6367
|
SDaiWrap?: undefined;
|
|
@@ -6411,6 +6570,11 @@ declare const _default: {
|
|
|
6411
6570
|
UmbrellaClaimRewards?: undefined;
|
|
6412
6571
|
UmbrellaStake?: undefined;
|
|
6413
6572
|
UmbrellaUnstake?: undefined;
|
|
6573
|
+
AaveV4Supply?: undefined;
|
|
6574
|
+
AaveV4Withdraw?: undefined;
|
|
6575
|
+
AaveV4Borrow?: undefined;
|
|
6576
|
+
AaveV4Payback?: undefined;
|
|
6577
|
+
AaveV4CollateralSwitch?: undefined;
|
|
6414
6578
|
AaveV3DelegateCredit?: undefined;
|
|
6415
6579
|
AaveV3RatioTrigger?: undefined;
|
|
6416
6580
|
AaveV3RatioCheck?: undefined;
|
|
@@ -6690,6 +6854,13 @@ declare const _default: {
|
|
|
6690
6854
|
UmbrellaStake?: undefined;
|
|
6691
6855
|
UmbrellaUnstake?: undefined;
|
|
6692
6856
|
SFApproveTokens?: undefined;
|
|
6857
|
+
SummerfiUnsub?: undefined;
|
|
6858
|
+
SummerfiUnsubV2?: undefined;
|
|
6859
|
+
AaveV4Supply?: undefined;
|
|
6860
|
+
AaveV4Withdraw?: undefined;
|
|
6861
|
+
AaveV4Borrow?: undefined;
|
|
6862
|
+
AaveV4Payback?: undefined;
|
|
6863
|
+
AaveV4CollateralSwitch?: undefined;
|
|
6693
6864
|
AaveV3RatioTrigger?: undefined;
|
|
6694
6865
|
GasFeeTakerL2?: undefined;
|
|
6695
6866
|
AaveV3RatioCheck?: undefined;
|
|
@@ -6970,6 +7141,13 @@ declare const _default: {
|
|
|
6970
7141
|
UmbrellaStake?: undefined;
|
|
6971
7142
|
UmbrellaUnstake?: undefined;
|
|
6972
7143
|
SFApproveTokens?: undefined;
|
|
7144
|
+
SummerfiUnsub?: undefined;
|
|
7145
|
+
SummerfiUnsubV2?: undefined;
|
|
7146
|
+
AaveV4Supply?: undefined;
|
|
7147
|
+
AaveV4Withdraw?: undefined;
|
|
7148
|
+
AaveV4Borrow?: undefined;
|
|
7149
|
+
AaveV4Payback?: undefined;
|
|
7150
|
+
AaveV4CollateralSwitch?: undefined;
|
|
6973
7151
|
AaveV3RatioTrigger?: undefined;
|
|
6974
7152
|
GasFeeTakerL2?: undefined;
|
|
6975
7153
|
AaveV3RatioCheck?: undefined;
|
|
@@ -6982,6 +7160,7 @@ declare const _default: {
|
|
|
6982
7160
|
DFSRegistry: string;
|
|
6983
7161
|
DFSProxyRegistry: string;
|
|
6984
7162
|
ProxyRegistry: string;
|
|
7163
|
+
SFProxyEntryPoint: string;
|
|
6985
7164
|
McdCdpManager: string;
|
|
6986
7165
|
BCdpManager: string;
|
|
6987
7166
|
AaveDefaultMarket: string;
|
|
@@ -7003,6 +7182,7 @@ declare const _default: {
|
|
|
7003
7182
|
RecipeExecutorForTxSaver: string;
|
|
7004
7183
|
DFSRegistry: string;
|
|
7005
7184
|
ProxyRegistry: string;
|
|
7185
|
+
SFProxyEntryPoint: string;
|
|
7006
7186
|
DSGuardFactory: string;
|
|
7007
7187
|
AdminVault: string;
|
|
7008
7188
|
DefisaverLogger: string;
|
|
@@ -7025,6 +7205,7 @@ declare const _default: {
|
|
|
7025
7205
|
RecipeExecutorForTxSaver: string;
|
|
7026
7206
|
DFSRegistry: string;
|
|
7027
7207
|
ProxyRegistry: string;
|
|
7208
|
+
SFProxyEntryPoint: string;
|
|
7028
7209
|
DSGuardFactory: string;
|
|
7029
7210
|
AdminVault: string;
|
|
7030
7211
|
DefisaverLogger: string;
|
|
@@ -7052,6 +7233,7 @@ declare const _default: {
|
|
|
7052
7233
|
RecipeExecutorForTxSaver?: undefined;
|
|
7053
7234
|
DFSProxyRegistry?: undefined;
|
|
7054
7235
|
ProxyRegistry?: undefined;
|
|
7236
|
+
SFProxyEntryPoint?: undefined;
|
|
7055
7237
|
McdCdpManager?: undefined;
|
|
7056
7238
|
BCdpManager?: undefined;
|
|
7057
7239
|
AaveDefaultMarket?: undefined;
|
|
@@ -7073,6 +7255,7 @@ declare const _default: {
|
|
|
7073
7255
|
RecipeExecutorForTxSaver?: undefined;
|
|
7074
7256
|
DFSProxyRegistry?: undefined;
|
|
7075
7257
|
ProxyRegistry?: undefined;
|
|
7258
|
+
SFProxyEntryPoint?: undefined;
|
|
7076
7259
|
McdCdpManager?: undefined;
|
|
7077
7260
|
BCdpManager?: undefined;
|
|
7078
7261
|
AaveDefaultMarket?: undefined;
|
|
@@ -7094,6 +7277,7 @@ declare const _default: {
|
|
|
7094
7277
|
DFSRegistry: string;
|
|
7095
7278
|
DFSProxyRegistry: string;
|
|
7096
7279
|
ProxyRegistry: string;
|
|
7280
|
+
SFProxyEntryPoint: string;
|
|
7097
7281
|
McdCdpManager: string;
|
|
7098
7282
|
BCdpManager: string;
|
|
7099
7283
|
AaveDefaultMarket: string;
|
|
@@ -7115,6 +7299,7 @@ declare const _default: {
|
|
|
7115
7299
|
RecipeExecutorForTxSaver: string;
|
|
7116
7300
|
DFSRegistry: string;
|
|
7117
7301
|
ProxyRegistry: string;
|
|
7302
|
+
SFProxyEntryPoint: string;
|
|
7118
7303
|
DSGuardFactory: string;
|
|
7119
7304
|
AdminVault: string;
|
|
7120
7305
|
DefisaverLogger: string;
|
|
@@ -7137,6 +7322,7 @@ declare const _default: {
|
|
|
7137
7322
|
RecipeExecutorForTxSaver: string;
|
|
7138
7323
|
DFSRegistry: string;
|
|
7139
7324
|
ProxyRegistry: string;
|
|
7325
|
+
SFProxyEntryPoint: string;
|
|
7140
7326
|
DSGuardFactory: string;
|
|
7141
7327
|
AdminVault: string;
|
|
7142
7328
|
DefisaverLogger: string;
|
|
@@ -7164,6 +7350,7 @@ declare const _default: {
|
|
|
7164
7350
|
RecipeExecutorForTxSaver?: undefined;
|
|
7165
7351
|
DFSProxyRegistry?: undefined;
|
|
7166
7352
|
ProxyRegistry?: undefined;
|
|
7353
|
+
SFProxyEntryPoint?: undefined;
|
|
7167
7354
|
McdCdpManager?: undefined;
|
|
7168
7355
|
BCdpManager?: undefined;
|
|
7169
7356
|
AaveDefaultMarket?: undefined;
|
|
@@ -7185,6 +7372,7 @@ declare const _default: {
|
|
|
7185
7372
|
RecipeExecutorForTxSaver?: undefined;
|
|
7186
7373
|
DFSProxyRegistry?: undefined;
|
|
7187
7374
|
ProxyRegistry?: undefined;
|
|
7375
|
+
SFProxyEntryPoint?: undefined;
|
|
7188
7376
|
McdCdpManager?: undefined;
|
|
7189
7377
|
BCdpManager?: undefined;
|
|
7190
7378
|
AaveDefaultMarket?: undefined;
|