@defisaver/sdk 1.3.15-dev-dev → 1.3.15-unsub1-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/summerfi/SummerfiUnsubAction.d.ts +11 -0
- package/esm/src/actions/summerfi/SummerfiUnsubAction.js +16 -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 +12 -0
- package/esm/src/addresses.js +2 -0
- package/esm/src/index.d.ts +48 -0
- package/package.json +1 -1
- package/src/actions/summerfi/SummerfiUnsubAction.ts +25 -0
- package/src/actions/summerfi/SummerfiUnsubV2Action.ts +31 -0
- package/src/actions/summerfi/index.ts +2 -0
- package/src/addresses.ts +75 -36
- package/umd/index.js +307 -247
|
@@ -0,0 +1,11 @@
|
|
|
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
|
+
*/
|
|
10
|
+
constructor(cdpIds: uint256[]);
|
|
11
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
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
|
+
*/
|
|
10
|
+
constructor(cdpIds) {
|
|
11
|
+
super('SummerfiUnsub', getAddr('SummerfiUnsub'), ['uint256[]'], [cdpIds]);
|
|
12
|
+
this.mappableArgs = [
|
|
13
|
+
this.args[0],
|
|
14
|
+
];
|
|
15
|
+
}
|
|
16
|
+
}
|
|
@@ -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
|
+
SummerfiUnsubAction: string;
|
|
279
|
+
SummerfiUnsubV2Action: string;
|
|
278
280
|
AaveV3DelegateCredit?: undefined;
|
|
279
281
|
AaveV3RatioTrigger?: undefined;
|
|
280
282
|
GasFeeTakerL2?: undefined;
|
|
@@ -559,6 +561,8 @@ export declare const actionAddresses: {
|
|
|
559
561
|
UmbrellaClaimRewards?: undefined;
|
|
560
562
|
UmbrellaStake?: undefined;
|
|
561
563
|
UmbrellaUnstake?: undefined;
|
|
564
|
+
SummerfiUnsubAction?: undefined;
|
|
565
|
+
SummerfiUnsubV2Action?: undefined;
|
|
562
566
|
MorphoBlueView?: undefined;
|
|
563
567
|
} | {
|
|
564
568
|
DFSSell: string;
|
|
@@ -838,6 +842,8 @@ export declare const actionAddresses: {
|
|
|
838
842
|
UmbrellaClaimRewards?: undefined;
|
|
839
843
|
UmbrellaStake?: undefined;
|
|
840
844
|
UmbrellaUnstake?: undefined;
|
|
845
|
+
SummerfiUnsubAction?: undefined;
|
|
846
|
+
SummerfiUnsubV2Action?: undefined;
|
|
841
847
|
AaveV3DelegateCredit?: undefined;
|
|
842
848
|
AaveV3RatioTrigger?: undefined;
|
|
843
849
|
} | {
|
|
@@ -1117,6 +1123,8 @@ export declare const actionAddresses: {
|
|
|
1117
1123
|
UmbrellaClaimRewards?: undefined;
|
|
1118
1124
|
UmbrellaStake?: undefined;
|
|
1119
1125
|
UmbrellaUnstake?: undefined;
|
|
1126
|
+
SummerfiUnsubAction?: undefined;
|
|
1127
|
+
SummerfiUnsubV2Action?: undefined;
|
|
1120
1128
|
AaveV3DelegateCredit?: undefined;
|
|
1121
1129
|
AaveV3RatioTrigger?: undefined;
|
|
1122
1130
|
AaveV3RatioCheck?: undefined;
|
|
@@ -1396,6 +1404,8 @@ export declare const actionAddresses: {
|
|
|
1396
1404
|
UmbrellaStake?: undefined;
|
|
1397
1405
|
UmbrellaUnstake?: undefined;
|
|
1398
1406
|
SFApproveTokens?: undefined;
|
|
1407
|
+
SummerfiUnsubAction?: undefined;
|
|
1408
|
+
SummerfiUnsubV2Action?: 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
|
+
SummerfiUnsubAction?: undefined;
|
|
1690
|
+
SummerfiUnsubV2Action?: undefined;
|
|
1679
1691
|
AaveV3RatioTrigger?: undefined;
|
|
1680
1692
|
GasFeeTakerL2?: undefined;
|
|
1681
1693
|
AaveV3RatioCheck?: undefined;
|
package/esm/src/addresses.js
CHANGED
|
@@ -316,6 +316,8 @@ export const actionAddresses = {
|
|
|
316
316
|
UmbrellaUnstake: '0xc27634A1D6c5Ed151ebd963Ef35487000C28dc0b',
|
|
317
317
|
// summer.fi
|
|
318
318
|
SFApproveTokens: '0x0aC29D44eeC8e8f3b010c2e8FC960957db0c8298',
|
|
319
|
+
SummerfiUnsubAction: '0x26c39fe05466dba72a98d095d019dc5e067f6b28',
|
|
320
|
+
SummerfiUnsubV2Action: '0xc3a61ca1c53ca4bebc8329a0ece2128fcac70fc4',
|
|
319
321
|
},
|
|
320
322
|
[NETWORKS.optimism.chainId]: {
|
|
321
323
|
DFSSell: '0x9f234af5c10c136863a20865ba00b26951ab8269',
|
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
|
+
SummerfiUnsubAction: string;
|
|
290
|
+
SummerfiUnsubV2Action: string;
|
|
289
291
|
AaveV3DelegateCredit?: undefined;
|
|
290
292
|
AaveV3RatioTrigger?: undefined;
|
|
291
293
|
GasFeeTakerL2?: undefined;
|
|
@@ -570,6 +572,8 @@ declare const actionAddressesAllChains: {
|
|
|
570
572
|
UmbrellaClaimRewards?: undefined;
|
|
571
573
|
UmbrellaStake?: undefined;
|
|
572
574
|
UmbrellaUnstake?: undefined;
|
|
575
|
+
SummerfiUnsubAction?: undefined;
|
|
576
|
+
SummerfiUnsubV2Action?: undefined;
|
|
573
577
|
MorphoBlueView?: undefined;
|
|
574
578
|
} | {
|
|
575
579
|
DFSSell: string;
|
|
@@ -849,6 +853,8 @@ declare const actionAddressesAllChains: {
|
|
|
849
853
|
UmbrellaClaimRewards?: undefined;
|
|
850
854
|
UmbrellaStake?: undefined;
|
|
851
855
|
UmbrellaUnstake?: undefined;
|
|
856
|
+
SummerfiUnsubAction?: undefined;
|
|
857
|
+
SummerfiUnsubV2Action?: undefined;
|
|
852
858
|
AaveV3DelegateCredit?: undefined;
|
|
853
859
|
AaveV3RatioTrigger?: undefined;
|
|
854
860
|
} | {
|
|
@@ -1128,6 +1134,8 @@ declare const actionAddressesAllChains: {
|
|
|
1128
1134
|
UmbrellaClaimRewards?: undefined;
|
|
1129
1135
|
UmbrellaStake?: undefined;
|
|
1130
1136
|
UmbrellaUnstake?: undefined;
|
|
1137
|
+
SummerfiUnsubAction?: undefined;
|
|
1138
|
+
SummerfiUnsubV2Action?: undefined;
|
|
1131
1139
|
AaveV3DelegateCredit?: undefined;
|
|
1132
1140
|
AaveV3RatioTrigger?: undefined;
|
|
1133
1141
|
AaveV3RatioCheck?: undefined;
|
|
@@ -1407,6 +1415,8 @@ declare const actionAddressesAllChains: {
|
|
|
1407
1415
|
UmbrellaStake?: undefined;
|
|
1408
1416
|
UmbrellaUnstake?: undefined;
|
|
1409
1417
|
SFApproveTokens?: undefined;
|
|
1418
|
+
SummerfiUnsubAction?: undefined;
|
|
1419
|
+
SummerfiUnsubV2Action?: 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
|
+
SummerfiUnsubAction?: undefined;
|
|
1701
|
+
SummerfiUnsubV2Action?: 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
|
+
SummerfiUnsubAction: string;
|
|
1984
|
+
SummerfiUnsubV2Action: string;
|
|
1971
1985
|
AaveV3DelegateCredit?: undefined;
|
|
1972
1986
|
AaveV3RatioTrigger?: undefined;
|
|
1973
1987
|
GasFeeTakerL2?: undefined;
|
|
@@ -2252,6 +2266,8 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
2252
2266
|
UmbrellaClaimRewards?: undefined;
|
|
2253
2267
|
UmbrellaStake?: undefined;
|
|
2254
2268
|
UmbrellaUnstake?: undefined;
|
|
2269
|
+
SummerfiUnsubAction?: undefined;
|
|
2270
|
+
SummerfiUnsubV2Action?: undefined;
|
|
2255
2271
|
MorphoBlueView?: undefined;
|
|
2256
2272
|
} | {
|
|
2257
2273
|
DFSSell: string;
|
|
@@ -2531,6 +2547,8 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
2531
2547
|
UmbrellaClaimRewards?: undefined;
|
|
2532
2548
|
UmbrellaStake?: undefined;
|
|
2533
2549
|
UmbrellaUnstake?: undefined;
|
|
2550
|
+
SummerfiUnsubAction?: undefined;
|
|
2551
|
+
SummerfiUnsubV2Action?: undefined;
|
|
2534
2552
|
AaveV3DelegateCredit?: undefined;
|
|
2535
2553
|
AaveV3RatioTrigger?: undefined;
|
|
2536
2554
|
} | {
|
|
@@ -2810,6 +2828,8 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
2810
2828
|
UmbrellaClaimRewards?: undefined;
|
|
2811
2829
|
UmbrellaStake?: undefined;
|
|
2812
2830
|
UmbrellaUnstake?: undefined;
|
|
2831
|
+
SummerfiUnsubAction?: undefined;
|
|
2832
|
+
SummerfiUnsubV2Action?: undefined;
|
|
2813
2833
|
AaveV3DelegateCredit?: undefined;
|
|
2814
2834
|
AaveV3RatioTrigger?: undefined;
|
|
2815
2835
|
AaveV3RatioCheck?: undefined;
|
|
@@ -3089,6 +3109,8 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
3089
3109
|
UmbrellaStake?: undefined;
|
|
3090
3110
|
UmbrellaUnstake?: undefined;
|
|
3091
3111
|
SFApproveTokens?: undefined;
|
|
3112
|
+
SummerfiUnsubAction?: undefined;
|
|
3113
|
+
SummerfiUnsubV2Action?: 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
|
+
SummerfiUnsubAction?: undefined;
|
|
3395
|
+
SummerfiUnsubV2Action?: undefined;
|
|
3372
3396
|
AaveV3RatioTrigger?: undefined;
|
|
3373
3397
|
GasFeeTakerL2?: undefined;
|
|
3374
3398
|
AaveV3RatioCheck?: undefined;
|
|
@@ -3887,6 +3911,8 @@ declare const _default: {
|
|
|
3887
3911
|
UmbrellaStake: string;
|
|
3888
3912
|
UmbrellaUnstake: string;
|
|
3889
3913
|
SFApproveTokens: string;
|
|
3914
|
+
SummerfiUnsubAction: string;
|
|
3915
|
+
SummerfiUnsubV2Action: string;
|
|
3890
3916
|
AaveV3DelegateCredit?: undefined;
|
|
3891
3917
|
AaveV3RatioTrigger?: undefined;
|
|
3892
3918
|
GasFeeTakerL2?: undefined;
|
|
@@ -4171,6 +4197,8 @@ declare const _default: {
|
|
|
4171
4197
|
UmbrellaClaimRewards?: undefined;
|
|
4172
4198
|
UmbrellaStake?: undefined;
|
|
4173
4199
|
UmbrellaUnstake?: undefined;
|
|
4200
|
+
SummerfiUnsubAction?: undefined;
|
|
4201
|
+
SummerfiUnsubV2Action?: undefined;
|
|
4174
4202
|
MorphoBlueView?: undefined;
|
|
4175
4203
|
} | {
|
|
4176
4204
|
DFSSell: string;
|
|
@@ -4450,6 +4478,8 @@ declare const _default: {
|
|
|
4450
4478
|
UmbrellaClaimRewards?: undefined;
|
|
4451
4479
|
UmbrellaStake?: undefined;
|
|
4452
4480
|
UmbrellaUnstake?: undefined;
|
|
4481
|
+
SummerfiUnsubAction?: undefined;
|
|
4482
|
+
SummerfiUnsubV2Action?: undefined;
|
|
4453
4483
|
AaveV3DelegateCredit?: undefined;
|
|
4454
4484
|
AaveV3RatioTrigger?: undefined;
|
|
4455
4485
|
} | {
|
|
@@ -4729,6 +4759,8 @@ declare const _default: {
|
|
|
4729
4759
|
UmbrellaClaimRewards?: undefined;
|
|
4730
4760
|
UmbrellaStake?: undefined;
|
|
4731
4761
|
UmbrellaUnstake?: undefined;
|
|
4762
|
+
SummerfiUnsubAction?: undefined;
|
|
4763
|
+
SummerfiUnsubV2Action?: undefined;
|
|
4732
4764
|
AaveV3DelegateCredit?: undefined;
|
|
4733
4765
|
AaveV3RatioTrigger?: undefined;
|
|
4734
4766
|
AaveV3RatioCheck?: undefined;
|
|
@@ -5008,6 +5040,8 @@ declare const _default: {
|
|
|
5008
5040
|
UmbrellaStake?: undefined;
|
|
5009
5041
|
UmbrellaUnstake?: undefined;
|
|
5010
5042
|
SFApproveTokens?: undefined;
|
|
5043
|
+
SummerfiUnsubAction?: undefined;
|
|
5044
|
+
SummerfiUnsubV2Action?: undefined;
|
|
5011
5045
|
AaveV3RatioTrigger?: undefined;
|
|
5012
5046
|
GasFeeTakerL2?: undefined;
|
|
5013
5047
|
AaveV3RatioCheck?: undefined;
|
|
@@ -5288,6 +5322,8 @@ declare const _default: {
|
|
|
5288
5322
|
UmbrellaStake?: undefined;
|
|
5289
5323
|
UmbrellaUnstake?: undefined;
|
|
5290
5324
|
SFApproveTokens?: undefined;
|
|
5325
|
+
SummerfiUnsubAction?: undefined;
|
|
5326
|
+
SummerfiUnsubV2Action?: undefined;
|
|
5291
5327
|
AaveV3RatioTrigger?: undefined;
|
|
5292
5328
|
GasFeeTakerL2?: undefined;
|
|
5293
5329
|
AaveV3RatioCheck?: undefined;
|
|
@@ -5569,6 +5605,8 @@ declare const _default: {
|
|
|
5569
5605
|
UmbrellaStake: string;
|
|
5570
5606
|
UmbrellaUnstake: string;
|
|
5571
5607
|
SFApproveTokens: string;
|
|
5608
|
+
SummerfiUnsubAction: string;
|
|
5609
|
+
SummerfiUnsubV2Action: string;
|
|
5572
5610
|
AaveV3DelegateCredit?: undefined;
|
|
5573
5611
|
AaveV3RatioTrigger?: undefined;
|
|
5574
5612
|
GasFeeTakerL2?: undefined;
|
|
@@ -5853,6 +5891,8 @@ declare const _default: {
|
|
|
5853
5891
|
UmbrellaClaimRewards?: undefined;
|
|
5854
5892
|
UmbrellaStake?: undefined;
|
|
5855
5893
|
UmbrellaUnstake?: undefined;
|
|
5894
|
+
SummerfiUnsubAction?: undefined;
|
|
5895
|
+
SummerfiUnsubV2Action?: undefined;
|
|
5856
5896
|
MorphoBlueView?: undefined;
|
|
5857
5897
|
} | {
|
|
5858
5898
|
DFSSell: string;
|
|
@@ -6132,6 +6172,8 @@ declare const _default: {
|
|
|
6132
6172
|
UmbrellaClaimRewards?: undefined;
|
|
6133
6173
|
UmbrellaStake?: undefined;
|
|
6134
6174
|
UmbrellaUnstake?: undefined;
|
|
6175
|
+
SummerfiUnsubAction?: undefined;
|
|
6176
|
+
SummerfiUnsubV2Action?: undefined;
|
|
6135
6177
|
AaveV3DelegateCredit?: undefined;
|
|
6136
6178
|
AaveV3RatioTrigger?: undefined;
|
|
6137
6179
|
} | {
|
|
@@ -6411,6 +6453,8 @@ declare const _default: {
|
|
|
6411
6453
|
UmbrellaClaimRewards?: undefined;
|
|
6412
6454
|
UmbrellaStake?: undefined;
|
|
6413
6455
|
UmbrellaUnstake?: undefined;
|
|
6456
|
+
SummerfiUnsubAction?: undefined;
|
|
6457
|
+
SummerfiUnsubV2Action?: undefined;
|
|
6414
6458
|
AaveV3DelegateCredit?: undefined;
|
|
6415
6459
|
AaveV3RatioTrigger?: undefined;
|
|
6416
6460
|
AaveV3RatioCheck?: undefined;
|
|
@@ -6690,6 +6734,8 @@ declare const _default: {
|
|
|
6690
6734
|
UmbrellaStake?: undefined;
|
|
6691
6735
|
UmbrellaUnstake?: undefined;
|
|
6692
6736
|
SFApproveTokens?: undefined;
|
|
6737
|
+
SummerfiUnsubAction?: undefined;
|
|
6738
|
+
SummerfiUnsubV2Action?: undefined;
|
|
6693
6739
|
AaveV3RatioTrigger?: undefined;
|
|
6694
6740
|
GasFeeTakerL2?: undefined;
|
|
6695
6741
|
AaveV3RatioCheck?: undefined;
|
|
@@ -6970,6 +7016,8 @@ declare const _default: {
|
|
|
6970
7016
|
UmbrellaStake?: undefined;
|
|
6971
7017
|
UmbrellaUnstake?: undefined;
|
|
6972
7018
|
SFApproveTokens?: undefined;
|
|
7019
|
+
SummerfiUnsubAction?: undefined;
|
|
7020
|
+
SummerfiUnsubV2Action?: undefined;
|
|
6973
7021
|
AaveV3RatioTrigger?: undefined;
|
|
6974
7022
|
GasFeeTakerL2?: undefined;
|
|
6975
7023
|
AaveV3RatioCheck?: undefined;
|
package/package.json
CHANGED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { Action } from '../../Action';
|
|
2
|
+
import { getAddr } from '../../addresses';
|
|
3
|
+
import { uint256 } from '../../types';
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @category Summerfi
|
|
7
|
+
*/
|
|
8
|
+
export class SummerfiUnsubAction extends Action {
|
|
9
|
+
/**
|
|
10
|
+
* @param cdpIds Array of CDP IDs to remove approval for
|
|
11
|
+
*/
|
|
12
|
+
constructor(
|
|
13
|
+
cdpIds: uint256[],
|
|
14
|
+
) {
|
|
15
|
+
super(
|
|
16
|
+
'SummerfiUnsub',
|
|
17
|
+
getAddr('SummerfiUnsub'),
|
|
18
|
+
['uint256[]'],
|
|
19
|
+
[cdpIds],
|
|
20
|
+
);
|
|
21
|
+
this.mappableArgs = [
|
|
22
|
+
this.args[0],
|
|
23
|
+
];
|
|
24
|
+
}
|
|
25
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { Action } from '../../Action';
|
|
2
|
+
import { getAddr } from '../../addresses';
|
|
3
|
+
import { uint256 } from '../../types';
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @category Summerfi
|
|
7
|
+
*/
|
|
8
|
+
export class SummerfiUnsubV2Action extends Action {
|
|
9
|
+
/**
|
|
10
|
+
* @param triggerIds Array of trigger ID arrays to remove
|
|
11
|
+
* @param triggerData Array of trigger data arrays (must match triggerIds length)
|
|
12
|
+
* @param removeAllowance Array of booleans indicating whether to remove allowance for each trigger group
|
|
13
|
+
*/
|
|
14
|
+
constructor(
|
|
15
|
+
triggerIds: uint256[][],
|
|
16
|
+
triggerData: string[][],
|
|
17
|
+
removeAllowance: boolean[],
|
|
18
|
+
) {
|
|
19
|
+
super(
|
|
20
|
+
'SummerfiUnsubV2',
|
|
21
|
+
getAddr('SummerfiUnsubV2'),
|
|
22
|
+
['uint256[][]', 'bytes[][]', 'bool[]'],
|
|
23
|
+
[triggerIds, triggerData, removeAllowance],
|
|
24
|
+
);
|
|
25
|
+
this.mappableArgs = [
|
|
26
|
+
this.args[0],
|
|
27
|
+
this.args[1],
|
|
28
|
+
this.args[2],
|
|
29
|
+
];
|
|
30
|
+
}
|
|
31
|
+
}
|
package/src/addresses.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { CONFIG, NETWORKS } from './config';
|
|
2
2
|
import { EthAddress } from './types';
|
|
3
|
+
import { SummerfiUnsubAction, SummerfiUnsubV2Action } from './actions/summerfi';
|
|
3
4
|
|
|
4
5
|
export const actionAddresses = {
|
|
5
6
|
[NETWORKS.ethereum.chainId]: {
|
|
@@ -35,10 +36,13 @@ export const actionAddresses = {
|
|
|
35
36
|
SkyUnstake: '0x4b6d3A01465fa88D7D596333D15832434a568452',
|
|
36
37
|
SkyClaimRewards: '0x8A2A23DfC0CD1738bD4408F1668E2B12ACD95369',
|
|
37
38
|
SkyStakingEngineOpen: '0x7F7669d926beeba495e8D97C6DAF6C000F05AEC0',
|
|
38
|
-
SkyStakingEngineSelectFarm:
|
|
39
|
+
SkyStakingEngineSelectFarm:
|
|
40
|
+
'0x44fe1615294E9D50faeb690D2a944EAF8B500892',
|
|
39
41
|
SkyStakingEngineStake: '0xBb7F34F8A7809Ffe0775D13a783fE885EBB9aea5',
|
|
40
|
-
SkyStakingEngineUnstake:
|
|
41
|
-
|
|
42
|
+
SkyStakingEngineUnstake:
|
|
43
|
+
'0x5456F09bBbBDB6bFad50A22256bAC7f3DDaab121',
|
|
44
|
+
SkyStakingEngineClaimRewards:
|
|
45
|
+
'0x0aF3F032A8544c63c35FD2995be8EE2Df68d2c21',
|
|
42
46
|
|
|
43
47
|
// maker
|
|
44
48
|
McdGenerate: '0xCb50a91C0f12f439b8bf11E9474B9c1ED62Bf7a3',
|
|
@@ -59,12 +63,16 @@ export const actionAddresses = {
|
|
|
59
63
|
ReflexerPayback: '0xdAa3963798C2E3F5c16AAcc9114fc727C450d0cb',
|
|
60
64
|
ReflexerGenerate: '0x8e8Fd178A5FAE3A29F9CB1A06aBBBCFd5B83beb7',
|
|
61
65
|
ReflexerOpen: '0x4704a7cBd4d913d1233765B70531D601b4384011',
|
|
62
|
-
ReflexerWithdrawStuckFunds:
|
|
66
|
+
ReflexerWithdrawStuckFunds:
|
|
67
|
+
'0x64759d064aaA1f9Ac7A458520Aad06128Da9b7b8',
|
|
63
68
|
|
|
64
69
|
// not deployed as currently not used
|
|
65
|
-
ReflexerNativeUniV2SaviourDeposit:
|
|
66
|
-
|
|
67
|
-
|
|
70
|
+
ReflexerNativeUniV2SaviourDeposit:
|
|
71
|
+
'0x0000000000000000000000000000000000000000',
|
|
72
|
+
ReflexerNativeUniV2SaviourGetReserves:
|
|
73
|
+
'0x0000000000000000000000000000000000000000',
|
|
74
|
+
ReflexerNativeUniV2SaviourWithdraw:
|
|
75
|
+
'0x0000000000000000000000000000000000000000',
|
|
68
76
|
|
|
69
77
|
// aave
|
|
70
78
|
AaveBorrow: '0x1B95E800a869bc3F89914470a7901D93D1401cD1',
|
|
@@ -77,7 +85,8 @@ export const actionAddresses = {
|
|
|
77
85
|
AaveClaimStkAave: '0x5Dcd9Dc0185a6Ab07a31e5284D16Ce9f0A79Ce99',
|
|
78
86
|
// aave v3
|
|
79
87
|
AaveV3Withdraw: '0x9D4e4b26A5E2e6Dad30C5d95F5cE78A8310F04C2',
|
|
80
|
-
AaveV3SwapBorrowRateMode:
|
|
88
|
+
AaveV3SwapBorrowRateMode:
|
|
89
|
+
'0x630F530Ac523C935cf2528E62D0A06F8900C5b1B',
|
|
81
90
|
AaveV3Supply: '0x91b3fCCEA2f2e0622Cc1fb54E12f5ac5aAa55a87',
|
|
82
91
|
AaveV3SetEMode: '0xBe7F735d7955e0461579E34266f41F928AE06D78',
|
|
83
92
|
AaveV3Payback: '0xe29265217D65F5a2ae41972E09C13E107D049004',
|
|
@@ -120,7 +129,8 @@ export const actionAddresses = {
|
|
|
120
129
|
SparkSetEMode: '0x2252a83Da69A237686eD9AC07a38DDA74ec7cE5f',
|
|
121
130
|
SparkSpTokenPayback: '0x57403bB33A4829EBf5935D39eD08F19282F61d9c',
|
|
122
131
|
SparkSupply: '0xD10608B45718437082B9aF5DdC498080ad63Ac9E',
|
|
123
|
-
SparkSwapBorrowRateMode:
|
|
132
|
+
SparkSwapBorrowRateMode:
|
|
133
|
+
'0x71B0687C7ec0286dc3cfb715fe97249604aC898f',
|
|
124
134
|
SparkWithdraw: '0x1e3187D89e79B5c411D710E0fdF2709517852600',
|
|
125
135
|
SparkDelegateCredit: '0x0000000000000000000000000000000000000000',
|
|
126
136
|
SparkDelegateWithSig: '0xDaDC0a8B6359487257B91347064534c4B3fAc515',
|
|
@@ -195,15 +205,19 @@ export const actionAddresses = {
|
|
|
195
205
|
LiquityV2Payback: '0x902cebdbF9ed3EC434C2246CDace1c825F0d5110',
|
|
196
206
|
LiquityV2Claim: '0x1b5a0c2573A1692bB183cC5d6f506e108c0599FC',
|
|
197
207
|
LiquityV2Adjust: '0x3BbC88f3b75cB898395C9b5AE8D9c2a26744993b',
|
|
198
|
-
LiquityV2AdjustInterestRate:
|
|
208
|
+
LiquityV2AdjustInterestRate:
|
|
209
|
+
'0x685f0237D8b85B2018278E975a481b0650dE0b54',
|
|
199
210
|
LiquityV2SPDeposit: '0x73FF552646A7D93764Ff8D1F9e7662c422E715ef',
|
|
200
211
|
LiquityV2SPWithdraw: '0x8E8a4213745Ed68b3fce9d1500f563d885D02FDf',
|
|
201
212
|
LiquityV2SPClaimColl: '0x3f783de20C3095bcB999AEA999aF4DF184b6630f',
|
|
202
|
-
LiquityV2AdjustZombieTrove:
|
|
213
|
+
LiquityV2AdjustZombieTrove:
|
|
214
|
+
'0x45F5CEe8f89AdBCe4f5B20f38a49402b152ba99e',
|
|
203
215
|
|
|
204
216
|
// b.protocol
|
|
205
|
-
BprotocolLiquitySPDeposit:
|
|
206
|
-
|
|
217
|
+
BprotocolLiquitySPDeposit:
|
|
218
|
+
'0x5A0436c7559e37da8cD24B0f66C155a0a2fd6309',
|
|
219
|
+
BprotocolLiquitySPWithdraw:
|
|
220
|
+
'0x20Ece7CB4463bB1DbA4C4fA800E321A05dfB028B',
|
|
207
221
|
|
|
208
222
|
// lido
|
|
209
223
|
LidoStake: '0x4a7dd38D2BcA817fb68165155F869ca4179d8060',
|
|
@@ -283,26 +297,35 @@ export const actionAddresses = {
|
|
|
283
297
|
CurveUsdLevCreate: '0xcbd9aFc2b7532b9eeB3A7EC4ea8Bb4320795d9Ad',
|
|
284
298
|
CurveUsdRepay: '0x6F91E8671d17ecEE3D3fb17DcCA87E86B8D83807',
|
|
285
299
|
CurveUsdSwapper: '0xFA8c594b903651F97b27aCADEa83b720cfD7F80b',
|
|
286
|
-
CurveUsdSwapperTransient:
|
|
300
|
+
CurveUsdSwapperTransient:
|
|
301
|
+
'0xcF0298592b8FCB3823d31Bb257b65afFCAcCb8b6',
|
|
287
302
|
CurveUsdSelfLiquidate: '0xd90d8a4955DfE9D4f45F7f60595313B0925ee1da',
|
|
288
|
-
CurveUsdSelfLiquidateWithColl:
|
|
303
|
+
CurveUsdSelfLiquidateWithColl:
|
|
304
|
+
'0x7cE305FC2A18c6820a533AD418dC0A549aFeDcAF',
|
|
289
305
|
CurveUsdGetDebt: '0x3Bb41d3f300dA758780fe7696bb4fB93cD7172fB',
|
|
290
|
-
CurveUsdCollRatioTrigger:
|
|
306
|
+
CurveUsdCollRatioTrigger:
|
|
307
|
+
'0xFCc610809b735BB13E583c5E46595457083D2b0c',
|
|
291
308
|
CurveUsdCollRatioCheck: '0x8c65f37ca216de1625886431249be13ead051388',
|
|
292
|
-
CurveUsdSelfLiquidateWithCollTransient:
|
|
293
|
-
|
|
309
|
+
CurveUsdSelfLiquidateWithCollTransient:
|
|
310
|
+
'0x9c41eA5D82AF27Fd436Cd4Cf525808313B35f0D1',
|
|
311
|
+
CurveUsdLevCreateTransient:
|
|
312
|
+
'0x798eA3B6E1C6210c6594aD5A1dBDA5b6b3347920',
|
|
294
313
|
CurveUsdRepayTransient: '0xa923a9111377F2f8614E8A1287DbC081e23a29b8',
|
|
295
314
|
|
|
296
315
|
MorphoBlueSupply: '0x1D0F6027Eeb118dEc06055735eE840E3Fe3E6f9a',
|
|
297
|
-
MorphoBlueSupplyCollateral:
|
|
316
|
+
MorphoBlueSupplyCollateral:
|
|
317
|
+
'0x1cdAC5D4b207e8DBd308504BbedD5D1BD19D26ac',
|
|
298
318
|
MorphoBlueWithdraw: '0xE97c7D2838D068C967B7c40080e09A08B9b11fca',
|
|
299
|
-
MorphoBlueWithdrawCollateral:
|
|
319
|
+
MorphoBlueWithdrawCollateral:
|
|
320
|
+
'0xF339F5272E48f9b2c074dcCF7e169259465A4872',
|
|
300
321
|
MorphoBlueBorrow: '0xcc05A3e06DA9Bd2827C7e86a96C63EAda3935AA0',
|
|
301
322
|
MorphoBluePayback: '0x9f437E5F705E02d77adC2e72C34926978776b085',
|
|
302
323
|
MorphoBlueSetAuth: '0xf30935e20c6357c7bcecd5e58ad6de26d54b9f64',
|
|
303
|
-
MorphoBlueSetAuthWithSig:
|
|
324
|
+
MorphoBlueSetAuthWithSig:
|
|
325
|
+
'0xE2d5fCDBf73BAd24A0FCAf6B2733933A98021808',
|
|
304
326
|
MorphoTokenWrap: '0x71b6d268c2Aabcb0dA16CbA4c77e65d9e29b0644',
|
|
305
|
-
MorphoBlueReallocateLiquidity:
|
|
327
|
+
MorphoBlueReallocateLiquidity:
|
|
328
|
+
'0x17cCA8194602020e855CC8Bc11ffA82d8F998A93',
|
|
306
329
|
MorphoBlueClaim: '0xBB562a790AD7773D54A423bD2A10E4073cb98142',
|
|
307
330
|
|
|
308
331
|
// llamalend
|
|
@@ -316,14 +339,16 @@ export const actionAddresses = {
|
|
|
316
339
|
LlamaLendBoost: '0xa21c1ce7318c6d38a10de44c2cd5d80514437d85',
|
|
317
340
|
LlamaLendRepay: '0x57693f72E628A3F7323D31De35Bd158493Aa9CC0',
|
|
318
341
|
LlamaLendLevCreate: '0x534b704a62385cfe5EEB8d9605419743d4fe105E',
|
|
319
|
-
LlamaLendSelfLiquidateWithColl:
|
|
342
|
+
LlamaLendSelfLiquidateWithColl:
|
|
343
|
+
'0xA99DD1D91141cA63C423DB763dE75078336803B2',
|
|
320
344
|
|
|
321
345
|
// eulerV2
|
|
322
346
|
EulerV2Supply: '0xa067787D086841437D112e0C847dDB3e5D95173f',
|
|
323
347
|
EulerV2Withdraw: '0x5bf1a54fe1e65B134E7920e53A5eB0D14b9e6aD1',
|
|
324
348
|
EulerV2Borrow: '0x38d66ecD38b7800D8FD0Bc29489c2306170a9Ede',
|
|
325
349
|
EulerV2Payback: '0x738b1df6b6962D8795Bda5bc5EFCd8b0B8c74d01',
|
|
326
|
-
EulerV2CollateralSwitch:
|
|
350
|
+
EulerV2CollateralSwitch:
|
|
351
|
+
'0x38950b50Fb38aC19D06e8CE5AAE632D6dF1EEb1a',
|
|
327
352
|
EulerV2View: '0x8932E46Ecf96b5Fe033F5e27Ab6dC755Cb668967',
|
|
328
353
|
|
|
329
354
|
MerklClaim: '0xE88036F3F0D7e216D63726356cA2bC334e305fe5',
|
|
@@ -363,6 +388,8 @@ export const actionAddresses = {
|
|
|
363
388
|
|
|
364
389
|
// summer.fi
|
|
365
390
|
SFApproveTokens: '0x0aC29D44eeC8e8f3b010c2e8FC960957db0c8298',
|
|
391
|
+
SummerfiUnsubAction: '0x26c39fe05466dba72a98d095d019dc5e067f6b28',
|
|
392
|
+
SummerfiUnsubV2Action: '0xc3a61ca1c53ca4bebc8329a0ece2128fcac70fc4',
|
|
366
393
|
},
|
|
367
394
|
[NETWORKS.optimism.chainId]: {
|
|
368
395
|
DFSSell: '0x9f234af5c10c136863a20865ba00b26951ab8269',
|
|
@@ -395,7 +422,8 @@ export const actionAddresses = {
|
|
|
395
422
|
AaveV3Payback: '0x88eb4050e89FecE4DF940109B0e58daF9B59e551',
|
|
396
423
|
AaveV3SetEMode: '0x7F264737066b9b7D9729Fe9715abB97423D8b35B',
|
|
397
424
|
AaveV3Supply: '0x7e49bdf4690feef64cb341ca46d1e3b45233a683',
|
|
398
|
-
AaveV3SwapBorrowRateMode:
|
|
425
|
+
AaveV3SwapBorrowRateMode:
|
|
426
|
+
'0xB8f0243b492f0e80feF5315Ba8692e7635481845',
|
|
399
427
|
AaveV3Withdraw: '0xf19d045f6cFc04A5Ee5E0e8837b565b9f276e3F7',
|
|
400
428
|
AaveV3ClaimRewards: '0xBE8e8cea67085F869C1C0040fD52F9F3115E962e',
|
|
401
429
|
AaveV3DelegateWithSig: '0x8dd05d32fB05E8c3e8F37294e6f2d13e5823a712',
|
|
@@ -462,7 +490,8 @@ export const actionAddresses = {
|
|
|
462
490
|
AaveV3Payback: '0xd88D5356e08dAd84E1576F89f4BF43C79a8BF0b2',
|
|
463
491
|
AaveV3SetEMode: '0x99D5068d9520316e8D3B5136c0B6EA33C5E0c27e',
|
|
464
492
|
AaveV3Supply: '0xA2127f5C7E943c05B6a6A3a541557087F1F1287D',
|
|
465
|
-
AaveV3SwapBorrowRateMode:
|
|
493
|
+
AaveV3SwapBorrowRateMode:
|
|
494
|
+
'0x738042389A8d6B0F6D6ab009c42dfF84ebB737C0',
|
|
466
495
|
AaveV3Withdraw: '0xbf492F869DdB1A18BB4F41b6c3059D9f882Fe7ff',
|
|
467
496
|
AaveV3ClaimRewards: '0x3a4d72Ed2a47a409a82ba61f0fca1C749Ea8aB66',
|
|
468
497
|
AaveV3DelegateWithSig: '0xFF2CE05250d1880f0f45ea8fB453292CABA42F12',
|
|
@@ -505,7 +534,8 @@ export const actionAddresses = {
|
|
|
505
534
|
LlamaLendBoost: '0xc52a3af27696f8cf999463f3455e23440a376f8d',
|
|
506
535
|
LlamaLendRepay: '0x320fdfa922ee33c1cc8a042ada855c9dfe9bed06',
|
|
507
536
|
LlamaLendLevCreate: '0xe5cbdcbe494246c21851eea0642ff0791f95cc86',
|
|
508
|
-
LlamaLendSelfLiquidateWithColl:
|
|
537
|
+
LlamaLendSelfLiquidateWithColl:
|
|
538
|
+
'0xebf090e5e83f4cd63d84db013ac8271761a953cf',
|
|
509
539
|
|
|
510
540
|
// fluid
|
|
511
541
|
FluidVaultT1Open: '0x1947Ce90ACCf0E243CcF85140fCceC2EfAeeA193',
|
|
@@ -526,15 +556,19 @@ export const actionAddresses = {
|
|
|
526
556
|
|
|
527
557
|
// MorphoBlue
|
|
528
558
|
MorphoBlueSupply: '0xeaF1c037716b447C178f3604BCFd10e650704525',
|
|
529
|
-
MorphoBlueSupplyCollateral:
|
|
559
|
+
MorphoBlueSupplyCollateral:
|
|
560
|
+
'0x65A5900F2faab9cC495b92389844739DF08A290D',
|
|
530
561
|
MorphoBlueWithdraw: '0xd7132c78677E764b352F83D1ACbCd9564eC08569',
|
|
531
|
-
MorphoBlueWithdrawCollateral:
|
|
562
|
+
MorphoBlueWithdrawCollateral:
|
|
563
|
+
'0x374553273E681C6cfA69006CEd70710d415a02D0',
|
|
532
564
|
MorphoBlueBorrow: '0xAe3073ab93DAde55e8B9390E5f3A3071B1ec99Ec',
|
|
533
565
|
MorphoBluePayback: '0x0e5493737FC3466341E0372219ef72FA0B4DDBbB',
|
|
534
566
|
MorphoBlueSetAuth: '0x7e1deb39317A7542Be231123733d94167FaC73D5',
|
|
535
|
-
MorphoBlueSetAuthWithSig:
|
|
567
|
+
MorphoBlueSetAuthWithSig:
|
|
568
|
+
'0x14da4D942b2b855550b47567c333edB8443cF1A7',
|
|
536
569
|
MorphoBlueView: '0xa3b8b400a2eFF0314fa9605E778692bd4Bd9f880',
|
|
537
|
-
MorphoBlueReallocateLiquidity:
|
|
570
|
+
MorphoBlueReallocateLiquidity:
|
|
571
|
+
'0x79C0E0eFe0Df71B2d301f4e08cfB5Ca8814A8f4c',
|
|
538
572
|
MorphoBlueClaim: '0x3ae0160e27778f7286182eAc774fD7ECd40539a7',
|
|
539
573
|
},
|
|
540
574
|
[NETWORKS.base.chainId]: {
|
|
@@ -570,7 +604,8 @@ export const actionAddresses = {
|
|
|
570
604
|
|
|
571
605
|
// AaveV3
|
|
572
606
|
AaveV3Withdraw: '0x1d2Fa7dAcC660A9124c3685EE8a6E699d10409Eb',
|
|
573
|
-
AaveV3SwapBorrowRateMode:
|
|
607
|
+
AaveV3SwapBorrowRateMode:
|
|
608
|
+
'0x9d1D7A0dD5e82cCe9CC131eC0C807B0F543be70e',
|
|
574
609
|
AaveV3Supply: '0x4Df428298a204E4881D95611320b30938CB3facd',
|
|
575
610
|
AaveV3SetEMode: '0xdeF8B05Ce194D50C376233C9C5530027f6180442',
|
|
576
611
|
AaveV3Payback: '0x1A8B4DF4DE4274630A5c5a8E42Fa5F0DdF654ec2',
|
|
@@ -592,15 +627,19 @@ export const actionAddresses = {
|
|
|
592
627
|
|
|
593
628
|
// MorphoBlue
|
|
594
629
|
MorphoBlueSupply: '0xB4e67A3aF1707567D410f1E18B0CF7DCc38e03BA',
|
|
595
|
-
MorphoBlueSupplyCollateral:
|
|
630
|
+
MorphoBlueSupplyCollateral:
|
|
631
|
+
'0x57757974d4c4f4a3cfcd054401482672342b26b2',
|
|
596
632
|
MorphoBlueWithdraw: '0xaaccc17d850b48507c2478a9ad628c6f4132ede3',
|
|
597
|
-
MorphoBlueWithdrawCollateral:
|
|
633
|
+
MorphoBlueWithdrawCollateral:
|
|
634
|
+
'0xe1778d05b274fa4193c8ecc50b0c45230f9ba1d3',
|
|
598
635
|
MorphoBlueBorrow: '0x8395eafe5633bcdedbf71893e24d4e86afd55436',
|
|
599
636
|
MorphoBluePayback: '0x245f9c1f8401f28da82afc50e4d242224991c4b3',
|
|
600
637
|
MorphoBlueSetAuth: '0xb565630c6ddd1fae169c453667f5aa52ef4e2e39',
|
|
601
|
-
MorphoBlueSetAuthWithSig:
|
|
638
|
+
MorphoBlueSetAuthWithSig:
|
|
639
|
+
'0x80be65342f6172a6cd0b6a2653e8a887e3f46cab',
|
|
602
640
|
MorphoBlueView: '0xdbcacf59c5063da8b15481f88e7d70e13c92f2a1',
|
|
603
|
-
MorphoBlueReallocateLiquidity:
|
|
641
|
+
MorphoBlueReallocateLiquidity:
|
|
642
|
+
'0x5Ea7F30E40F6A25BE2aD23A6FC1C31A6c95F3dc8',
|
|
604
643
|
MorphoBlueClaim: '0xE279E9100d6d524602f98E8736BA5F8f065Dd3e0',
|
|
605
644
|
|
|
606
645
|
// fluid
|