@argent/x-shared 1.38.0 → 1.39.0
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/dist/index.cjs +1 -1
- package/dist/index.js +295 -282
- package/dist/src/features/simulation/activity/schema.cjs +1 -1
- package/dist/src/features/simulation/activity/schema.d.ts +1660 -52
- package/dist/src/features/simulation/activity/schema.js +68 -49
- package/dist/src/features/swap/models/quote.model.d.ts +4 -4
- package/dist/src/features/swap/models/trade.model.d.ts +2 -2
- package/dist/src/index.d.ts +1 -0
- package/dist/src/staking/index.d.ts +1 -0
- package/dist/src/staking/schema.cjs +1 -0
- package/dist/src/staking/schema.d.ts +3027 -0
- package/dist/src/staking/schema.js +137 -0
- package/dist/src/tokens/service/implementation.d.ts +25 -6
- package/dist/src/tokens/service/types/backend.model.cjs +1 -1
- package/dist/src/tokens/service/types/backend.model.d.ts +983 -238
- package/dist/src/tokens/service/types/backend.model.js +29 -22
- package/dist/src/tokens/service/types/defiPosition.model.cjs +1 -1
- package/dist/src/tokens/service/types/defiPosition.model.d.ts +1390 -430
- package/dist/src/tokens/service/types/defiPosition.model.js +29 -22
- package/dist/src/tokens/service/types/defiPositionType.model.cjs +1 -1
- package/dist/src/tokens/service/types/defiPositionType.model.d.ts +1 -1
- package/dist/src/tokens/service/types/defiPositionType.model.js +3 -2
- package/dist/src/tokens/service/types/unclaimedRewards.model.d.ts +8 -8
- package/dist/src/tokens/service/types/webToken.model.d.ts +8 -8
- package/dist/src/transactions/estimate/model.cjs +1 -1
- package/dist/src/transactions/estimate/model.js +5 -5
- package/package.json +1 -1
|
@@ -70,12 +70,12 @@ export declare const apiTokenInfoSchema: z.ZodObject<{
|
|
|
70
70
|
address: `0x${string}`;
|
|
71
71
|
decimals: number;
|
|
72
72
|
id: number;
|
|
73
|
+
category: "tokens" | "currencies" | "savings";
|
|
73
74
|
sendable: boolean;
|
|
74
75
|
popular: boolean;
|
|
75
76
|
refundable: boolean;
|
|
76
77
|
listed: boolean;
|
|
77
78
|
tradable: boolean;
|
|
78
|
-
category: "tokens" | "currencies" | "savings";
|
|
79
79
|
dappId?: string | undefined;
|
|
80
80
|
brandColor?: string | undefined;
|
|
81
81
|
iconUrl?: string | undefined;
|
|
@@ -93,12 +93,12 @@ export declare const apiTokenInfoSchema: z.ZodObject<{
|
|
|
93
93
|
address: string;
|
|
94
94
|
decimals: number;
|
|
95
95
|
id: number;
|
|
96
|
+
category: "tokens" | "currencies" | "savings";
|
|
96
97
|
sendable: boolean;
|
|
97
98
|
popular: boolean;
|
|
98
99
|
refundable: boolean;
|
|
99
100
|
listed: boolean;
|
|
100
101
|
tradable: boolean;
|
|
101
|
-
category: "tokens" | "currencies" | "savings";
|
|
102
102
|
dappId?: string | undefined;
|
|
103
103
|
brandColor?: string | undefined;
|
|
104
104
|
iconUrl?: string | undefined;
|
|
@@ -152,12 +152,12 @@ export declare const apiTokensInfoResponseSchema: z.ZodObject<{
|
|
|
152
152
|
address: `0x${string}`;
|
|
153
153
|
decimals: number;
|
|
154
154
|
id: number;
|
|
155
|
+
category: "tokens" | "currencies" | "savings";
|
|
155
156
|
sendable: boolean;
|
|
156
157
|
popular: boolean;
|
|
157
158
|
refundable: boolean;
|
|
158
159
|
listed: boolean;
|
|
159
160
|
tradable: boolean;
|
|
160
|
-
category: "tokens" | "currencies" | "savings";
|
|
161
161
|
dappId?: string | undefined;
|
|
162
162
|
brandColor?: string | undefined;
|
|
163
163
|
iconUrl?: string | undefined;
|
|
@@ -175,12 +175,12 @@ export declare const apiTokensInfoResponseSchema: z.ZodObject<{
|
|
|
175
175
|
address: string;
|
|
176
176
|
decimals: number;
|
|
177
177
|
id: number;
|
|
178
|
+
category: "tokens" | "currencies" | "savings";
|
|
178
179
|
sendable: boolean;
|
|
179
180
|
popular: boolean;
|
|
180
181
|
refundable: boolean;
|
|
181
182
|
listed: boolean;
|
|
182
183
|
tradable: boolean;
|
|
183
|
-
category: "tokens" | "currencies" | "savings";
|
|
184
184
|
dappId?: string | undefined;
|
|
185
185
|
brandColor?: string | undefined;
|
|
186
186
|
iconUrl?: string | undefined;
|
|
@@ -200,12 +200,12 @@ export declare const apiTokensInfoResponseSchema: z.ZodObject<{
|
|
|
200
200
|
address: `0x${string}`;
|
|
201
201
|
decimals: number;
|
|
202
202
|
id: number;
|
|
203
|
+
category: "tokens" | "currencies" | "savings";
|
|
203
204
|
sendable: boolean;
|
|
204
205
|
popular: boolean;
|
|
205
206
|
refundable: boolean;
|
|
206
207
|
listed: boolean;
|
|
207
208
|
tradable: boolean;
|
|
208
|
-
category: "tokens" | "currencies" | "savings";
|
|
209
209
|
dappId?: string | undefined;
|
|
210
210
|
brandColor?: string | undefined;
|
|
211
211
|
iconUrl?: string | undefined;
|
|
@@ -225,12 +225,12 @@ export declare const apiTokensInfoResponseSchema: z.ZodObject<{
|
|
|
225
225
|
address: string;
|
|
226
226
|
decimals: number;
|
|
227
227
|
id: number;
|
|
228
|
+
category: "tokens" | "currencies" | "savings";
|
|
228
229
|
sendable: boolean;
|
|
229
230
|
popular: boolean;
|
|
230
231
|
refundable: boolean;
|
|
231
232
|
listed: boolean;
|
|
232
233
|
tradable: boolean;
|
|
233
|
-
category: "tokens" | "currencies" | "savings";
|
|
234
234
|
dappId?: string | undefined;
|
|
235
235
|
brandColor?: string | undefined;
|
|
236
236
|
iconUrl?: string | undefined;
|
|
@@ -283,12 +283,12 @@ export declare const apiTokenInfoResponseSchema: z.ZodObject<{
|
|
|
283
283
|
address: `0x${string}`;
|
|
284
284
|
decimals: number;
|
|
285
285
|
id: number;
|
|
286
|
+
category: "tokens" | "currencies" | "savings";
|
|
286
287
|
sendable: boolean;
|
|
287
288
|
popular: boolean;
|
|
288
289
|
refundable: boolean;
|
|
289
290
|
listed: boolean;
|
|
290
291
|
tradable: boolean;
|
|
291
|
-
category: "tokens" | "currencies" | "savings";
|
|
292
292
|
dappId?: string | undefined;
|
|
293
293
|
brandColor?: string | undefined;
|
|
294
294
|
iconUrl?: string | undefined;
|
|
@@ -306,12 +306,12 @@ export declare const apiTokenInfoResponseSchema: z.ZodObject<{
|
|
|
306
306
|
address: string;
|
|
307
307
|
decimals: number;
|
|
308
308
|
id: number;
|
|
309
|
+
category: "tokens" | "currencies" | "savings";
|
|
309
310
|
sendable: boolean;
|
|
310
311
|
popular: boolean;
|
|
311
312
|
refundable: boolean;
|
|
312
313
|
listed: boolean;
|
|
313
314
|
tradable: boolean;
|
|
314
|
-
category: "tokens" | "currencies" | "savings";
|
|
315
315
|
dappId?: string | undefined;
|
|
316
316
|
brandColor?: string | undefined;
|
|
317
317
|
iconUrl?: string | undefined;
|
|
@@ -752,23 +752,23 @@ export declare const apiCollateralizedDebtPositionSchema: z.ZodObject<z.objectUt
|
|
|
752
752
|
debt: z.ZodBoolean;
|
|
753
753
|
lending: z.ZodBoolean;
|
|
754
754
|
}, "strip", z.ZodTypeAny, {
|
|
755
|
+
lending: boolean;
|
|
755
756
|
collateral: boolean;
|
|
756
757
|
debt: boolean;
|
|
757
|
-
lending: boolean;
|
|
758
758
|
apy?: string | undefined;
|
|
759
759
|
group?: number | undefined;
|
|
760
760
|
}, {
|
|
761
|
+
lending: boolean;
|
|
761
762
|
collateral: boolean;
|
|
762
763
|
debt: boolean;
|
|
763
|
-
lending: boolean;
|
|
764
764
|
apy?: string | undefined;
|
|
765
765
|
group?: number | undefined;
|
|
766
766
|
}>;
|
|
767
767
|
}>, "strip", z.ZodTypeAny, {
|
|
768
768
|
data: {
|
|
769
|
+
lending: boolean;
|
|
769
770
|
collateral: boolean;
|
|
770
771
|
debt: boolean;
|
|
771
|
-
lending: boolean;
|
|
772
772
|
apy?: string | undefined;
|
|
773
773
|
group?: number | undefined;
|
|
774
774
|
};
|
|
@@ -776,9 +776,9 @@ export declare const apiCollateralizedDebtPositionSchema: z.ZodObject<z.objectUt
|
|
|
776
776
|
tokenAddress?: `0x${string}` | undefined;
|
|
777
777
|
}, {
|
|
778
778
|
data: {
|
|
779
|
+
lending: boolean;
|
|
779
780
|
collateral: boolean;
|
|
780
781
|
debt: boolean;
|
|
781
|
-
lending: boolean;
|
|
782
782
|
apy?: string | undefined;
|
|
783
783
|
group?: number | undefined;
|
|
784
784
|
};
|
|
@@ -796,23 +796,23 @@ export declare const apiCollateralizedDebtPositionsSchema: z.ZodArray<z.ZodObjec
|
|
|
796
796
|
debt: z.ZodBoolean;
|
|
797
797
|
lending: z.ZodBoolean;
|
|
798
798
|
}, "strip", z.ZodTypeAny, {
|
|
799
|
+
lending: boolean;
|
|
799
800
|
collateral: boolean;
|
|
800
801
|
debt: boolean;
|
|
801
|
-
lending: boolean;
|
|
802
802
|
apy?: string | undefined;
|
|
803
803
|
group?: number | undefined;
|
|
804
804
|
}, {
|
|
805
|
+
lending: boolean;
|
|
805
806
|
collateral: boolean;
|
|
806
807
|
debt: boolean;
|
|
807
|
-
lending: boolean;
|
|
808
808
|
apy?: string | undefined;
|
|
809
809
|
group?: number | undefined;
|
|
810
810
|
}>;
|
|
811
811
|
}>, "strip", z.ZodTypeAny, {
|
|
812
812
|
data: {
|
|
813
|
+
lending: boolean;
|
|
813
814
|
collateral: boolean;
|
|
814
815
|
debt: boolean;
|
|
815
|
-
lending: boolean;
|
|
816
816
|
apy?: string | undefined;
|
|
817
817
|
group?: number | undefined;
|
|
818
818
|
};
|
|
@@ -820,16 +820,56 @@ export declare const apiCollateralizedDebtPositionsSchema: z.ZodArray<z.ZodObjec
|
|
|
820
820
|
tokenAddress?: `0x${string}` | undefined;
|
|
821
821
|
}, {
|
|
822
822
|
data: {
|
|
823
|
+
lending: boolean;
|
|
823
824
|
collateral: boolean;
|
|
824
825
|
debt: boolean;
|
|
825
|
-
lending: boolean;
|
|
826
826
|
apy?: string | undefined;
|
|
827
827
|
group?: number | undefined;
|
|
828
828
|
};
|
|
829
829
|
totalBalances: Record<string, string>;
|
|
830
830
|
tokenAddress?: string | undefined;
|
|
831
831
|
}>, "many">;
|
|
832
|
-
export declare const
|
|
832
|
+
export declare const apiDelegatedTokensSchema: z.ZodObject<{
|
|
833
|
+
data: z.ZodObject<{
|
|
834
|
+
delegatingTo: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
835
|
+
}, "strip", z.ZodTypeAny, {
|
|
836
|
+
delegatingTo: `0x${string}`;
|
|
837
|
+
}, {
|
|
838
|
+
delegatingTo: string;
|
|
839
|
+
}>;
|
|
840
|
+
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
841
|
+
}, "strip", z.ZodTypeAny, {
|
|
842
|
+
data: {
|
|
843
|
+
delegatingTo: `0x${string}`;
|
|
844
|
+
};
|
|
845
|
+
totalBalances: Record<string, string>;
|
|
846
|
+
}, {
|
|
847
|
+
data: {
|
|
848
|
+
delegatingTo: string;
|
|
849
|
+
};
|
|
850
|
+
totalBalances: Record<string, string>;
|
|
851
|
+
}>;
|
|
852
|
+
export declare const apiDelegatedTokensArraySchema: z.ZodArray<z.ZodObject<{
|
|
853
|
+
data: z.ZodObject<{
|
|
854
|
+
delegatingTo: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
855
|
+
}, "strip", z.ZodTypeAny, {
|
|
856
|
+
delegatingTo: `0x${string}`;
|
|
857
|
+
}, {
|
|
858
|
+
delegatingTo: string;
|
|
859
|
+
}>;
|
|
860
|
+
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
861
|
+
}, "strip", z.ZodTypeAny, {
|
|
862
|
+
data: {
|
|
863
|
+
delegatingTo: `0x${string}`;
|
|
864
|
+
};
|
|
865
|
+
totalBalances: Record<string, string>;
|
|
866
|
+
}, {
|
|
867
|
+
data: {
|
|
868
|
+
delegatingTo: string;
|
|
869
|
+
};
|
|
870
|
+
totalBalances: Record<string, string>;
|
|
871
|
+
}>, "many">;
|
|
872
|
+
export declare const apiDefiDecompositionProducts: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
833
873
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
834
874
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
835
875
|
}, {
|
|
@@ -979,23 +1019,23 @@ export declare const apiDefiDecompositionProducts: z.ZodArray<z.ZodUnion<[z.ZodU
|
|
|
979
1019
|
debt: z.ZodBoolean;
|
|
980
1020
|
lending: z.ZodBoolean;
|
|
981
1021
|
}, "strip", z.ZodTypeAny, {
|
|
1022
|
+
lending: boolean;
|
|
982
1023
|
collateral: boolean;
|
|
983
1024
|
debt: boolean;
|
|
984
|
-
lending: boolean;
|
|
985
1025
|
apy?: string | undefined;
|
|
986
1026
|
group?: number | undefined;
|
|
987
1027
|
}, {
|
|
1028
|
+
lending: boolean;
|
|
988
1029
|
collateral: boolean;
|
|
989
1030
|
debt: boolean;
|
|
990
|
-
lending: boolean;
|
|
991
1031
|
apy?: string | undefined;
|
|
992
1032
|
group?: number | undefined;
|
|
993
1033
|
}>;
|
|
994
1034
|
}>, "strip", z.ZodTypeAny, {
|
|
995
1035
|
data: {
|
|
1036
|
+
lending: boolean;
|
|
996
1037
|
collateral: boolean;
|
|
997
1038
|
debt: boolean;
|
|
998
|
-
lending: boolean;
|
|
999
1039
|
apy?: string | undefined;
|
|
1000
1040
|
group?: number | undefined;
|
|
1001
1041
|
};
|
|
@@ -1003,14 +1043,33 @@ export declare const apiDefiDecompositionProducts: z.ZodArray<z.ZodUnion<[z.ZodU
|
|
|
1003
1043
|
tokenAddress?: `0x${string}` | undefined;
|
|
1004
1044
|
}, {
|
|
1005
1045
|
data: {
|
|
1046
|
+
lending: boolean;
|
|
1006
1047
|
collateral: boolean;
|
|
1007
1048
|
debt: boolean;
|
|
1008
|
-
lending: boolean;
|
|
1009
1049
|
apy?: string | undefined;
|
|
1010
1050
|
group?: number | undefined;
|
|
1011
1051
|
};
|
|
1012
1052
|
totalBalances: Record<string, string>;
|
|
1013
1053
|
tokenAddress?: string | undefined;
|
|
1054
|
+
}>]>, z.ZodObject<{
|
|
1055
|
+
data: z.ZodObject<{
|
|
1056
|
+
delegatingTo: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
1057
|
+
}, "strip", z.ZodTypeAny, {
|
|
1058
|
+
delegatingTo: `0x${string}`;
|
|
1059
|
+
}, {
|
|
1060
|
+
delegatingTo: string;
|
|
1061
|
+
}>;
|
|
1062
|
+
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
1063
|
+
}, "strip", z.ZodTypeAny, {
|
|
1064
|
+
data: {
|
|
1065
|
+
delegatingTo: `0x${string}`;
|
|
1066
|
+
};
|
|
1067
|
+
totalBalances: Record<string, string>;
|
|
1068
|
+
}, {
|
|
1069
|
+
data: {
|
|
1070
|
+
delegatingTo: string;
|
|
1071
|
+
};
|
|
1072
|
+
totalBalances: Record<string, string>;
|
|
1014
1073
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1015
1074
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
1016
1075
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
@@ -1041,7 +1100,7 @@ export declare const apiDefiDecompositionProducts: z.ZodArray<z.ZodUnion<[z.ZodU
|
|
|
1041
1100
|
export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
1042
1101
|
name: z.ZodString;
|
|
1043
1102
|
manageUrl: z.ZodString;
|
|
1044
|
-
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"staking">]>;
|
|
1103
|
+
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"delegatedTokens">, z.ZodLiteral<"staking">]>;
|
|
1045
1104
|
groups: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1046
1105
|
name: z.ZodOptional<z.ZodString>;
|
|
1047
1106
|
healthRatio: z.ZodOptional<z.ZodString>;
|
|
@@ -1052,7 +1111,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
1052
1111
|
name?: string | undefined;
|
|
1053
1112
|
healthRatio?: string | undefined;
|
|
1054
1113
|
}>>>;
|
|
1055
|
-
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
1114
|
+
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
1056
1115
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
1057
1116
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
1058
1117
|
}, {
|
|
@@ -1202,23 +1261,23 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
1202
1261
|
debt: z.ZodBoolean;
|
|
1203
1262
|
lending: z.ZodBoolean;
|
|
1204
1263
|
}, "strip", z.ZodTypeAny, {
|
|
1264
|
+
lending: boolean;
|
|
1205
1265
|
collateral: boolean;
|
|
1206
1266
|
debt: boolean;
|
|
1207
|
-
lending: boolean;
|
|
1208
1267
|
apy?: string | undefined;
|
|
1209
1268
|
group?: number | undefined;
|
|
1210
1269
|
}, {
|
|
1270
|
+
lending: boolean;
|
|
1211
1271
|
collateral: boolean;
|
|
1212
1272
|
debt: boolean;
|
|
1213
|
-
lending: boolean;
|
|
1214
1273
|
apy?: string | undefined;
|
|
1215
1274
|
group?: number | undefined;
|
|
1216
1275
|
}>;
|
|
1217
1276
|
}>, "strip", z.ZodTypeAny, {
|
|
1218
1277
|
data: {
|
|
1278
|
+
lending: boolean;
|
|
1219
1279
|
collateral: boolean;
|
|
1220
1280
|
debt: boolean;
|
|
1221
|
-
lending: boolean;
|
|
1222
1281
|
apy?: string | undefined;
|
|
1223
1282
|
group?: number | undefined;
|
|
1224
1283
|
};
|
|
@@ -1226,14 +1285,33 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
1226
1285
|
tokenAddress?: `0x${string}` | undefined;
|
|
1227
1286
|
}, {
|
|
1228
1287
|
data: {
|
|
1288
|
+
lending: boolean;
|
|
1229
1289
|
collateral: boolean;
|
|
1230
1290
|
debt: boolean;
|
|
1231
|
-
lending: boolean;
|
|
1232
1291
|
apy?: string | undefined;
|
|
1233
1292
|
group?: number | undefined;
|
|
1234
1293
|
};
|
|
1235
1294
|
totalBalances: Record<string, string>;
|
|
1236
1295
|
tokenAddress?: string | undefined;
|
|
1296
|
+
}>]>, z.ZodObject<{
|
|
1297
|
+
data: z.ZodObject<{
|
|
1298
|
+
delegatingTo: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
1299
|
+
}, "strip", z.ZodTypeAny, {
|
|
1300
|
+
delegatingTo: `0x${string}`;
|
|
1301
|
+
}, {
|
|
1302
|
+
delegatingTo: string;
|
|
1303
|
+
}>;
|
|
1304
|
+
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
1305
|
+
}, "strip", z.ZodTypeAny, {
|
|
1306
|
+
data: {
|
|
1307
|
+
delegatingTo: `0x${string}`;
|
|
1308
|
+
};
|
|
1309
|
+
totalBalances: Record<string, string>;
|
|
1310
|
+
}, {
|
|
1311
|
+
data: {
|
|
1312
|
+
delegatingTo: string;
|
|
1313
|
+
};
|
|
1314
|
+
totalBalances: Record<string, string>;
|
|
1237
1315
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1238
1316
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
1239
1317
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
@@ -1264,7 +1342,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
1264
1342
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1265
1343
|
name: z.ZodString;
|
|
1266
1344
|
manageUrl: z.ZodString;
|
|
1267
|
-
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"staking">]>;
|
|
1345
|
+
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"delegatedTokens">, z.ZodLiteral<"staking">]>;
|
|
1268
1346
|
groups: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1269
1347
|
name: z.ZodOptional<z.ZodString>;
|
|
1270
1348
|
healthRatio: z.ZodOptional<z.ZodString>;
|
|
@@ -1275,7 +1353,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
1275
1353
|
name?: string | undefined;
|
|
1276
1354
|
healthRatio?: string | undefined;
|
|
1277
1355
|
}>>>;
|
|
1278
|
-
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
1356
|
+
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
1279
1357
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
1280
1358
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
1281
1359
|
}, {
|
|
@@ -1425,23 +1503,23 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
1425
1503
|
debt: z.ZodBoolean;
|
|
1426
1504
|
lending: z.ZodBoolean;
|
|
1427
1505
|
}, "strip", z.ZodTypeAny, {
|
|
1506
|
+
lending: boolean;
|
|
1428
1507
|
collateral: boolean;
|
|
1429
1508
|
debt: boolean;
|
|
1430
|
-
lending: boolean;
|
|
1431
1509
|
apy?: string | undefined;
|
|
1432
1510
|
group?: number | undefined;
|
|
1433
1511
|
}, {
|
|
1512
|
+
lending: boolean;
|
|
1434
1513
|
collateral: boolean;
|
|
1435
1514
|
debt: boolean;
|
|
1436
|
-
lending: boolean;
|
|
1437
1515
|
apy?: string | undefined;
|
|
1438
1516
|
group?: number | undefined;
|
|
1439
1517
|
}>;
|
|
1440
1518
|
}>, "strip", z.ZodTypeAny, {
|
|
1441
1519
|
data: {
|
|
1520
|
+
lending: boolean;
|
|
1442
1521
|
collateral: boolean;
|
|
1443
1522
|
debt: boolean;
|
|
1444
|
-
lending: boolean;
|
|
1445
1523
|
apy?: string | undefined;
|
|
1446
1524
|
group?: number | undefined;
|
|
1447
1525
|
};
|
|
@@ -1449,14 +1527,33 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
1449
1527
|
tokenAddress?: `0x${string}` | undefined;
|
|
1450
1528
|
}, {
|
|
1451
1529
|
data: {
|
|
1530
|
+
lending: boolean;
|
|
1452
1531
|
collateral: boolean;
|
|
1453
1532
|
debt: boolean;
|
|
1454
|
-
lending: boolean;
|
|
1455
1533
|
apy?: string | undefined;
|
|
1456
1534
|
group?: number | undefined;
|
|
1457
1535
|
};
|
|
1458
1536
|
totalBalances: Record<string, string>;
|
|
1459
1537
|
tokenAddress?: string | undefined;
|
|
1538
|
+
}>]>, z.ZodObject<{
|
|
1539
|
+
data: z.ZodObject<{
|
|
1540
|
+
delegatingTo: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
1541
|
+
}, "strip", z.ZodTypeAny, {
|
|
1542
|
+
delegatingTo: `0x${string}`;
|
|
1543
|
+
}, {
|
|
1544
|
+
delegatingTo: string;
|
|
1545
|
+
}>;
|
|
1546
|
+
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
1547
|
+
}, "strip", z.ZodTypeAny, {
|
|
1548
|
+
data: {
|
|
1549
|
+
delegatingTo: `0x${string}`;
|
|
1550
|
+
};
|
|
1551
|
+
totalBalances: Record<string, string>;
|
|
1552
|
+
}, {
|
|
1553
|
+
data: {
|
|
1554
|
+
delegatingTo: string;
|
|
1555
|
+
};
|
|
1556
|
+
totalBalances: Record<string, string>;
|
|
1460
1557
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1461
1558
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
1462
1559
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
@@ -1487,7 +1584,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
1487
1584
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1488
1585
|
name: z.ZodString;
|
|
1489
1586
|
manageUrl: z.ZodString;
|
|
1490
|
-
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"staking">]>;
|
|
1587
|
+
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"delegatedTokens">, z.ZodLiteral<"staking">]>;
|
|
1491
1588
|
groups: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1492
1589
|
name: z.ZodOptional<z.ZodString>;
|
|
1493
1590
|
healthRatio: z.ZodOptional<z.ZodString>;
|
|
@@ -1498,7 +1595,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
1498
1595
|
name?: string | undefined;
|
|
1499
1596
|
healthRatio?: string | undefined;
|
|
1500
1597
|
}>>>;
|
|
1501
|
-
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
1598
|
+
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
1502
1599
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
1503
1600
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
1504
1601
|
}, {
|
|
@@ -1648,23 +1745,23 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
1648
1745
|
debt: z.ZodBoolean;
|
|
1649
1746
|
lending: z.ZodBoolean;
|
|
1650
1747
|
}, "strip", z.ZodTypeAny, {
|
|
1748
|
+
lending: boolean;
|
|
1651
1749
|
collateral: boolean;
|
|
1652
1750
|
debt: boolean;
|
|
1653
|
-
lending: boolean;
|
|
1654
1751
|
apy?: string | undefined;
|
|
1655
1752
|
group?: number | undefined;
|
|
1656
1753
|
}, {
|
|
1754
|
+
lending: boolean;
|
|
1657
1755
|
collateral: boolean;
|
|
1658
1756
|
debt: boolean;
|
|
1659
|
-
lending: boolean;
|
|
1660
1757
|
apy?: string | undefined;
|
|
1661
1758
|
group?: number | undefined;
|
|
1662
1759
|
}>;
|
|
1663
1760
|
}>, "strip", z.ZodTypeAny, {
|
|
1664
1761
|
data: {
|
|
1762
|
+
lending: boolean;
|
|
1665
1763
|
collateral: boolean;
|
|
1666
1764
|
debt: boolean;
|
|
1667
|
-
lending: boolean;
|
|
1668
1765
|
apy?: string | undefined;
|
|
1669
1766
|
group?: number | undefined;
|
|
1670
1767
|
};
|
|
@@ -1672,14 +1769,33 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
1672
1769
|
tokenAddress?: `0x${string}` | undefined;
|
|
1673
1770
|
}, {
|
|
1674
1771
|
data: {
|
|
1772
|
+
lending: boolean;
|
|
1675
1773
|
collateral: boolean;
|
|
1676
1774
|
debt: boolean;
|
|
1677
|
-
lending: boolean;
|
|
1678
1775
|
apy?: string | undefined;
|
|
1679
1776
|
group?: number | undefined;
|
|
1680
1777
|
};
|
|
1681
1778
|
totalBalances: Record<string, string>;
|
|
1682
1779
|
tokenAddress?: string | undefined;
|
|
1780
|
+
}>]>, z.ZodObject<{
|
|
1781
|
+
data: z.ZodObject<{
|
|
1782
|
+
delegatingTo: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
1783
|
+
}, "strip", z.ZodTypeAny, {
|
|
1784
|
+
delegatingTo: `0x${string}`;
|
|
1785
|
+
}, {
|
|
1786
|
+
delegatingTo: string;
|
|
1787
|
+
}>;
|
|
1788
|
+
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
1789
|
+
}, "strip", z.ZodTypeAny, {
|
|
1790
|
+
data: {
|
|
1791
|
+
delegatingTo: `0x${string}`;
|
|
1792
|
+
};
|
|
1793
|
+
totalBalances: Record<string, string>;
|
|
1794
|
+
}, {
|
|
1795
|
+
data: {
|
|
1796
|
+
delegatingTo: string;
|
|
1797
|
+
};
|
|
1798
|
+
totalBalances: Record<string, string>;
|
|
1683
1799
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1684
1800
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
1685
1801
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
@@ -1710,7 +1826,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
1710
1826
|
}, z.ZodTypeAny, "passthrough">>, z.objectOutputType<{
|
|
1711
1827
|
name: z.ZodString;
|
|
1712
1828
|
manageUrl: z.ZodString;
|
|
1713
|
-
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"staking">]>;
|
|
1829
|
+
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"delegatedTokens">, z.ZodLiteral<"staking">]>;
|
|
1714
1830
|
groups: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1715
1831
|
name: z.ZodOptional<z.ZodString>;
|
|
1716
1832
|
healthRatio: z.ZodOptional<z.ZodString>;
|
|
@@ -1721,7 +1837,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
1721
1837
|
name?: string | undefined;
|
|
1722
1838
|
healthRatio?: string | undefined;
|
|
1723
1839
|
}>>>;
|
|
1724
|
-
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
1840
|
+
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
1725
1841
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
1726
1842
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
1727
1843
|
}, {
|
|
@@ -1871,23 +1987,23 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
1871
1987
|
debt: z.ZodBoolean;
|
|
1872
1988
|
lending: z.ZodBoolean;
|
|
1873
1989
|
}, "strip", z.ZodTypeAny, {
|
|
1990
|
+
lending: boolean;
|
|
1874
1991
|
collateral: boolean;
|
|
1875
1992
|
debt: boolean;
|
|
1876
|
-
lending: boolean;
|
|
1877
1993
|
apy?: string | undefined;
|
|
1878
1994
|
group?: number | undefined;
|
|
1879
1995
|
}, {
|
|
1996
|
+
lending: boolean;
|
|
1880
1997
|
collateral: boolean;
|
|
1881
1998
|
debt: boolean;
|
|
1882
|
-
lending: boolean;
|
|
1883
1999
|
apy?: string | undefined;
|
|
1884
2000
|
group?: number | undefined;
|
|
1885
2001
|
}>;
|
|
1886
2002
|
}>, "strip", z.ZodTypeAny, {
|
|
1887
2003
|
data: {
|
|
2004
|
+
lending: boolean;
|
|
1888
2005
|
collateral: boolean;
|
|
1889
2006
|
debt: boolean;
|
|
1890
|
-
lending: boolean;
|
|
1891
2007
|
apy?: string | undefined;
|
|
1892
2008
|
group?: number | undefined;
|
|
1893
2009
|
};
|
|
@@ -1895,14 +2011,33 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
1895
2011
|
tokenAddress?: `0x${string}` | undefined;
|
|
1896
2012
|
}, {
|
|
1897
2013
|
data: {
|
|
2014
|
+
lending: boolean;
|
|
1898
2015
|
collateral: boolean;
|
|
1899
2016
|
debt: boolean;
|
|
1900
|
-
lending: boolean;
|
|
1901
2017
|
apy?: string | undefined;
|
|
1902
2018
|
group?: number | undefined;
|
|
1903
2019
|
};
|
|
1904
2020
|
totalBalances: Record<string, string>;
|
|
1905
2021
|
tokenAddress?: string | undefined;
|
|
2022
|
+
}>]>, z.ZodObject<{
|
|
2023
|
+
data: z.ZodObject<{
|
|
2024
|
+
delegatingTo: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
2025
|
+
}, "strip", z.ZodTypeAny, {
|
|
2026
|
+
delegatingTo: `0x${string}`;
|
|
2027
|
+
}, {
|
|
2028
|
+
delegatingTo: string;
|
|
2029
|
+
}>;
|
|
2030
|
+
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
2031
|
+
}, "strip", z.ZodTypeAny, {
|
|
2032
|
+
data: {
|
|
2033
|
+
delegatingTo: `0x${string}`;
|
|
2034
|
+
};
|
|
2035
|
+
totalBalances: Record<string, string>;
|
|
2036
|
+
}, {
|
|
2037
|
+
data: {
|
|
2038
|
+
delegatingTo: string;
|
|
2039
|
+
};
|
|
2040
|
+
totalBalances: Record<string, string>;
|
|
1906
2041
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1907
2042
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
1908
2043
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
@@ -1933,7 +2068,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
1933
2068
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1934
2069
|
name: z.ZodString;
|
|
1935
2070
|
manageUrl: z.ZodString;
|
|
1936
|
-
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"staking">]>;
|
|
2071
|
+
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"delegatedTokens">, z.ZodLiteral<"staking">]>;
|
|
1937
2072
|
groups: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1938
2073
|
name: z.ZodOptional<z.ZodString>;
|
|
1939
2074
|
healthRatio: z.ZodOptional<z.ZodString>;
|
|
@@ -1944,7 +2079,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
1944
2079
|
name?: string | undefined;
|
|
1945
2080
|
healthRatio?: string | undefined;
|
|
1946
2081
|
}>>>;
|
|
1947
|
-
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
2082
|
+
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
1948
2083
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
1949
2084
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
1950
2085
|
}, {
|
|
@@ -2094,23 +2229,23 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2094
2229
|
debt: z.ZodBoolean;
|
|
2095
2230
|
lending: z.ZodBoolean;
|
|
2096
2231
|
}, "strip", z.ZodTypeAny, {
|
|
2232
|
+
lending: boolean;
|
|
2097
2233
|
collateral: boolean;
|
|
2098
2234
|
debt: boolean;
|
|
2099
|
-
lending: boolean;
|
|
2100
2235
|
apy?: string | undefined;
|
|
2101
2236
|
group?: number | undefined;
|
|
2102
2237
|
}, {
|
|
2238
|
+
lending: boolean;
|
|
2103
2239
|
collateral: boolean;
|
|
2104
2240
|
debt: boolean;
|
|
2105
|
-
lending: boolean;
|
|
2106
2241
|
apy?: string | undefined;
|
|
2107
2242
|
group?: number | undefined;
|
|
2108
2243
|
}>;
|
|
2109
2244
|
}>, "strip", z.ZodTypeAny, {
|
|
2110
2245
|
data: {
|
|
2246
|
+
lending: boolean;
|
|
2111
2247
|
collateral: boolean;
|
|
2112
2248
|
debt: boolean;
|
|
2113
|
-
lending: boolean;
|
|
2114
2249
|
apy?: string | undefined;
|
|
2115
2250
|
group?: number | undefined;
|
|
2116
2251
|
};
|
|
@@ -2118,14 +2253,33 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2118
2253
|
tokenAddress?: `0x${string}` | undefined;
|
|
2119
2254
|
}, {
|
|
2120
2255
|
data: {
|
|
2256
|
+
lending: boolean;
|
|
2121
2257
|
collateral: boolean;
|
|
2122
2258
|
debt: boolean;
|
|
2123
|
-
lending: boolean;
|
|
2124
2259
|
apy?: string | undefined;
|
|
2125
2260
|
group?: number | undefined;
|
|
2126
2261
|
};
|
|
2127
2262
|
totalBalances: Record<string, string>;
|
|
2128
2263
|
tokenAddress?: string | undefined;
|
|
2264
|
+
}>]>, z.ZodObject<{
|
|
2265
|
+
data: z.ZodObject<{
|
|
2266
|
+
delegatingTo: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
2267
|
+
}, "strip", z.ZodTypeAny, {
|
|
2268
|
+
delegatingTo: `0x${string}`;
|
|
2269
|
+
}, {
|
|
2270
|
+
delegatingTo: string;
|
|
2271
|
+
}>;
|
|
2272
|
+
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
2273
|
+
}, "strip", z.ZodTypeAny, {
|
|
2274
|
+
data: {
|
|
2275
|
+
delegatingTo: `0x${string}`;
|
|
2276
|
+
};
|
|
2277
|
+
totalBalances: Record<string, string>;
|
|
2278
|
+
}, {
|
|
2279
|
+
data: {
|
|
2280
|
+
delegatingTo: string;
|
|
2281
|
+
};
|
|
2282
|
+
totalBalances: Record<string, string>;
|
|
2129
2283
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2130
2284
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
2131
2285
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
@@ -2157,7 +2311,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2157
2311
|
extend: <E extends z.ZodRawShape>(extension: E) => z.ZodEffects<z.ZodObject<{
|
|
2158
2312
|
name: z.ZodString;
|
|
2159
2313
|
manageUrl: z.ZodString;
|
|
2160
|
-
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"staking">]>;
|
|
2314
|
+
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"delegatedTokens">, z.ZodLiteral<"staking">]>;
|
|
2161
2315
|
groups: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2162
2316
|
name: z.ZodOptional<z.ZodString>;
|
|
2163
2317
|
healthRatio: z.ZodOptional<z.ZodString>;
|
|
@@ -2168,7 +2322,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2168
2322
|
name?: string | undefined;
|
|
2169
2323
|
healthRatio?: string | undefined;
|
|
2170
2324
|
}>>>;
|
|
2171
|
-
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
2325
|
+
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
2172
2326
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
2173
2327
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
2174
2328
|
}, {
|
|
@@ -2318,23 +2472,23 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2318
2472
|
debt: z.ZodBoolean;
|
|
2319
2473
|
lending: z.ZodBoolean;
|
|
2320
2474
|
}, "strip", z.ZodTypeAny, {
|
|
2475
|
+
lending: boolean;
|
|
2321
2476
|
collateral: boolean;
|
|
2322
2477
|
debt: boolean;
|
|
2323
|
-
lending: boolean;
|
|
2324
2478
|
apy?: string | undefined;
|
|
2325
2479
|
group?: number | undefined;
|
|
2326
2480
|
}, {
|
|
2481
|
+
lending: boolean;
|
|
2327
2482
|
collateral: boolean;
|
|
2328
2483
|
debt: boolean;
|
|
2329
|
-
lending: boolean;
|
|
2330
2484
|
apy?: string | undefined;
|
|
2331
2485
|
group?: number | undefined;
|
|
2332
2486
|
}>;
|
|
2333
2487
|
}>, "strip", z.ZodTypeAny, {
|
|
2334
2488
|
data: {
|
|
2489
|
+
lending: boolean;
|
|
2335
2490
|
collateral: boolean;
|
|
2336
2491
|
debt: boolean;
|
|
2337
|
-
lending: boolean;
|
|
2338
2492
|
apy?: string | undefined;
|
|
2339
2493
|
group?: number | undefined;
|
|
2340
2494
|
};
|
|
@@ -2342,14 +2496,33 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2342
2496
|
tokenAddress?: `0x${string}` | undefined;
|
|
2343
2497
|
}, {
|
|
2344
2498
|
data: {
|
|
2499
|
+
lending: boolean;
|
|
2345
2500
|
collateral: boolean;
|
|
2346
2501
|
debt: boolean;
|
|
2347
|
-
lending: boolean;
|
|
2348
2502
|
apy?: string | undefined;
|
|
2349
2503
|
group?: number | undefined;
|
|
2350
2504
|
};
|
|
2351
2505
|
totalBalances: Record<string, string>;
|
|
2352
2506
|
tokenAddress?: string | undefined;
|
|
2507
|
+
}>]>, z.ZodObject<{
|
|
2508
|
+
data: z.ZodObject<{
|
|
2509
|
+
delegatingTo: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
2510
|
+
}, "strip", z.ZodTypeAny, {
|
|
2511
|
+
delegatingTo: `0x${string}`;
|
|
2512
|
+
}, {
|
|
2513
|
+
delegatingTo: string;
|
|
2514
|
+
}>;
|
|
2515
|
+
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
2516
|
+
}, "strip", z.ZodTypeAny, {
|
|
2517
|
+
data: {
|
|
2518
|
+
delegatingTo: `0x${string}`;
|
|
2519
|
+
};
|
|
2520
|
+
totalBalances: Record<string, string>;
|
|
2521
|
+
}, {
|
|
2522
|
+
data: {
|
|
2523
|
+
delegatingTo: string;
|
|
2524
|
+
};
|
|
2525
|
+
totalBalances: Record<string, string>;
|
|
2353
2526
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2354
2527
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
2355
2528
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
@@ -2380,7 +2553,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2380
2553
|
} & E, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2381
2554
|
name: z.ZodString;
|
|
2382
2555
|
manageUrl: z.ZodString;
|
|
2383
|
-
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"staking">]>;
|
|
2556
|
+
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"delegatedTokens">, z.ZodLiteral<"staking">]>;
|
|
2384
2557
|
groups: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2385
2558
|
name: z.ZodOptional<z.ZodString>;
|
|
2386
2559
|
healthRatio: z.ZodOptional<z.ZodString>;
|
|
@@ -2391,7 +2564,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2391
2564
|
name?: string | undefined;
|
|
2392
2565
|
healthRatio?: string | undefined;
|
|
2393
2566
|
}>>>;
|
|
2394
|
-
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
2567
|
+
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
2395
2568
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
2396
2569
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
2397
2570
|
}, {
|
|
@@ -2541,23 +2714,23 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2541
2714
|
debt: z.ZodBoolean;
|
|
2542
2715
|
lending: z.ZodBoolean;
|
|
2543
2716
|
}, "strip", z.ZodTypeAny, {
|
|
2717
|
+
lending: boolean;
|
|
2544
2718
|
collateral: boolean;
|
|
2545
2719
|
debt: boolean;
|
|
2546
|
-
lending: boolean;
|
|
2547
2720
|
apy?: string | undefined;
|
|
2548
2721
|
group?: number | undefined;
|
|
2549
2722
|
}, {
|
|
2723
|
+
lending: boolean;
|
|
2550
2724
|
collateral: boolean;
|
|
2551
2725
|
debt: boolean;
|
|
2552
|
-
lending: boolean;
|
|
2553
2726
|
apy?: string | undefined;
|
|
2554
2727
|
group?: number | undefined;
|
|
2555
2728
|
}>;
|
|
2556
2729
|
}>, "strip", z.ZodTypeAny, {
|
|
2557
2730
|
data: {
|
|
2731
|
+
lending: boolean;
|
|
2558
2732
|
collateral: boolean;
|
|
2559
2733
|
debt: boolean;
|
|
2560
|
-
lending: boolean;
|
|
2561
2734
|
apy?: string | undefined;
|
|
2562
2735
|
group?: number | undefined;
|
|
2563
2736
|
};
|
|
@@ -2565,14 +2738,33 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2565
2738
|
tokenAddress?: `0x${string}` | undefined;
|
|
2566
2739
|
}, {
|
|
2567
2740
|
data: {
|
|
2741
|
+
lending: boolean;
|
|
2568
2742
|
collateral: boolean;
|
|
2569
2743
|
debt: boolean;
|
|
2570
|
-
lending: boolean;
|
|
2571
2744
|
apy?: string | undefined;
|
|
2572
2745
|
group?: number | undefined;
|
|
2573
2746
|
};
|
|
2574
2747
|
totalBalances: Record<string, string>;
|
|
2575
2748
|
tokenAddress?: string | undefined;
|
|
2749
|
+
}>]>, z.ZodObject<{
|
|
2750
|
+
data: z.ZodObject<{
|
|
2751
|
+
delegatingTo: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
2752
|
+
}, "strip", z.ZodTypeAny, {
|
|
2753
|
+
delegatingTo: `0x${string}`;
|
|
2754
|
+
}, {
|
|
2755
|
+
delegatingTo: string;
|
|
2756
|
+
}>;
|
|
2757
|
+
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
2758
|
+
}, "strip", z.ZodTypeAny, {
|
|
2759
|
+
data: {
|
|
2760
|
+
delegatingTo: `0x${string}`;
|
|
2761
|
+
};
|
|
2762
|
+
totalBalances: Record<string, string>;
|
|
2763
|
+
}, {
|
|
2764
|
+
data: {
|
|
2765
|
+
delegatingTo: string;
|
|
2766
|
+
};
|
|
2767
|
+
totalBalances: Record<string, string>;
|
|
2576
2768
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2577
2769
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
2578
2770
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
@@ -2603,7 +2795,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2603
2795
|
} & E, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2604
2796
|
name: z.ZodString;
|
|
2605
2797
|
manageUrl: z.ZodString;
|
|
2606
|
-
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"staking">]>;
|
|
2798
|
+
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"delegatedTokens">, z.ZodLiteral<"staking">]>;
|
|
2607
2799
|
groups: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2608
2800
|
name: z.ZodOptional<z.ZodString>;
|
|
2609
2801
|
healthRatio: z.ZodOptional<z.ZodString>;
|
|
@@ -2614,7 +2806,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2614
2806
|
name?: string | undefined;
|
|
2615
2807
|
healthRatio?: string | undefined;
|
|
2616
2808
|
}>>>;
|
|
2617
|
-
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
2809
|
+
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
2618
2810
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
2619
2811
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
2620
2812
|
}, {
|
|
@@ -2764,23 +2956,23 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2764
2956
|
debt: z.ZodBoolean;
|
|
2765
2957
|
lending: z.ZodBoolean;
|
|
2766
2958
|
}, "strip", z.ZodTypeAny, {
|
|
2959
|
+
lending: boolean;
|
|
2767
2960
|
collateral: boolean;
|
|
2768
2961
|
debt: boolean;
|
|
2769
|
-
lending: boolean;
|
|
2770
2962
|
apy?: string | undefined;
|
|
2771
2963
|
group?: number | undefined;
|
|
2772
2964
|
}, {
|
|
2965
|
+
lending: boolean;
|
|
2773
2966
|
collateral: boolean;
|
|
2774
2967
|
debt: boolean;
|
|
2775
|
-
lending: boolean;
|
|
2776
2968
|
apy?: string | undefined;
|
|
2777
2969
|
group?: number | undefined;
|
|
2778
2970
|
}>;
|
|
2779
2971
|
}>, "strip", z.ZodTypeAny, {
|
|
2780
2972
|
data: {
|
|
2973
|
+
lending: boolean;
|
|
2781
2974
|
collateral: boolean;
|
|
2782
2975
|
debt: boolean;
|
|
2783
|
-
lending: boolean;
|
|
2784
2976
|
apy?: string | undefined;
|
|
2785
2977
|
group?: number | undefined;
|
|
2786
2978
|
};
|
|
@@ -2788,14 +2980,33 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2788
2980
|
tokenAddress?: `0x${string}` | undefined;
|
|
2789
2981
|
}, {
|
|
2790
2982
|
data: {
|
|
2983
|
+
lending: boolean;
|
|
2791
2984
|
collateral: boolean;
|
|
2792
2985
|
debt: boolean;
|
|
2793
|
-
lending: boolean;
|
|
2794
2986
|
apy?: string | undefined;
|
|
2795
2987
|
group?: number | undefined;
|
|
2796
2988
|
};
|
|
2797
2989
|
totalBalances: Record<string, string>;
|
|
2798
2990
|
tokenAddress?: string | undefined;
|
|
2991
|
+
}>]>, z.ZodObject<{
|
|
2992
|
+
data: z.ZodObject<{
|
|
2993
|
+
delegatingTo: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
2994
|
+
}, "strip", z.ZodTypeAny, {
|
|
2995
|
+
delegatingTo: `0x${string}`;
|
|
2996
|
+
}, {
|
|
2997
|
+
delegatingTo: string;
|
|
2998
|
+
}>;
|
|
2999
|
+
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
3000
|
+
}, "strip", z.ZodTypeAny, {
|
|
3001
|
+
data: {
|
|
3002
|
+
delegatingTo: `0x${string}`;
|
|
3003
|
+
};
|
|
3004
|
+
totalBalances: Record<string, string>;
|
|
3005
|
+
}, {
|
|
3006
|
+
data: {
|
|
3007
|
+
delegatingTo: string;
|
|
3008
|
+
};
|
|
3009
|
+
totalBalances: Record<string, string>;
|
|
2799
3010
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2800
3011
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
2801
3012
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
@@ -2826,7 +3037,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2826
3037
|
} & E, z.ZodTypeAny, "passthrough">>, z.objectOutputType<{
|
|
2827
3038
|
name: z.ZodString;
|
|
2828
3039
|
manageUrl: z.ZodString;
|
|
2829
|
-
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"staking">]>;
|
|
3040
|
+
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"delegatedTokens">, z.ZodLiteral<"staking">]>;
|
|
2830
3041
|
groups: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2831
3042
|
name: z.ZodOptional<z.ZodString>;
|
|
2832
3043
|
healthRatio: z.ZodOptional<z.ZodString>;
|
|
@@ -2837,7 +3048,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2837
3048
|
name?: string | undefined;
|
|
2838
3049
|
healthRatio?: string | undefined;
|
|
2839
3050
|
}>>>;
|
|
2840
|
-
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
3051
|
+
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
2841
3052
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
2842
3053
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
2843
3054
|
}, {
|
|
@@ -2987,23 +3198,23 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2987
3198
|
debt: z.ZodBoolean;
|
|
2988
3199
|
lending: z.ZodBoolean;
|
|
2989
3200
|
}, "strip", z.ZodTypeAny, {
|
|
3201
|
+
lending: boolean;
|
|
2990
3202
|
collateral: boolean;
|
|
2991
3203
|
debt: boolean;
|
|
2992
|
-
lending: boolean;
|
|
2993
3204
|
apy?: string | undefined;
|
|
2994
3205
|
group?: number | undefined;
|
|
2995
3206
|
}, {
|
|
3207
|
+
lending: boolean;
|
|
2996
3208
|
collateral: boolean;
|
|
2997
3209
|
debt: boolean;
|
|
2998
|
-
lending: boolean;
|
|
2999
3210
|
apy?: string | undefined;
|
|
3000
3211
|
group?: number | undefined;
|
|
3001
3212
|
}>;
|
|
3002
3213
|
}>, "strip", z.ZodTypeAny, {
|
|
3003
3214
|
data: {
|
|
3215
|
+
lending: boolean;
|
|
3004
3216
|
collateral: boolean;
|
|
3005
3217
|
debt: boolean;
|
|
3006
|
-
lending: boolean;
|
|
3007
3218
|
apy?: string | undefined;
|
|
3008
3219
|
group?: number | undefined;
|
|
3009
3220
|
};
|
|
@@ -3011,14 +3222,33 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3011
3222
|
tokenAddress?: `0x${string}` | undefined;
|
|
3012
3223
|
}, {
|
|
3013
3224
|
data: {
|
|
3225
|
+
lending: boolean;
|
|
3014
3226
|
collateral: boolean;
|
|
3015
3227
|
debt: boolean;
|
|
3016
|
-
lending: boolean;
|
|
3017
3228
|
apy?: string | undefined;
|
|
3018
3229
|
group?: number | undefined;
|
|
3019
3230
|
};
|
|
3020
3231
|
totalBalances: Record<string, string>;
|
|
3021
3232
|
tokenAddress?: string | undefined;
|
|
3233
|
+
}>]>, z.ZodObject<{
|
|
3234
|
+
data: z.ZodObject<{
|
|
3235
|
+
delegatingTo: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
3236
|
+
}, "strip", z.ZodTypeAny, {
|
|
3237
|
+
delegatingTo: `0x${string}`;
|
|
3238
|
+
}, {
|
|
3239
|
+
delegatingTo: string;
|
|
3240
|
+
}>;
|
|
3241
|
+
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
3242
|
+
}, "strip", z.ZodTypeAny, {
|
|
3243
|
+
data: {
|
|
3244
|
+
delegatingTo: `0x${string}`;
|
|
3245
|
+
};
|
|
3246
|
+
totalBalances: Record<string, string>;
|
|
3247
|
+
}, {
|
|
3248
|
+
data: {
|
|
3249
|
+
delegatingTo: string;
|
|
3250
|
+
};
|
|
3251
|
+
totalBalances: Record<string, string>;
|
|
3022
3252
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
3023
3253
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
3024
3254
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
@@ -3049,7 +3279,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3049
3279
|
} & E, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
3050
3280
|
name: z.ZodString;
|
|
3051
3281
|
manageUrl: z.ZodString;
|
|
3052
|
-
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"staking">]>;
|
|
3282
|
+
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"delegatedTokens">, z.ZodLiteral<"staking">]>;
|
|
3053
3283
|
groups: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3054
3284
|
name: z.ZodOptional<z.ZodString>;
|
|
3055
3285
|
healthRatio: z.ZodOptional<z.ZodString>;
|
|
@@ -3060,7 +3290,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3060
3290
|
name?: string | undefined;
|
|
3061
3291
|
healthRatio?: string | undefined;
|
|
3062
3292
|
}>>>;
|
|
3063
|
-
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
3293
|
+
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
3064
3294
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
3065
3295
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
3066
3296
|
}, {
|
|
@@ -3210,23 +3440,23 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3210
3440
|
debt: z.ZodBoolean;
|
|
3211
3441
|
lending: z.ZodBoolean;
|
|
3212
3442
|
}, "strip", z.ZodTypeAny, {
|
|
3443
|
+
lending: boolean;
|
|
3213
3444
|
collateral: boolean;
|
|
3214
3445
|
debt: boolean;
|
|
3215
|
-
lending: boolean;
|
|
3216
3446
|
apy?: string | undefined;
|
|
3217
3447
|
group?: number | undefined;
|
|
3218
3448
|
}, {
|
|
3449
|
+
lending: boolean;
|
|
3219
3450
|
collateral: boolean;
|
|
3220
3451
|
debt: boolean;
|
|
3221
|
-
lending: boolean;
|
|
3222
3452
|
apy?: string | undefined;
|
|
3223
3453
|
group?: number | undefined;
|
|
3224
3454
|
}>;
|
|
3225
3455
|
}>, "strip", z.ZodTypeAny, {
|
|
3226
3456
|
data: {
|
|
3457
|
+
lending: boolean;
|
|
3227
3458
|
collateral: boolean;
|
|
3228
3459
|
debt: boolean;
|
|
3229
|
-
lending: boolean;
|
|
3230
3460
|
apy?: string | undefined;
|
|
3231
3461
|
group?: number | undefined;
|
|
3232
3462
|
};
|
|
@@ -3234,14 +3464,33 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3234
3464
|
tokenAddress?: `0x${string}` | undefined;
|
|
3235
3465
|
}, {
|
|
3236
3466
|
data: {
|
|
3467
|
+
lending: boolean;
|
|
3237
3468
|
collateral: boolean;
|
|
3238
3469
|
debt: boolean;
|
|
3239
|
-
lending: boolean;
|
|
3240
3470
|
apy?: string | undefined;
|
|
3241
3471
|
group?: number | undefined;
|
|
3242
3472
|
};
|
|
3243
3473
|
totalBalances: Record<string, string>;
|
|
3244
3474
|
tokenAddress?: string | undefined;
|
|
3475
|
+
}>]>, z.ZodObject<{
|
|
3476
|
+
data: z.ZodObject<{
|
|
3477
|
+
delegatingTo: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
3478
|
+
}, "strip", z.ZodTypeAny, {
|
|
3479
|
+
delegatingTo: `0x${string}`;
|
|
3480
|
+
}, {
|
|
3481
|
+
delegatingTo: string;
|
|
3482
|
+
}>;
|
|
3483
|
+
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
3484
|
+
}, "strip", z.ZodTypeAny, {
|
|
3485
|
+
data: {
|
|
3486
|
+
delegatingTo: `0x${string}`;
|
|
3487
|
+
};
|
|
3488
|
+
totalBalances: Record<string, string>;
|
|
3489
|
+
}, {
|
|
3490
|
+
data: {
|
|
3491
|
+
delegatingTo: string;
|
|
3492
|
+
};
|
|
3493
|
+
totalBalances: Record<string, string>;
|
|
3245
3494
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
3246
3495
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
3247
3496
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
@@ -3276,7 +3525,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
3276
3525
|
products: z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
3277
3526
|
name: z.ZodString;
|
|
3278
3527
|
manageUrl: z.ZodString;
|
|
3279
|
-
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"staking">]>;
|
|
3528
|
+
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"delegatedTokens">, z.ZodLiteral<"staking">]>;
|
|
3280
3529
|
groups: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3281
3530
|
name: z.ZodOptional<z.ZodString>;
|
|
3282
3531
|
healthRatio: z.ZodOptional<z.ZodString>;
|
|
@@ -3287,7 +3536,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
3287
3536
|
name?: string | undefined;
|
|
3288
3537
|
healthRatio?: string | undefined;
|
|
3289
3538
|
}>>>;
|
|
3290
|
-
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
3539
|
+
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
3291
3540
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
3292
3541
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
3293
3542
|
}, {
|
|
@@ -3437,23 +3686,23 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
3437
3686
|
debt: z.ZodBoolean;
|
|
3438
3687
|
lending: z.ZodBoolean;
|
|
3439
3688
|
}, "strip", z.ZodTypeAny, {
|
|
3689
|
+
lending: boolean;
|
|
3440
3690
|
collateral: boolean;
|
|
3441
3691
|
debt: boolean;
|
|
3442
|
-
lending: boolean;
|
|
3443
3692
|
apy?: string | undefined;
|
|
3444
3693
|
group?: number | undefined;
|
|
3445
3694
|
}, {
|
|
3695
|
+
lending: boolean;
|
|
3446
3696
|
collateral: boolean;
|
|
3447
3697
|
debt: boolean;
|
|
3448
|
-
lending: boolean;
|
|
3449
3698
|
apy?: string | undefined;
|
|
3450
3699
|
group?: number | undefined;
|
|
3451
3700
|
}>;
|
|
3452
3701
|
}>, "strip", z.ZodTypeAny, {
|
|
3453
3702
|
data: {
|
|
3703
|
+
lending: boolean;
|
|
3454
3704
|
collateral: boolean;
|
|
3455
3705
|
debt: boolean;
|
|
3456
|
-
lending: boolean;
|
|
3457
3706
|
apy?: string | undefined;
|
|
3458
3707
|
group?: number | undefined;
|
|
3459
3708
|
};
|
|
@@ -3461,14 +3710,33 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
3461
3710
|
tokenAddress?: `0x${string}` | undefined;
|
|
3462
3711
|
}, {
|
|
3463
3712
|
data: {
|
|
3713
|
+
lending: boolean;
|
|
3464
3714
|
collateral: boolean;
|
|
3465
3715
|
debt: boolean;
|
|
3466
|
-
lending: boolean;
|
|
3467
3716
|
apy?: string | undefined;
|
|
3468
3717
|
group?: number | undefined;
|
|
3469
3718
|
};
|
|
3470
3719
|
totalBalances: Record<string, string>;
|
|
3471
3720
|
tokenAddress?: string | undefined;
|
|
3721
|
+
}>]>, z.ZodObject<{
|
|
3722
|
+
data: z.ZodObject<{
|
|
3723
|
+
delegatingTo: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
3724
|
+
}, "strip", z.ZodTypeAny, {
|
|
3725
|
+
delegatingTo: `0x${string}`;
|
|
3726
|
+
}, {
|
|
3727
|
+
delegatingTo: string;
|
|
3728
|
+
}>;
|
|
3729
|
+
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
3730
|
+
}, "strip", z.ZodTypeAny, {
|
|
3731
|
+
data: {
|
|
3732
|
+
delegatingTo: `0x${string}`;
|
|
3733
|
+
};
|
|
3734
|
+
totalBalances: Record<string, string>;
|
|
3735
|
+
}, {
|
|
3736
|
+
data: {
|
|
3737
|
+
delegatingTo: string;
|
|
3738
|
+
};
|
|
3739
|
+
totalBalances: Record<string, string>;
|
|
3472
3740
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
3473
3741
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
3474
3742
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
@@ -3499,7 +3767,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
3499
3767
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
3500
3768
|
name: z.ZodString;
|
|
3501
3769
|
manageUrl: z.ZodString;
|
|
3502
|
-
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"staking">]>;
|
|
3770
|
+
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"delegatedTokens">, z.ZodLiteral<"staking">]>;
|
|
3503
3771
|
groups: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3504
3772
|
name: z.ZodOptional<z.ZodString>;
|
|
3505
3773
|
healthRatio: z.ZodOptional<z.ZodString>;
|
|
@@ -3510,7 +3778,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
3510
3778
|
name?: string | undefined;
|
|
3511
3779
|
healthRatio?: string | undefined;
|
|
3512
3780
|
}>>>;
|
|
3513
|
-
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
3781
|
+
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
3514
3782
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
3515
3783
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
3516
3784
|
}, {
|
|
@@ -3660,23 +3928,23 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
3660
3928
|
debt: z.ZodBoolean;
|
|
3661
3929
|
lending: z.ZodBoolean;
|
|
3662
3930
|
}, "strip", z.ZodTypeAny, {
|
|
3931
|
+
lending: boolean;
|
|
3663
3932
|
collateral: boolean;
|
|
3664
3933
|
debt: boolean;
|
|
3665
|
-
lending: boolean;
|
|
3666
3934
|
apy?: string | undefined;
|
|
3667
3935
|
group?: number | undefined;
|
|
3668
3936
|
}, {
|
|
3937
|
+
lending: boolean;
|
|
3669
3938
|
collateral: boolean;
|
|
3670
3939
|
debt: boolean;
|
|
3671
|
-
lending: boolean;
|
|
3672
3940
|
apy?: string | undefined;
|
|
3673
3941
|
group?: number | undefined;
|
|
3674
3942
|
}>;
|
|
3675
3943
|
}>, "strip", z.ZodTypeAny, {
|
|
3676
3944
|
data: {
|
|
3945
|
+
lending: boolean;
|
|
3677
3946
|
collateral: boolean;
|
|
3678
3947
|
debt: boolean;
|
|
3679
|
-
lending: boolean;
|
|
3680
3948
|
apy?: string | undefined;
|
|
3681
3949
|
group?: number | undefined;
|
|
3682
3950
|
};
|
|
@@ -3684,14 +3952,33 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
3684
3952
|
tokenAddress?: `0x${string}` | undefined;
|
|
3685
3953
|
}, {
|
|
3686
3954
|
data: {
|
|
3955
|
+
lending: boolean;
|
|
3687
3956
|
collateral: boolean;
|
|
3688
3957
|
debt: boolean;
|
|
3689
|
-
lending: boolean;
|
|
3690
3958
|
apy?: string | undefined;
|
|
3691
3959
|
group?: number | undefined;
|
|
3692
3960
|
};
|
|
3693
3961
|
totalBalances: Record<string, string>;
|
|
3694
3962
|
tokenAddress?: string | undefined;
|
|
3963
|
+
}>]>, z.ZodObject<{
|
|
3964
|
+
data: z.ZodObject<{
|
|
3965
|
+
delegatingTo: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
3966
|
+
}, "strip", z.ZodTypeAny, {
|
|
3967
|
+
delegatingTo: `0x${string}`;
|
|
3968
|
+
}, {
|
|
3969
|
+
delegatingTo: string;
|
|
3970
|
+
}>;
|
|
3971
|
+
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
3972
|
+
}, "strip", z.ZodTypeAny, {
|
|
3973
|
+
data: {
|
|
3974
|
+
delegatingTo: `0x${string}`;
|
|
3975
|
+
};
|
|
3976
|
+
totalBalances: Record<string, string>;
|
|
3977
|
+
}, {
|
|
3978
|
+
data: {
|
|
3979
|
+
delegatingTo: string;
|
|
3980
|
+
};
|
|
3981
|
+
totalBalances: Record<string, string>;
|
|
3695
3982
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
3696
3983
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
3697
3984
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
@@ -3722,7 +4009,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
3722
4009
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
3723
4010
|
name: z.ZodString;
|
|
3724
4011
|
manageUrl: z.ZodString;
|
|
3725
|
-
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"staking">]>;
|
|
4012
|
+
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"delegatedTokens">, z.ZodLiteral<"staking">]>;
|
|
3726
4013
|
groups: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3727
4014
|
name: z.ZodOptional<z.ZodString>;
|
|
3728
4015
|
healthRatio: z.ZodOptional<z.ZodString>;
|
|
@@ -3733,7 +4020,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
3733
4020
|
name?: string | undefined;
|
|
3734
4021
|
healthRatio?: string | undefined;
|
|
3735
4022
|
}>>>;
|
|
3736
|
-
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
4023
|
+
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
3737
4024
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
3738
4025
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
3739
4026
|
}, {
|
|
@@ -3883,23 +4170,23 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
3883
4170
|
debt: z.ZodBoolean;
|
|
3884
4171
|
lending: z.ZodBoolean;
|
|
3885
4172
|
}, "strip", z.ZodTypeAny, {
|
|
4173
|
+
lending: boolean;
|
|
3886
4174
|
collateral: boolean;
|
|
3887
4175
|
debt: boolean;
|
|
3888
|
-
lending: boolean;
|
|
3889
4176
|
apy?: string | undefined;
|
|
3890
4177
|
group?: number | undefined;
|
|
3891
4178
|
}, {
|
|
4179
|
+
lending: boolean;
|
|
3892
4180
|
collateral: boolean;
|
|
3893
4181
|
debt: boolean;
|
|
3894
|
-
lending: boolean;
|
|
3895
4182
|
apy?: string | undefined;
|
|
3896
4183
|
group?: number | undefined;
|
|
3897
4184
|
}>;
|
|
3898
4185
|
}>, "strip", z.ZodTypeAny, {
|
|
3899
4186
|
data: {
|
|
4187
|
+
lending: boolean;
|
|
3900
4188
|
collateral: boolean;
|
|
3901
4189
|
debt: boolean;
|
|
3902
|
-
lending: boolean;
|
|
3903
4190
|
apy?: string | undefined;
|
|
3904
4191
|
group?: number | undefined;
|
|
3905
4192
|
};
|
|
@@ -3907,14 +4194,33 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
3907
4194
|
tokenAddress?: `0x${string}` | undefined;
|
|
3908
4195
|
}, {
|
|
3909
4196
|
data: {
|
|
4197
|
+
lending: boolean;
|
|
3910
4198
|
collateral: boolean;
|
|
3911
4199
|
debt: boolean;
|
|
3912
|
-
lending: boolean;
|
|
3913
4200
|
apy?: string | undefined;
|
|
3914
4201
|
group?: number | undefined;
|
|
3915
4202
|
};
|
|
3916
4203
|
totalBalances: Record<string, string>;
|
|
3917
4204
|
tokenAddress?: string | undefined;
|
|
4205
|
+
}>]>, z.ZodObject<{
|
|
4206
|
+
data: z.ZodObject<{
|
|
4207
|
+
delegatingTo: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
4208
|
+
}, "strip", z.ZodTypeAny, {
|
|
4209
|
+
delegatingTo: `0x${string}`;
|
|
4210
|
+
}, {
|
|
4211
|
+
delegatingTo: string;
|
|
4212
|
+
}>;
|
|
4213
|
+
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
4214
|
+
}, "strip", z.ZodTypeAny, {
|
|
4215
|
+
data: {
|
|
4216
|
+
delegatingTo: `0x${string}`;
|
|
4217
|
+
};
|
|
4218
|
+
totalBalances: Record<string, string>;
|
|
4219
|
+
}, {
|
|
4220
|
+
data: {
|
|
4221
|
+
delegatingTo: string;
|
|
4222
|
+
};
|
|
4223
|
+
totalBalances: Record<string, string>;
|
|
3918
4224
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
3919
4225
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
3920
4226
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
@@ -3945,7 +4251,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
3945
4251
|
}, z.ZodTypeAny, "passthrough">>, z.objectOutputType<{
|
|
3946
4252
|
name: z.ZodString;
|
|
3947
4253
|
manageUrl: z.ZodString;
|
|
3948
|
-
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"staking">]>;
|
|
4254
|
+
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"delegatedTokens">, z.ZodLiteral<"staking">]>;
|
|
3949
4255
|
groups: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3950
4256
|
name: z.ZodOptional<z.ZodString>;
|
|
3951
4257
|
healthRatio: z.ZodOptional<z.ZodString>;
|
|
@@ -3956,7 +4262,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
3956
4262
|
name?: string | undefined;
|
|
3957
4263
|
healthRatio?: string | undefined;
|
|
3958
4264
|
}>>>;
|
|
3959
|
-
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
4265
|
+
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
3960
4266
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
3961
4267
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
3962
4268
|
}, {
|
|
@@ -4106,23 +4412,23 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
4106
4412
|
debt: z.ZodBoolean;
|
|
4107
4413
|
lending: z.ZodBoolean;
|
|
4108
4414
|
}, "strip", z.ZodTypeAny, {
|
|
4415
|
+
lending: boolean;
|
|
4109
4416
|
collateral: boolean;
|
|
4110
4417
|
debt: boolean;
|
|
4111
|
-
lending: boolean;
|
|
4112
4418
|
apy?: string | undefined;
|
|
4113
4419
|
group?: number | undefined;
|
|
4114
4420
|
}, {
|
|
4421
|
+
lending: boolean;
|
|
4115
4422
|
collateral: boolean;
|
|
4116
4423
|
debt: boolean;
|
|
4117
|
-
lending: boolean;
|
|
4118
4424
|
apy?: string | undefined;
|
|
4119
4425
|
group?: number | undefined;
|
|
4120
4426
|
}>;
|
|
4121
4427
|
}>, "strip", z.ZodTypeAny, {
|
|
4122
4428
|
data: {
|
|
4429
|
+
lending: boolean;
|
|
4123
4430
|
collateral: boolean;
|
|
4124
4431
|
debt: boolean;
|
|
4125
|
-
lending: boolean;
|
|
4126
4432
|
apy?: string | undefined;
|
|
4127
4433
|
group?: number | undefined;
|
|
4128
4434
|
};
|
|
@@ -4130,14 +4436,33 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
4130
4436
|
tokenAddress?: `0x${string}` | undefined;
|
|
4131
4437
|
}, {
|
|
4132
4438
|
data: {
|
|
4439
|
+
lending: boolean;
|
|
4133
4440
|
collateral: boolean;
|
|
4134
4441
|
debt: boolean;
|
|
4135
|
-
lending: boolean;
|
|
4136
4442
|
apy?: string | undefined;
|
|
4137
4443
|
group?: number | undefined;
|
|
4138
4444
|
};
|
|
4139
4445
|
totalBalances: Record<string, string>;
|
|
4140
4446
|
tokenAddress?: string | undefined;
|
|
4447
|
+
}>]>, z.ZodObject<{
|
|
4448
|
+
data: z.ZodObject<{
|
|
4449
|
+
delegatingTo: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
4450
|
+
}, "strip", z.ZodTypeAny, {
|
|
4451
|
+
delegatingTo: `0x${string}`;
|
|
4452
|
+
}, {
|
|
4453
|
+
delegatingTo: string;
|
|
4454
|
+
}>;
|
|
4455
|
+
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
4456
|
+
}, "strip", z.ZodTypeAny, {
|
|
4457
|
+
data: {
|
|
4458
|
+
delegatingTo: `0x${string}`;
|
|
4459
|
+
};
|
|
4460
|
+
totalBalances: Record<string, string>;
|
|
4461
|
+
}, {
|
|
4462
|
+
data: {
|
|
4463
|
+
delegatingTo: string;
|
|
4464
|
+
};
|
|
4465
|
+
totalBalances: Record<string, string>;
|
|
4141
4466
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
4142
4467
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
4143
4468
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
@@ -4168,7 +4493,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
4168
4493
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
4169
4494
|
name: z.ZodString;
|
|
4170
4495
|
manageUrl: z.ZodString;
|
|
4171
|
-
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"staking">]>;
|
|
4496
|
+
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"delegatedTokens">, z.ZodLiteral<"staking">]>;
|
|
4172
4497
|
groups: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
4173
4498
|
name: z.ZodOptional<z.ZodString>;
|
|
4174
4499
|
healthRatio: z.ZodOptional<z.ZodString>;
|
|
@@ -4179,7 +4504,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
4179
4504
|
name?: string | undefined;
|
|
4180
4505
|
healthRatio?: string | undefined;
|
|
4181
4506
|
}>>>;
|
|
4182
|
-
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
4507
|
+
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
4183
4508
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
4184
4509
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
4185
4510
|
}, {
|
|
@@ -4329,23 +4654,23 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
4329
4654
|
debt: z.ZodBoolean;
|
|
4330
4655
|
lending: z.ZodBoolean;
|
|
4331
4656
|
}, "strip", z.ZodTypeAny, {
|
|
4657
|
+
lending: boolean;
|
|
4332
4658
|
collateral: boolean;
|
|
4333
4659
|
debt: boolean;
|
|
4334
|
-
lending: boolean;
|
|
4335
4660
|
apy?: string | undefined;
|
|
4336
4661
|
group?: number | undefined;
|
|
4337
4662
|
}, {
|
|
4663
|
+
lending: boolean;
|
|
4338
4664
|
collateral: boolean;
|
|
4339
4665
|
debt: boolean;
|
|
4340
|
-
lending: boolean;
|
|
4341
4666
|
apy?: string | undefined;
|
|
4342
4667
|
group?: number | undefined;
|
|
4343
4668
|
}>;
|
|
4344
4669
|
}>, "strip", z.ZodTypeAny, {
|
|
4345
4670
|
data: {
|
|
4671
|
+
lending: boolean;
|
|
4346
4672
|
collateral: boolean;
|
|
4347
4673
|
debt: boolean;
|
|
4348
|
-
lending: boolean;
|
|
4349
4674
|
apy?: string | undefined;
|
|
4350
4675
|
group?: number | undefined;
|
|
4351
4676
|
};
|
|
@@ -4353,14 +4678,33 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
4353
4678
|
tokenAddress?: `0x${string}` | undefined;
|
|
4354
4679
|
}, {
|
|
4355
4680
|
data: {
|
|
4681
|
+
lending: boolean;
|
|
4356
4682
|
collateral: boolean;
|
|
4357
4683
|
debt: boolean;
|
|
4358
|
-
lending: boolean;
|
|
4359
4684
|
apy?: string | undefined;
|
|
4360
4685
|
group?: number | undefined;
|
|
4361
4686
|
};
|
|
4362
4687
|
totalBalances: Record<string, string>;
|
|
4363
4688
|
tokenAddress?: string | undefined;
|
|
4689
|
+
}>]>, z.ZodObject<{
|
|
4690
|
+
data: z.ZodObject<{
|
|
4691
|
+
delegatingTo: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
4692
|
+
}, "strip", z.ZodTypeAny, {
|
|
4693
|
+
delegatingTo: `0x${string}`;
|
|
4694
|
+
}, {
|
|
4695
|
+
delegatingTo: string;
|
|
4696
|
+
}>;
|
|
4697
|
+
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
4698
|
+
}, "strip", z.ZodTypeAny, {
|
|
4699
|
+
data: {
|
|
4700
|
+
delegatingTo: `0x${string}`;
|
|
4701
|
+
};
|
|
4702
|
+
totalBalances: Record<string, string>;
|
|
4703
|
+
}, {
|
|
4704
|
+
data: {
|
|
4705
|
+
delegatingTo: string;
|
|
4706
|
+
};
|
|
4707
|
+
totalBalances: Record<string, string>;
|
|
4364
4708
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
4365
4709
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
4366
4710
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
@@ -4392,7 +4736,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
4392
4736
|
extend: <E extends z.ZodRawShape>(extension: E) => z.ZodEffects<z.ZodObject<{
|
|
4393
4737
|
name: z.ZodString;
|
|
4394
4738
|
manageUrl: z.ZodString;
|
|
4395
|
-
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"staking">]>;
|
|
4739
|
+
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"delegatedTokens">, z.ZodLiteral<"staking">]>;
|
|
4396
4740
|
groups: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
4397
4741
|
name: z.ZodOptional<z.ZodString>;
|
|
4398
4742
|
healthRatio: z.ZodOptional<z.ZodString>;
|
|
@@ -4403,7 +4747,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
4403
4747
|
name?: string | undefined;
|
|
4404
4748
|
healthRatio?: string | undefined;
|
|
4405
4749
|
}>>>;
|
|
4406
|
-
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
4750
|
+
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
4407
4751
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
4408
4752
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
4409
4753
|
}, {
|
|
@@ -4553,23 +4897,23 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
4553
4897
|
debt: z.ZodBoolean;
|
|
4554
4898
|
lending: z.ZodBoolean;
|
|
4555
4899
|
}, "strip", z.ZodTypeAny, {
|
|
4900
|
+
lending: boolean;
|
|
4556
4901
|
collateral: boolean;
|
|
4557
4902
|
debt: boolean;
|
|
4558
|
-
lending: boolean;
|
|
4559
4903
|
apy?: string | undefined;
|
|
4560
4904
|
group?: number | undefined;
|
|
4561
4905
|
}, {
|
|
4906
|
+
lending: boolean;
|
|
4562
4907
|
collateral: boolean;
|
|
4563
4908
|
debt: boolean;
|
|
4564
|
-
lending: boolean;
|
|
4565
4909
|
apy?: string | undefined;
|
|
4566
4910
|
group?: number | undefined;
|
|
4567
4911
|
}>;
|
|
4568
4912
|
}>, "strip", z.ZodTypeAny, {
|
|
4569
4913
|
data: {
|
|
4914
|
+
lending: boolean;
|
|
4570
4915
|
collateral: boolean;
|
|
4571
4916
|
debt: boolean;
|
|
4572
|
-
lending: boolean;
|
|
4573
4917
|
apy?: string | undefined;
|
|
4574
4918
|
group?: number | undefined;
|
|
4575
4919
|
};
|
|
@@ -4577,14 +4921,33 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
4577
4921
|
tokenAddress?: `0x${string}` | undefined;
|
|
4578
4922
|
}, {
|
|
4579
4923
|
data: {
|
|
4924
|
+
lending: boolean;
|
|
4580
4925
|
collateral: boolean;
|
|
4581
4926
|
debt: boolean;
|
|
4582
|
-
lending: boolean;
|
|
4583
4927
|
apy?: string | undefined;
|
|
4584
4928
|
group?: number | undefined;
|
|
4585
4929
|
};
|
|
4586
4930
|
totalBalances: Record<string, string>;
|
|
4587
4931
|
tokenAddress?: string | undefined;
|
|
4932
|
+
}>]>, z.ZodObject<{
|
|
4933
|
+
data: z.ZodObject<{
|
|
4934
|
+
delegatingTo: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
4935
|
+
}, "strip", z.ZodTypeAny, {
|
|
4936
|
+
delegatingTo: `0x${string}`;
|
|
4937
|
+
}, {
|
|
4938
|
+
delegatingTo: string;
|
|
4939
|
+
}>;
|
|
4940
|
+
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
4941
|
+
}, "strip", z.ZodTypeAny, {
|
|
4942
|
+
data: {
|
|
4943
|
+
delegatingTo: `0x${string}`;
|
|
4944
|
+
};
|
|
4945
|
+
totalBalances: Record<string, string>;
|
|
4946
|
+
}, {
|
|
4947
|
+
data: {
|
|
4948
|
+
delegatingTo: string;
|
|
4949
|
+
};
|
|
4950
|
+
totalBalances: Record<string, string>;
|
|
4588
4951
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
4589
4952
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
4590
4953
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
@@ -4615,7 +4978,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
4615
4978
|
} & E, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
4616
4979
|
name: z.ZodString;
|
|
4617
4980
|
manageUrl: z.ZodString;
|
|
4618
|
-
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"staking">]>;
|
|
4981
|
+
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"delegatedTokens">, z.ZodLiteral<"staking">]>;
|
|
4619
4982
|
groups: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
4620
4983
|
name: z.ZodOptional<z.ZodString>;
|
|
4621
4984
|
healthRatio: z.ZodOptional<z.ZodString>;
|
|
@@ -4626,7 +4989,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
4626
4989
|
name?: string | undefined;
|
|
4627
4990
|
healthRatio?: string | undefined;
|
|
4628
4991
|
}>>>;
|
|
4629
|
-
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
4992
|
+
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
4630
4993
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
4631
4994
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
4632
4995
|
}, {
|
|
@@ -4776,23 +5139,23 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
4776
5139
|
debt: z.ZodBoolean;
|
|
4777
5140
|
lending: z.ZodBoolean;
|
|
4778
5141
|
}, "strip", z.ZodTypeAny, {
|
|
5142
|
+
lending: boolean;
|
|
4779
5143
|
collateral: boolean;
|
|
4780
5144
|
debt: boolean;
|
|
4781
|
-
lending: boolean;
|
|
4782
5145
|
apy?: string | undefined;
|
|
4783
5146
|
group?: number | undefined;
|
|
4784
5147
|
}, {
|
|
5148
|
+
lending: boolean;
|
|
4785
5149
|
collateral: boolean;
|
|
4786
5150
|
debt: boolean;
|
|
4787
|
-
lending: boolean;
|
|
4788
5151
|
apy?: string | undefined;
|
|
4789
5152
|
group?: number | undefined;
|
|
4790
5153
|
}>;
|
|
4791
5154
|
}>, "strip", z.ZodTypeAny, {
|
|
4792
5155
|
data: {
|
|
5156
|
+
lending: boolean;
|
|
4793
5157
|
collateral: boolean;
|
|
4794
5158
|
debt: boolean;
|
|
4795
|
-
lending: boolean;
|
|
4796
5159
|
apy?: string | undefined;
|
|
4797
5160
|
group?: number | undefined;
|
|
4798
5161
|
};
|
|
@@ -4800,14 +5163,33 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
4800
5163
|
tokenAddress?: `0x${string}` | undefined;
|
|
4801
5164
|
}, {
|
|
4802
5165
|
data: {
|
|
5166
|
+
lending: boolean;
|
|
4803
5167
|
collateral: boolean;
|
|
4804
5168
|
debt: boolean;
|
|
4805
|
-
lending: boolean;
|
|
4806
5169
|
apy?: string | undefined;
|
|
4807
5170
|
group?: number | undefined;
|
|
4808
5171
|
};
|
|
4809
5172
|
totalBalances: Record<string, string>;
|
|
4810
5173
|
tokenAddress?: string | undefined;
|
|
5174
|
+
}>]>, z.ZodObject<{
|
|
5175
|
+
data: z.ZodObject<{
|
|
5176
|
+
delegatingTo: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
5177
|
+
}, "strip", z.ZodTypeAny, {
|
|
5178
|
+
delegatingTo: `0x${string}`;
|
|
5179
|
+
}, {
|
|
5180
|
+
delegatingTo: string;
|
|
5181
|
+
}>;
|
|
5182
|
+
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
5183
|
+
}, "strip", z.ZodTypeAny, {
|
|
5184
|
+
data: {
|
|
5185
|
+
delegatingTo: `0x${string}`;
|
|
5186
|
+
};
|
|
5187
|
+
totalBalances: Record<string, string>;
|
|
5188
|
+
}, {
|
|
5189
|
+
data: {
|
|
5190
|
+
delegatingTo: string;
|
|
5191
|
+
};
|
|
5192
|
+
totalBalances: Record<string, string>;
|
|
4811
5193
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
4812
5194
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
4813
5195
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
@@ -4838,7 +5220,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
4838
5220
|
} & E, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
4839
5221
|
name: z.ZodString;
|
|
4840
5222
|
manageUrl: z.ZodString;
|
|
4841
|
-
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"staking">]>;
|
|
5223
|
+
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"delegatedTokens">, z.ZodLiteral<"staking">]>;
|
|
4842
5224
|
groups: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
4843
5225
|
name: z.ZodOptional<z.ZodString>;
|
|
4844
5226
|
healthRatio: z.ZodOptional<z.ZodString>;
|
|
@@ -4849,7 +5231,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
4849
5231
|
name?: string | undefined;
|
|
4850
5232
|
healthRatio?: string | undefined;
|
|
4851
5233
|
}>>>;
|
|
4852
|
-
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
5234
|
+
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
4853
5235
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
4854
5236
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
4855
5237
|
}, {
|
|
@@ -4999,23 +5381,23 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
4999
5381
|
debt: z.ZodBoolean;
|
|
5000
5382
|
lending: z.ZodBoolean;
|
|
5001
5383
|
}, "strip", z.ZodTypeAny, {
|
|
5384
|
+
lending: boolean;
|
|
5002
5385
|
collateral: boolean;
|
|
5003
5386
|
debt: boolean;
|
|
5004
|
-
lending: boolean;
|
|
5005
5387
|
apy?: string | undefined;
|
|
5006
5388
|
group?: number | undefined;
|
|
5007
5389
|
}, {
|
|
5390
|
+
lending: boolean;
|
|
5008
5391
|
collateral: boolean;
|
|
5009
5392
|
debt: boolean;
|
|
5010
|
-
lending: boolean;
|
|
5011
5393
|
apy?: string | undefined;
|
|
5012
5394
|
group?: number | undefined;
|
|
5013
5395
|
}>;
|
|
5014
5396
|
}>, "strip", z.ZodTypeAny, {
|
|
5015
5397
|
data: {
|
|
5398
|
+
lending: boolean;
|
|
5016
5399
|
collateral: boolean;
|
|
5017
5400
|
debt: boolean;
|
|
5018
|
-
lending: boolean;
|
|
5019
5401
|
apy?: string | undefined;
|
|
5020
5402
|
group?: number | undefined;
|
|
5021
5403
|
};
|
|
@@ -5023,14 +5405,33 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5023
5405
|
tokenAddress?: `0x${string}` | undefined;
|
|
5024
5406
|
}, {
|
|
5025
5407
|
data: {
|
|
5408
|
+
lending: boolean;
|
|
5026
5409
|
collateral: boolean;
|
|
5027
5410
|
debt: boolean;
|
|
5028
|
-
lending: boolean;
|
|
5029
5411
|
apy?: string | undefined;
|
|
5030
5412
|
group?: number | undefined;
|
|
5031
5413
|
};
|
|
5032
5414
|
totalBalances: Record<string, string>;
|
|
5033
5415
|
tokenAddress?: string | undefined;
|
|
5416
|
+
}>]>, z.ZodObject<{
|
|
5417
|
+
data: z.ZodObject<{
|
|
5418
|
+
delegatingTo: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
5419
|
+
}, "strip", z.ZodTypeAny, {
|
|
5420
|
+
delegatingTo: `0x${string}`;
|
|
5421
|
+
}, {
|
|
5422
|
+
delegatingTo: string;
|
|
5423
|
+
}>;
|
|
5424
|
+
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
5425
|
+
}, "strip", z.ZodTypeAny, {
|
|
5426
|
+
data: {
|
|
5427
|
+
delegatingTo: `0x${string}`;
|
|
5428
|
+
};
|
|
5429
|
+
totalBalances: Record<string, string>;
|
|
5430
|
+
}, {
|
|
5431
|
+
data: {
|
|
5432
|
+
delegatingTo: string;
|
|
5433
|
+
};
|
|
5434
|
+
totalBalances: Record<string, string>;
|
|
5034
5435
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5035
5436
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
5036
5437
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
@@ -5061,7 +5462,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5061
5462
|
} & E, z.ZodTypeAny, "passthrough">>, z.objectOutputType<{
|
|
5062
5463
|
name: z.ZodString;
|
|
5063
5464
|
manageUrl: z.ZodString;
|
|
5064
|
-
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"staking">]>;
|
|
5465
|
+
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"delegatedTokens">, z.ZodLiteral<"staking">]>;
|
|
5065
5466
|
groups: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
5066
5467
|
name: z.ZodOptional<z.ZodString>;
|
|
5067
5468
|
healthRatio: z.ZodOptional<z.ZodString>;
|
|
@@ -5072,7 +5473,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5072
5473
|
name?: string | undefined;
|
|
5073
5474
|
healthRatio?: string | undefined;
|
|
5074
5475
|
}>>>;
|
|
5075
|
-
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
5476
|
+
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
5076
5477
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
5077
5478
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
5078
5479
|
}, {
|
|
@@ -5222,23 +5623,23 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5222
5623
|
debt: z.ZodBoolean;
|
|
5223
5624
|
lending: z.ZodBoolean;
|
|
5224
5625
|
}, "strip", z.ZodTypeAny, {
|
|
5626
|
+
lending: boolean;
|
|
5225
5627
|
collateral: boolean;
|
|
5226
5628
|
debt: boolean;
|
|
5227
|
-
lending: boolean;
|
|
5228
5629
|
apy?: string | undefined;
|
|
5229
5630
|
group?: number | undefined;
|
|
5230
5631
|
}, {
|
|
5632
|
+
lending: boolean;
|
|
5231
5633
|
collateral: boolean;
|
|
5232
5634
|
debt: boolean;
|
|
5233
|
-
lending: boolean;
|
|
5234
5635
|
apy?: string | undefined;
|
|
5235
5636
|
group?: number | undefined;
|
|
5236
5637
|
}>;
|
|
5237
5638
|
}>, "strip", z.ZodTypeAny, {
|
|
5238
5639
|
data: {
|
|
5640
|
+
lending: boolean;
|
|
5239
5641
|
collateral: boolean;
|
|
5240
5642
|
debt: boolean;
|
|
5241
|
-
lending: boolean;
|
|
5242
5643
|
apy?: string | undefined;
|
|
5243
5644
|
group?: number | undefined;
|
|
5244
5645
|
};
|
|
@@ -5246,14 +5647,33 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5246
5647
|
tokenAddress?: `0x${string}` | undefined;
|
|
5247
5648
|
}, {
|
|
5248
5649
|
data: {
|
|
5650
|
+
lending: boolean;
|
|
5249
5651
|
collateral: boolean;
|
|
5250
5652
|
debt: boolean;
|
|
5251
|
-
lending: boolean;
|
|
5252
5653
|
apy?: string | undefined;
|
|
5253
5654
|
group?: number | undefined;
|
|
5254
5655
|
};
|
|
5255
5656
|
totalBalances: Record<string, string>;
|
|
5256
5657
|
tokenAddress?: string | undefined;
|
|
5658
|
+
}>]>, z.ZodObject<{
|
|
5659
|
+
data: z.ZodObject<{
|
|
5660
|
+
delegatingTo: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
5661
|
+
}, "strip", z.ZodTypeAny, {
|
|
5662
|
+
delegatingTo: `0x${string}`;
|
|
5663
|
+
}, {
|
|
5664
|
+
delegatingTo: string;
|
|
5665
|
+
}>;
|
|
5666
|
+
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
5667
|
+
}, "strip", z.ZodTypeAny, {
|
|
5668
|
+
data: {
|
|
5669
|
+
delegatingTo: `0x${string}`;
|
|
5670
|
+
};
|
|
5671
|
+
totalBalances: Record<string, string>;
|
|
5672
|
+
}, {
|
|
5673
|
+
data: {
|
|
5674
|
+
delegatingTo: string;
|
|
5675
|
+
};
|
|
5676
|
+
totalBalances: Record<string, string>;
|
|
5257
5677
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5258
5678
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
5259
5679
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
@@ -5284,7 +5704,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5284
5704
|
} & E, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
5285
5705
|
name: z.ZodString;
|
|
5286
5706
|
manageUrl: z.ZodString;
|
|
5287
|
-
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"staking">]>;
|
|
5707
|
+
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"delegatedTokens">, z.ZodLiteral<"staking">]>;
|
|
5288
5708
|
groups: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
5289
5709
|
name: z.ZodOptional<z.ZodString>;
|
|
5290
5710
|
healthRatio: z.ZodOptional<z.ZodString>;
|
|
@@ -5295,7 +5715,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5295
5715
|
name?: string | undefined;
|
|
5296
5716
|
healthRatio?: string | undefined;
|
|
5297
5717
|
}>>>;
|
|
5298
|
-
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
5718
|
+
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
5299
5719
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
5300
5720
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
5301
5721
|
}, {
|
|
@@ -5445,23 +5865,23 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5445
5865
|
debt: z.ZodBoolean;
|
|
5446
5866
|
lending: z.ZodBoolean;
|
|
5447
5867
|
}, "strip", z.ZodTypeAny, {
|
|
5868
|
+
lending: boolean;
|
|
5448
5869
|
collateral: boolean;
|
|
5449
5870
|
debt: boolean;
|
|
5450
|
-
lending: boolean;
|
|
5451
5871
|
apy?: string | undefined;
|
|
5452
5872
|
group?: number | undefined;
|
|
5453
5873
|
}, {
|
|
5874
|
+
lending: boolean;
|
|
5454
5875
|
collateral: boolean;
|
|
5455
5876
|
debt: boolean;
|
|
5456
|
-
lending: boolean;
|
|
5457
5877
|
apy?: string | undefined;
|
|
5458
5878
|
group?: number | undefined;
|
|
5459
5879
|
}>;
|
|
5460
5880
|
}>, "strip", z.ZodTypeAny, {
|
|
5461
5881
|
data: {
|
|
5882
|
+
lending: boolean;
|
|
5462
5883
|
collateral: boolean;
|
|
5463
5884
|
debt: boolean;
|
|
5464
|
-
lending: boolean;
|
|
5465
5885
|
apy?: string | undefined;
|
|
5466
5886
|
group?: number | undefined;
|
|
5467
5887
|
};
|
|
@@ -5469,14 +5889,33 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5469
5889
|
tokenAddress?: `0x${string}` | undefined;
|
|
5470
5890
|
}, {
|
|
5471
5891
|
data: {
|
|
5892
|
+
lending: boolean;
|
|
5472
5893
|
collateral: boolean;
|
|
5473
5894
|
debt: boolean;
|
|
5474
|
-
lending: boolean;
|
|
5475
5895
|
apy?: string | undefined;
|
|
5476
5896
|
group?: number | undefined;
|
|
5477
5897
|
};
|
|
5478
5898
|
totalBalances: Record<string, string>;
|
|
5479
5899
|
tokenAddress?: string | undefined;
|
|
5900
|
+
}>]>, z.ZodObject<{
|
|
5901
|
+
data: z.ZodObject<{
|
|
5902
|
+
delegatingTo: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
5903
|
+
}, "strip", z.ZodTypeAny, {
|
|
5904
|
+
delegatingTo: `0x${string}`;
|
|
5905
|
+
}, {
|
|
5906
|
+
delegatingTo: string;
|
|
5907
|
+
}>;
|
|
5908
|
+
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
5909
|
+
}, "strip", z.ZodTypeAny, {
|
|
5910
|
+
data: {
|
|
5911
|
+
delegatingTo: `0x${string}`;
|
|
5912
|
+
};
|
|
5913
|
+
totalBalances: Record<string, string>;
|
|
5914
|
+
}, {
|
|
5915
|
+
data: {
|
|
5916
|
+
delegatingTo: string;
|
|
5917
|
+
};
|
|
5918
|
+
totalBalances: Record<string, string>;
|
|
5480
5919
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5481
5920
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
5482
5921
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
@@ -5511,7 +5950,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5511
5950
|
products: z.objectOutputType<{
|
|
5512
5951
|
name: z.ZodString;
|
|
5513
5952
|
manageUrl: z.ZodString;
|
|
5514
|
-
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"staking">]>;
|
|
5953
|
+
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"delegatedTokens">, z.ZodLiteral<"staking">]>;
|
|
5515
5954
|
groups: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
5516
5955
|
name: z.ZodOptional<z.ZodString>;
|
|
5517
5956
|
healthRatio: z.ZodOptional<z.ZodString>;
|
|
@@ -5522,7 +5961,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5522
5961
|
name?: string | undefined;
|
|
5523
5962
|
healthRatio?: string | undefined;
|
|
5524
5963
|
}>>>;
|
|
5525
|
-
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
5964
|
+
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
5526
5965
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
5527
5966
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
5528
5967
|
}, {
|
|
@@ -5672,23 +6111,23 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5672
6111
|
debt: z.ZodBoolean;
|
|
5673
6112
|
lending: z.ZodBoolean;
|
|
5674
6113
|
}, "strip", z.ZodTypeAny, {
|
|
6114
|
+
lending: boolean;
|
|
5675
6115
|
collateral: boolean;
|
|
5676
6116
|
debt: boolean;
|
|
5677
|
-
lending: boolean;
|
|
5678
6117
|
apy?: string | undefined;
|
|
5679
6118
|
group?: number | undefined;
|
|
5680
6119
|
}, {
|
|
6120
|
+
lending: boolean;
|
|
5681
6121
|
collateral: boolean;
|
|
5682
6122
|
debt: boolean;
|
|
5683
|
-
lending: boolean;
|
|
5684
6123
|
apy?: string | undefined;
|
|
5685
6124
|
group?: number | undefined;
|
|
5686
6125
|
}>;
|
|
5687
6126
|
}>, "strip", z.ZodTypeAny, {
|
|
5688
6127
|
data: {
|
|
6128
|
+
lending: boolean;
|
|
5689
6129
|
collateral: boolean;
|
|
5690
6130
|
debt: boolean;
|
|
5691
|
-
lending: boolean;
|
|
5692
6131
|
apy?: string | undefined;
|
|
5693
6132
|
group?: number | undefined;
|
|
5694
6133
|
};
|
|
@@ -5696,14 +6135,33 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5696
6135
|
tokenAddress?: `0x${string}` | undefined;
|
|
5697
6136
|
}, {
|
|
5698
6137
|
data: {
|
|
6138
|
+
lending: boolean;
|
|
5699
6139
|
collateral: boolean;
|
|
5700
6140
|
debt: boolean;
|
|
5701
|
-
lending: boolean;
|
|
5702
6141
|
apy?: string | undefined;
|
|
5703
6142
|
group?: number | undefined;
|
|
5704
6143
|
};
|
|
5705
6144
|
totalBalances: Record<string, string>;
|
|
5706
6145
|
tokenAddress?: string | undefined;
|
|
6146
|
+
}>]>, z.ZodObject<{
|
|
6147
|
+
data: z.ZodObject<{
|
|
6148
|
+
delegatingTo: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
6149
|
+
}, "strip", z.ZodTypeAny, {
|
|
6150
|
+
delegatingTo: `0x${string}`;
|
|
6151
|
+
}, {
|
|
6152
|
+
delegatingTo: string;
|
|
6153
|
+
}>;
|
|
6154
|
+
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
6155
|
+
}, "strip", z.ZodTypeAny, {
|
|
6156
|
+
data: {
|
|
6157
|
+
delegatingTo: `0x${string}`;
|
|
6158
|
+
};
|
|
6159
|
+
totalBalances: Record<string, string>;
|
|
6160
|
+
}, {
|
|
6161
|
+
data: {
|
|
6162
|
+
delegatingTo: string;
|
|
6163
|
+
};
|
|
6164
|
+
totalBalances: Record<string, string>;
|
|
5707
6165
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5708
6166
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
5709
6167
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
@@ -5737,7 +6195,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5737
6195
|
products: z.objectInputType<{
|
|
5738
6196
|
name: z.ZodString;
|
|
5739
6197
|
manageUrl: z.ZodString;
|
|
5740
|
-
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"staking">]>;
|
|
6198
|
+
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"delegatedTokens">, z.ZodLiteral<"staking">]>;
|
|
5741
6199
|
groups: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
5742
6200
|
name: z.ZodOptional<z.ZodString>;
|
|
5743
6201
|
healthRatio: z.ZodOptional<z.ZodString>;
|
|
@@ -5748,7 +6206,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5748
6206
|
name?: string | undefined;
|
|
5749
6207
|
healthRatio?: string | undefined;
|
|
5750
6208
|
}>>>;
|
|
5751
|
-
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
6209
|
+
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
5752
6210
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
5753
6211
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
5754
6212
|
}, {
|
|
@@ -5898,23 +6356,23 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5898
6356
|
debt: z.ZodBoolean;
|
|
5899
6357
|
lending: z.ZodBoolean;
|
|
5900
6358
|
}, "strip", z.ZodTypeAny, {
|
|
6359
|
+
lending: boolean;
|
|
5901
6360
|
collateral: boolean;
|
|
5902
6361
|
debt: boolean;
|
|
5903
|
-
lending: boolean;
|
|
5904
6362
|
apy?: string | undefined;
|
|
5905
6363
|
group?: number | undefined;
|
|
5906
6364
|
}, {
|
|
6365
|
+
lending: boolean;
|
|
5907
6366
|
collateral: boolean;
|
|
5908
6367
|
debt: boolean;
|
|
5909
|
-
lending: boolean;
|
|
5910
6368
|
apy?: string | undefined;
|
|
5911
6369
|
group?: number | undefined;
|
|
5912
6370
|
}>;
|
|
5913
6371
|
}>, "strip", z.ZodTypeAny, {
|
|
5914
6372
|
data: {
|
|
6373
|
+
lending: boolean;
|
|
5915
6374
|
collateral: boolean;
|
|
5916
6375
|
debt: boolean;
|
|
5917
|
-
lending: boolean;
|
|
5918
6376
|
apy?: string | undefined;
|
|
5919
6377
|
group?: number | undefined;
|
|
5920
6378
|
};
|
|
@@ -5922,14 +6380,33 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5922
6380
|
tokenAddress?: `0x${string}` | undefined;
|
|
5923
6381
|
}, {
|
|
5924
6382
|
data: {
|
|
6383
|
+
lending: boolean;
|
|
5925
6384
|
collateral: boolean;
|
|
5926
6385
|
debt: boolean;
|
|
5927
|
-
lending: boolean;
|
|
5928
6386
|
apy?: string | undefined;
|
|
5929
6387
|
group?: number | undefined;
|
|
5930
6388
|
};
|
|
5931
6389
|
totalBalances: Record<string, string>;
|
|
5932
6390
|
tokenAddress?: string | undefined;
|
|
6391
|
+
}>]>, z.ZodObject<{
|
|
6392
|
+
data: z.ZodObject<{
|
|
6393
|
+
delegatingTo: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
6394
|
+
}, "strip", z.ZodTypeAny, {
|
|
6395
|
+
delegatingTo: `0x${string}`;
|
|
6396
|
+
}, {
|
|
6397
|
+
delegatingTo: string;
|
|
6398
|
+
}>;
|
|
6399
|
+
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
6400
|
+
}, "strip", z.ZodTypeAny, {
|
|
6401
|
+
data: {
|
|
6402
|
+
delegatingTo: `0x${string}`;
|
|
6403
|
+
};
|
|
6404
|
+
totalBalances: Record<string, string>;
|
|
6405
|
+
}, {
|
|
6406
|
+
data: {
|
|
6407
|
+
delegatingTo: string;
|
|
6408
|
+
};
|
|
6409
|
+
totalBalances: Record<string, string>;
|
|
5933
6410
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5934
6411
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
5935
6412
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
@@ -5965,7 +6442,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
5965
6442
|
products: z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
5966
6443
|
name: z.ZodString;
|
|
5967
6444
|
manageUrl: z.ZodString;
|
|
5968
|
-
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"staking">]>;
|
|
6445
|
+
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"delegatedTokens">, z.ZodLiteral<"staking">]>;
|
|
5969
6446
|
groups: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
5970
6447
|
name: z.ZodOptional<z.ZodString>;
|
|
5971
6448
|
healthRatio: z.ZodOptional<z.ZodString>;
|
|
@@ -5976,7 +6453,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
5976
6453
|
name?: string | undefined;
|
|
5977
6454
|
healthRatio?: string | undefined;
|
|
5978
6455
|
}>>>;
|
|
5979
|
-
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
6456
|
+
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
5980
6457
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
5981
6458
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
5982
6459
|
}, {
|
|
@@ -6126,23 +6603,23 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
6126
6603
|
debt: z.ZodBoolean;
|
|
6127
6604
|
lending: z.ZodBoolean;
|
|
6128
6605
|
}, "strip", z.ZodTypeAny, {
|
|
6606
|
+
lending: boolean;
|
|
6129
6607
|
collateral: boolean;
|
|
6130
6608
|
debt: boolean;
|
|
6131
|
-
lending: boolean;
|
|
6132
6609
|
apy?: string | undefined;
|
|
6133
6610
|
group?: number | undefined;
|
|
6134
6611
|
}, {
|
|
6612
|
+
lending: boolean;
|
|
6135
6613
|
collateral: boolean;
|
|
6136
6614
|
debt: boolean;
|
|
6137
|
-
lending: boolean;
|
|
6138
6615
|
apy?: string | undefined;
|
|
6139
6616
|
group?: number | undefined;
|
|
6140
6617
|
}>;
|
|
6141
6618
|
}>, "strip", z.ZodTypeAny, {
|
|
6142
6619
|
data: {
|
|
6620
|
+
lending: boolean;
|
|
6143
6621
|
collateral: boolean;
|
|
6144
6622
|
debt: boolean;
|
|
6145
|
-
lending: boolean;
|
|
6146
6623
|
apy?: string | undefined;
|
|
6147
6624
|
group?: number | undefined;
|
|
6148
6625
|
};
|
|
@@ -6150,14 +6627,33 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
6150
6627
|
tokenAddress?: `0x${string}` | undefined;
|
|
6151
6628
|
}, {
|
|
6152
6629
|
data: {
|
|
6630
|
+
lending: boolean;
|
|
6153
6631
|
collateral: boolean;
|
|
6154
6632
|
debt: boolean;
|
|
6155
|
-
lending: boolean;
|
|
6156
6633
|
apy?: string | undefined;
|
|
6157
6634
|
group?: number | undefined;
|
|
6158
6635
|
};
|
|
6159
6636
|
totalBalances: Record<string, string>;
|
|
6160
6637
|
tokenAddress?: string | undefined;
|
|
6638
|
+
}>]>, z.ZodObject<{
|
|
6639
|
+
data: z.ZodObject<{
|
|
6640
|
+
delegatingTo: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
6641
|
+
}, "strip", z.ZodTypeAny, {
|
|
6642
|
+
delegatingTo: `0x${string}`;
|
|
6643
|
+
}, {
|
|
6644
|
+
delegatingTo: string;
|
|
6645
|
+
}>;
|
|
6646
|
+
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
6647
|
+
}, "strip", z.ZodTypeAny, {
|
|
6648
|
+
data: {
|
|
6649
|
+
delegatingTo: `0x${string}`;
|
|
6650
|
+
};
|
|
6651
|
+
totalBalances: Record<string, string>;
|
|
6652
|
+
}, {
|
|
6653
|
+
data: {
|
|
6654
|
+
delegatingTo: string;
|
|
6655
|
+
};
|
|
6656
|
+
totalBalances: Record<string, string>;
|
|
6161
6657
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6162
6658
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
6163
6659
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
@@ -6188,7 +6684,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
6188
6684
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
6189
6685
|
name: z.ZodString;
|
|
6190
6686
|
manageUrl: z.ZodString;
|
|
6191
|
-
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"staking">]>;
|
|
6687
|
+
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"delegatedTokens">, z.ZodLiteral<"staking">]>;
|
|
6192
6688
|
groups: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
6193
6689
|
name: z.ZodOptional<z.ZodString>;
|
|
6194
6690
|
healthRatio: z.ZodOptional<z.ZodString>;
|
|
@@ -6199,7 +6695,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
6199
6695
|
name?: string | undefined;
|
|
6200
6696
|
healthRatio?: string | undefined;
|
|
6201
6697
|
}>>>;
|
|
6202
|
-
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
6698
|
+
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
6203
6699
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
6204
6700
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
6205
6701
|
}, {
|
|
@@ -6349,23 +6845,23 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
6349
6845
|
debt: z.ZodBoolean;
|
|
6350
6846
|
lending: z.ZodBoolean;
|
|
6351
6847
|
}, "strip", z.ZodTypeAny, {
|
|
6848
|
+
lending: boolean;
|
|
6352
6849
|
collateral: boolean;
|
|
6353
6850
|
debt: boolean;
|
|
6354
|
-
lending: boolean;
|
|
6355
6851
|
apy?: string | undefined;
|
|
6356
6852
|
group?: number | undefined;
|
|
6357
6853
|
}, {
|
|
6854
|
+
lending: boolean;
|
|
6358
6855
|
collateral: boolean;
|
|
6359
6856
|
debt: boolean;
|
|
6360
|
-
lending: boolean;
|
|
6361
6857
|
apy?: string | undefined;
|
|
6362
6858
|
group?: number | undefined;
|
|
6363
6859
|
}>;
|
|
6364
6860
|
}>, "strip", z.ZodTypeAny, {
|
|
6365
6861
|
data: {
|
|
6862
|
+
lending: boolean;
|
|
6366
6863
|
collateral: boolean;
|
|
6367
6864
|
debt: boolean;
|
|
6368
|
-
lending: boolean;
|
|
6369
6865
|
apy?: string | undefined;
|
|
6370
6866
|
group?: number | undefined;
|
|
6371
6867
|
};
|
|
@@ -6373,14 +6869,33 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
6373
6869
|
tokenAddress?: `0x${string}` | undefined;
|
|
6374
6870
|
}, {
|
|
6375
6871
|
data: {
|
|
6872
|
+
lending: boolean;
|
|
6376
6873
|
collateral: boolean;
|
|
6377
6874
|
debt: boolean;
|
|
6378
|
-
lending: boolean;
|
|
6379
6875
|
apy?: string | undefined;
|
|
6380
6876
|
group?: number | undefined;
|
|
6381
6877
|
};
|
|
6382
6878
|
totalBalances: Record<string, string>;
|
|
6383
|
-
tokenAddress?: string | undefined;
|
|
6879
|
+
tokenAddress?: string | undefined;
|
|
6880
|
+
}>]>, z.ZodObject<{
|
|
6881
|
+
data: z.ZodObject<{
|
|
6882
|
+
delegatingTo: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
6883
|
+
}, "strip", z.ZodTypeAny, {
|
|
6884
|
+
delegatingTo: `0x${string}`;
|
|
6885
|
+
}, {
|
|
6886
|
+
delegatingTo: string;
|
|
6887
|
+
}>;
|
|
6888
|
+
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
6889
|
+
}, "strip", z.ZodTypeAny, {
|
|
6890
|
+
data: {
|
|
6891
|
+
delegatingTo: `0x${string}`;
|
|
6892
|
+
};
|
|
6893
|
+
totalBalances: Record<string, string>;
|
|
6894
|
+
}, {
|
|
6895
|
+
data: {
|
|
6896
|
+
delegatingTo: string;
|
|
6897
|
+
};
|
|
6898
|
+
totalBalances: Record<string, string>;
|
|
6384
6899
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6385
6900
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
6386
6901
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
@@ -6411,7 +6926,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
6411
6926
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
6412
6927
|
name: z.ZodString;
|
|
6413
6928
|
manageUrl: z.ZodString;
|
|
6414
|
-
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"staking">]>;
|
|
6929
|
+
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"delegatedTokens">, z.ZodLiteral<"staking">]>;
|
|
6415
6930
|
groups: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
6416
6931
|
name: z.ZodOptional<z.ZodString>;
|
|
6417
6932
|
healthRatio: z.ZodOptional<z.ZodString>;
|
|
@@ -6422,7 +6937,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
6422
6937
|
name?: string | undefined;
|
|
6423
6938
|
healthRatio?: string | undefined;
|
|
6424
6939
|
}>>>;
|
|
6425
|
-
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
6940
|
+
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
6426
6941
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
6427
6942
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
6428
6943
|
}, {
|
|
@@ -6572,23 +7087,23 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
6572
7087
|
debt: z.ZodBoolean;
|
|
6573
7088
|
lending: z.ZodBoolean;
|
|
6574
7089
|
}, "strip", z.ZodTypeAny, {
|
|
7090
|
+
lending: boolean;
|
|
6575
7091
|
collateral: boolean;
|
|
6576
7092
|
debt: boolean;
|
|
6577
|
-
lending: boolean;
|
|
6578
7093
|
apy?: string | undefined;
|
|
6579
7094
|
group?: number | undefined;
|
|
6580
7095
|
}, {
|
|
7096
|
+
lending: boolean;
|
|
6581
7097
|
collateral: boolean;
|
|
6582
7098
|
debt: boolean;
|
|
6583
|
-
lending: boolean;
|
|
6584
7099
|
apy?: string | undefined;
|
|
6585
7100
|
group?: number | undefined;
|
|
6586
7101
|
}>;
|
|
6587
7102
|
}>, "strip", z.ZodTypeAny, {
|
|
6588
7103
|
data: {
|
|
7104
|
+
lending: boolean;
|
|
6589
7105
|
collateral: boolean;
|
|
6590
7106
|
debt: boolean;
|
|
6591
|
-
lending: boolean;
|
|
6592
7107
|
apy?: string | undefined;
|
|
6593
7108
|
group?: number | undefined;
|
|
6594
7109
|
};
|
|
@@ -6596,14 +7111,33 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
6596
7111
|
tokenAddress?: `0x${string}` | undefined;
|
|
6597
7112
|
}, {
|
|
6598
7113
|
data: {
|
|
7114
|
+
lending: boolean;
|
|
6599
7115
|
collateral: boolean;
|
|
6600
7116
|
debt: boolean;
|
|
6601
|
-
lending: boolean;
|
|
6602
7117
|
apy?: string | undefined;
|
|
6603
7118
|
group?: number | undefined;
|
|
6604
7119
|
};
|
|
6605
7120
|
totalBalances: Record<string, string>;
|
|
6606
7121
|
tokenAddress?: string | undefined;
|
|
7122
|
+
}>]>, z.ZodObject<{
|
|
7123
|
+
data: z.ZodObject<{
|
|
7124
|
+
delegatingTo: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
7125
|
+
}, "strip", z.ZodTypeAny, {
|
|
7126
|
+
delegatingTo: `0x${string}`;
|
|
7127
|
+
}, {
|
|
7128
|
+
delegatingTo: string;
|
|
7129
|
+
}>;
|
|
7130
|
+
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
7131
|
+
}, "strip", z.ZodTypeAny, {
|
|
7132
|
+
data: {
|
|
7133
|
+
delegatingTo: `0x${string}`;
|
|
7134
|
+
};
|
|
7135
|
+
totalBalances: Record<string, string>;
|
|
7136
|
+
}, {
|
|
7137
|
+
data: {
|
|
7138
|
+
delegatingTo: string;
|
|
7139
|
+
};
|
|
7140
|
+
totalBalances: Record<string, string>;
|
|
6607
7141
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6608
7142
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
6609
7143
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
@@ -6634,7 +7168,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
6634
7168
|
}, z.ZodTypeAny, "passthrough">>, z.objectOutputType<{
|
|
6635
7169
|
name: z.ZodString;
|
|
6636
7170
|
manageUrl: z.ZodString;
|
|
6637
|
-
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"staking">]>;
|
|
7171
|
+
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"delegatedTokens">, z.ZodLiteral<"staking">]>;
|
|
6638
7172
|
groups: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
6639
7173
|
name: z.ZodOptional<z.ZodString>;
|
|
6640
7174
|
healthRatio: z.ZodOptional<z.ZodString>;
|
|
@@ -6645,7 +7179,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
6645
7179
|
name?: string | undefined;
|
|
6646
7180
|
healthRatio?: string | undefined;
|
|
6647
7181
|
}>>>;
|
|
6648
|
-
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
7182
|
+
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
6649
7183
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
6650
7184
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
6651
7185
|
}, {
|
|
@@ -6795,23 +7329,23 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
6795
7329
|
debt: z.ZodBoolean;
|
|
6796
7330
|
lending: z.ZodBoolean;
|
|
6797
7331
|
}, "strip", z.ZodTypeAny, {
|
|
7332
|
+
lending: boolean;
|
|
6798
7333
|
collateral: boolean;
|
|
6799
7334
|
debt: boolean;
|
|
6800
|
-
lending: boolean;
|
|
6801
7335
|
apy?: string | undefined;
|
|
6802
7336
|
group?: number | undefined;
|
|
6803
7337
|
}, {
|
|
7338
|
+
lending: boolean;
|
|
6804
7339
|
collateral: boolean;
|
|
6805
7340
|
debt: boolean;
|
|
6806
|
-
lending: boolean;
|
|
6807
7341
|
apy?: string | undefined;
|
|
6808
7342
|
group?: number | undefined;
|
|
6809
7343
|
}>;
|
|
6810
7344
|
}>, "strip", z.ZodTypeAny, {
|
|
6811
7345
|
data: {
|
|
7346
|
+
lending: boolean;
|
|
6812
7347
|
collateral: boolean;
|
|
6813
7348
|
debt: boolean;
|
|
6814
|
-
lending: boolean;
|
|
6815
7349
|
apy?: string | undefined;
|
|
6816
7350
|
group?: number | undefined;
|
|
6817
7351
|
};
|
|
@@ -6819,14 +7353,33 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
6819
7353
|
tokenAddress?: `0x${string}` | undefined;
|
|
6820
7354
|
}, {
|
|
6821
7355
|
data: {
|
|
7356
|
+
lending: boolean;
|
|
6822
7357
|
collateral: boolean;
|
|
6823
7358
|
debt: boolean;
|
|
6824
|
-
lending: boolean;
|
|
6825
7359
|
apy?: string | undefined;
|
|
6826
7360
|
group?: number | undefined;
|
|
6827
7361
|
};
|
|
6828
7362
|
totalBalances: Record<string, string>;
|
|
6829
7363
|
tokenAddress?: string | undefined;
|
|
7364
|
+
}>]>, z.ZodObject<{
|
|
7365
|
+
data: z.ZodObject<{
|
|
7366
|
+
delegatingTo: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
7367
|
+
}, "strip", z.ZodTypeAny, {
|
|
7368
|
+
delegatingTo: `0x${string}`;
|
|
7369
|
+
}, {
|
|
7370
|
+
delegatingTo: string;
|
|
7371
|
+
}>;
|
|
7372
|
+
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
7373
|
+
}, "strip", z.ZodTypeAny, {
|
|
7374
|
+
data: {
|
|
7375
|
+
delegatingTo: `0x${string}`;
|
|
7376
|
+
};
|
|
7377
|
+
totalBalances: Record<string, string>;
|
|
7378
|
+
}, {
|
|
7379
|
+
data: {
|
|
7380
|
+
delegatingTo: string;
|
|
7381
|
+
};
|
|
7382
|
+
totalBalances: Record<string, string>;
|
|
6830
7383
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6831
7384
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
6832
7385
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
@@ -6857,7 +7410,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
6857
7410
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
6858
7411
|
name: z.ZodString;
|
|
6859
7412
|
manageUrl: z.ZodString;
|
|
6860
|
-
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"staking">]>;
|
|
7413
|
+
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"delegatedTokens">, z.ZodLiteral<"staking">]>;
|
|
6861
7414
|
groups: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
6862
7415
|
name: z.ZodOptional<z.ZodString>;
|
|
6863
7416
|
healthRatio: z.ZodOptional<z.ZodString>;
|
|
@@ -6868,7 +7421,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
6868
7421
|
name?: string | undefined;
|
|
6869
7422
|
healthRatio?: string | undefined;
|
|
6870
7423
|
}>>>;
|
|
6871
|
-
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
7424
|
+
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
6872
7425
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
6873
7426
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
6874
7427
|
}, {
|
|
@@ -7018,23 +7571,23 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
7018
7571
|
debt: z.ZodBoolean;
|
|
7019
7572
|
lending: z.ZodBoolean;
|
|
7020
7573
|
}, "strip", z.ZodTypeAny, {
|
|
7574
|
+
lending: boolean;
|
|
7021
7575
|
collateral: boolean;
|
|
7022
7576
|
debt: boolean;
|
|
7023
|
-
lending: boolean;
|
|
7024
7577
|
apy?: string | undefined;
|
|
7025
7578
|
group?: number | undefined;
|
|
7026
7579
|
}, {
|
|
7580
|
+
lending: boolean;
|
|
7027
7581
|
collateral: boolean;
|
|
7028
7582
|
debt: boolean;
|
|
7029
|
-
lending: boolean;
|
|
7030
7583
|
apy?: string | undefined;
|
|
7031
7584
|
group?: number | undefined;
|
|
7032
7585
|
}>;
|
|
7033
7586
|
}>, "strip", z.ZodTypeAny, {
|
|
7034
7587
|
data: {
|
|
7588
|
+
lending: boolean;
|
|
7035
7589
|
collateral: boolean;
|
|
7036
7590
|
debt: boolean;
|
|
7037
|
-
lending: boolean;
|
|
7038
7591
|
apy?: string | undefined;
|
|
7039
7592
|
group?: number | undefined;
|
|
7040
7593
|
};
|
|
@@ -7042,14 +7595,33 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
7042
7595
|
tokenAddress?: `0x${string}` | undefined;
|
|
7043
7596
|
}, {
|
|
7044
7597
|
data: {
|
|
7598
|
+
lending: boolean;
|
|
7045
7599
|
collateral: boolean;
|
|
7046
7600
|
debt: boolean;
|
|
7047
|
-
lending: boolean;
|
|
7048
7601
|
apy?: string | undefined;
|
|
7049
7602
|
group?: number | undefined;
|
|
7050
7603
|
};
|
|
7051
7604
|
totalBalances: Record<string, string>;
|
|
7052
7605
|
tokenAddress?: string | undefined;
|
|
7606
|
+
}>]>, z.ZodObject<{
|
|
7607
|
+
data: z.ZodObject<{
|
|
7608
|
+
delegatingTo: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
7609
|
+
}, "strip", z.ZodTypeAny, {
|
|
7610
|
+
delegatingTo: `0x${string}`;
|
|
7611
|
+
}, {
|
|
7612
|
+
delegatingTo: string;
|
|
7613
|
+
}>;
|
|
7614
|
+
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
7615
|
+
}, "strip", z.ZodTypeAny, {
|
|
7616
|
+
data: {
|
|
7617
|
+
delegatingTo: `0x${string}`;
|
|
7618
|
+
};
|
|
7619
|
+
totalBalances: Record<string, string>;
|
|
7620
|
+
}, {
|
|
7621
|
+
data: {
|
|
7622
|
+
delegatingTo: string;
|
|
7623
|
+
};
|
|
7624
|
+
totalBalances: Record<string, string>;
|
|
7053
7625
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7054
7626
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
7055
7627
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
@@ -7081,7 +7653,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
7081
7653
|
extend: <E extends z.ZodRawShape>(extension: E) => z.ZodEffects<z.ZodObject<{
|
|
7082
7654
|
name: z.ZodString;
|
|
7083
7655
|
manageUrl: z.ZodString;
|
|
7084
|
-
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"staking">]>;
|
|
7656
|
+
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"delegatedTokens">, z.ZodLiteral<"staking">]>;
|
|
7085
7657
|
groups: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
7086
7658
|
name: z.ZodOptional<z.ZodString>;
|
|
7087
7659
|
healthRatio: z.ZodOptional<z.ZodString>;
|
|
@@ -7092,7 +7664,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
7092
7664
|
name?: string | undefined;
|
|
7093
7665
|
healthRatio?: string | undefined;
|
|
7094
7666
|
}>>>;
|
|
7095
|
-
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
7667
|
+
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
7096
7668
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
7097
7669
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
7098
7670
|
}, {
|
|
@@ -7242,23 +7814,23 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
7242
7814
|
debt: z.ZodBoolean;
|
|
7243
7815
|
lending: z.ZodBoolean;
|
|
7244
7816
|
}, "strip", z.ZodTypeAny, {
|
|
7817
|
+
lending: boolean;
|
|
7245
7818
|
collateral: boolean;
|
|
7246
7819
|
debt: boolean;
|
|
7247
|
-
lending: boolean;
|
|
7248
7820
|
apy?: string | undefined;
|
|
7249
7821
|
group?: number | undefined;
|
|
7250
7822
|
}, {
|
|
7823
|
+
lending: boolean;
|
|
7251
7824
|
collateral: boolean;
|
|
7252
7825
|
debt: boolean;
|
|
7253
|
-
lending: boolean;
|
|
7254
7826
|
apy?: string | undefined;
|
|
7255
7827
|
group?: number | undefined;
|
|
7256
7828
|
}>;
|
|
7257
7829
|
}>, "strip", z.ZodTypeAny, {
|
|
7258
7830
|
data: {
|
|
7831
|
+
lending: boolean;
|
|
7259
7832
|
collateral: boolean;
|
|
7260
7833
|
debt: boolean;
|
|
7261
|
-
lending: boolean;
|
|
7262
7834
|
apy?: string | undefined;
|
|
7263
7835
|
group?: number | undefined;
|
|
7264
7836
|
};
|
|
@@ -7266,14 +7838,33 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
7266
7838
|
tokenAddress?: `0x${string}` | undefined;
|
|
7267
7839
|
}, {
|
|
7268
7840
|
data: {
|
|
7841
|
+
lending: boolean;
|
|
7269
7842
|
collateral: boolean;
|
|
7270
7843
|
debt: boolean;
|
|
7271
|
-
lending: boolean;
|
|
7272
7844
|
apy?: string | undefined;
|
|
7273
7845
|
group?: number | undefined;
|
|
7274
7846
|
};
|
|
7275
7847
|
totalBalances: Record<string, string>;
|
|
7276
7848
|
tokenAddress?: string | undefined;
|
|
7849
|
+
}>]>, z.ZodObject<{
|
|
7850
|
+
data: z.ZodObject<{
|
|
7851
|
+
delegatingTo: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
7852
|
+
}, "strip", z.ZodTypeAny, {
|
|
7853
|
+
delegatingTo: `0x${string}`;
|
|
7854
|
+
}, {
|
|
7855
|
+
delegatingTo: string;
|
|
7856
|
+
}>;
|
|
7857
|
+
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
7858
|
+
}, "strip", z.ZodTypeAny, {
|
|
7859
|
+
data: {
|
|
7860
|
+
delegatingTo: `0x${string}`;
|
|
7861
|
+
};
|
|
7862
|
+
totalBalances: Record<string, string>;
|
|
7863
|
+
}, {
|
|
7864
|
+
data: {
|
|
7865
|
+
delegatingTo: string;
|
|
7866
|
+
};
|
|
7867
|
+
totalBalances: Record<string, string>;
|
|
7277
7868
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7278
7869
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
7279
7870
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
@@ -7304,7 +7895,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
7304
7895
|
} & E, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
7305
7896
|
name: z.ZodString;
|
|
7306
7897
|
manageUrl: z.ZodString;
|
|
7307
|
-
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"staking">]>;
|
|
7898
|
+
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"delegatedTokens">, z.ZodLiteral<"staking">]>;
|
|
7308
7899
|
groups: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
7309
7900
|
name: z.ZodOptional<z.ZodString>;
|
|
7310
7901
|
healthRatio: z.ZodOptional<z.ZodString>;
|
|
@@ -7315,7 +7906,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
7315
7906
|
name?: string | undefined;
|
|
7316
7907
|
healthRatio?: string | undefined;
|
|
7317
7908
|
}>>>;
|
|
7318
|
-
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
7909
|
+
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
7319
7910
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
7320
7911
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
7321
7912
|
}, {
|
|
@@ -7465,23 +8056,23 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
7465
8056
|
debt: z.ZodBoolean;
|
|
7466
8057
|
lending: z.ZodBoolean;
|
|
7467
8058
|
}, "strip", z.ZodTypeAny, {
|
|
8059
|
+
lending: boolean;
|
|
7468
8060
|
collateral: boolean;
|
|
7469
8061
|
debt: boolean;
|
|
7470
|
-
lending: boolean;
|
|
7471
8062
|
apy?: string | undefined;
|
|
7472
8063
|
group?: number | undefined;
|
|
7473
8064
|
}, {
|
|
8065
|
+
lending: boolean;
|
|
7474
8066
|
collateral: boolean;
|
|
7475
8067
|
debt: boolean;
|
|
7476
|
-
lending: boolean;
|
|
7477
8068
|
apy?: string | undefined;
|
|
7478
8069
|
group?: number | undefined;
|
|
7479
8070
|
}>;
|
|
7480
8071
|
}>, "strip", z.ZodTypeAny, {
|
|
7481
8072
|
data: {
|
|
8073
|
+
lending: boolean;
|
|
7482
8074
|
collateral: boolean;
|
|
7483
8075
|
debt: boolean;
|
|
7484
|
-
lending: boolean;
|
|
7485
8076
|
apy?: string | undefined;
|
|
7486
8077
|
group?: number | undefined;
|
|
7487
8078
|
};
|
|
@@ -7489,14 +8080,33 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
7489
8080
|
tokenAddress?: `0x${string}` | undefined;
|
|
7490
8081
|
}, {
|
|
7491
8082
|
data: {
|
|
8083
|
+
lending: boolean;
|
|
7492
8084
|
collateral: boolean;
|
|
7493
8085
|
debt: boolean;
|
|
7494
|
-
lending: boolean;
|
|
7495
8086
|
apy?: string | undefined;
|
|
7496
8087
|
group?: number | undefined;
|
|
7497
8088
|
};
|
|
7498
8089
|
totalBalances: Record<string, string>;
|
|
7499
8090
|
tokenAddress?: string | undefined;
|
|
8091
|
+
}>]>, z.ZodObject<{
|
|
8092
|
+
data: z.ZodObject<{
|
|
8093
|
+
delegatingTo: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
8094
|
+
}, "strip", z.ZodTypeAny, {
|
|
8095
|
+
delegatingTo: `0x${string}`;
|
|
8096
|
+
}, {
|
|
8097
|
+
delegatingTo: string;
|
|
8098
|
+
}>;
|
|
8099
|
+
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
8100
|
+
}, "strip", z.ZodTypeAny, {
|
|
8101
|
+
data: {
|
|
8102
|
+
delegatingTo: `0x${string}`;
|
|
8103
|
+
};
|
|
8104
|
+
totalBalances: Record<string, string>;
|
|
8105
|
+
}, {
|
|
8106
|
+
data: {
|
|
8107
|
+
delegatingTo: string;
|
|
8108
|
+
};
|
|
8109
|
+
totalBalances: Record<string, string>;
|
|
7500
8110
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7501
8111
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
7502
8112
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
@@ -7527,7 +8137,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
7527
8137
|
} & E, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
7528
8138
|
name: z.ZodString;
|
|
7529
8139
|
manageUrl: z.ZodString;
|
|
7530
|
-
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"staking">]>;
|
|
8140
|
+
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"delegatedTokens">, z.ZodLiteral<"staking">]>;
|
|
7531
8141
|
groups: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
7532
8142
|
name: z.ZodOptional<z.ZodString>;
|
|
7533
8143
|
healthRatio: z.ZodOptional<z.ZodString>;
|
|
@@ -7538,7 +8148,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
7538
8148
|
name?: string | undefined;
|
|
7539
8149
|
healthRatio?: string | undefined;
|
|
7540
8150
|
}>>>;
|
|
7541
|
-
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
8151
|
+
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
7542
8152
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
7543
8153
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
7544
8154
|
}, {
|
|
@@ -7688,23 +8298,23 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
7688
8298
|
debt: z.ZodBoolean;
|
|
7689
8299
|
lending: z.ZodBoolean;
|
|
7690
8300
|
}, "strip", z.ZodTypeAny, {
|
|
8301
|
+
lending: boolean;
|
|
7691
8302
|
collateral: boolean;
|
|
7692
8303
|
debt: boolean;
|
|
7693
|
-
lending: boolean;
|
|
7694
8304
|
apy?: string | undefined;
|
|
7695
8305
|
group?: number | undefined;
|
|
7696
8306
|
}, {
|
|
8307
|
+
lending: boolean;
|
|
7697
8308
|
collateral: boolean;
|
|
7698
8309
|
debt: boolean;
|
|
7699
|
-
lending: boolean;
|
|
7700
8310
|
apy?: string | undefined;
|
|
7701
8311
|
group?: number | undefined;
|
|
7702
8312
|
}>;
|
|
7703
8313
|
}>, "strip", z.ZodTypeAny, {
|
|
7704
8314
|
data: {
|
|
8315
|
+
lending: boolean;
|
|
7705
8316
|
collateral: boolean;
|
|
7706
8317
|
debt: boolean;
|
|
7707
|
-
lending: boolean;
|
|
7708
8318
|
apy?: string | undefined;
|
|
7709
8319
|
group?: number | undefined;
|
|
7710
8320
|
};
|
|
@@ -7712,14 +8322,33 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
7712
8322
|
tokenAddress?: `0x${string}` | undefined;
|
|
7713
8323
|
}, {
|
|
7714
8324
|
data: {
|
|
8325
|
+
lending: boolean;
|
|
7715
8326
|
collateral: boolean;
|
|
7716
8327
|
debt: boolean;
|
|
7717
|
-
lending: boolean;
|
|
7718
8328
|
apy?: string | undefined;
|
|
7719
8329
|
group?: number | undefined;
|
|
7720
8330
|
};
|
|
7721
8331
|
totalBalances: Record<string, string>;
|
|
7722
8332
|
tokenAddress?: string | undefined;
|
|
8333
|
+
}>]>, z.ZodObject<{
|
|
8334
|
+
data: z.ZodObject<{
|
|
8335
|
+
delegatingTo: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
8336
|
+
}, "strip", z.ZodTypeAny, {
|
|
8337
|
+
delegatingTo: `0x${string}`;
|
|
8338
|
+
}, {
|
|
8339
|
+
delegatingTo: string;
|
|
8340
|
+
}>;
|
|
8341
|
+
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
8342
|
+
}, "strip", z.ZodTypeAny, {
|
|
8343
|
+
data: {
|
|
8344
|
+
delegatingTo: `0x${string}`;
|
|
8345
|
+
};
|
|
8346
|
+
totalBalances: Record<string, string>;
|
|
8347
|
+
}, {
|
|
8348
|
+
data: {
|
|
8349
|
+
delegatingTo: string;
|
|
8350
|
+
};
|
|
8351
|
+
totalBalances: Record<string, string>;
|
|
7723
8352
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7724
8353
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
7725
8354
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
@@ -7750,7 +8379,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
7750
8379
|
} & E, z.ZodTypeAny, "passthrough">>, z.objectOutputType<{
|
|
7751
8380
|
name: z.ZodString;
|
|
7752
8381
|
manageUrl: z.ZodString;
|
|
7753
|
-
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"staking">]>;
|
|
8382
|
+
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"delegatedTokens">, z.ZodLiteral<"staking">]>;
|
|
7754
8383
|
groups: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
7755
8384
|
name: z.ZodOptional<z.ZodString>;
|
|
7756
8385
|
healthRatio: z.ZodOptional<z.ZodString>;
|
|
@@ -7761,7 +8390,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
7761
8390
|
name?: string | undefined;
|
|
7762
8391
|
healthRatio?: string | undefined;
|
|
7763
8392
|
}>>>;
|
|
7764
|
-
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
8393
|
+
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
7765
8394
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
7766
8395
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
7767
8396
|
}, {
|
|
@@ -7911,23 +8540,23 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
7911
8540
|
debt: z.ZodBoolean;
|
|
7912
8541
|
lending: z.ZodBoolean;
|
|
7913
8542
|
}, "strip", z.ZodTypeAny, {
|
|
8543
|
+
lending: boolean;
|
|
7914
8544
|
collateral: boolean;
|
|
7915
8545
|
debt: boolean;
|
|
7916
|
-
lending: boolean;
|
|
7917
8546
|
apy?: string | undefined;
|
|
7918
8547
|
group?: number | undefined;
|
|
7919
8548
|
}, {
|
|
8549
|
+
lending: boolean;
|
|
7920
8550
|
collateral: boolean;
|
|
7921
8551
|
debt: boolean;
|
|
7922
|
-
lending: boolean;
|
|
7923
8552
|
apy?: string | undefined;
|
|
7924
8553
|
group?: number | undefined;
|
|
7925
8554
|
}>;
|
|
7926
8555
|
}>, "strip", z.ZodTypeAny, {
|
|
7927
8556
|
data: {
|
|
8557
|
+
lending: boolean;
|
|
7928
8558
|
collateral: boolean;
|
|
7929
8559
|
debt: boolean;
|
|
7930
|
-
lending: boolean;
|
|
7931
8560
|
apy?: string | undefined;
|
|
7932
8561
|
group?: number | undefined;
|
|
7933
8562
|
};
|
|
@@ -7935,14 +8564,33 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
7935
8564
|
tokenAddress?: `0x${string}` | undefined;
|
|
7936
8565
|
}, {
|
|
7937
8566
|
data: {
|
|
8567
|
+
lending: boolean;
|
|
7938
8568
|
collateral: boolean;
|
|
7939
8569
|
debt: boolean;
|
|
7940
|
-
lending: boolean;
|
|
7941
8570
|
apy?: string | undefined;
|
|
7942
8571
|
group?: number | undefined;
|
|
7943
8572
|
};
|
|
7944
8573
|
totalBalances: Record<string, string>;
|
|
7945
8574
|
tokenAddress?: string | undefined;
|
|
8575
|
+
}>]>, z.ZodObject<{
|
|
8576
|
+
data: z.ZodObject<{
|
|
8577
|
+
delegatingTo: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
8578
|
+
}, "strip", z.ZodTypeAny, {
|
|
8579
|
+
delegatingTo: `0x${string}`;
|
|
8580
|
+
}, {
|
|
8581
|
+
delegatingTo: string;
|
|
8582
|
+
}>;
|
|
8583
|
+
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
8584
|
+
}, "strip", z.ZodTypeAny, {
|
|
8585
|
+
data: {
|
|
8586
|
+
delegatingTo: `0x${string}`;
|
|
8587
|
+
};
|
|
8588
|
+
totalBalances: Record<string, string>;
|
|
8589
|
+
}, {
|
|
8590
|
+
data: {
|
|
8591
|
+
delegatingTo: string;
|
|
8592
|
+
};
|
|
8593
|
+
totalBalances: Record<string, string>;
|
|
7946
8594
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7947
8595
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
7948
8596
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
@@ -7973,7 +8621,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
7973
8621
|
} & E, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
7974
8622
|
name: z.ZodString;
|
|
7975
8623
|
manageUrl: z.ZodString;
|
|
7976
|
-
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"staking">]>;
|
|
8624
|
+
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"delegatedTokens">, z.ZodLiteral<"staking">]>;
|
|
7977
8625
|
groups: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
7978
8626
|
name: z.ZodOptional<z.ZodString>;
|
|
7979
8627
|
healthRatio: z.ZodOptional<z.ZodString>;
|
|
@@ -7984,7 +8632,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
7984
8632
|
name?: string | undefined;
|
|
7985
8633
|
healthRatio?: string | undefined;
|
|
7986
8634
|
}>>>;
|
|
7987
|
-
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
8635
|
+
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
7988
8636
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
7989
8637
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
7990
8638
|
}, {
|
|
@@ -8134,23 +8782,23 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
8134
8782
|
debt: z.ZodBoolean;
|
|
8135
8783
|
lending: z.ZodBoolean;
|
|
8136
8784
|
}, "strip", z.ZodTypeAny, {
|
|
8785
|
+
lending: boolean;
|
|
8137
8786
|
collateral: boolean;
|
|
8138
8787
|
debt: boolean;
|
|
8139
|
-
lending: boolean;
|
|
8140
8788
|
apy?: string | undefined;
|
|
8141
8789
|
group?: number | undefined;
|
|
8142
8790
|
}, {
|
|
8791
|
+
lending: boolean;
|
|
8143
8792
|
collateral: boolean;
|
|
8144
8793
|
debt: boolean;
|
|
8145
|
-
lending: boolean;
|
|
8146
8794
|
apy?: string | undefined;
|
|
8147
8795
|
group?: number | undefined;
|
|
8148
8796
|
}>;
|
|
8149
8797
|
}>, "strip", z.ZodTypeAny, {
|
|
8150
8798
|
data: {
|
|
8799
|
+
lending: boolean;
|
|
8151
8800
|
collateral: boolean;
|
|
8152
8801
|
debt: boolean;
|
|
8153
|
-
lending: boolean;
|
|
8154
8802
|
apy?: string | undefined;
|
|
8155
8803
|
group?: number | undefined;
|
|
8156
8804
|
};
|
|
@@ -8158,14 +8806,33 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
8158
8806
|
tokenAddress?: `0x${string}` | undefined;
|
|
8159
8807
|
}, {
|
|
8160
8808
|
data: {
|
|
8809
|
+
lending: boolean;
|
|
8161
8810
|
collateral: boolean;
|
|
8162
8811
|
debt: boolean;
|
|
8163
|
-
lending: boolean;
|
|
8164
8812
|
apy?: string | undefined;
|
|
8165
8813
|
group?: number | undefined;
|
|
8166
8814
|
};
|
|
8167
8815
|
totalBalances: Record<string, string>;
|
|
8168
8816
|
tokenAddress?: string | undefined;
|
|
8817
|
+
}>]>, z.ZodObject<{
|
|
8818
|
+
data: z.ZodObject<{
|
|
8819
|
+
delegatingTo: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
8820
|
+
}, "strip", z.ZodTypeAny, {
|
|
8821
|
+
delegatingTo: `0x${string}`;
|
|
8822
|
+
}, {
|
|
8823
|
+
delegatingTo: string;
|
|
8824
|
+
}>;
|
|
8825
|
+
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
8826
|
+
}, "strip", z.ZodTypeAny, {
|
|
8827
|
+
data: {
|
|
8828
|
+
delegatingTo: `0x${string}`;
|
|
8829
|
+
};
|
|
8830
|
+
totalBalances: Record<string, string>;
|
|
8831
|
+
}, {
|
|
8832
|
+
data: {
|
|
8833
|
+
delegatingTo: string;
|
|
8834
|
+
};
|
|
8835
|
+
totalBalances: Record<string, string>;
|
|
8169
8836
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
8170
8837
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
8171
8838
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
@@ -8200,7 +8867,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
8200
8867
|
products: z.objectOutputType<{
|
|
8201
8868
|
name: z.ZodString;
|
|
8202
8869
|
manageUrl: z.ZodString;
|
|
8203
|
-
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"staking">]>;
|
|
8870
|
+
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"delegatedTokens">, z.ZodLiteral<"staking">]>;
|
|
8204
8871
|
groups: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8205
8872
|
name: z.ZodOptional<z.ZodString>;
|
|
8206
8873
|
healthRatio: z.ZodOptional<z.ZodString>;
|
|
@@ -8211,7 +8878,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
8211
8878
|
name?: string | undefined;
|
|
8212
8879
|
healthRatio?: string | undefined;
|
|
8213
8880
|
}>>>;
|
|
8214
|
-
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
8881
|
+
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
8215
8882
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
8216
8883
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
8217
8884
|
}, {
|
|
@@ -8361,23 +9028,23 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
8361
9028
|
debt: z.ZodBoolean;
|
|
8362
9029
|
lending: z.ZodBoolean;
|
|
8363
9030
|
}, "strip", z.ZodTypeAny, {
|
|
9031
|
+
lending: boolean;
|
|
8364
9032
|
collateral: boolean;
|
|
8365
9033
|
debt: boolean;
|
|
8366
|
-
lending: boolean;
|
|
8367
9034
|
apy?: string | undefined;
|
|
8368
9035
|
group?: number | undefined;
|
|
8369
9036
|
}, {
|
|
9037
|
+
lending: boolean;
|
|
8370
9038
|
collateral: boolean;
|
|
8371
9039
|
debt: boolean;
|
|
8372
|
-
lending: boolean;
|
|
8373
9040
|
apy?: string | undefined;
|
|
8374
9041
|
group?: number | undefined;
|
|
8375
9042
|
}>;
|
|
8376
9043
|
}>, "strip", z.ZodTypeAny, {
|
|
8377
9044
|
data: {
|
|
9045
|
+
lending: boolean;
|
|
8378
9046
|
collateral: boolean;
|
|
8379
9047
|
debt: boolean;
|
|
8380
|
-
lending: boolean;
|
|
8381
9048
|
apy?: string | undefined;
|
|
8382
9049
|
group?: number | undefined;
|
|
8383
9050
|
};
|
|
@@ -8385,14 +9052,33 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
8385
9052
|
tokenAddress?: `0x${string}` | undefined;
|
|
8386
9053
|
}, {
|
|
8387
9054
|
data: {
|
|
9055
|
+
lending: boolean;
|
|
8388
9056
|
collateral: boolean;
|
|
8389
9057
|
debt: boolean;
|
|
8390
|
-
lending: boolean;
|
|
8391
9058
|
apy?: string | undefined;
|
|
8392
9059
|
group?: number | undefined;
|
|
8393
9060
|
};
|
|
8394
9061
|
totalBalances: Record<string, string>;
|
|
8395
9062
|
tokenAddress?: string | undefined;
|
|
9063
|
+
}>]>, z.ZodObject<{
|
|
9064
|
+
data: z.ZodObject<{
|
|
9065
|
+
delegatingTo: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
9066
|
+
}, "strip", z.ZodTypeAny, {
|
|
9067
|
+
delegatingTo: `0x${string}`;
|
|
9068
|
+
}, {
|
|
9069
|
+
delegatingTo: string;
|
|
9070
|
+
}>;
|
|
9071
|
+
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
9072
|
+
}, "strip", z.ZodTypeAny, {
|
|
9073
|
+
data: {
|
|
9074
|
+
delegatingTo: `0x${string}`;
|
|
9075
|
+
};
|
|
9076
|
+
totalBalances: Record<string, string>;
|
|
9077
|
+
}, {
|
|
9078
|
+
data: {
|
|
9079
|
+
delegatingTo: string;
|
|
9080
|
+
};
|
|
9081
|
+
totalBalances: Record<string, string>;
|
|
8396
9082
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
8397
9083
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
8398
9084
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
@@ -8426,7 +9112,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
8426
9112
|
products: z.objectInputType<{
|
|
8427
9113
|
name: z.ZodString;
|
|
8428
9114
|
manageUrl: z.ZodString;
|
|
8429
|
-
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"staking">]>;
|
|
9115
|
+
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"delegatedTokens">, z.ZodLiteral<"staking">]>;
|
|
8430
9116
|
groups: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8431
9117
|
name: z.ZodOptional<z.ZodString>;
|
|
8432
9118
|
healthRatio: z.ZodOptional<z.ZodString>;
|
|
@@ -8437,7 +9123,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
8437
9123
|
name?: string | undefined;
|
|
8438
9124
|
healthRatio?: string | undefined;
|
|
8439
9125
|
}>>>;
|
|
8440
|
-
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
9126
|
+
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
8441
9127
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
8442
9128
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
8443
9129
|
}, {
|
|
@@ -8587,23 +9273,23 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
8587
9273
|
debt: z.ZodBoolean;
|
|
8588
9274
|
lending: z.ZodBoolean;
|
|
8589
9275
|
}, "strip", z.ZodTypeAny, {
|
|
9276
|
+
lending: boolean;
|
|
8590
9277
|
collateral: boolean;
|
|
8591
9278
|
debt: boolean;
|
|
8592
|
-
lending: boolean;
|
|
8593
9279
|
apy?: string | undefined;
|
|
8594
9280
|
group?: number | undefined;
|
|
8595
9281
|
}, {
|
|
9282
|
+
lending: boolean;
|
|
8596
9283
|
collateral: boolean;
|
|
8597
9284
|
debt: boolean;
|
|
8598
|
-
lending: boolean;
|
|
8599
9285
|
apy?: string | undefined;
|
|
8600
9286
|
group?: number | undefined;
|
|
8601
9287
|
}>;
|
|
8602
9288
|
}>, "strip", z.ZodTypeAny, {
|
|
8603
9289
|
data: {
|
|
9290
|
+
lending: boolean;
|
|
8604
9291
|
collateral: boolean;
|
|
8605
9292
|
debt: boolean;
|
|
8606
|
-
lending: boolean;
|
|
8607
9293
|
apy?: string | undefined;
|
|
8608
9294
|
group?: number | undefined;
|
|
8609
9295
|
};
|
|
@@ -8611,14 +9297,33 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
8611
9297
|
tokenAddress?: `0x${string}` | undefined;
|
|
8612
9298
|
}, {
|
|
8613
9299
|
data: {
|
|
9300
|
+
lending: boolean;
|
|
8614
9301
|
collateral: boolean;
|
|
8615
9302
|
debt: boolean;
|
|
8616
|
-
lending: boolean;
|
|
8617
9303
|
apy?: string | undefined;
|
|
8618
9304
|
group?: number | undefined;
|
|
8619
9305
|
};
|
|
8620
9306
|
totalBalances: Record<string, string>;
|
|
8621
9307
|
tokenAddress?: string | undefined;
|
|
9308
|
+
}>]>, z.ZodObject<{
|
|
9309
|
+
data: z.ZodObject<{
|
|
9310
|
+
delegatingTo: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
9311
|
+
}, "strip", z.ZodTypeAny, {
|
|
9312
|
+
delegatingTo: `0x${string}`;
|
|
9313
|
+
}, {
|
|
9314
|
+
delegatingTo: string;
|
|
9315
|
+
}>;
|
|
9316
|
+
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
9317
|
+
}, "strip", z.ZodTypeAny, {
|
|
9318
|
+
data: {
|
|
9319
|
+
delegatingTo: `0x${string}`;
|
|
9320
|
+
};
|
|
9321
|
+
totalBalances: Record<string, string>;
|
|
9322
|
+
}, {
|
|
9323
|
+
data: {
|
|
9324
|
+
delegatingTo: string;
|
|
9325
|
+
};
|
|
9326
|
+
totalBalances: Record<string, string>;
|
|
8622
9327
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
8623
9328
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
8624
9329
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
@@ -8654,7 +9359,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
8654
9359
|
products: z.objectOutputType<{
|
|
8655
9360
|
name: z.ZodString;
|
|
8656
9361
|
manageUrl: z.ZodString;
|
|
8657
|
-
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"staking">]>;
|
|
9362
|
+
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"delegatedTokens">, z.ZodLiteral<"staking">]>;
|
|
8658
9363
|
groups: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8659
9364
|
name: z.ZodOptional<z.ZodString>;
|
|
8660
9365
|
healthRatio: z.ZodOptional<z.ZodString>;
|
|
@@ -8665,7 +9370,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
8665
9370
|
name?: string | undefined;
|
|
8666
9371
|
healthRatio?: string | undefined;
|
|
8667
9372
|
}>>>;
|
|
8668
|
-
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
9373
|
+
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
8669
9374
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
8670
9375
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
8671
9376
|
}, {
|
|
@@ -8815,23 +9520,23 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
8815
9520
|
debt: z.ZodBoolean;
|
|
8816
9521
|
lending: z.ZodBoolean;
|
|
8817
9522
|
}, "strip", z.ZodTypeAny, {
|
|
9523
|
+
lending: boolean;
|
|
8818
9524
|
collateral: boolean;
|
|
8819
9525
|
debt: boolean;
|
|
8820
|
-
lending: boolean;
|
|
8821
9526
|
apy?: string | undefined;
|
|
8822
9527
|
group?: number | undefined;
|
|
8823
9528
|
}, {
|
|
9529
|
+
lending: boolean;
|
|
8824
9530
|
collateral: boolean;
|
|
8825
9531
|
debt: boolean;
|
|
8826
|
-
lending: boolean;
|
|
8827
9532
|
apy?: string | undefined;
|
|
8828
9533
|
group?: number | undefined;
|
|
8829
9534
|
}>;
|
|
8830
9535
|
}>, "strip", z.ZodTypeAny, {
|
|
8831
9536
|
data: {
|
|
9537
|
+
lending: boolean;
|
|
8832
9538
|
collateral: boolean;
|
|
8833
9539
|
debt: boolean;
|
|
8834
|
-
lending: boolean;
|
|
8835
9540
|
apy?: string | undefined;
|
|
8836
9541
|
group?: number | undefined;
|
|
8837
9542
|
};
|
|
@@ -8839,14 +9544,33 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
8839
9544
|
tokenAddress?: `0x${string}` | undefined;
|
|
8840
9545
|
}, {
|
|
8841
9546
|
data: {
|
|
9547
|
+
lending: boolean;
|
|
8842
9548
|
collateral: boolean;
|
|
8843
9549
|
debt: boolean;
|
|
8844
|
-
lending: boolean;
|
|
8845
9550
|
apy?: string | undefined;
|
|
8846
9551
|
group?: number | undefined;
|
|
8847
9552
|
};
|
|
8848
9553
|
totalBalances: Record<string, string>;
|
|
8849
9554
|
tokenAddress?: string | undefined;
|
|
9555
|
+
}>]>, z.ZodObject<{
|
|
9556
|
+
data: z.ZodObject<{
|
|
9557
|
+
delegatingTo: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
9558
|
+
}, "strip", z.ZodTypeAny, {
|
|
9559
|
+
delegatingTo: `0x${string}`;
|
|
9560
|
+
}, {
|
|
9561
|
+
delegatingTo: string;
|
|
9562
|
+
}>;
|
|
9563
|
+
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
9564
|
+
}, "strip", z.ZodTypeAny, {
|
|
9565
|
+
data: {
|
|
9566
|
+
delegatingTo: `0x${string}`;
|
|
9567
|
+
};
|
|
9568
|
+
totalBalances: Record<string, string>;
|
|
9569
|
+
}, {
|
|
9570
|
+
data: {
|
|
9571
|
+
delegatingTo: string;
|
|
9572
|
+
};
|
|
9573
|
+
totalBalances: Record<string, string>;
|
|
8850
9574
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
8851
9575
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
8852
9576
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
@@ -8882,7 +9606,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
8882
9606
|
products: z.objectInputType<{
|
|
8883
9607
|
name: z.ZodString;
|
|
8884
9608
|
manageUrl: z.ZodString;
|
|
8885
|
-
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"staking">]>;
|
|
9609
|
+
type: z.ZodUnion<[z.ZodLiteral<"concentratedLiquidityPosition">, z.ZodLiteral<"collateralizedDebtPosition">, z.ZodLiteral<"delegatedTokens">, z.ZodLiteral<"staking">]>;
|
|
8886
9610
|
groups: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8887
9611
|
name: z.ZodOptional<z.ZodString>;
|
|
8888
9612
|
healthRatio: z.ZodOptional<z.ZodString>;
|
|
@@ -8893,7 +9617,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
8893
9617
|
name?: string | undefined;
|
|
8894
9618
|
healthRatio?: string | undefined;
|
|
8895
9619
|
}>>>;
|
|
8896
|
-
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
9620
|
+
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
8897
9621
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
8898
9622
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
8899
9623
|
}, {
|
|
@@ -9043,23 +9767,23 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
9043
9767
|
debt: z.ZodBoolean;
|
|
9044
9768
|
lending: z.ZodBoolean;
|
|
9045
9769
|
}, "strip", z.ZodTypeAny, {
|
|
9770
|
+
lending: boolean;
|
|
9046
9771
|
collateral: boolean;
|
|
9047
9772
|
debt: boolean;
|
|
9048
|
-
lending: boolean;
|
|
9049
9773
|
apy?: string | undefined;
|
|
9050
9774
|
group?: number | undefined;
|
|
9051
9775
|
}, {
|
|
9776
|
+
lending: boolean;
|
|
9052
9777
|
collateral: boolean;
|
|
9053
9778
|
debt: boolean;
|
|
9054
|
-
lending: boolean;
|
|
9055
9779
|
apy?: string | undefined;
|
|
9056
9780
|
group?: number | undefined;
|
|
9057
9781
|
}>;
|
|
9058
9782
|
}>, "strip", z.ZodTypeAny, {
|
|
9059
9783
|
data: {
|
|
9784
|
+
lending: boolean;
|
|
9060
9785
|
collateral: boolean;
|
|
9061
9786
|
debt: boolean;
|
|
9062
|
-
lending: boolean;
|
|
9063
9787
|
apy?: string | undefined;
|
|
9064
9788
|
group?: number | undefined;
|
|
9065
9789
|
};
|
|
@@ -9067,14 +9791,33 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
9067
9791
|
tokenAddress?: `0x${string}` | undefined;
|
|
9068
9792
|
}, {
|
|
9069
9793
|
data: {
|
|
9794
|
+
lending: boolean;
|
|
9070
9795
|
collateral: boolean;
|
|
9071
9796
|
debt: boolean;
|
|
9072
|
-
lending: boolean;
|
|
9073
9797
|
apy?: string | undefined;
|
|
9074
9798
|
group?: number | undefined;
|
|
9075
9799
|
};
|
|
9076
9800
|
totalBalances: Record<string, string>;
|
|
9077
9801
|
tokenAddress?: string | undefined;
|
|
9802
|
+
}>]>, z.ZodObject<{
|
|
9803
|
+
data: z.ZodObject<{
|
|
9804
|
+
delegatingTo: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
9805
|
+
}, "strip", z.ZodTypeAny, {
|
|
9806
|
+
delegatingTo: `0x${string}`;
|
|
9807
|
+
}, {
|
|
9808
|
+
delegatingTo: string;
|
|
9809
|
+
}>;
|
|
9810
|
+
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
9811
|
+
}, "strip", z.ZodTypeAny, {
|
|
9812
|
+
data: {
|
|
9813
|
+
delegatingTo: `0x${string}`;
|
|
9814
|
+
};
|
|
9815
|
+
totalBalances: Record<string, string>;
|
|
9816
|
+
}, {
|
|
9817
|
+
data: {
|
|
9818
|
+
delegatingTo: string;
|
|
9819
|
+
};
|
|
9820
|
+
totalBalances: Record<string, string>;
|
|
9078
9821
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
9079
9822
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
9080
9823
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
@@ -9183,3 +9926,5 @@ export type ApiAirdrop = z.infer<typeof apiAirdropSchema>;
|
|
|
9183
9926
|
export type ApiUnclaimedRewards = z.infer<typeof apiUnclaimedRewardsSchema>;
|
|
9184
9927
|
export type ApiCollateralizedDebtPosition = z.infer<typeof apiCollateralizedDebtPositionSchema>;
|
|
9185
9928
|
export type ApiConcentratedLiquidityPosition = z.infer<typeof apiConcentratedLiquidityPositionSchema>;
|
|
9929
|
+
export type ApiDelegatedTokens = z.infer<typeof apiDelegatedTokensSchema>;
|
|
9930
|
+
export type ApiDelegatedTokensArray = z.infer<typeof apiDelegatedTokensArraySchema>;
|