@argent/x-shared 1.44.3 → 1.45.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 +439 -434
- package/dist/src/backend/index.d.ts +1 -0
- package/dist/src/backend/sessionKeys/index.d.ts +1 -0
- package/dist/src/backend/sessionKeys/schema.cjs +1 -0
- package/dist/src/backend/sessionKeys/schema.d.ts +123 -0
- package/dist/src/backend/sessionKeys/schema.js +31 -0
- package/dist/src/features/simulation/activity/schema.cjs +1 -1
- package/dist/src/features/simulation/activity/schema.d.ts +96 -96
- package/dist/src/features/simulation/activity/schema.js +10 -10
- package/dist/src/staking/schema.cjs +1 -1
- package/dist/src/staking/schema.d.ts +23 -23
- package/dist/src/staking/schema.js +4 -4
- package/dist/src/tokens/service/implementation.d.ts +13 -13
- package/dist/src/tokens/service/types/backend.model.cjs +1 -1
- package/dist/src/tokens/service/types/backend.model.d.ts +520 -520
- package/dist/src/tokens/service/types/backend.model.js +7 -7
- package/dist/src/tokens/service/types/webToken.model.d.ts +2 -2
- package/package.json +1 -1
|
@@ -524,8 +524,8 @@ export declare const apiConcentratedLiquidityPositionSchema: z.ZodObject<z.objec
|
|
|
524
524
|
id: string;
|
|
525
525
|
totalBalances: Record<string, string>;
|
|
526
526
|
tokenId: string;
|
|
527
|
-
investmentId?: string | undefined;
|
|
528
527
|
tokenAddress?: `0x${string}` | undefined;
|
|
528
|
+
investmentId?: string | undefined;
|
|
529
529
|
}, {
|
|
530
530
|
data: {
|
|
531
531
|
poolFeePercentage: string;
|
|
@@ -550,8 +550,8 @@ export declare const apiConcentratedLiquidityPositionSchema: z.ZodObject<z.objec
|
|
|
550
550
|
id: string;
|
|
551
551
|
totalBalances: Record<string, string>;
|
|
552
552
|
tokenId: string;
|
|
553
|
-
investmentId?: string | undefined;
|
|
554
553
|
tokenAddress?: string | undefined;
|
|
554
|
+
investmentId?: string | undefined;
|
|
555
555
|
}>;
|
|
556
556
|
export declare const apiConcentratedLiquidityPositionsSchema: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
557
557
|
id: z.ZodString;
|
|
@@ -670,8 +670,8 @@ export declare const apiConcentratedLiquidityPositionsSchema: z.ZodArray<z.ZodOb
|
|
|
670
670
|
id: string;
|
|
671
671
|
totalBalances: Record<string, string>;
|
|
672
672
|
tokenId: string;
|
|
673
|
-
investmentId?: string | undefined;
|
|
674
673
|
tokenAddress?: `0x${string}` | undefined;
|
|
674
|
+
investmentId?: string | undefined;
|
|
675
675
|
}, {
|
|
676
676
|
data: {
|
|
677
677
|
poolFeePercentage: string;
|
|
@@ -696,8 +696,8 @@ export declare const apiConcentratedLiquidityPositionsSchema: z.ZodArray<z.ZodOb
|
|
|
696
696
|
id: string;
|
|
697
697
|
totalBalances: Record<string, string>;
|
|
698
698
|
tokenId: string;
|
|
699
|
-
investmentId?: string | undefined;
|
|
700
699
|
tokenAddress?: string | undefined;
|
|
700
|
+
investmentId?: string | undefined;
|
|
701
701
|
}>, "many">;
|
|
702
702
|
export declare const apiStakingPositionSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
703
703
|
id: z.ZodString;
|
|
@@ -720,16 +720,16 @@ export declare const apiStakingPositionSchema: z.ZodObject<z.objectUtil.extendSh
|
|
|
720
720
|
};
|
|
721
721
|
id: string;
|
|
722
722
|
totalBalances: Record<string, string>;
|
|
723
|
-
investmentId?: string | undefined;
|
|
724
723
|
tokenAddress?: `0x${string}` | undefined;
|
|
724
|
+
investmentId?: string | undefined;
|
|
725
725
|
}, {
|
|
726
726
|
data: {
|
|
727
727
|
apy: string;
|
|
728
728
|
};
|
|
729
729
|
id: string;
|
|
730
730
|
totalBalances: Record<string, string>;
|
|
731
|
-
investmentId?: string | undefined;
|
|
732
731
|
tokenAddress?: string | undefined;
|
|
732
|
+
investmentId?: string | undefined;
|
|
733
733
|
}>;
|
|
734
734
|
export declare const apiStakingPositionsSchema: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
735
735
|
id: z.ZodString;
|
|
@@ -752,16 +752,16 @@ export declare const apiStakingPositionsSchema: z.ZodArray<z.ZodObject<z.objectU
|
|
|
752
752
|
};
|
|
753
753
|
id: string;
|
|
754
754
|
totalBalances: Record<string, string>;
|
|
755
|
-
investmentId?: string | undefined;
|
|
756
755
|
tokenAddress?: `0x${string}` | undefined;
|
|
756
|
+
investmentId?: string | undefined;
|
|
757
757
|
}, {
|
|
758
758
|
data: {
|
|
759
759
|
apy: string;
|
|
760
760
|
};
|
|
761
761
|
id: string;
|
|
762
762
|
totalBalances: Record<string, string>;
|
|
763
|
-
investmentId?: string | undefined;
|
|
764
763
|
tokenAddress?: string | undefined;
|
|
764
|
+
investmentId?: string | undefined;
|
|
765
765
|
}>, "many">;
|
|
766
766
|
export declare const apiCollateralizedDebtPositionSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
767
767
|
id: z.ZodString;
|
|
@@ -798,8 +798,8 @@ export declare const apiCollateralizedDebtPositionSchema: z.ZodObject<z.objectUt
|
|
|
798
798
|
};
|
|
799
799
|
id: string;
|
|
800
800
|
totalBalances: Record<string, string>;
|
|
801
|
-
investmentId?: string | undefined;
|
|
802
801
|
tokenAddress?: `0x${string}` | undefined;
|
|
802
|
+
investmentId?: string | undefined;
|
|
803
803
|
}, {
|
|
804
804
|
data: {
|
|
805
805
|
lending: boolean;
|
|
@@ -810,8 +810,8 @@ export declare const apiCollateralizedDebtPositionSchema: z.ZodObject<z.objectUt
|
|
|
810
810
|
};
|
|
811
811
|
id: string;
|
|
812
812
|
totalBalances: Record<string, string>;
|
|
813
|
-
investmentId?: string | undefined;
|
|
814
813
|
tokenAddress?: string | undefined;
|
|
814
|
+
investmentId?: string | undefined;
|
|
815
815
|
}>;
|
|
816
816
|
export declare const apiCollateralizedDebtPositionsSchema: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
817
817
|
id: z.ZodString;
|
|
@@ -848,8 +848,8 @@ export declare const apiCollateralizedDebtPositionsSchema: z.ZodArray<z.ZodObjec
|
|
|
848
848
|
};
|
|
849
849
|
id: string;
|
|
850
850
|
totalBalances: Record<string, string>;
|
|
851
|
-
investmentId?: string | undefined;
|
|
852
851
|
tokenAddress?: `0x${string}` | undefined;
|
|
852
|
+
investmentId?: string | undefined;
|
|
853
853
|
}, {
|
|
854
854
|
data: {
|
|
855
855
|
lending: boolean;
|
|
@@ -860,8 +860,8 @@ export declare const apiCollateralizedDebtPositionsSchema: z.ZodArray<z.ZodObjec
|
|
|
860
860
|
};
|
|
861
861
|
id: string;
|
|
862
862
|
totalBalances: Record<string, string>;
|
|
863
|
-
investmentId?: string | undefined;
|
|
864
863
|
tokenAddress?: string | undefined;
|
|
864
|
+
investmentId?: string | undefined;
|
|
865
865
|
}>, "many">;
|
|
866
866
|
export declare const apiDelegatedTokensSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
867
867
|
id: z.ZodString;
|
|
@@ -884,16 +884,16 @@ export declare const apiDelegatedTokensSchema: z.ZodObject<z.objectUtil.extendSh
|
|
|
884
884
|
};
|
|
885
885
|
id: string;
|
|
886
886
|
totalBalances: Record<string, string>;
|
|
887
|
-
investmentId?: string | undefined;
|
|
888
887
|
tokenAddress?: `0x${string}` | undefined;
|
|
888
|
+
investmentId?: string | undefined;
|
|
889
889
|
}, {
|
|
890
890
|
data: {
|
|
891
891
|
delegatingTo: string;
|
|
892
892
|
};
|
|
893
893
|
id: string;
|
|
894
894
|
totalBalances: Record<string, string>;
|
|
895
|
-
investmentId?: string | undefined;
|
|
896
895
|
tokenAddress?: string | undefined;
|
|
896
|
+
investmentId?: string | undefined;
|
|
897
897
|
}>;
|
|
898
898
|
export declare const apiDelegatedTokensArraySchema: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
899
899
|
id: z.ZodString;
|
|
@@ -916,16 +916,16 @@ export declare const apiDelegatedTokensArraySchema: z.ZodArray<z.ZodObject<z.obj
|
|
|
916
916
|
};
|
|
917
917
|
id: string;
|
|
918
918
|
totalBalances: Record<string, string>;
|
|
919
|
-
investmentId?: string | undefined;
|
|
920
919
|
tokenAddress?: `0x${string}` | undefined;
|
|
920
|
+
investmentId?: string | undefined;
|
|
921
921
|
}, {
|
|
922
922
|
data: {
|
|
923
923
|
delegatingTo: string;
|
|
924
924
|
};
|
|
925
925
|
id: string;
|
|
926
926
|
totalBalances: Record<string, string>;
|
|
927
|
-
investmentId?: string | undefined;
|
|
928
927
|
tokenAddress?: string | undefined;
|
|
928
|
+
investmentId?: string | undefined;
|
|
929
929
|
}>, "many">;
|
|
930
930
|
export declare const apiStrkDelegatedStakingSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
931
931
|
id: z.ZodString;
|
|
@@ -935,7 +935,7 @@ export declare const apiStrkDelegatedStakingSchema: z.ZodObject<z.objectUtil.ext
|
|
|
935
935
|
}, {
|
|
936
936
|
investmentId: z.ZodString;
|
|
937
937
|
data: z.ZodObject<{
|
|
938
|
-
|
|
938
|
+
stakerInfo: z.ZodObject<{
|
|
939
939
|
name: z.ZodOptional<z.ZodString>;
|
|
940
940
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
941
941
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -962,7 +962,7 @@ export declare const apiStrkDelegatedStakingSchema: z.ZodObject<z.objectUtil.ext
|
|
|
962
962
|
}>>;
|
|
963
963
|
apy: z.ZodOptional<z.ZodString>;
|
|
964
964
|
}, "strip", z.ZodTypeAny, {
|
|
965
|
-
|
|
965
|
+
stakerInfo: {
|
|
966
966
|
address: `0x${string}`;
|
|
967
967
|
name?: string | undefined;
|
|
968
968
|
iconUrl?: string | undefined;
|
|
@@ -975,7 +975,7 @@ export declare const apiStrkDelegatedStakingSchema: z.ZodObject<z.objectUtil.ext
|
|
|
975
975
|
withdrawableAfter: number;
|
|
976
976
|
} | undefined;
|
|
977
977
|
}, {
|
|
978
|
-
|
|
978
|
+
stakerInfo: {
|
|
979
979
|
address: string;
|
|
980
980
|
name?: string | undefined;
|
|
981
981
|
iconUrl?: string | undefined;
|
|
@@ -990,7 +990,7 @@ export declare const apiStrkDelegatedStakingSchema: z.ZodObject<z.objectUtil.ext
|
|
|
990
990
|
}>;
|
|
991
991
|
}>, "strip", z.ZodTypeAny, {
|
|
992
992
|
data: {
|
|
993
|
-
|
|
993
|
+
stakerInfo: {
|
|
994
994
|
address: `0x${string}`;
|
|
995
995
|
name?: string | undefined;
|
|
996
996
|
iconUrl?: string | undefined;
|
|
@@ -1009,7 +1009,7 @@ export declare const apiStrkDelegatedStakingSchema: z.ZodObject<z.objectUtil.ext
|
|
|
1009
1009
|
tokenAddress?: `0x${string}` | undefined;
|
|
1010
1010
|
}, {
|
|
1011
1011
|
data: {
|
|
1012
|
-
|
|
1012
|
+
stakerInfo: {
|
|
1013
1013
|
address: string;
|
|
1014
1014
|
name?: string | undefined;
|
|
1015
1015
|
iconUrl?: string | undefined;
|
|
@@ -1035,7 +1035,7 @@ export declare const apiStrkDelegatedStakingPositionsSchema: z.ZodArray<z.ZodObj
|
|
|
1035
1035
|
}, {
|
|
1036
1036
|
investmentId: z.ZodString;
|
|
1037
1037
|
data: z.ZodObject<{
|
|
1038
|
-
|
|
1038
|
+
stakerInfo: z.ZodObject<{
|
|
1039
1039
|
name: z.ZodOptional<z.ZodString>;
|
|
1040
1040
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
1041
1041
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -1062,7 +1062,7 @@ export declare const apiStrkDelegatedStakingPositionsSchema: z.ZodArray<z.ZodObj
|
|
|
1062
1062
|
}>>;
|
|
1063
1063
|
apy: z.ZodOptional<z.ZodString>;
|
|
1064
1064
|
}, "strip", z.ZodTypeAny, {
|
|
1065
|
-
|
|
1065
|
+
stakerInfo: {
|
|
1066
1066
|
address: `0x${string}`;
|
|
1067
1067
|
name?: string | undefined;
|
|
1068
1068
|
iconUrl?: string | undefined;
|
|
@@ -1075,7 +1075,7 @@ export declare const apiStrkDelegatedStakingPositionsSchema: z.ZodArray<z.ZodObj
|
|
|
1075
1075
|
withdrawableAfter: number;
|
|
1076
1076
|
} | undefined;
|
|
1077
1077
|
}, {
|
|
1078
|
-
|
|
1078
|
+
stakerInfo: {
|
|
1079
1079
|
address: string;
|
|
1080
1080
|
name?: string | undefined;
|
|
1081
1081
|
iconUrl?: string | undefined;
|
|
@@ -1090,7 +1090,7 @@ export declare const apiStrkDelegatedStakingPositionsSchema: z.ZodArray<z.ZodObj
|
|
|
1090
1090
|
}>;
|
|
1091
1091
|
}>, "strip", z.ZodTypeAny, {
|
|
1092
1092
|
data: {
|
|
1093
|
-
|
|
1093
|
+
stakerInfo: {
|
|
1094
1094
|
address: `0x${string}`;
|
|
1095
1095
|
name?: string | undefined;
|
|
1096
1096
|
iconUrl?: string | undefined;
|
|
@@ -1109,7 +1109,7 @@ export declare const apiStrkDelegatedStakingPositionsSchema: z.ZodArray<z.ZodObj
|
|
|
1109
1109
|
tokenAddress?: `0x${string}` | undefined;
|
|
1110
1110
|
}, {
|
|
1111
1111
|
data: {
|
|
1112
|
-
|
|
1112
|
+
stakerInfo: {
|
|
1113
1113
|
address: string;
|
|
1114
1114
|
name?: string | undefined;
|
|
1115
1115
|
iconUrl?: string | undefined;
|
|
@@ -1244,8 +1244,8 @@ export declare const apiDefiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[
|
|
|
1244
1244
|
id: string;
|
|
1245
1245
|
totalBalances: Record<string, string>;
|
|
1246
1246
|
tokenId: string;
|
|
1247
|
-
investmentId?: string | undefined;
|
|
1248
1247
|
tokenAddress?: `0x${string}` | undefined;
|
|
1248
|
+
investmentId?: string | undefined;
|
|
1249
1249
|
}, {
|
|
1250
1250
|
data: {
|
|
1251
1251
|
poolFeePercentage: string;
|
|
@@ -1270,8 +1270,8 @@ export declare const apiDefiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[
|
|
|
1270
1270
|
id: string;
|
|
1271
1271
|
totalBalances: Record<string, string>;
|
|
1272
1272
|
tokenId: string;
|
|
1273
|
-
investmentId?: string | undefined;
|
|
1274
1273
|
tokenAddress?: string | undefined;
|
|
1274
|
+
investmentId?: string | undefined;
|
|
1275
1275
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1276
1276
|
id: z.ZodString;
|
|
1277
1277
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -1307,8 +1307,8 @@ export declare const apiDefiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[
|
|
|
1307
1307
|
};
|
|
1308
1308
|
id: string;
|
|
1309
1309
|
totalBalances: Record<string, string>;
|
|
1310
|
-
investmentId?: string | undefined;
|
|
1311
1310
|
tokenAddress?: `0x${string}` | undefined;
|
|
1311
|
+
investmentId?: string | undefined;
|
|
1312
1312
|
}, {
|
|
1313
1313
|
data: {
|
|
1314
1314
|
lending: boolean;
|
|
@@ -1319,8 +1319,8 @@ export declare const apiDefiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[
|
|
|
1319
1319
|
};
|
|
1320
1320
|
id: string;
|
|
1321
1321
|
totalBalances: Record<string, string>;
|
|
1322
|
-
investmentId?: string | undefined;
|
|
1323
1322
|
tokenAddress?: string | undefined;
|
|
1323
|
+
investmentId?: string | undefined;
|
|
1324
1324
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1325
1325
|
id: z.ZodString;
|
|
1326
1326
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -1342,16 +1342,16 @@ export declare const apiDefiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[
|
|
|
1342
1342
|
};
|
|
1343
1343
|
id: string;
|
|
1344
1344
|
totalBalances: Record<string, string>;
|
|
1345
|
-
investmentId?: string | undefined;
|
|
1346
1345
|
tokenAddress?: `0x${string}` | undefined;
|
|
1346
|
+
investmentId?: string | undefined;
|
|
1347
1347
|
}, {
|
|
1348
1348
|
data: {
|
|
1349
1349
|
delegatingTo: string;
|
|
1350
1350
|
};
|
|
1351
1351
|
id: string;
|
|
1352
1352
|
totalBalances: Record<string, string>;
|
|
1353
|
-
investmentId?: string | undefined;
|
|
1354
1353
|
tokenAddress?: string | undefined;
|
|
1354
|
+
investmentId?: string | undefined;
|
|
1355
1355
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1356
1356
|
id: z.ZodString;
|
|
1357
1357
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -1373,16 +1373,16 @@ export declare const apiDefiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[
|
|
|
1373
1373
|
};
|
|
1374
1374
|
id: string;
|
|
1375
1375
|
totalBalances: Record<string, string>;
|
|
1376
|
-
investmentId?: string | undefined;
|
|
1377
1376
|
tokenAddress?: `0x${string}` | undefined;
|
|
1377
|
+
investmentId?: string | undefined;
|
|
1378
1378
|
}, {
|
|
1379
1379
|
data: {
|
|
1380
1380
|
apy: string;
|
|
1381
1381
|
};
|
|
1382
1382
|
id: string;
|
|
1383
1383
|
totalBalances: Record<string, string>;
|
|
1384
|
-
investmentId?: string | undefined;
|
|
1385
1384
|
tokenAddress?: string | undefined;
|
|
1385
|
+
investmentId?: string | undefined;
|
|
1386
1386
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1387
1387
|
id: z.ZodString;
|
|
1388
1388
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -1391,7 +1391,7 @@ export declare const apiDefiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[
|
|
|
1391
1391
|
}, {
|
|
1392
1392
|
investmentId: z.ZodString;
|
|
1393
1393
|
data: z.ZodObject<{
|
|
1394
|
-
|
|
1394
|
+
stakerInfo: z.ZodObject<{
|
|
1395
1395
|
name: z.ZodOptional<z.ZodString>;
|
|
1396
1396
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
1397
1397
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -1418,7 +1418,7 @@ export declare const apiDefiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[
|
|
|
1418
1418
|
}>>;
|
|
1419
1419
|
apy: z.ZodOptional<z.ZodString>;
|
|
1420
1420
|
}, "strip", z.ZodTypeAny, {
|
|
1421
|
-
|
|
1421
|
+
stakerInfo: {
|
|
1422
1422
|
address: `0x${string}`;
|
|
1423
1423
|
name?: string | undefined;
|
|
1424
1424
|
iconUrl?: string | undefined;
|
|
@@ -1431,7 +1431,7 @@ export declare const apiDefiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[
|
|
|
1431
1431
|
withdrawableAfter: number;
|
|
1432
1432
|
} | undefined;
|
|
1433
1433
|
}, {
|
|
1434
|
-
|
|
1434
|
+
stakerInfo: {
|
|
1435
1435
|
address: string;
|
|
1436
1436
|
name?: string | undefined;
|
|
1437
1437
|
iconUrl?: string | undefined;
|
|
@@ -1446,7 +1446,7 @@ export declare const apiDefiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[
|
|
|
1446
1446
|
}>;
|
|
1447
1447
|
}>, "strip", z.ZodTypeAny, {
|
|
1448
1448
|
data: {
|
|
1449
|
-
|
|
1449
|
+
stakerInfo: {
|
|
1450
1450
|
address: `0x${string}`;
|
|
1451
1451
|
name?: string | undefined;
|
|
1452
1452
|
iconUrl?: string | undefined;
|
|
@@ -1465,7 +1465,7 @@ export declare const apiDefiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[
|
|
|
1465
1465
|
tokenAddress?: `0x${string}` | undefined;
|
|
1466
1466
|
}, {
|
|
1467
1467
|
data: {
|
|
1468
|
-
|
|
1468
|
+
stakerInfo: {
|
|
1469
1469
|
address: string;
|
|
1470
1470
|
name?: string | undefined;
|
|
1471
1471
|
iconUrl?: string | undefined;
|
|
@@ -1601,8 +1601,8 @@ export declare const apiDefiDecompositionProducts: z.ZodArray<z.ZodUnion<[z.ZodU
|
|
|
1601
1601
|
id: string;
|
|
1602
1602
|
totalBalances: Record<string, string>;
|
|
1603
1603
|
tokenId: string;
|
|
1604
|
-
investmentId?: string | undefined;
|
|
1605
1604
|
tokenAddress?: `0x${string}` | undefined;
|
|
1605
|
+
investmentId?: string | undefined;
|
|
1606
1606
|
}, {
|
|
1607
1607
|
data: {
|
|
1608
1608
|
poolFeePercentage: string;
|
|
@@ -1627,8 +1627,8 @@ export declare const apiDefiDecompositionProducts: z.ZodArray<z.ZodUnion<[z.ZodU
|
|
|
1627
1627
|
id: string;
|
|
1628
1628
|
totalBalances: Record<string, string>;
|
|
1629
1629
|
tokenId: string;
|
|
1630
|
-
investmentId?: string | undefined;
|
|
1631
1630
|
tokenAddress?: string | undefined;
|
|
1631
|
+
investmentId?: string | undefined;
|
|
1632
1632
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1633
1633
|
id: z.ZodString;
|
|
1634
1634
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -1664,8 +1664,8 @@ export declare const apiDefiDecompositionProducts: z.ZodArray<z.ZodUnion<[z.ZodU
|
|
|
1664
1664
|
};
|
|
1665
1665
|
id: string;
|
|
1666
1666
|
totalBalances: Record<string, string>;
|
|
1667
|
-
investmentId?: string | undefined;
|
|
1668
1667
|
tokenAddress?: `0x${string}` | undefined;
|
|
1668
|
+
investmentId?: string | undefined;
|
|
1669
1669
|
}, {
|
|
1670
1670
|
data: {
|
|
1671
1671
|
lending: boolean;
|
|
@@ -1676,8 +1676,8 @@ export declare const apiDefiDecompositionProducts: z.ZodArray<z.ZodUnion<[z.ZodU
|
|
|
1676
1676
|
};
|
|
1677
1677
|
id: string;
|
|
1678
1678
|
totalBalances: Record<string, string>;
|
|
1679
|
-
investmentId?: string | undefined;
|
|
1680
1679
|
tokenAddress?: string | undefined;
|
|
1680
|
+
investmentId?: string | undefined;
|
|
1681
1681
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1682
1682
|
id: z.ZodString;
|
|
1683
1683
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -1699,16 +1699,16 @@ export declare const apiDefiDecompositionProducts: z.ZodArray<z.ZodUnion<[z.ZodU
|
|
|
1699
1699
|
};
|
|
1700
1700
|
id: string;
|
|
1701
1701
|
totalBalances: Record<string, string>;
|
|
1702
|
-
investmentId?: string | undefined;
|
|
1703
1702
|
tokenAddress?: `0x${string}` | undefined;
|
|
1703
|
+
investmentId?: string | undefined;
|
|
1704
1704
|
}, {
|
|
1705
1705
|
data: {
|
|
1706
1706
|
delegatingTo: string;
|
|
1707
1707
|
};
|
|
1708
1708
|
id: string;
|
|
1709
1709
|
totalBalances: Record<string, string>;
|
|
1710
|
-
investmentId?: string | undefined;
|
|
1711
1710
|
tokenAddress?: string | undefined;
|
|
1711
|
+
investmentId?: string | undefined;
|
|
1712
1712
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1713
1713
|
id: z.ZodString;
|
|
1714
1714
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -1730,16 +1730,16 @@ export declare const apiDefiDecompositionProducts: z.ZodArray<z.ZodUnion<[z.ZodU
|
|
|
1730
1730
|
};
|
|
1731
1731
|
id: string;
|
|
1732
1732
|
totalBalances: Record<string, string>;
|
|
1733
|
-
investmentId?: string | undefined;
|
|
1734
1733
|
tokenAddress?: `0x${string}` | undefined;
|
|
1734
|
+
investmentId?: string | undefined;
|
|
1735
1735
|
}, {
|
|
1736
1736
|
data: {
|
|
1737
1737
|
apy: string;
|
|
1738
1738
|
};
|
|
1739
1739
|
id: string;
|
|
1740
1740
|
totalBalances: Record<string, string>;
|
|
1741
|
-
investmentId?: string | undefined;
|
|
1742
1741
|
tokenAddress?: string | undefined;
|
|
1742
|
+
investmentId?: string | undefined;
|
|
1743
1743
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1744
1744
|
id: z.ZodString;
|
|
1745
1745
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -1748,7 +1748,7 @@ export declare const apiDefiDecompositionProducts: z.ZodArray<z.ZodUnion<[z.ZodU
|
|
|
1748
1748
|
}, {
|
|
1749
1749
|
investmentId: z.ZodString;
|
|
1750
1750
|
data: z.ZodObject<{
|
|
1751
|
-
|
|
1751
|
+
stakerInfo: z.ZodObject<{
|
|
1752
1752
|
name: z.ZodOptional<z.ZodString>;
|
|
1753
1753
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
1754
1754
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -1775,7 +1775,7 @@ export declare const apiDefiDecompositionProducts: z.ZodArray<z.ZodUnion<[z.ZodU
|
|
|
1775
1775
|
}>>;
|
|
1776
1776
|
apy: z.ZodOptional<z.ZodString>;
|
|
1777
1777
|
}, "strip", z.ZodTypeAny, {
|
|
1778
|
-
|
|
1778
|
+
stakerInfo: {
|
|
1779
1779
|
address: `0x${string}`;
|
|
1780
1780
|
name?: string | undefined;
|
|
1781
1781
|
iconUrl?: string | undefined;
|
|
@@ -1788,7 +1788,7 @@ export declare const apiDefiDecompositionProducts: z.ZodArray<z.ZodUnion<[z.ZodU
|
|
|
1788
1788
|
withdrawableAfter: number;
|
|
1789
1789
|
} | undefined;
|
|
1790
1790
|
}, {
|
|
1791
|
-
|
|
1791
|
+
stakerInfo: {
|
|
1792
1792
|
address: string;
|
|
1793
1793
|
name?: string | undefined;
|
|
1794
1794
|
iconUrl?: string | undefined;
|
|
@@ -1803,7 +1803,7 @@ export declare const apiDefiDecompositionProducts: z.ZodArray<z.ZodUnion<[z.ZodU
|
|
|
1803
1803
|
}>;
|
|
1804
1804
|
}>, "strip", z.ZodTypeAny, {
|
|
1805
1805
|
data: {
|
|
1806
|
-
|
|
1806
|
+
stakerInfo: {
|
|
1807
1807
|
address: `0x${string}`;
|
|
1808
1808
|
name?: string | undefined;
|
|
1809
1809
|
iconUrl?: string | undefined;
|
|
@@ -1822,7 +1822,7 @@ export declare const apiDefiDecompositionProducts: z.ZodArray<z.ZodUnion<[z.ZodU
|
|
|
1822
1822
|
tokenAddress?: `0x${string}` | undefined;
|
|
1823
1823
|
}, {
|
|
1824
1824
|
data: {
|
|
1825
|
-
|
|
1825
|
+
stakerInfo: {
|
|
1826
1826
|
address: string;
|
|
1827
1827
|
name?: string | undefined;
|
|
1828
1828
|
iconUrl?: string | undefined;
|
|
@@ -1972,8 +1972,8 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
1972
1972
|
id: string;
|
|
1973
1973
|
totalBalances: Record<string, string>;
|
|
1974
1974
|
tokenId: string;
|
|
1975
|
-
investmentId?: string | undefined;
|
|
1976
1975
|
tokenAddress?: `0x${string}` | undefined;
|
|
1976
|
+
investmentId?: string | undefined;
|
|
1977
1977
|
}, {
|
|
1978
1978
|
data: {
|
|
1979
1979
|
poolFeePercentage: string;
|
|
@@ -1998,8 +1998,8 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
1998
1998
|
id: string;
|
|
1999
1999
|
totalBalances: Record<string, string>;
|
|
2000
2000
|
tokenId: string;
|
|
2001
|
-
investmentId?: string | undefined;
|
|
2002
2001
|
tokenAddress?: string | undefined;
|
|
2002
|
+
investmentId?: string | undefined;
|
|
2003
2003
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2004
2004
|
id: z.ZodString;
|
|
2005
2005
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -2035,8 +2035,8 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2035
2035
|
};
|
|
2036
2036
|
id: string;
|
|
2037
2037
|
totalBalances: Record<string, string>;
|
|
2038
|
-
investmentId?: string | undefined;
|
|
2039
2038
|
tokenAddress?: `0x${string}` | undefined;
|
|
2039
|
+
investmentId?: string | undefined;
|
|
2040
2040
|
}, {
|
|
2041
2041
|
data: {
|
|
2042
2042
|
lending: boolean;
|
|
@@ -2047,8 +2047,8 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2047
2047
|
};
|
|
2048
2048
|
id: string;
|
|
2049
2049
|
totalBalances: Record<string, string>;
|
|
2050
|
-
investmentId?: string | undefined;
|
|
2051
2050
|
tokenAddress?: string | undefined;
|
|
2051
|
+
investmentId?: string | undefined;
|
|
2052
2052
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2053
2053
|
id: z.ZodString;
|
|
2054
2054
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -2070,16 +2070,16 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2070
2070
|
};
|
|
2071
2071
|
id: string;
|
|
2072
2072
|
totalBalances: Record<string, string>;
|
|
2073
|
-
investmentId?: string | undefined;
|
|
2074
2073
|
tokenAddress?: `0x${string}` | undefined;
|
|
2074
|
+
investmentId?: string | undefined;
|
|
2075
2075
|
}, {
|
|
2076
2076
|
data: {
|
|
2077
2077
|
delegatingTo: string;
|
|
2078
2078
|
};
|
|
2079
2079
|
id: string;
|
|
2080
2080
|
totalBalances: Record<string, string>;
|
|
2081
|
-
investmentId?: string | undefined;
|
|
2082
2081
|
tokenAddress?: string | undefined;
|
|
2082
|
+
investmentId?: string | undefined;
|
|
2083
2083
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2084
2084
|
id: z.ZodString;
|
|
2085
2085
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -2101,16 +2101,16 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2101
2101
|
};
|
|
2102
2102
|
id: string;
|
|
2103
2103
|
totalBalances: Record<string, string>;
|
|
2104
|
-
investmentId?: string | undefined;
|
|
2105
2104
|
tokenAddress?: `0x${string}` | undefined;
|
|
2105
|
+
investmentId?: string | undefined;
|
|
2106
2106
|
}, {
|
|
2107
2107
|
data: {
|
|
2108
2108
|
apy: string;
|
|
2109
2109
|
};
|
|
2110
2110
|
id: string;
|
|
2111
2111
|
totalBalances: Record<string, string>;
|
|
2112
|
-
investmentId?: string | undefined;
|
|
2113
2112
|
tokenAddress?: string | undefined;
|
|
2113
|
+
investmentId?: string | undefined;
|
|
2114
2114
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2115
2115
|
id: z.ZodString;
|
|
2116
2116
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -2119,7 +2119,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2119
2119
|
}, {
|
|
2120
2120
|
investmentId: z.ZodString;
|
|
2121
2121
|
data: z.ZodObject<{
|
|
2122
|
-
|
|
2122
|
+
stakerInfo: z.ZodObject<{
|
|
2123
2123
|
name: z.ZodOptional<z.ZodString>;
|
|
2124
2124
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
2125
2125
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -2146,7 +2146,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2146
2146
|
}>>;
|
|
2147
2147
|
apy: z.ZodOptional<z.ZodString>;
|
|
2148
2148
|
}, "strip", z.ZodTypeAny, {
|
|
2149
|
-
|
|
2149
|
+
stakerInfo: {
|
|
2150
2150
|
address: `0x${string}`;
|
|
2151
2151
|
name?: string | undefined;
|
|
2152
2152
|
iconUrl?: string | undefined;
|
|
@@ -2159,7 +2159,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2159
2159
|
withdrawableAfter: number;
|
|
2160
2160
|
} | undefined;
|
|
2161
2161
|
}, {
|
|
2162
|
-
|
|
2162
|
+
stakerInfo: {
|
|
2163
2163
|
address: string;
|
|
2164
2164
|
name?: string | undefined;
|
|
2165
2165
|
iconUrl?: string | undefined;
|
|
@@ -2174,7 +2174,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2174
2174
|
}>;
|
|
2175
2175
|
}>, "strip", z.ZodTypeAny, {
|
|
2176
2176
|
data: {
|
|
2177
|
-
|
|
2177
|
+
stakerInfo: {
|
|
2178
2178
|
address: `0x${string}`;
|
|
2179
2179
|
name?: string | undefined;
|
|
2180
2180
|
iconUrl?: string | undefined;
|
|
@@ -2193,7 +2193,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2193
2193
|
tokenAddress?: `0x${string}` | undefined;
|
|
2194
2194
|
}, {
|
|
2195
2195
|
data: {
|
|
2196
|
-
|
|
2196
|
+
stakerInfo: {
|
|
2197
2197
|
address: string;
|
|
2198
2198
|
name?: string | undefined;
|
|
2199
2199
|
iconUrl?: string | undefined;
|
|
@@ -2343,8 +2343,8 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2343
2343
|
id: string;
|
|
2344
2344
|
totalBalances: Record<string, string>;
|
|
2345
2345
|
tokenId: string;
|
|
2346
|
-
investmentId?: string | undefined;
|
|
2347
2346
|
tokenAddress?: `0x${string}` | undefined;
|
|
2347
|
+
investmentId?: string | undefined;
|
|
2348
2348
|
}, {
|
|
2349
2349
|
data: {
|
|
2350
2350
|
poolFeePercentage: string;
|
|
@@ -2369,8 +2369,8 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2369
2369
|
id: string;
|
|
2370
2370
|
totalBalances: Record<string, string>;
|
|
2371
2371
|
tokenId: string;
|
|
2372
|
-
investmentId?: string | undefined;
|
|
2373
2372
|
tokenAddress?: string | undefined;
|
|
2373
|
+
investmentId?: string | undefined;
|
|
2374
2374
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2375
2375
|
id: z.ZodString;
|
|
2376
2376
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -2406,8 +2406,8 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2406
2406
|
};
|
|
2407
2407
|
id: string;
|
|
2408
2408
|
totalBalances: Record<string, string>;
|
|
2409
|
-
investmentId?: string | undefined;
|
|
2410
2409
|
tokenAddress?: `0x${string}` | undefined;
|
|
2410
|
+
investmentId?: string | undefined;
|
|
2411
2411
|
}, {
|
|
2412
2412
|
data: {
|
|
2413
2413
|
lending: boolean;
|
|
@@ -2418,8 +2418,8 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2418
2418
|
};
|
|
2419
2419
|
id: string;
|
|
2420
2420
|
totalBalances: Record<string, string>;
|
|
2421
|
-
investmentId?: string | undefined;
|
|
2422
2421
|
tokenAddress?: string | undefined;
|
|
2422
|
+
investmentId?: string | undefined;
|
|
2423
2423
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2424
2424
|
id: z.ZodString;
|
|
2425
2425
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -2441,16 +2441,16 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2441
2441
|
};
|
|
2442
2442
|
id: string;
|
|
2443
2443
|
totalBalances: Record<string, string>;
|
|
2444
|
-
investmentId?: string | undefined;
|
|
2445
2444
|
tokenAddress?: `0x${string}` | undefined;
|
|
2445
|
+
investmentId?: string | undefined;
|
|
2446
2446
|
}, {
|
|
2447
2447
|
data: {
|
|
2448
2448
|
delegatingTo: string;
|
|
2449
2449
|
};
|
|
2450
2450
|
id: string;
|
|
2451
2451
|
totalBalances: Record<string, string>;
|
|
2452
|
-
investmentId?: string | undefined;
|
|
2453
2452
|
tokenAddress?: string | undefined;
|
|
2453
|
+
investmentId?: string | undefined;
|
|
2454
2454
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2455
2455
|
id: z.ZodString;
|
|
2456
2456
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -2472,16 +2472,16 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2472
2472
|
};
|
|
2473
2473
|
id: string;
|
|
2474
2474
|
totalBalances: Record<string, string>;
|
|
2475
|
-
investmentId?: string | undefined;
|
|
2476
2475
|
tokenAddress?: `0x${string}` | undefined;
|
|
2476
|
+
investmentId?: string | undefined;
|
|
2477
2477
|
}, {
|
|
2478
2478
|
data: {
|
|
2479
2479
|
apy: string;
|
|
2480
2480
|
};
|
|
2481
2481
|
id: string;
|
|
2482
2482
|
totalBalances: Record<string, string>;
|
|
2483
|
-
investmentId?: string | undefined;
|
|
2484
2483
|
tokenAddress?: string | undefined;
|
|
2484
|
+
investmentId?: string | undefined;
|
|
2485
2485
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2486
2486
|
id: z.ZodString;
|
|
2487
2487
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -2490,7 +2490,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2490
2490
|
}, {
|
|
2491
2491
|
investmentId: z.ZodString;
|
|
2492
2492
|
data: z.ZodObject<{
|
|
2493
|
-
|
|
2493
|
+
stakerInfo: z.ZodObject<{
|
|
2494
2494
|
name: z.ZodOptional<z.ZodString>;
|
|
2495
2495
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
2496
2496
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -2517,7 +2517,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2517
2517
|
}>>;
|
|
2518
2518
|
apy: z.ZodOptional<z.ZodString>;
|
|
2519
2519
|
}, "strip", z.ZodTypeAny, {
|
|
2520
|
-
|
|
2520
|
+
stakerInfo: {
|
|
2521
2521
|
address: `0x${string}`;
|
|
2522
2522
|
name?: string | undefined;
|
|
2523
2523
|
iconUrl?: string | undefined;
|
|
@@ -2530,7 +2530,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2530
2530
|
withdrawableAfter: number;
|
|
2531
2531
|
} | undefined;
|
|
2532
2532
|
}, {
|
|
2533
|
-
|
|
2533
|
+
stakerInfo: {
|
|
2534
2534
|
address: string;
|
|
2535
2535
|
name?: string | undefined;
|
|
2536
2536
|
iconUrl?: string | undefined;
|
|
@@ -2545,7 +2545,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2545
2545
|
}>;
|
|
2546
2546
|
}>, "strip", z.ZodTypeAny, {
|
|
2547
2547
|
data: {
|
|
2548
|
-
|
|
2548
|
+
stakerInfo: {
|
|
2549
2549
|
address: `0x${string}`;
|
|
2550
2550
|
name?: string | undefined;
|
|
2551
2551
|
iconUrl?: string | undefined;
|
|
@@ -2564,7 +2564,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2564
2564
|
tokenAddress?: `0x${string}` | undefined;
|
|
2565
2565
|
}, {
|
|
2566
2566
|
data: {
|
|
2567
|
-
|
|
2567
|
+
stakerInfo: {
|
|
2568
2568
|
address: string;
|
|
2569
2569
|
name?: string | undefined;
|
|
2570
2570
|
iconUrl?: string | undefined;
|
|
@@ -2714,8 +2714,8 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2714
2714
|
id: string;
|
|
2715
2715
|
totalBalances: Record<string, string>;
|
|
2716
2716
|
tokenId: string;
|
|
2717
|
-
investmentId?: string | undefined;
|
|
2718
2717
|
tokenAddress?: `0x${string}` | undefined;
|
|
2718
|
+
investmentId?: string | undefined;
|
|
2719
2719
|
}, {
|
|
2720
2720
|
data: {
|
|
2721
2721
|
poolFeePercentage: string;
|
|
@@ -2740,8 +2740,8 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2740
2740
|
id: string;
|
|
2741
2741
|
totalBalances: Record<string, string>;
|
|
2742
2742
|
tokenId: string;
|
|
2743
|
-
investmentId?: string | undefined;
|
|
2744
2743
|
tokenAddress?: string | undefined;
|
|
2744
|
+
investmentId?: string | undefined;
|
|
2745
2745
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2746
2746
|
id: z.ZodString;
|
|
2747
2747
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -2777,8 +2777,8 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2777
2777
|
};
|
|
2778
2778
|
id: string;
|
|
2779
2779
|
totalBalances: Record<string, string>;
|
|
2780
|
-
investmentId?: string | undefined;
|
|
2781
2780
|
tokenAddress?: `0x${string}` | undefined;
|
|
2781
|
+
investmentId?: string | undefined;
|
|
2782
2782
|
}, {
|
|
2783
2783
|
data: {
|
|
2784
2784
|
lending: boolean;
|
|
@@ -2789,8 +2789,8 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2789
2789
|
};
|
|
2790
2790
|
id: string;
|
|
2791
2791
|
totalBalances: Record<string, string>;
|
|
2792
|
-
investmentId?: string | undefined;
|
|
2793
2792
|
tokenAddress?: string | undefined;
|
|
2793
|
+
investmentId?: string | undefined;
|
|
2794
2794
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2795
2795
|
id: z.ZodString;
|
|
2796
2796
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -2812,16 +2812,16 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2812
2812
|
};
|
|
2813
2813
|
id: string;
|
|
2814
2814
|
totalBalances: Record<string, string>;
|
|
2815
|
-
investmentId?: string | undefined;
|
|
2816
2815
|
tokenAddress?: `0x${string}` | undefined;
|
|
2816
|
+
investmentId?: string | undefined;
|
|
2817
2817
|
}, {
|
|
2818
2818
|
data: {
|
|
2819
2819
|
delegatingTo: string;
|
|
2820
2820
|
};
|
|
2821
2821
|
id: string;
|
|
2822
2822
|
totalBalances: Record<string, string>;
|
|
2823
|
-
investmentId?: string | undefined;
|
|
2824
2823
|
tokenAddress?: string | undefined;
|
|
2824
|
+
investmentId?: string | undefined;
|
|
2825
2825
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2826
2826
|
id: z.ZodString;
|
|
2827
2827
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -2843,16 +2843,16 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2843
2843
|
};
|
|
2844
2844
|
id: string;
|
|
2845
2845
|
totalBalances: Record<string, string>;
|
|
2846
|
-
investmentId?: string | undefined;
|
|
2847
2846
|
tokenAddress?: `0x${string}` | undefined;
|
|
2847
|
+
investmentId?: string | undefined;
|
|
2848
2848
|
}, {
|
|
2849
2849
|
data: {
|
|
2850
2850
|
apy: string;
|
|
2851
2851
|
};
|
|
2852
2852
|
id: string;
|
|
2853
2853
|
totalBalances: Record<string, string>;
|
|
2854
|
-
investmentId?: string | undefined;
|
|
2855
2854
|
tokenAddress?: string | undefined;
|
|
2855
|
+
investmentId?: string | undefined;
|
|
2856
2856
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2857
2857
|
id: z.ZodString;
|
|
2858
2858
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -2861,7 +2861,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2861
2861
|
}, {
|
|
2862
2862
|
investmentId: z.ZodString;
|
|
2863
2863
|
data: z.ZodObject<{
|
|
2864
|
-
|
|
2864
|
+
stakerInfo: z.ZodObject<{
|
|
2865
2865
|
name: z.ZodOptional<z.ZodString>;
|
|
2866
2866
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
2867
2867
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -2888,7 +2888,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2888
2888
|
}>>;
|
|
2889
2889
|
apy: z.ZodOptional<z.ZodString>;
|
|
2890
2890
|
}, "strip", z.ZodTypeAny, {
|
|
2891
|
-
|
|
2891
|
+
stakerInfo: {
|
|
2892
2892
|
address: `0x${string}`;
|
|
2893
2893
|
name?: string | undefined;
|
|
2894
2894
|
iconUrl?: string | undefined;
|
|
@@ -2901,7 +2901,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2901
2901
|
withdrawableAfter: number;
|
|
2902
2902
|
} | undefined;
|
|
2903
2903
|
}, {
|
|
2904
|
-
|
|
2904
|
+
stakerInfo: {
|
|
2905
2905
|
address: string;
|
|
2906
2906
|
name?: string | undefined;
|
|
2907
2907
|
iconUrl?: string | undefined;
|
|
@@ -2916,7 +2916,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2916
2916
|
}>;
|
|
2917
2917
|
}>, "strip", z.ZodTypeAny, {
|
|
2918
2918
|
data: {
|
|
2919
|
-
|
|
2919
|
+
stakerInfo: {
|
|
2920
2920
|
address: `0x${string}`;
|
|
2921
2921
|
name?: string | undefined;
|
|
2922
2922
|
iconUrl?: string | undefined;
|
|
@@ -2935,7 +2935,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2935
2935
|
tokenAddress?: `0x${string}` | undefined;
|
|
2936
2936
|
}, {
|
|
2937
2937
|
data: {
|
|
2938
|
-
|
|
2938
|
+
stakerInfo: {
|
|
2939
2939
|
address: string;
|
|
2940
2940
|
name?: string | undefined;
|
|
2941
2941
|
iconUrl?: string | undefined;
|
|
@@ -3085,8 +3085,8 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3085
3085
|
id: string;
|
|
3086
3086
|
totalBalances: Record<string, string>;
|
|
3087
3087
|
tokenId: string;
|
|
3088
|
-
investmentId?: string | undefined;
|
|
3089
3088
|
tokenAddress?: `0x${string}` | undefined;
|
|
3089
|
+
investmentId?: string | undefined;
|
|
3090
3090
|
}, {
|
|
3091
3091
|
data: {
|
|
3092
3092
|
poolFeePercentage: string;
|
|
@@ -3111,8 +3111,8 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3111
3111
|
id: string;
|
|
3112
3112
|
totalBalances: Record<string, string>;
|
|
3113
3113
|
tokenId: string;
|
|
3114
|
-
investmentId?: string | undefined;
|
|
3115
3114
|
tokenAddress?: string | undefined;
|
|
3115
|
+
investmentId?: string | undefined;
|
|
3116
3116
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
3117
3117
|
id: z.ZodString;
|
|
3118
3118
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -3148,8 +3148,8 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3148
3148
|
};
|
|
3149
3149
|
id: string;
|
|
3150
3150
|
totalBalances: Record<string, string>;
|
|
3151
|
-
investmentId?: string | undefined;
|
|
3152
3151
|
tokenAddress?: `0x${string}` | undefined;
|
|
3152
|
+
investmentId?: string | undefined;
|
|
3153
3153
|
}, {
|
|
3154
3154
|
data: {
|
|
3155
3155
|
lending: boolean;
|
|
@@ -3160,8 +3160,8 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3160
3160
|
};
|
|
3161
3161
|
id: string;
|
|
3162
3162
|
totalBalances: Record<string, string>;
|
|
3163
|
-
investmentId?: string | undefined;
|
|
3164
3163
|
tokenAddress?: string | undefined;
|
|
3164
|
+
investmentId?: string | undefined;
|
|
3165
3165
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
3166
3166
|
id: z.ZodString;
|
|
3167
3167
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -3183,16 +3183,16 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3183
3183
|
};
|
|
3184
3184
|
id: string;
|
|
3185
3185
|
totalBalances: Record<string, string>;
|
|
3186
|
-
investmentId?: string | undefined;
|
|
3187
3186
|
tokenAddress?: `0x${string}` | undefined;
|
|
3187
|
+
investmentId?: string | undefined;
|
|
3188
3188
|
}, {
|
|
3189
3189
|
data: {
|
|
3190
3190
|
delegatingTo: string;
|
|
3191
3191
|
};
|
|
3192
3192
|
id: string;
|
|
3193
3193
|
totalBalances: Record<string, string>;
|
|
3194
|
-
investmentId?: string | undefined;
|
|
3195
3194
|
tokenAddress?: string | undefined;
|
|
3195
|
+
investmentId?: string | undefined;
|
|
3196
3196
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
3197
3197
|
id: z.ZodString;
|
|
3198
3198
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -3214,16 +3214,16 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3214
3214
|
};
|
|
3215
3215
|
id: string;
|
|
3216
3216
|
totalBalances: Record<string, string>;
|
|
3217
|
-
investmentId?: string | undefined;
|
|
3218
3217
|
tokenAddress?: `0x${string}` | undefined;
|
|
3218
|
+
investmentId?: string | undefined;
|
|
3219
3219
|
}, {
|
|
3220
3220
|
data: {
|
|
3221
3221
|
apy: string;
|
|
3222
3222
|
};
|
|
3223
3223
|
id: string;
|
|
3224
3224
|
totalBalances: Record<string, string>;
|
|
3225
|
-
investmentId?: string | undefined;
|
|
3226
3225
|
tokenAddress?: string | undefined;
|
|
3226
|
+
investmentId?: string | undefined;
|
|
3227
3227
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
3228
3228
|
id: z.ZodString;
|
|
3229
3229
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -3232,7 +3232,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3232
3232
|
}, {
|
|
3233
3233
|
investmentId: z.ZodString;
|
|
3234
3234
|
data: z.ZodObject<{
|
|
3235
|
-
|
|
3235
|
+
stakerInfo: z.ZodObject<{
|
|
3236
3236
|
name: z.ZodOptional<z.ZodString>;
|
|
3237
3237
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
3238
3238
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -3259,7 +3259,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3259
3259
|
}>>;
|
|
3260
3260
|
apy: z.ZodOptional<z.ZodString>;
|
|
3261
3261
|
}, "strip", z.ZodTypeAny, {
|
|
3262
|
-
|
|
3262
|
+
stakerInfo: {
|
|
3263
3263
|
address: `0x${string}`;
|
|
3264
3264
|
name?: string | undefined;
|
|
3265
3265
|
iconUrl?: string | undefined;
|
|
@@ -3272,7 +3272,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3272
3272
|
withdrawableAfter: number;
|
|
3273
3273
|
} | undefined;
|
|
3274
3274
|
}, {
|
|
3275
|
-
|
|
3275
|
+
stakerInfo: {
|
|
3276
3276
|
address: string;
|
|
3277
3277
|
name?: string | undefined;
|
|
3278
3278
|
iconUrl?: string | undefined;
|
|
@@ -3287,7 +3287,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3287
3287
|
}>;
|
|
3288
3288
|
}>, "strip", z.ZodTypeAny, {
|
|
3289
3289
|
data: {
|
|
3290
|
-
|
|
3290
|
+
stakerInfo: {
|
|
3291
3291
|
address: `0x${string}`;
|
|
3292
3292
|
name?: string | undefined;
|
|
3293
3293
|
iconUrl?: string | undefined;
|
|
@@ -3306,7 +3306,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3306
3306
|
tokenAddress?: `0x${string}` | undefined;
|
|
3307
3307
|
}, {
|
|
3308
3308
|
data: {
|
|
3309
|
-
|
|
3309
|
+
stakerInfo: {
|
|
3310
3310
|
address: string;
|
|
3311
3311
|
name?: string | undefined;
|
|
3312
3312
|
iconUrl?: string | undefined;
|
|
@@ -3456,8 +3456,8 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3456
3456
|
id: string;
|
|
3457
3457
|
totalBalances: Record<string, string>;
|
|
3458
3458
|
tokenId: string;
|
|
3459
|
-
investmentId?: string | undefined;
|
|
3460
3459
|
tokenAddress?: `0x${string}` | undefined;
|
|
3460
|
+
investmentId?: string | undefined;
|
|
3461
3461
|
}, {
|
|
3462
3462
|
data: {
|
|
3463
3463
|
poolFeePercentage: string;
|
|
@@ -3482,8 +3482,8 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3482
3482
|
id: string;
|
|
3483
3483
|
totalBalances: Record<string, string>;
|
|
3484
3484
|
tokenId: string;
|
|
3485
|
-
investmentId?: string | undefined;
|
|
3486
3485
|
tokenAddress?: string | undefined;
|
|
3486
|
+
investmentId?: string | undefined;
|
|
3487
3487
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
3488
3488
|
id: z.ZodString;
|
|
3489
3489
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -3519,8 +3519,8 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3519
3519
|
};
|
|
3520
3520
|
id: string;
|
|
3521
3521
|
totalBalances: Record<string, string>;
|
|
3522
|
-
investmentId?: string | undefined;
|
|
3523
3522
|
tokenAddress?: `0x${string}` | undefined;
|
|
3523
|
+
investmentId?: string | undefined;
|
|
3524
3524
|
}, {
|
|
3525
3525
|
data: {
|
|
3526
3526
|
lending: boolean;
|
|
@@ -3531,8 +3531,8 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3531
3531
|
};
|
|
3532
3532
|
id: string;
|
|
3533
3533
|
totalBalances: Record<string, string>;
|
|
3534
|
-
investmentId?: string | undefined;
|
|
3535
3534
|
tokenAddress?: string | undefined;
|
|
3535
|
+
investmentId?: string | undefined;
|
|
3536
3536
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
3537
3537
|
id: z.ZodString;
|
|
3538
3538
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -3554,16 +3554,16 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3554
3554
|
};
|
|
3555
3555
|
id: string;
|
|
3556
3556
|
totalBalances: Record<string, string>;
|
|
3557
|
-
investmentId?: string | undefined;
|
|
3558
3557
|
tokenAddress?: `0x${string}` | undefined;
|
|
3558
|
+
investmentId?: string | undefined;
|
|
3559
3559
|
}, {
|
|
3560
3560
|
data: {
|
|
3561
3561
|
delegatingTo: string;
|
|
3562
3562
|
};
|
|
3563
3563
|
id: string;
|
|
3564
3564
|
totalBalances: Record<string, string>;
|
|
3565
|
-
investmentId?: string | undefined;
|
|
3566
3565
|
tokenAddress?: string | undefined;
|
|
3566
|
+
investmentId?: string | undefined;
|
|
3567
3567
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
3568
3568
|
id: z.ZodString;
|
|
3569
3569
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -3585,16 +3585,16 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3585
3585
|
};
|
|
3586
3586
|
id: string;
|
|
3587
3587
|
totalBalances: Record<string, string>;
|
|
3588
|
-
investmentId?: string | undefined;
|
|
3589
3588
|
tokenAddress?: `0x${string}` | undefined;
|
|
3589
|
+
investmentId?: string | undefined;
|
|
3590
3590
|
}, {
|
|
3591
3591
|
data: {
|
|
3592
3592
|
apy: string;
|
|
3593
3593
|
};
|
|
3594
3594
|
id: string;
|
|
3595
3595
|
totalBalances: Record<string, string>;
|
|
3596
|
-
investmentId?: string | undefined;
|
|
3597
3596
|
tokenAddress?: string | undefined;
|
|
3597
|
+
investmentId?: string | undefined;
|
|
3598
3598
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
3599
3599
|
id: z.ZodString;
|
|
3600
3600
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -3603,7 +3603,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3603
3603
|
}, {
|
|
3604
3604
|
investmentId: z.ZodString;
|
|
3605
3605
|
data: z.ZodObject<{
|
|
3606
|
-
|
|
3606
|
+
stakerInfo: z.ZodObject<{
|
|
3607
3607
|
name: z.ZodOptional<z.ZodString>;
|
|
3608
3608
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
3609
3609
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -3630,7 +3630,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3630
3630
|
}>>;
|
|
3631
3631
|
apy: z.ZodOptional<z.ZodString>;
|
|
3632
3632
|
}, "strip", z.ZodTypeAny, {
|
|
3633
|
-
|
|
3633
|
+
stakerInfo: {
|
|
3634
3634
|
address: `0x${string}`;
|
|
3635
3635
|
name?: string | undefined;
|
|
3636
3636
|
iconUrl?: string | undefined;
|
|
@@ -3643,7 +3643,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3643
3643
|
withdrawableAfter: number;
|
|
3644
3644
|
} | undefined;
|
|
3645
3645
|
}, {
|
|
3646
|
-
|
|
3646
|
+
stakerInfo: {
|
|
3647
3647
|
address: string;
|
|
3648
3648
|
name?: string | undefined;
|
|
3649
3649
|
iconUrl?: string | undefined;
|
|
@@ -3658,7 +3658,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3658
3658
|
}>;
|
|
3659
3659
|
}>, "strip", z.ZodTypeAny, {
|
|
3660
3660
|
data: {
|
|
3661
|
-
|
|
3661
|
+
stakerInfo: {
|
|
3662
3662
|
address: `0x${string}`;
|
|
3663
3663
|
name?: string | undefined;
|
|
3664
3664
|
iconUrl?: string | undefined;
|
|
@@ -3677,7 +3677,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3677
3677
|
tokenAddress?: `0x${string}` | undefined;
|
|
3678
3678
|
}, {
|
|
3679
3679
|
data: {
|
|
3680
|
-
|
|
3680
|
+
stakerInfo: {
|
|
3681
3681
|
address: string;
|
|
3682
3682
|
name?: string | undefined;
|
|
3683
3683
|
iconUrl?: string | undefined;
|
|
@@ -3828,8 +3828,8 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3828
3828
|
id: string;
|
|
3829
3829
|
totalBalances: Record<string, string>;
|
|
3830
3830
|
tokenId: string;
|
|
3831
|
-
investmentId?: string | undefined;
|
|
3832
3831
|
tokenAddress?: `0x${string}` | undefined;
|
|
3832
|
+
investmentId?: string | undefined;
|
|
3833
3833
|
}, {
|
|
3834
3834
|
data: {
|
|
3835
3835
|
poolFeePercentage: string;
|
|
@@ -3854,8 +3854,8 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3854
3854
|
id: string;
|
|
3855
3855
|
totalBalances: Record<string, string>;
|
|
3856
3856
|
tokenId: string;
|
|
3857
|
-
investmentId?: string | undefined;
|
|
3858
3857
|
tokenAddress?: string | undefined;
|
|
3858
|
+
investmentId?: string | undefined;
|
|
3859
3859
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
3860
3860
|
id: z.ZodString;
|
|
3861
3861
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -3891,8 +3891,8 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3891
3891
|
};
|
|
3892
3892
|
id: string;
|
|
3893
3893
|
totalBalances: Record<string, string>;
|
|
3894
|
-
investmentId?: string | undefined;
|
|
3895
3894
|
tokenAddress?: `0x${string}` | undefined;
|
|
3895
|
+
investmentId?: string | undefined;
|
|
3896
3896
|
}, {
|
|
3897
3897
|
data: {
|
|
3898
3898
|
lending: boolean;
|
|
@@ -3903,8 +3903,8 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3903
3903
|
};
|
|
3904
3904
|
id: string;
|
|
3905
3905
|
totalBalances: Record<string, string>;
|
|
3906
|
-
investmentId?: string | undefined;
|
|
3907
3906
|
tokenAddress?: string | undefined;
|
|
3907
|
+
investmentId?: string | undefined;
|
|
3908
3908
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
3909
3909
|
id: z.ZodString;
|
|
3910
3910
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -3926,16 +3926,16 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3926
3926
|
};
|
|
3927
3927
|
id: string;
|
|
3928
3928
|
totalBalances: Record<string, string>;
|
|
3929
|
-
investmentId?: string | undefined;
|
|
3930
3929
|
tokenAddress?: `0x${string}` | undefined;
|
|
3930
|
+
investmentId?: string | undefined;
|
|
3931
3931
|
}, {
|
|
3932
3932
|
data: {
|
|
3933
3933
|
delegatingTo: string;
|
|
3934
3934
|
};
|
|
3935
3935
|
id: string;
|
|
3936
3936
|
totalBalances: Record<string, string>;
|
|
3937
|
-
investmentId?: string | undefined;
|
|
3938
3937
|
tokenAddress?: string | undefined;
|
|
3938
|
+
investmentId?: string | undefined;
|
|
3939
3939
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
3940
3940
|
id: z.ZodString;
|
|
3941
3941
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -3957,16 +3957,16 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3957
3957
|
};
|
|
3958
3958
|
id: string;
|
|
3959
3959
|
totalBalances: Record<string, string>;
|
|
3960
|
-
investmentId?: string | undefined;
|
|
3961
3960
|
tokenAddress?: `0x${string}` | undefined;
|
|
3961
|
+
investmentId?: string | undefined;
|
|
3962
3962
|
}, {
|
|
3963
3963
|
data: {
|
|
3964
3964
|
apy: string;
|
|
3965
3965
|
};
|
|
3966
3966
|
id: string;
|
|
3967
3967
|
totalBalances: Record<string, string>;
|
|
3968
|
-
investmentId?: string | undefined;
|
|
3969
3968
|
tokenAddress?: string | undefined;
|
|
3969
|
+
investmentId?: string | undefined;
|
|
3970
3970
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
3971
3971
|
id: z.ZodString;
|
|
3972
3972
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -3975,7 +3975,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3975
3975
|
}, {
|
|
3976
3976
|
investmentId: z.ZodString;
|
|
3977
3977
|
data: z.ZodObject<{
|
|
3978
|
-
|
|
3978
|
+
stakerInfo: z.ZodObject<{
|
|
3979
3979
|
name: z.ZodOptional<z.ZodString>;
|
|
3980
3980
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
3981
3981
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -4002,7 +4002,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4002
4002
|
}>>;
|
|
4003
4003
|
apy: z.ZodOptional<z.ZodString>;
|
|
4004
4004
|
}, "strip", z.ZodTypeAny, {
|
|
4005
|
-
|
|
4005
|
+
stakerInfo: {
|
|
4006
4006
|
address: `0x${string}`;
|
|
4007
4007
|
name?: string | undefined;
|
|
4008
4008
|
iconUrl?: string | undefined;
|
|
@@ -4015,7 +4015,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4015
4015
|
withdrawableAfter: number;
|
|
4016
4016
|
} | undefined;
|
|
4017
4017
|
}, {
|
|
4018
|
-
|
|
4018
|
+
stakerInfo: {
|
|
4019
4019
|
address: string;
|
|
4020
4020
|
name?: string | undefined;
|
|
4021
4021
|
iconUrl?: string | undefined;
|
|
@@ -4030,7 +4030,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4030
4030
|
}>;
|
|
4031
4031
|
}>, "strip", z.ZodTypeAny, {
|
|
4032
4032
|
data: {
|
|
4033
|
-
|
|
4033
|
+
stakerInfo: {
|
|
4034
4034
|
address: `0x${string}`;
|
|
4035
4035
|
name?: string | undefined;
|
|
4036
4036
|
iconUrl?: string | undefined;
|
|
@@ -4049,7 +4049,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4049
4049
|
tokenAddress?: `0x${string}` | undefined;
|
|
4050
4050
|
}, {
|
|
4051
4051
|
data: {
|
|
4052
|
-
|
|
4052
|
+
stakerInfo: {
|
|
4053
4053
|
address: string;
|
|
4054
4054
|
name?: string | undefined;
|
|
4055
4055
|
iconUrl?: string | undefined;
|
|
@@ -4199,8 +4199,8 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4199
4199
|
id: string;
|
|
4200
4200
|
totalBalances: Record<string, string>;
|
|
4201
4201
|
tokenId: string;
|
|
4202
|
-
investmentId?: string | undefined;
|
|
4203
4202
|
tokenAddress?: `0x${string}` | undefined;
|
|
4203
|
+
investmentId?: string | undefined;
|
|
4204
4204
|
}, {
|
|
4205
4205
|
data: {
|
|
4206
4206
|
poolFeePercentage: string;
|
|
@@ -4225,8 +4225,8 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4225
4225
|
id: string;
|
|
4226
4226
|
totalBalances: Record<string, string>;
|
|
4227
4227
|
tokenId: string;
|
|
4228
|
-
investmentId?: string | undefined;
|
|
4229
4228
|
tokenAddress?: string | undefined;
|
|
4229
|
+
investmentId?: string | undefined;
|
|
4230
4230
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
4231
4231
|
id: z.ZodString;
|
|
4232
4232
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -4262,8 +4262,8 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4262
4262
|
};
|
|
4263
4263
|
id: string;
|
|
4264
4264
|
totalBalances: Record<string, string>;
|
|
4265
|
-
investmentId?: string | undefined;
|
|
4266
4265
|
tokenAddress?: `0x${string}` | undefined;
|
|
4266
|
+
investmentId?: string | undefined;
|
|
4267
4267
|
}, {
|
|
4268
4268
|
data: {
|
|
4269
4269
|
lending: boolean;
|
|
@@ -4274,8 +4274,8 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4274
4274
|
};
|
|
4275
4275
|
id: string;
|
|
4276
4276
|
totalBalances: Record<string, string>;
|
|
4277
|
-
investmentId?: string | undefined;
|
|
4278
4277
|
tokenAddress?: string | undefined;
|
|
4278
|
+
investmentId?: string | undefined;
|
|
4279
4279
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
4280
4280
|
id: z.ZodString;
|
|
4281
4281
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -4297,16 +4297,16 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4297
4297
|
};
|
|
4298
4298
|
id: string;
|
|
4299
4299
|
totalBalances: Record<string, string>;
|
|
4300
|
-
investmentId?: string | undefined;
|
|
4301
4300
|
tokenAddress?: `0x${string}` | undefined;
|
|
4301
|
+
investmentId?: string | undefined;
|
|
4302
4302
|
}, {
|
|
4303
4303
|
data: {
|
|
4304
4304
|
delegatingTo: string;
|
|
4305
4305
|
};
|
|
4306
4306
|
id: string;
|
|
4307
4307
|
totalBalances: Record<string, string>;
|
|
4308
|
-
investmentId?: string | undefined;
|
|
4309
4308
|
tokenAddress?: string | undefined;
|
|
4309
|
+
investmentId?: string | undefined;
|
|
4310
4310
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
4311
4311
|
id: z.ZodString;
|
|
4312
4312
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -4328,16 +4328,16 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4328
4328
|
};
|
|
4329
4329
|
id: string;
|
|
4330
4330
|
totalBalances: Record<string, string>;
|
|
4331
|
-
investmentId?: string | undefined;
|
|
4332
4331
|
tokenAddress?: `0x${string}` | undefined;
|
|
4332
|
+
investmentId?: string | undefined;
|
|
4333
4333
|
}, {
|
|
4334
4334
|
data: {
|
|
4335
4335
|
apy: string;
|
|
4336
4336
|
};
|
|
4337
4337
|
id: string;
|
|
4338
4338
|
totalBalances: Record<string, string>;
|
|
4339
|
-
investmentId?: string | undefined;
|
|
4340
4339
|
tokenAddress?: string | undefined;
|
|
4340
|
+
investmentId?: string | undefined;
|
|
4341
4341
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
4342
4342
|
id: z.ZodString;
|
|
4343
4343
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -4346,7 +4346,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4346
4346
|
}, {
|
|
4347
4347
|
investmentId: z.ZodString;
|
|
4348
4348
|
data: z.ZodObject<{
|
|
4349
|
-
|
|
4349
|
+
stakerInfo: z.ZodObject<{
|
|
4350
4350
|
name: z.ZodOptional<z.ZodString>;
|
|
4351
4351
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
4352
4352
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -4373,7 +4373,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4373
4373
|
}>>;
|
|
4374
4374
|
apy: z.ZodOptional<z.ZodString>;
|
|
4375
4375
|
}, "strip", z.ZodTypeAny, {
|
|
4376
|
-
|
|
4376
|
+
stakerInfo: {
|
|
4377
4377
|
address: `0x${string}`;
|
|
4378
4378
|
name?: string | undefined;
|
|
4379
4379
|
iconUrl?: string | undefined;
|
|
@@ -4386,7 +4386,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4386
4386
|
withdrawableAfter: number;
|
|
4387
4387
|
} | undefined;
|
|
4388
4388
|
}, {
|
|
4389
|
-
|
|
4389
|
+
stakerInfo: {
|
|
4390
4390
|
address: string;
|
|
4391
4391
|
name?: string | undefined;
|
|
4392
4392
|
iconUrl?: string | undefined;
|
|
@@ -4401,7 +4401,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4401
4401
|
}>;
|
|
4402
4402
|
}>, "strip", z.ZodTypeAny, {
|
|
4403
4403
|
data: {
|
|
4404
|
-
|
|
4404
|
+
stakerInfo: {
|
|
4405
4405
|
address: `0x${string}`;
|
|
4406
4406
|
name?: string | undefined;
|
|
4407
4407
|
iconUrl?: string | undefined;
|
|
@@ -4420,7 +4420,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4420
4420
|
tokenAddress?: `0x${string}` | undefined;
|
|
4421
4421
|
}, {
|
|
4422
4422
|
data: {
|
|
4423
|
-
|
|
4423
|
+
stakerInfo: {
|
|
4424
4424
|
address: string;
|
|
4425
4425
|
name?: string | undefined;
|
|
4426
4426
|
iconUrl?: string | undefined;
|
|
@@ -4570,8 +4570,8 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4570
4570
|
id: string;
|
|
4571
4571
|
totalBalances: Record<string, string>;
|
|
4572
4572
|
tokenId: string;
|
|
4573
|
-
investmentId?: string | undefined;
|
|
4574
4573
|
tokenAddress?: `0x${string}` | undefined;
|
|
4574
|
+
investmentId?: string | undefined;
|
|
4575
4575
|
}, {
|
|
4576
4576
|
data: {
|
|
4577
4577
|
poolFeePercentage: string;
|
|
@@ -4596,8 +4596,8 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4596
4596
|
id: string;
|
|
4597
4597
|
totalBalances: Record<string, string>;
|
|
4598
4598
|
tokenId: string;
|
|
4599
|
-
investmentId?: string | undefined;
|
|
4600
4599
|
tokenAddress?: string | undefined;
|
|
4600
|
+
investmentId?: string | undefined;
|
|
4601
4601
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
4602
4602
|
id: z.ZodString;
|
|
4603
4603
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -4633,8 +4633,8 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4633
4633
|
};
|
|
4634
4634
|
id: string;
|
|
4635
4635
|
totalBalances: Record<string, string>;
|
|
4636
|
-
investmentId?: string | undefined;
|
|
4637
4636
|
tokenAddress?: `0x${string}` | undefined;
|
|
4637
|
+
investmentId?: string | undefined;
|
|
4638
4638
|
}, {
|
|
4639
4639
|
data: {
|
|
4640
4640
|
lending: boolean;
|
|
@@ -4645,8 +4645,8 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4645
4645
|
};
|
|
4646
4646
|
id: string;
|
|
4647
4647
|
totalBalances: Record<string, string>;
|
|
4648
|
-
investmentId?: string | undefined;
|
|
4649
4648
|
tokenAddress?: string | undefined;
|
|
4649
|
+
investmentId?: string | undefined;
|
|
4650
4650
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
4651
4651
|
id: z.ZodString;
|
|
4652
4652
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -4668,16 +4668,16 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4668
4668
|
};
|
|
4669
4669
|
id: string;
|
|
4670
4670
|
totalBalances: Record<string, string>;
|
|
4671
|
-
investmentId?: string | undefined;
|
|
4672
4671
|
tokenAddress?: `0x${string}` | undefined;
|
|
4672
|
+
investmentId?: string | undefined;
|
|
4673
4673
|
}, {
|
|
4674
4674
|
data: {
|
|
4675
4675
|
delegatingTo: string;
|
|
4676
4676
|
};
|
|
4677
4677
|
id: string;
|
|
4678
4678
|
totalBalances: Record<string, string>;
|
|
4679
|
-
investmentId?: string | undefined;
|
|
4680
4679
|
tokenAddress?: string | undefined;
|
|
4680
|
+
investmentId?: string | undefined;
|
|
4681
4681
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
4682
4682
|
id: z.ZodString;
|
|
4683
4683
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -4699,16 +4699,16 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4699
4699
|
};
|
|
4700
4700
|
id: string;
|
|
4701
4701
|
totalBalances: Record<string, string>;
|
|
4702
|
-
investmentId?: string | undefined;
|
|
4703
4702
|
tokenAddress?: `0x${string}` | undefined;
|
|
4703
|
+
investmentId?: string | undefined;
|
|
4704
4704
|
}, {
|
|
4705
4705
|
data: {
|
|
4706
4706
|
apy: string;
|
|
4707
4707
|
};
|
|
4708
4708
|
id: string;
|
|
4709
4709
|
totalBalances: Record<string, string>;
|
|
4710
|
-
investmentId?: string | undefined;
|
|
4711
4710
|
tokenAddress?: string | undefined;
|
|
4711
|
+
investmentId?: string | undefined;
|
|
4712
4712
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
4713
4713
|
id: z.ZodString;
|
|
4714
4714
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -4717,7 +4717,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4717
4717
|
}, {
|
|
4718
4718
|
investmentId: z.ZodString;
|
|
4719
4719
|
data: z.ZodObject<{
|
|
4720
|
-
|
|
4720
|
+
stakerInfo: z.ZodObject<{
|
|
4721
4721
|
name: z.ZodOptional<z.ZodString>;
|
|
4722
4722
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
4723
4723
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -4744,7 +4744,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4744
4744
|
}>>;
|
|
4745
4745
|
apy: z.ZodOptional<z.ZodString>;
|
|
4746
4746
|
}, "strip", z.ZodTypeAny, {
|
|
4747
|
-
|
|
4747
|
+
stakerInfo: {
|
|
4748
4748
|
address: `0x${string}`;
|
|
4749
4749
|
name?: string | undefined;
|
|
4750
4750
|
iconUrl?: string | undefined;
|
|
@@ -4757,7 +4757,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4757
4757
|
withdrawableAfter: number;
|
|
4758
4758
|
} | undefined;
|
|
4759
4759
|
}, {
|
|
4760
|
-
|
|
4760
|
+
stakerInfo: {
|
|
4761
4761
|
address: string;
|
|
4762
4762
|
name?: string | undefined;
|
|
4763
4763
|
iconUrl?: string | undefined;
|
|
@@ -4772,7 +4772,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4772
4772
|
}>;
|
|
4773
4773
|
}>, "strip", z.ZodTypeAny, {
|
|
4774
4774
|
data: {
|
|
4775
|
-
|
|
4775
|
+
stakerInfo: {
|
|
4776
4776
|
address: `0x${string}`;
|
|
4777
4777
|
name?: string | undefined;
|
|
4778
4778
|
iconUrl?: string | undefined;
|
|
@@ -4791,7 +4791,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4791
4791
|
tokenAddress?: `0x${string}` | undefined;
|
|
4792
4792
|
}, {
|
|
4793
4793
|
data: {
|
|
4794
|
-
|
|
4794
|
+
stakerInfo: {
|
|
4795
4795
|
address: string;
|
|
4796
4796
|
name?: string | undefined;
|
|
4797
4797
|
iconUrl?: string | undefined;
|
|
@@ -4941,8 +4941,8 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4941
4941
|
id: string;
|
|
4942
4942
|
totalBalances: Record<string, string>;
|
|
4943
4943
|
tokenId: string;
|
|
4944
|
-
investmentId?: string | undefined;
|
|
4945
4944
|
tokenAddress?: `0x${string}` | undefined;
|
|
4945
|
+
investmentId?: string | undefined;
|
|
4946
4946
|
}, {
|
|
4947
4947
|
data: {
|
|
4948
4948
|
poolFeePercentage: string;
|
|
@@ -4967,8 +4967,8 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4967
4967
|
id: string;
|
|
4968
4968
|
totalBalances: Record<string, string>;
|
|
4969
4969
|
tokenId: string;
|
|
4970
|
-
investmentId?: string | undefined;
|
|
4971
4970
|
tokenAddress?: string | undefined;
|
|
4971
|
+
investmentId?: string | undefined;
|
|
4972
4972
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
4973
4973
|
id: z.ZodString;
|
|
4974
4974
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -5004,8 +5004,8 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5004
5004
|
};
|
|
5005
5005
|
id: string;
|
|
5006
5006
|
totalBalances: Record<string, string>;
|
|
5007
|
-
investmentId?: string | undefined;
|
|
5008
5007
|
tokenAddress?: `0x${string}` | undefined;
|
|
5008
|
+
investmentId?: string | undefined;
|
|
5009
5009
|
}, {
|
|
5010
5010
|
data: {
|
|
5011
5011
|
lending: boolean;
|
|
@@ -5016,8 +5016,8 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5016
5016
|
};
|
|
5017
5017
|
id: string;
|
|
5018
5018
|
totalBalances: Record<string, string>;
|
|
5019
|
-
investmentId?: string | undefined;
|
|
5020
5019
|
tokenAddress?: string | undefined;
|
|
5020
|
+
investmentId?: string | undefined;
|
|
5021
5021
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5022
5022
|
id: z.ZodString;
|
|
5023
5023
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -5039,16 +5039,16 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5039
5039
|
};
|
|
5040
5040
|
id: string;
|
|
5041
5041
|
totalBalances: Record<string, string>;
|
|
5042
|
-
investmentId?: string | undefined;
|
|
5043
5042
|
tokenAddress?: `0x${string}` | undefined;
|
|
5043
|
+
investmentId?: string | undefined;
|
|
5044
5044
|
}, {
|
|
5045
5045
|
data: {
|
|
5046
5046
|
delegatingTo: string;
|
|
5047
5047
|
};
|
|
5048
5048
|
id: string;
|
|
5049
5049
|
totalBalances: Record<string, string>;
|
|
5050
|
-
investmentId?: string | undefined;
|
|
5051
5050
|
tokenAddress?: string | undefined;
|
|
5051
|
+
investmentId?: string | undefined;
|
|
5052
5052
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5053
5053
|
id: z.ZodString;
|
|
5054
5054
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -5070,16 +5070,16 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5070
5070
|
};
|
|
5071
5071
|
id: string;
|
|
5072
5072
|
totalBalances: Record<string, string>;
|
|
5073
|
-
investmentId?: string | undefined;
|
|
5074
5073
|
tokenAddress?: `0x${string}` | undefined;
|
|
5074
|
+
investmentId?: string | undefined;
|
|
5075
5075
|
}, {
|
|
5076
5076
|
data: {
|
|
5077
5077
|
apy: string;
|
|
5078
5078
|
};
|
|
5079
5079
|
id: string;
|
|
5080
5080
|
totalBalances: Record<string, string>;
|
|
5081
|
-
investmentId?: string | undefined;
|
|
5082
5081
|
tokenAddress?: string | undefined;
|
|
5082
|
+
investmentId?: string | undefined;
|
|
5083
5083
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5084
5084
|
id: z.ZodString;
|
|
5085
5085
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -5088,7 +5088,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5088
5088
|
}, {
|
|
5089
5089
|
investmentId: z.ZodString;
|
|
5090
5090
|
data: z.ZodObject<{
|
|
5091
|
-
|
|
5091
|
+
stakerInfo: z.ZodObject<{
|
|
5092
5092
|
name: z.ZodOptional<z.ZodString>;
|
|
5093
5093
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
5094
5094
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -5115,7 +5115,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5115
5115
|
}>>;
|
|
5116
5116
|
apy: z.ZodOptional<z.ZodString>;
|
|
5117
5117
|
}, "strip", z.ZodTypeAny, {
|
|
5118
|
-
|
|
5118
|
+
stakerInfo: {
|
|
5119
5119
|
address: `0x${string}`;
|
|
5120
5120
|
name?: string | undefined;
|
|
5121
5121
|
iconUrl?: string | undefined;
|
|
@@ -5128,7 +5128,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5128
5128
|
withdrawableAfter: number;
|
|
5129
5129
|
} | undefined;
|
|
5130
5130
|
}, {
|
|
5131
|
-
|
|
5131
|
+
stakerInfo: {
|
|
5132
5132
|
address: string;
|
|
5133
5133
|
name?: string | undefined;
|
|
5134
5134
|
iconUrl?: string | undefined;
|
|
@@ -5143,7 +5143,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5143
5143
|
}>;
|
|
5144
5144
|
}>, "strip", z.ZodTypeAny, {
|
|
5145
5145
|
data: {
|
|
5146
|
-
|
|
5146
|
+
stakerInfo: {
|
|
5147
5147
|
address: `0x${string}`;
|
|
5148
5148
|
name?: string | undefined;
|
|
5149
5149
|
iconUrl?: string | undefined;
|
|
@@ -5162,7 +5162,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5162
5162
|
tokenAddress?: `0x${string}` | undefined;
|
|
5163
5163
|
}, {
|
|
5164
5164
|
data: {
|
|
5165
|
-
|
|
5165
|
+
stakerInfo: {
|
|
5166
5166
|
address: string;
|
|
5167
5167
|
name?: string | undefined;
|
|
5168
5168
|
iconUrl?: string | undefined;
|
|
@@ -5312,8 +5312,8 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5312
5312
|
id: string;
|
|
5313
5313
|
totalBalances: Record<string, string>;
|
|
5314
5314
|
tokenId: string;
|
|
5315
|
-
investmentId?: string | undefined;
|
|
5316
5315
|
tokenAddress?: `0x${string}` | undefined;
|
|
5316
|
+
investmentId?: string | undefined;
|
|
5317
5317
|
}, {
|
|
5318
5318
|
data: {
|
|
5319
5319
|
poolFeePercentage: string;
|
|
@@ -5338,8 +5338,8 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5338
5338
|
id: string;
|
|
5339
5339
|
totalBalances: Record<string, string>;
|
|
5340
5340
|
tokenId: string;
|
|
5341
|
-
investmentId?: string | undefined;
|
|
5342
5341
|
tokenAddress?: string | undefined;
|
|
5342
|
+
investmentId?: string | undefined;
|
|
5343
5343
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5344
5344
|
id: z.ZodString;
|
|
5345
5345
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -5375,8 +5375,8 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5375
5375
|
};
|
|
5376
5376
|
id: string;
|
|
5377
5377
|
totalBalances: Record<string, string>;
|
|
5378
|
-
investmentId?: string | undefined;
|
|
5379
5378
|
tokenAddress?: `0x${string}` | undefined;
|
|
5379
|
+
investmentId?: string | undefined;
|
|
5380
5380
|
}, {
|
|
5381
5381
|
data: {
|
|
5382
5382
|
lending: boolean;
|
|
@@ -5387,8 +5387,8 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5387
5387
|
};
|
|
5388
5388
|
id: string;
|
|
5389
5389
|
totalBalances: Record<string, string>;
|
|
5390
|
-
investmentId?: string | undefined;
|
|
5391
5390
|
tokenAddress?: string | undefined;
|
|
5391
|
+
investmentId?: string | undefined;
|
|
5392
5392
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5393
5393
|
id: z.ZodString;
|
|
5394
5394
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -5410,16 +5410,16 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5410
5410
|
};
|
|
5411
5411
|
id: string;
|
|
5412
5412
|
totalBalances: Record<string, string>;
|
|
5413
|
-
investmentId?: string | undefined;
|
|
5414
5413
|
tokenAddress?: `0x${string}` | undefined;
|
|
5414
|
+
investmentId?: string | undefined;
|
|
5415
5415
|
}, {
|
|
5416
5416
|
data: {
|
|
5417
5417
|
delegatingTo: string;
|
|
5418
5418
|
};
|
|
5419
5419
|
id: string;
|
|
5420
5420
|
totalBalances: Record<string, string>;
|
|
5421
|
-
investmentId?: string | undefined;
|
|
5422
5421
|
tokenAddress?: string | undefined;
|
|
5422
|
+
investmentId?: string | undefined;
|
|
5423
5423
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5424
5424
|
id: z.ZodString;
|
|
5425
5425
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -5441,16 +5441,16 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5441
5441
|
};
|
|
5442
5442
|
id: string;
|
|
5443
5443
|
totalBalances: Record<string, string>;
|
|
5444
|
-
investmentId?: string | undefined;
|
|
5445
5444
|
tokenAddress?: `0x${string}` | undefined;
|
|
5445
|
+
investmentId?: string | undefined;
|
|
5446
5446
|
}, {
|
|
5447
5447
|
data: {
|
|
5448
5448
|
apy: string;
|
|
5449
5449
|
};
|
|
5450
5450
|
id: string;
|
|
5451
5451
|
totalBalances: Record<string, string>;
|
|
5452
|
-
investmentId?: string | undefined;
|
|
5453
5452
|
tokenAddress?: string | undefined;
|
|
5453
|
+
investmentId?: string | undefined;
|
|
5454
5454
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5455
5455
|
id: z.ZodString;
|
|
5456
5456
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -5459,7 +5459,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5459
5459
|
}, {
|
|
5460
5460
|
investmentId: z.ZodString;
|
|
5461
5461
|
data: z.ZodObject<{
|
|
5462
|
-
|
|
5462
|
+
stakerInfo: z.ZodObject<{
|
|
5463
5463
|
name: z.ZodOptional<z.ZodString>;
|
|
5464
5464
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
5465
5465
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -5486,7 +5486,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5486
5486
|
}>>;
|
|
5487
5487
|
apy: z.ZodOptional<z.ZodString>;
|
|
5488
5488
|
}, "strip", z.ZodTypeAny, {
|
|
5489
|
-
|
|
5489
|
+
stakerInfo: {
|
|
5490
5490
|
address: `0x${string}`;
|
|
5491
5491
|
name?: string | undefined;
|
|
5492
5492
|
iconUrl?: string | undefined;
|
|
@@ -5499,7 +5499,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5499
5499
|
withdrawableAfter: number;
|
|
5500
5500
|
} | undefined;
|
|
5501
5501
|
}, {
|
|
5502
|
-
|
|
5502
|
+
stakerInfo: {
|
|
5503
5503
|
address: string;
|
|
5504
5504
|
name?: string | undefined;
|
|
5505
5505
|
iconUrl?: string | undefined;
|
|
@@ -5514,7 +5514,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5514
5514
|
}>;
|
|
5515
5515
|
}>, "strip", z.ZodTypeAny, {
|
|
5516
5516
|
data: {
|
|
5517
|
-
|
|
5517
|
+
stakerInfo: {
|
|
5518
5518
|
address: `0x${string}`;
|
|
5519
5519
|
name?: string | undefined;
|
|
5520
5520
|
iconUrl?: string | undefined;
|
|
@@ -5533,7 +5533,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5533
5533
|
tokenAddress?: `0x${string}` | undefined;
|
|
5534
5534
|
}, {
|
|
5535
5535
|
data: {
|
|
5536
|
-
|
|
5536
|
+
stakerInfo: {
|
|
5537
5537
|
address: string;
|
|
5538
5538
|
name?: string | undefined;
|
|
5539
5539
|
iconUrl?: string | undefined;
|
|
@@ -5687,8 +5687,8 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5687
5687
|
id: string;
|
|
5688
5688
|
totalBalances: Record<string, string>;
|
|
5689
5689
|
tokenId: string;
|
|
5690
|
-
investmentId?: string | undefined;
|
|
5691
5690
|
tokenAddress?: `0x${string}` | undefined;
|
|
5691
|
+
investmentId?: string | undefined;
|
|
5692
5692
|
}, {
|
|
5693
5693
|
data: {
|
|
5694
5694
|
poolFeePercentage: string;
|
|
@@ -5713,8 +5713,8 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5713
5713
|
id: string;
|
|
5714
5714
|
totalBalances: Record<string, string>;
|
|
5715
5715
|
tokenId: string;
|
|
5716
|
-
investmentId?: string | undefined;
|
|
5717
5716
|
tokenAddress?: string | undefined;
|
|
5717
|
+
investmentId?: string | undefined;
|
|
5718
5718
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5719
5719
|
id: z.ZodString;
|
|
5720
5720
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -5750,8 +5750,8 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5750
5750
|
};
|
|
5751
5751
|
id: string;
|
|
5752
5752
|
totalBalances: Record<string, string>;
|
|
5753
|
-
investmentId?: string | undefined;
|
|
5754
5753
|
tokenAddress?: `0x${string}` | undefined;
|
|
5754
|
+
investmentId?: string | undefined;
|
|
5755
5755
|
}, {
|
|
5756
5756
|
data: {
|
|
5757
5757
|
lending: boolean;
|
|
@@ -5762,8 +5762,8 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5762
5762
|
};
|
|
5763
5763
|
id: string;
|
|
5764
5764
|
totalBalances: Record<string, string>;
|
|
5765
|
-
investmentId?: string | undefined;
|
|
5766
5765
|
tokenAddress?: string | undefined;
|
|
5766
|
+
investmentId?: string | undefined;
|
|
5767
5767
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5768
5768
|
id: z.ZodString;
|
|
5769
5769
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -5785,16 +5785,16 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5785
5785
|
};
|
|
5786
5786
|
id: string;
|
|
5787
5787
|
totalBalances: Record<string, string>;
|
|
5788
|
-
investmentId?: string | undefined;
|
|
5789
5788
|
tokenAddress?: `0x${string}` | undefined;
|
|
5789
|
+
investmentId?: string | undefined;
|
|
5790
5790
|
}, {
|
|
5791
5791
|
data: {
|
|
5792
5792
|
delegatingTo: string;
|
|
5793
5793
|
};
|
|
5794
5794
|
id: string;
|
|
5795
5795
|
totalBalances: Record<string, string>;
|
|
5796
|
-
investmentId?: string | undefined;
|
|
5797
5796
|
tokenAddress?: string | undefined;
|
|
5797
|
+
investmentId?: string | undefined;
|
|
5798
5798
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5799
5799
|
id: z.ZodString;
|
|
5800
5800
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -5816,16 +5816,16 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5816
5816
|
};
|
|
5817
5817
|
id: string;
|
|
5818
5818
|
totalBalances: Record<string, string>;
|
|
5819
|
-
investmentId?: string | undefined;
|
|
5820
5819
|
tokenAddress?: `0x${string}` | undefined;
|
|
5820
|
+
investmentId?: string | undefined;
|
|
5821
5821
|
}, {
|
|
5822
5822
|
data: {
|
|
5823
5823
|
apy: string;
|
|
5824
5824
|
};
|
|
5825
5825
|
id: string;
|
|
5826
5826
|
totalBalances: Record<string, string>;
|
|
5827
|
-
investmentId?: string | undefined;
|
|
5828
5827
|
tokenAddress?: string | undefined;
|
|
5828
|
+
investmentId?: string | undefined;
|
|
5829
5829
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5830
5830
|
id: z.ZodString;
|
|
5831
5831
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -5834,7 +5834,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5834
5834
|
}, {
|
|
5835
5835
|
investmentId: z.ZodString;
|
|
5836
5836
|
data: z.ZodObject<{
|
|
5837
|
-
|
|
5837
|
+
stakerInfo: z.ZodObject<{
|
|
5838
5838
|
name: z.ZodOptional<z.ZodString>;
|
|
5839
5839
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
5840
5840
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -5861,7 +5861,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5861
5861
|
}>>;
|
|
5862
5862
|
apy: z.ZodOptional<z.ZodString>;
|
|
5863
5863
|
}, "strip", z.ZodTypeAny, {
|
|
5864
|
-
|
|
5864
|
+
stakerInfo: {
|
|
5865
5865
|
address: `0x${string}`;
|
|
5866
5866
|
name?: string | undefined;
|
|
5867
5867
|
iconUrl?: string | undefined;
|
|
@@ -5874,7 +5874,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5874
5874
|
withdrawableAfter: number;
|
|
5875
5875
|
} | undefined;
|
|
5876
5876
|
}, {
|
|
5877
|
-
|
|
5877
|
+
stakerInfo: {
|
|
5878
5878
|
address: string;
|
|
5879
5879
|
name?: string | undefined;
|
|
5880
5880
|
iconUrl?: string | undefined;
|
|
@@ -5889,7 +5889,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5889
5889
|
}>;
|
|
5890
5890
|
}>, "strip", z.ZodTypeAny, {
|
|
5891
5891
|
data: {
|
|
5892
|
-
|
|
5892
|
+
stakerInfo: {
|
|
5893
5893
|
address: `0x${string}`;
|
|
5894
5894
|
name?: string | undefined;
|
|
5895
5895
|
iconUrl?: string | undefined;
|
|
@@ -5908,7 +5908,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5908
5908
|
tokenAddress?: `0x${string}` | undefined;
|
|
5909
5909
|
}, {
|
|
5910
5910
|
data: {
|
|
5911
|
-
|
|
5911
|
+
stakerInfo: {
|
|
5912
5912
|
address: string;
|
|
5913
5913
|
name?: string | undefined;
|
|
5914
5914
|
iconUrl?: string | undefined;
|
|
@@ -6058,8 +6058,8 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6058
6058
|
id: string;
|
|
6059
6059
|
totalBalances: Record<string, string>;
|
|
6060
6060
|
tokenId: string;
|
|
6061
|
-
investmentId?: string | undefined;
|
|
6062
6061
|
tokenAddress?: `0x${string}` | undefined;
|
|
6062
|
+
investmentId?: string | undefined;
|
|
6063
6063
|
}, {
|
|
6064
6064
|
data: {
|
|
6065
6065
|
poolFeePercentage: string;
|
|
@@ -6084,8 +6084,8 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6084
6084
|
id: string;
|
|
6085
6085
|
totalBalances: Record<string, string>;
|
|
6086
6086
|
tokenId: string;
|
|
6087
|
-
investmentId?: string | undefined;
|
|
6088
6087
|
tokenAddress?: string | undefined;
|
|
6088
|
+
investmentId?: string | undefined;
|
|
6089
6089
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6090
6090
|
id: z.ZodString;
|
|
6091
6091
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -6121,8 +6121,8 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6121
6121
|
};
|
|
6122
6122
|
id: string;
|
|
6123
6123
|
totalBalances: Record<string, string>;
|
|
6124
|
-
investmentId?: string | undefined;
|
|
6125
6124
|
tokenAddress?: `0x${string}` | undefined;
|
|
6125
|
+
investmentId?: string | undefined;
|
|
6126
6126
|
}, {
|
|
6127
6127
|
data: {
|
|
6128
6128
|
lending: boolean;
|
|
@@ -6133,8 +6133,8 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6133
6133
|
};
|
|
6134
6134
|
id: string;
|
|
6135
6135
|
totalBalances: Record<string, string>;
|
|
6136
|
-
investmentId?: string | undefined;
|
|
6137
6136
|
tokenAddress?: string | undefined;
|
|
6137
|
+
investmentId?: string | undefined;
|
|
6138
6138
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6139
6139
|
id: z.ZodString;
|
|
6140
6140
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -6156,16 +6156,16 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6156
6156
|
};
|
|
6157
6157
|
id: string;
|
|
6158
6158
|
totalBalances: Record<string, string>;
|
|
6159
|
-
investmentId?: string | undefined;
|
|
6160
6159
|
tokenAddress?: `0x${string}` | undefined;
|
|
6160
|
+
investmentId?: string | undefined;
|
|
6161
6161
|
}, {
|
|
6162
6162
|
data: {
|
|
6163
6163
|
delegatingTo: string;
|
|
6164
6164
|
};
|
|
6165
6165
|
id: string;
|
|
6166
6166
|
totalBalances: Record<string, string>;
|
|
6167
|
-
investmentId?: string | undefined;
|
|
6168
6167
|
tokenAddress?: string | undefined;
|
|
6168
|
+
investmentId?: string | undefined;
|
|
6169
6169
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6170
6170
|
id: z.ZodString;
|
|
6171
6171
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -6187,16 +6187,16 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6187
6187
|
};
|
|
6188
6188
|
id: string;
|
|
6189
6189
|
totalBalances: Record<string, string>;
|
|
6190
|
-
investmentId?: string | undefined;
|
|
6191
6190
|
tokenAddress?: `0x${string}` | undefined;
|
|
6191
|
+
investmentId?: string | undefined;
|
|
6192
6192
|
}, {
|
|
6193
6193
|
data: {
|
|
6194
6194
|
apy: string;
|
|
6195
6195
|
};
|
|
6196
6196
|
id: string;
|
|
6197
6197
|
totalBalances: Record<string, string>;
|
|
6198
|
-
investmentId?: string | undefined;
|
|
6199
6198
|
tokenAddress?: string | undefined;
|
|
6199
|
+
investmentId?: string | undefined;
|
|
6200
6200
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6201
6201
|
id: z.ZodString;
|
|
6202
6202
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -6205,7 +6205,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6205
6205
|
}, {
|
|
6206
6206
|
investmentId: z.ZodString;
|
|
6207
6207
|
data: z.ZodObject<{
|
|
6208
|
-
|
|
6208
|
+
stakerInfo: z.ZodObject<{
|
|
6209
6209
|
name: z.ZodOptional<z.ZodString>;
|
|
6210
6210
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
6211
6211
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -6232,7 +6232,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6232
6232
|
}>>;
|
|
6233
6233
|
apy: z.ZodOptional<z.ZodString>;
|
|
6234
6234
|
}, "strip", z.ZodTypeAny, {
|
|
6235
|
-
|
|
6235
|
+
stakerInfo: {
|
|
6236
6236
|
address: `0x${string}`;
|
|
6237
6237
|
name?: string | undefined;
|
|
6238
6238
|
iconUrl?: string | undefined;
|
|
@@ -6245,7 +6245,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6245
6245
|
withdrawableAfter: number;
|
|
6246
6246
|
} | undefined;
|
|
6247
6247
|
}, {
|
|
6248
|
-
|
|
6248
|
+
stakerInfo: {
|
|
6249
6249
|
address: string;
|
|
6250
6250
|
name?: string | undefined;
|
|
6251
6251
|
iconUrl?: string | undefined;
|
|
@@ -6260,7 +6260,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6260
6260
|
}>;
|
|
6261
6261
|
}>, "strip", z.ZodTypeAny, {
|
|
6262
6262
|
data: {
|
|
6263
|
-
|
|
6263
|
+
stakerInfo: {
|
|
6264
6264
|
address: `0x${string}`;
|
|
6265
6265
|
name?: string | undefined;
|
|
6266
6266
|
iconUrl?: string | undefined;
|
|
@@ -6279,7 +6279,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6279
6279
|
tokenAddress?: `0x${string}` | undefined;
|
|
6280
6280
|
}, {
|
|
6281
6281
|
data: {
|
|
6282
|
-
|
|
6282
|
+
stakerInfo: {
|
|
6283
6283
|
address: string;
|
|
6284
6284
|
name?: string | undefined;
|
|
6285
6285
|
iconUrl?: string | undefined;
|
|
@@ -6429,8 +6429,8 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6429
6429
|
id: string;
|
|
6430
6430
|
totalBalances: Record<string, string>;
|
|
6431
6431
|
tokenId: string;
|
|
6432
|
-
investmentId?: string | undefined;
|
|
6433
6432
|
tokenAddress?: `0x${string}` | undefined;
|
|
6433
|
+
investmentId?: string | undefined;
|
|
6434
6434
|
}, {
|
|
6435
6435
|
data: {
|
|
6436
6436
|
poolFeePercentage: string;
|
|
@@ -6455,8 +6455,8 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6455
6455
|
id: string;
|
|
6456
6456
|
totalBalances: Record<string, string>;
|
|
6457
6457
|
tokenId: string;
|
|
6458
|
-
investmentId?: string | undefined;
|
|
6459
6458
|
tokenAddress?: string | undefined;
|
|
6459
|
+
investmentId?: string | undefined;
|
|
6460
6460
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6461
6461
|
id: z.ZodString;
|
|
6462
6462
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -6492,8 +6492,8 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6492
6492
|
};
|
|
6493
6493
|
id: string;
|
|
6494
6494
|
totalBalances: Record<string, string>;
|
|
6495
|
-
investmentId?: string | undefined;
|
|
6496
6495
|
tokenAddress?: `0x${string}` | undefined;
|
|
6496
|
+
investmentId?: string | undefined;
|
|
6497
6497
|
}, {
|
|
6498
6498
|
data: {
|
|
6499
6499
|
lending: boolean;
|
|
@@ -6504,8 +6504,8 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6504
6504
|
};
|
|
6505
6505
|
id: string;
|
|
6506
6506
|
totalBalances: Record<string, string>;
|
|
6507
|
-
investmentId?: string | undefined;
|
|
6508
6507
|
tokenAddress?: string | undefined;
|
|
6508
|
+
investmentId?: string | undefined;
|
|
6509
6509
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6510
6510
|
id: z.ZodString;
|
|
6511
6511
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -6527,16 +6527,16 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6527
6527
|
};
|
|
6528
6528
|
id: string;
|
|
6529
6529
|
totalBalances: Record<string, string>;
|
|
6530
|
-
investmentId?: string | undefined;
|
|
6531
6530
|
tokenAddress?: `0x${string}` | undefined;
|
|
6531
|
+
investmentId?: string | undefined;
|
|
6532
6532
|
}, {
|
|
6533
6533
|
data: {
|
|
6534
6534
|
delegatingTo: string;
|
|
6535
6535
|
};
|
|
6536
6536
|
id: string;
|
|
6537
6537
|
totalBalances: Record<string, string>;
|
|
6538
|
-
investmentId?: string | undefined;
|
|
6539
6538
|
tokenAddress?: string | undefined;
|
|
6539
|
+
investmentId?: string | undefined;
|
|
6540
6540
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6541
6541
|
id: z.ZodString;
|
|
6542
6542
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -6558,16 +6558,16 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6558
6558
|
};
|
|
6559
6559
|
id: string;
|
|
6560
6560
|
totalBalances: Record<string, string>;
|
|
6561
|
-
investmentId?: string | undefined;
|
|
6562
6561
|
tokenAddress?: `0x${string}` | undefined;
|
|
6562
|
+
investmentId?: string | undefined;
|
|
6563
6563
|
}, {
|
|
6564
6564
|
data: {
|
|
6565
6565
|
apy: string;
|
|
6566
6566
|
};
|
|
6567
6567
|
id: string;
|
|
6568
6568
|
totalBalances: Record<string, string>;
|
|
6569
|
-
investmentId?: string | undefined;
|
|
6570
6569
|
tokenAddress?: string | undefined;
|
|
6570
|
+
investmentId?: string | undefined;
|
|
6571
6571
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6572
6572
|
id: z.ZodString;
|
|
6573
6573
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -6576,7 +6576,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6576
6576
|
}, {
|
|
6577
6577
|
investmentId: z.ZodString;
|
|
6578
6578
|
data: z.ZodObject<{
|
|
6579
|
-
|
|
6579
|
+
stakerInfo: z.ZodObject<{
|
|
6580
6580
|
name: z.ZodOptional<z.ZodString>;
|
|
6581
6581
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
6582
6582
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -6603,7 +6603,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6603
6603
|
}>>;
|
|
6604
6604
|
apy: z.ZodOptional<z.ZodString>;
|
|
6605
6605
|
}, "strip", z.ZodTypeAny, {
|
|
6606
|
-
|
|
6606
|
+
stakerInfo: {
|
|
6607
6607
|
address: `0x${string}`;
|
|
6608
6608
|
name?: string | undefined;
|
|
6609
6609
|
iconUrl?: string | undefined;
|
|
@@ -6616,7 +6616,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6616
6616
|
withdrawableAfter: number;
|
|
6617
6617
|
} | undefined;
|
|
6618
6618
|
}, {
|
|
6619
|
-
|
|
6619
|
+
stakerInfo: {
|
|
6620
6620
|
address: string;
|
|
6621
6621
|
name?: string | undefined;
|
|
6622
6622
|
iconUrl?: string | undefined;
|
|
@@ -6631,7 +6631,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6631
6631
|
}>;
|
|
6632
6632
|
}>, "strip", z.ZodTypeAny, {
|
|
6633
6633
|
data: {
|
|
6634
|
-
|
|
6634
|
+
stakerInfo: {
|
|
6635
6635
|
address: `0x${string}`;
|
|
6636
6636
|
name?: string | undefined;
|
|
6637
6637
|
iconUrl?: string | undefined;
|
|
@@ -6650,7 +6650,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6650
6650
|
tokenAddress?: `0x${string}` | undefined;
|
|
6651
6651
|
}, {
|
|
6652
6652
|
data: {
|
|
6653
|
-
|
|
6653
|
+
stakerInfo: {
|
|
6654
6654
|
address: string;
|
|
6655
6655
|
name?: string | undefined;
|
|
6656
6656
|
iconUrl?: string | undefined;
|
|
@@ -6800,8 +6800,8 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6800
6800
|
id: string;
|
|
6801
6801
|
totalBalances: Record<string, string>;
|
|
6802
6802
|
tokenId: string;
|
|
6803
|
-
investmentId?: string | undefined;
|
|
6804
6803
|
tokenAddress?: `0x${string}` | undefined;
|
|
6804
|
+
investmentId?: string | undefined;
|
|
6805
6805
|
}, {
|
|
6806
6806
|
data: {
|
|
6807
6807
|
poolFeePercentage: string;
|
|
@@ -6826,8 +6826,8 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6826
6826
|
id: string;
|
|
6827
6827
|
totalBalances: Record<string, string>;
|
|
6828
6828
|
tokenId: string;
|
|
6829
|
-
investmentId?: string | undefined;
|
|
6830
6829
|
tokenAddress?: string | undefined;
|
|
6830
|
+
investmentId?: string | undefined;
|
|
6831
6831
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6832
6832
|
id: z.ZodString;
|
|
6833
6833
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -6863,8 +6863,8 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6863
6863
|
};
|
|
6864
6864
|
id: string;
|
|
6865
6865
|
totalBalances: Record<string, string>;
|
|
6866
|
-
investmentId?: string | undefined;
|
|
6867
6866
|
tokenAddress?: `0x${string}` | undefined;
|
|
6867
|
+
investmentId?: string | undefined;
|
|
6868
6868
|
}, {
|
|
6869
6869
|
data: {
|
|
6870
6870
|
lending: boolean;
|
|
@@ -6875,8 +6875,8 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6875
6875
|
};
|
|
6876
6876
|
id: string;
|
|
6877
6877
|
totalBalances: Record<string, string>;
|
|
6878
|
-
investmentId?: string | undefined;
|
|
6879
6878
|
tokenAddress?: string | undefined;
|
|
6879
|
+
investmentId?: string | undefined;
|
|
6880
6880
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6881
6881
|
id: z.ZodString;
|
|
6882
6882
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -6898,16 +6898,16 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6898
6898
|
};
|
|
6899
6899
|
id: string;
|
|
6900
6900
|
totalBalances: Record<string, string>;
|
|
6901
|
-
investmentId?: string | undefined;
|
|
6902
6901
|
tokenAddress?: `0x${string}` | undefined;
|
|
6902
|
+
investmentId?: string | undefined;
|
|
6903
6903
|
}, {
|
|
6904
6904
|
data: {
|
|
6905
6905
|
delegatingTo: string;
|
|
6906
6906
|
};
|
|
6907
6907
|
id: string;
|
|
6908
6908
|
totalBalances: Record<string, string>;
|
|
6909
|
-
investmentId?: string | undefined;
|
|
6910
6909
|
tokenAddress?: string | undefined;
|
|
6910
|
+
investmentId?: string | undefined;
|
|
6911
6911
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6912
6912
|
id: z.ZodString;
|
|
6913
6913
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -6929,16 +6929,16 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6929
6929
|
};
|
|
6930
6930
|
id: string;
|
|
6931
6931
|
totalBalances: Record<string, string>;
|
|
6932
|
-
investmentId?: string | undefined;
|
|
6933
6932
|
tokenAddress?: `0x${string}` | undefined;
|
|
6933
|
+
investmentId?: string | undefined;
|
|
6934
6934
|
}, {
|
|
6935
6935
|
data: {
|
|
6936
6936
|
apy: string;
|
|
6937
6937
|
};
|
|
6938
6938
|
id: string;
|
|
6939
6939
|
totalBalances: Record<string, string>;
|
|
6940
|
-
investmentId?: string | undefined;
|
|
6941
6940
|
tokenAddress?: string | undefined;
|
|
6941
|
+
investmentId?: string | undefined;
|
|
6942
6942
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6943
6943
|
id: z.ZodString;
|
|
6944
6944
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -6947,7 +6947,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6947
6947
|
}, {
|
|
6948
6948
|
investmentId: z.ZodString;
|
|
6949
6949
|
data: z.ZodObject<{
|
|
6950
|
-
|
|
6950
|
+
stakerInfo: z.ZodObject<{
|
|
6951
6951
|
name: z.ZodOptional<z.ZodString>;
|
|
6952
6952
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
6953
6953
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -6974,7 +6974,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6974
6974
|
}>>;
|
|
6975
6975
|
apy: z.ZodOptional<z.ZodString>;
|
|
6976
6976
|
}, "strip", z.ZodTypeAny, {
|
|
6977
|
-
|
|
6977
|
+
stakerInfo: {
|
|
6978
6978
|
address: `0x${string}`;
|
|
6979
6979
|
name?: string | undefined;
|
|
6980
6980
|
iconUrl?: string | undefined;
|
|
@@ -6987,7 +6987,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6987
6987
|
withdrawableAfter: number;
|
|
6988
6988
|
} | undefined;
|
|
6989
6989
|
}, {
|
|
6990
|
-
|
|
6990
|
+
stakerInfo: {
|
|
6991
6991
|
address: string;
|
|
6992
6992
|
name?: string | undefined;
|
|
6993
6993
|
iconUrl?: string | undefined;
|
|
@@ -7002,7 +7002,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7002
7002
|
}>;
|
|
7003
7003
|
}>, "strip", z.ZodTypeAny, {
|
|
7004
7004
|
data: {
|
|
7005
|
-
|
|
7005
|
+
stakerInfo: {
|
|
7006
7006
|
address: `0x${string}`;
|
|
7007
7007
|
name?: string | undefined;
|
|
7008
7008
|
iconUrl?: string | undefined;
|
|
@@ -7021,7 +7021,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7021
7021
|
tokenAddress?: `0x${string}` | undefined;
|
|
7022
7022
|
}, {
|
|
7023
7023
|
data: {
|
|
7024
|
-
|
|
7024
|
+
stakerInfo: {
|
|
7025
7025
|
address: string;
|
|
7026
7026
|
name?: string | undefined;
|
|
7027
7027
|
iconUrl?: string | undefined;
|
|
@@ -7171,8 +7171,8 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7171
7171
|
id: string;
|
|
7172
7172
|
totalBalances: Record<string, string>;
|
|
7173
7173
|
tokenId: string;
|
|
7174
|
-
investmentId?: string | undefined;
|
|
7175
7174
|
tokenAddress?: `0x${string}` | undefined;
|
|
7175
|
+
investmentId?: string | undefined;
|
|
7176
7176
|
}, {
|
|
7177
7177
|
data: {
|
|
7178
7178
|
poolFeePercentage: string;
|
|
@@ -7197,8 +7197,8 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7197
7197
|
id: string;
|
|
7198
7198
|
totalBalances: Record<string, string>;
|
|
7199
7199
|
tokenId: string;
|
|
7200
|
-
investmentId?: string | undefined;
|
|
7201
7200
|
tokenAddress?: string | undefined;
|
|
7201
|
+
investmentId?: string | undefined;
|
|
7202
7202
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7203
7203
|
id: z.ZodString;
|
|
7204
7204
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -7234,8 +7234,8 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7234
7234
|
};
|
|
7235
7235
|
id: string;
|
|
7236
7236
|
totalBalances: Record<string, string>;
|
|
7237
|
-
investmentId?: string | undefined;
|
|
7238
7237
|
tokenAddress?: `0x${string}` | undefined;
|
|
7238
|
+
investmentId?: string | undefined;
|
|
7239
7239
|
}, {
|
|
7240
7240
|
data: {
|
|
7241
7241
|
lending: boolean;
|
|
@@ -7246,8 +7246,8 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7246
7246
|
};
|
|
7247
7247
|
id: string;
|
|
7248
7248
|
totalBalances: Record<string, string>;
|
|
7249
|
-
investmentId?: string | undefined;
|
|
7250
7249
|
tokenAddress?: string | undefined;
|
|
7250
|
+
investmentId?: string | undefined;
|
|
7251
7251
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7252
7252
|
id: z.ZodString;
|
|
7253
7253
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -7269,16 +7269,16 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7269
7269
|
};
|
|
7270
7270
|
id: string;
|
|
7271
7271
|
totalBalances: Record<string, string>;
|
|
7272
|
-
investmentId?: string | undefined;
|
|
7273
7272
|
tokenAddress?: `0x${string}` | undefined;
|
|
7273
|
+
investmentId?: string | undefined;
|
|
7274
7274
|
}, {
|
|
7275
7275
|
data: {
|
|
7276
7276
|
delegatingTo: string;
|
|
7277
7277
|
};
|
|
7278
7278
|
id: string;
|
|
7279
7279
|
totalBalances: Record<string, string>;
|
|
7280
|
-
investmentId?: string | undefined;
|
|
7281
7280
|
tokenAddress?: string | undefined;
|
|
7281
|
+
investmentId?: string | undefined;
|
|
7282
7282
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7283
7283
|
id: z.ZodString;
|
|
7284
7284
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -7300,16 +7300,16 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7300
7300
|
};
|
|
7301
7301
|
id: string;
|
|
7302
7302
|
totalBalances: Record<string, string>;
|
|
7303
|
-
investmentId?: string | undefined;
|
|
7304
7303
|
tokenAddress?: `0x${string}` | undefined;
|
|
7304
|
+
investmentId?: string | undefined;
|
|
7305
7305
|
}, {
|
|
7306
7306
|
data: {
|
|
7307
7307
|
apy: string;
|
|
7308
7308
|
};
|
|
7309
7309
|
id: string;
|
|
7310
7310
|
totalBalances: Record<string, string>;
|
|
7311
|
-
investmentId?: string | undefined;
|
|
7312
7311
|
tokenAddress?: string | undefined;
|
|
7312
|
+
investmentId?: string | undefined;
|
|
7313
7313
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7314
7314
|
id: z.ZodString;
|
|
7315
7315
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -7318,7 +7318,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7318
7318
|
}, {
|
|
7319
7319
|
investmentId: z.ZodString;
|
|
7320
7320
|
data: z.ZodObject<{
|
|
7321
|
-
|
|
7321
|
+
stakerInfo: z.ZodObject<{
|
|
7322
7322
|
name: z.ZodOptional<z.ZodString>;
|
|
7323
7323
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
7324
7324
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -7345,7 +7345,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7345
7345
|
}>>;
|
|
7346
7346
|
apy: z.ZodOptional<z.ZodString>;
|
|
7347
7347
|
}, "strip", z.ZodTypeAny, {
|
|
7348
|
-
|
|
7348
|
+
stakerInfo: {
|
|
7349
7349
|
address: `0x${string}`;
|
|
7350
7350
|
name?: string | undefined;
|
|
7351
7351
|
iconUrl?: string | undefined;
|
|
@@ -7358,7 +7358,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7358
7358
|
withdrawableAfter: number;
|
|
7359
7359
|
} | undefined;
|
|
7360
7360
|
}, {
|
|
7361
|
-
|
|
7361
|
+
stakerInfo: {
|
|
7362
7362
|
address: string;
|
|
7363
7363
|
name?: string | undefined;
|
|
7364
7364
|
iconUrl?: string | undefined;
|
|
@@ -7373,7 +7373,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7373
7373
|
}>;
|
|
7374
7374
|
}>, "strip", z.ZodTypeAny, {
|
|
7375
7375
|
data: {
|
|
7376
|
-
|
|
7376
|
+
stakerInfo: {
|
|
7377
7377
|
address: `0x${string}`;
|
|
7378
7378
|
name?: string | undefined;
|
|
7379
7379
|
iconUrl?: string | undefined;
|
|
@@ -7392,7 +7392,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7392
7392
|
tokenAddress?: `0x${string}` | undefined;
|
|
7393
7393
|
}, {
|
|
7394
7394
|
data: {
|
|
7395
|
-
|
|
7395
|
+
stakerInfo: {
|
|
7396
7396
|
address: string;
|
|
7397
7397
|
name?: string | undefined;
|
|
7398
7398
|
iconUrl?: string | undefined;
|
|
@@ -7543,8 +7543,8 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7543
7543
|
id: string;
|
|
7544
7544
|
totalBalances: Record<string, string>;
|
|
7545
7545
|
tokenId: string;
|
|
7546
|
-
investmentId?: string | undefined;
|
|
7547
7546
|
tokenAddress?: `0x${string}` | undefined;
|
|
7547
|
+
investmentId?: string | undefined;
|
|
7548
7548
|
}, {
|
|
7549
7549
|
data: {
|
|
7550
7550
|
poolFeePercentage: string;
|
|
@@ -7569,8 +7569,8 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7569
7569
|
id: string;
|
|
7570
7570
|
totalBalances: Record<string, string>;
|
|
7571
7571
|
tokenId: string;
|
|
7572
|
-
investmentId?: string | undefined;
|
|
7573
7572
|
tokenAddress?: string | undefined;
|
|
7573
|
+
investmentId?: string | undefined;
|
|
7574
7574
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7575
7575
|
id: z.ZodString;
|
|
7576
7576
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -7606,8 +7606,8 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7606
7606
|
};
|
|
7607
7607
|
id: string;
|
|
7608
7608
|
totalBalances: Record<string, string>;
|
|
7609
|
-
investmentId?: string | undefined;
|
|
7610
7609
|
tokenAddress?: `0x${string}` | undefined;
|
|
7610
|
+
investmentId?: string | undefined;
|
|
7611
7611
|
}, {
|
|
7612
7612
|
data: {
|
|
7613
7613
|
lending: boolean;
|
|
@@ -7618,8 +7618,8 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7618
7618
|
};
|
|
7619
7619
|
id: string;
|
|
7620
7620
|
totalBalances: Record<string, string>;
|
|
7621
|
-
investmentId?: string | undefined;
|
|
7622
7621
|
tokenAddress?: string | undefined;
|
|
7622
|
+
investmentId?: string | undefined;
|
|
7623
7623
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7624
7624
|
id: z.ZodString;
|
|
7625
7625
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -7641,16 +7641,16 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7641
7641
|
};
|
|
7642
7642
|
id: string;
|
|
7643
7643
|
totalBalances: Record<string, string>;
|
|
7644
|
-
investmentId?: string | undefined;
|
|
7645
7644
|
tokenAddress?: `0x${string}` | undefined;
|
|
7645
|
+
investmentId?: string | undefined;
|
|
7646
7646
|
}, {
|
|
7647
7647
|
data: {
|
|
7648
7648
|
delegatingTo: string;
|
|
7649
7649
|
};
|
|
7650
7650
|
id: string;
|
|
7651
7651
|
totalBalances: Record<string, string>;
|
|
7652
|
-
investmentId?: string | undefined;
|
|
7653
7652
|
tokenAddress?: string | undefined;
|
|
7653
|
+
investmentId?: string | undefined;
|
|
7654
7654
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7655
7655
|
id: z.ZodString;
|
|
7656
7656
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -7672,16 +7672,16 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7672
7672
|
};
|
|
7673
7673
|
id: string;
|
|
7674
7674
|
totalBalances: Record<string, string>;
|
|
7675
|
-
investmentId?: string | undefined;
|
|
7676
7675
|
tokenAddress?: `0x${string}` | undefined;
|
|
7676
|
+
investmentId?: string | undefined;
|
|
7677
7677
|
}, {
|
|
7678
7678
|
data: {
|
|
7679
7679
|
apy: string;
|
|
7680
7680
|
};
|
|
7681
7681
|
id: string;
|
|
7682
7682
|
totalBalances: Record<string, string>;
|
|
7683
|
-
investmentId?: string | undefined;
|
|
7684
7683
|
tokenAddress?: string | undefined;
|
|
7684
|
+
investmentId?: string | undefined;
|
|
7685
7685
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7686
7686
|
id: z.ZodString;
|
|
7687
7687
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -7690,7 +7690,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7690
7690
|
}, {
|
|
7691
7691
|
investmentId: z.ZodString;
|
|
7692
7692
|
data: z.ZodObject<{
|
|
7693
|
-
|
|
7693
|
+
stakerInfo: z.ZodObject<{
|
|
7694
7694
|
name: z.ZodOptional<z.ZodString>;
|
|
7695
7695
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
7696
7696
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -7717,7 +7717,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7717
7717
|
}>>;
|
|
7718
7718
|
apy: z.ZodOptional<z.ZodString>;
|
|
7719
7719
|
}, "strip", z.ZodTypeAny, {
|
|
7720
|
-
|
|
7720
|
+
stakerInfo: {
|
|
7721
7721
|
address: `0x${string}`;
|
|
7722
7722
|
name?: string | undefined;
|
|
7723
7723
|
iconUrl?: string | undefined;
|
|
@@ -7730,7 +7730,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7730
7730
|
withdrawableAfter: number;
|
|
7731
7731
|
} | undefined;
|
|
7732
7732
|
}, {
|
|
7733
|
-
|
|
7733
|
+
stakerInfo: {
|
|
7734
7734
|
address: string;
|
|
7735
7735
|
name?: string | undefined;
|
|
7736
7736
|
iconUrl?: string | undefined;
|
|
@@ -7745,7 +7745,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7745
7745
|
}>;
|
|
7746
7746
|
}>, "strip", z.ZodTypeAny, {
|
|
7747
7747
|
data: {
|
|
7748
|
-
|
|
7748
|
+
stakerInfo: {
|
|
7749
7749
|
address: `0x${string}`;
|
|
7750
7750
|
name?: string | undefined;
|
|
7751
7751
|
iconUrl?: string | undefined;
|
|
@@ -7764,7 +7764,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7764
7764
|
tokenAddress?: `0x${string}` | undefined;
|
|
7765
7765
|
}, {
|
|
7766
7766
|
data: {
|
|
7767
|
-
|
|
7767
|
+
stakerInfo: {
|
|
7768
7768
|
address: string;
|
|
7769
7769
|
name?: string | undefined;
|
|
7770
7770
|
iconUrl?: string | undefined;
|
|
@@ -7914,8 +7914,8 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7914
7914
|
id: string;
|
|
7915
7915
|
totalBalances: Record<string, string>;
|
|
7916
7916
|
tokenId: string;
|
|
7917
|
-
investmentId?: string | undefined;
|
|
7918
7917
|
tokenAddress?: `0x${string}` | undefined;
|
|
7918
|
+
investmentId?: string | undefined;
|
|
7919
7919
|
}, {
|
|
7920
7920
|
data: {
|
|
7921
7921
|
poolFeePercentage: string;
|
|
@@ -7940,8 +7940,8 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7940
7940
|
id: string;
|
|
7941
7941
|
totalBalances: Record<string, string>;
|
|
7942
7942
|
tokenId: string;
|
|
7943
|
-
investmentId?: string | undefined;
|
|
7944
7943
|
tokenAddress?: string | undefined;
|
|
7944
|
+
investmentId?: string | undefined;
|
|
7945
7945
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7946
7946
|
id: z.ZodString;
|
|
7947
7947
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -7977,8 +7977,8 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7977
7977
|
};
|
|
7978
7978
|
id: string;
|
|
7979
7979
|
totalBalances: Record<string, string>;
|
|
7980
|
-
investmentId?: string | undefined;
|
|
7981
7980
|
tokenAddress?: `0x${string}` | undefined;
|
|
7981
|
+
investmentId?: string | undefined;
|
|
7982
7982
|
}, {
|
|
7983
7983
|
data: {
|
|
7984
7984
|
lending: boolean;
|
|
@@ -7989,8 +7989,8 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7989
7989
|
};
|
|
7990
7990
|
id: string;
|
|
7991
7991
|
totalBalances: Record<string, string>;
|
|
7992
|
-
investmentId?: string | undefined;
|
|
7993
7992
|
tokenAddress?: string | undefined;
|
|
7993
|
+
investmentId?: string | undefined;
|
|
7994
7994
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7995
7995
|
id: z.ZodString;
|
|
7996
7996
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -8012,16 +8012,16 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8012
8012
|
};
|
|
8013
8013
|
id: string;
|
|
8014
8014
|
totalBalances: Record<string, string>;
|
|
8015
|
-
investmentId?: string | undefined;
|
|
8016
8015
|
tokenAddress?: `0x${string}` | undefined;
|
|
8016
|
+
investmentId?: string | undefined;
|
|
8017
8017
|
}, {
|
|
8018
8018
|
data: {
|
|
8019
8019
|
delegatingTo: string;
|
|
8020
8020
|
};
|
|
8021
8021
|
id: string;
|
|
8022
8022
|
totalBalances: Record<string, string>;
|
|
8023
|
-
investmentId?: string | undefined;
|
|
8024
8023
|
tokenAddress?: string | undefined;
|
|
8024
|
+
investmentId?: string | undefined;
|
|
8025
8025
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
8026
8026
|
id: z.ZodString;
|
|
8027
8027
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -8043,16 +8043,16 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8043
8043
|
};
|
|
8044
8044
|
id: string;
|
|
8045
8045
|
totalBalances: Record<string, string>;
|
|
8046
|
-
investmentId?: string | undefined;
|
|
8047
8046
|
tokenAddress?: `0x${string}` | undefined;
|
|
8047
|
+
investmentId?: string | undefined;
|
|
8048
8048
|
}, {
|
|
8049
8049
|
data: {
|
|
8050
8050
|
apy: string;
|
|
8051
8051
|
};
|
|
8052
8052
|
id: string;
|
|
8053
8053
|
totalBalances: Record<string, string>;
|
|
8054
|
-
investmentId?: string | undefined;
|
|
8055
8054
|
tokenAddress?: string | undefined;
|
|
8055
|
+
investmentId?: string | undefined;
|
|
8056
8056
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
8057
8057
|
id: z.ZodString;
|
|
8058
8058
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -8061,7 +8061,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8061
8061
|
}, {
|
|
8062
8062
|
investmentId: z.ZodString;
|
|
8063
8063
|
data: z.ZodObject<{
|
|
8064
|
-
|
|
8064
|
+
stakerInfo: z.ZodObject<{
|
|
8065
8065
|
name: z.ZodOptional<z.ZodString>;
|
|
8066
8066
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
8067
8067
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -8088,7 +8088,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8088
8088
|
}>>;
|
|
8089
8089
|
apy: z.ZodOptional<z.ZodString>;
|
|
8090
8090
|
}, "strip", z.ZodTypeAny, {
|
|
8091
|
-
|
|
8091
|
+
stakerInfo: {
|
|
8092
8092
|
address: `0x${string}`;
|
|
8093
8093
|
name?: string | undefined;
|
|
8094
8094
|
iconUrl?: string | undefined;
|
|
@@ -8101,7 +8101,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8101
8101
|
withdrawableAfter: number;
|
|
8102
8102
|
} | undefined;
|
|
8103
8103
|
}, {
|
|
8104
|
-
|
|
8104
|
+
stakerInfo: {
|
|
8105
8105
|
address: string;
|
|
8106
8106
|
name?: string | undefined;
|
|
8107
8107
|
iconUrl?: string | undefined;
|
|
@@ -8116,7 +8116,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8116
8116
|
}>;
|
|
8117
8117
|
}>, "strip", z.ZodTypeAny, {
|
|
8118
8118
|
data: {
|
|
8119
|
-
|
|
8119
|
+
stakerInfo: {
|
|
8120
8120
|
address: `0x${string}`;
|
|
8121
8121
|
name?: string | undefined;
|
|
8122
8122
|
iconUrl?: string | undefined;
|
|
@@ -8135,7 +8135,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8135
8135
|
tokenAddress?: `0x${string}` | undefined;
|
|
8136
8136
|
}, {
|
|
8137
8137
|
data: {
|
|
8138
|
-
|
|
8138
|
+
stakerInfo: {
|
|
8139
8139
|
address: string;
|
|
8140
8140
|
name?: string | undefined;
|
|
8141
8141
|
iconUrl?: string | undefined;
|
|
@@ -8285,8 +8285,8 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8285
8285
|
id: string;
|
|
8286
8286
|
totalBalances: Record<string, string>;
|
|
8287
8287
|
tokenId: string;
|
|
8288
|
-
investmentId?: string | undefined;
|
|
8289
8288
|
tokenAddress?: `0x${string}` | undefined;
|
|
8289
|
+
investmentId?: string | undefined;
|
|
8290
8290
|
}, {
|
|
8291
8291
|
data: {
|
|
8292
8292
|
poolFeePercentage: string;
|
|
@@ -8311,8 +8311,8 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8311
8311
|
id: string;
|
|
8312
8312
|
totalBalances: Record<string, string>;
|
|
8313
8313
|
tokenId: string;
|
|
8314
|
-
investmentId?: string | undefined;
|
|
8315
8314
|
tokenAddress?: string | undefined;
|
|
8315
|
+
investmentId?: string | undefined;
|
|
8316
8316
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
8317
8317
|
id: z.ZodString;
|
|
8318
8318
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -8348,8 +8348,8 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8348
8348
|
};
|
|
8349
8349
|
id: string;
|
|
8350
8350
|
totalBalances: Record<string, string>;
|
|
8351
|
-
investmentId?: string | undefined;
|
|
8352
8351
|
tokenAddress?: `0x${string}` | undefined;
|
|
8352
|
+
investmentId?: string | undefined;
|
|
8353
8353
|
}, {
|
|
8354
8354
|
data: {
|
|
8355
8355
|
lending: boolean;
|
|
@@ -8360,8 +8360,8 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8360
8360
|
};
|
|
8361
8361
|
id: string;
|
|
8362
8362
|
totalBalances: Record<string, string>;
|
|
8363
|
-
investmentId?: string | undefined;
|
|
8364
8363
|
tokenAddress?: string | undefined;
|
|
8364
|
+
investmentId?: string | undefined;
|
|
8365
8365
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
8366
8366
|
id: z.ZodString;
|
|
8367
8367
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -8383,16 +8383,16 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8383
8383
|
};
|
|
8384
8384
|
id: string;
|
|
8385
8385
|
totalBalances: Record<string, string>;
|
|
8386
|
-
investmentId?: string | undefined;
|
|
8387
8386
|
tokenAddress?: `0x${string}` | undefined;
|
|
8387
|
+
investmentId?: string | undefined;
|
|
8388
8388
|
}, {
|
|
8389
8389
|
data: {
|
|
8390
8390
|
delegatingTo: string;
|
|
8391
8391
|
};
|
|
8392
8392
|
id: string;
|
|
8393
8393
|
totalBalances: Record<string, string>;
|
|
8394
|
-
investmentId?: string | undefined;
|
|
8395
8394
|
tokenAddress?: string | undefined;
|
|
8395
|
+
investmentId?: string | undefined;
|
|
8396
8396
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
8397
8397
|
id: z.ZodString;
|
|
8398
8398
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -8414,16 +8414,16 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8414
8414
|
};
|
|
8415
8415
|
id: string;
|
|
8416
8416
|
totalBalances: Record<string, string>;
|
|
8417
|
-
investmentId?: string | undefined;
|
|
8418
8417
|
tokenAddress?: `0x${string}` | undefined;
|
|
8418
|
+
investmentId?: string | undefined;
|
|
8419
8419
|
}, {
|
|
8420
8420
|
data: {
|
|
8421
8421
|
apy: string;
|
|
8422
8422
|
};
|
|
8423
8423
|
id: string;
|
|
8424
8424
|
totalBalances: Record<string, string>;
|
|
8425
|
-
investmentId?: string | undefined;
|
|
8426
8425
|
tokenAddress?: string | undefined;
|
|
8426
|
+
investmentId?: string | undefined;
|
|
8427
8427
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
8428
8428
|
id: z.ZodString;
|
|
8429
8429
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -8432,7 +8432,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8432
8432
|
}, {
|
|
8433
8433
|
investmentId: z.ZodString;
|
|
8434
8434
|
data: z.ZodObject<{
|
|
8435
|
-
|
|
8435
|
+
stakerInfo: z.ZodObject<{
|
|
8436
8436
|
name: z.ZodOptional<z.ZodString>;
|
|
8437
8437
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
8438
8438
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -8459,7 +8459,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8459
8459
|
}>>;
|
|
8460
8460
|
apy: z.ZodOptional<z.ZodString>;
|
|
8461
8461
|
}, "strip", z.ZodTypeAny, {
|
|
8462
|
-
|
|
8462
|
+
stakerInfo: {
|
|
8463
8463
|
address: `0x${string}`;
|
|
8464
8464
|
name?: string | undefined;
|
|
8465
8465
|
iconUrl?: string | undefined;
|
|
@@ -8472,7 +8472,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8472
8472
|
withdrawableAfter: number;
|
|
8473
8473
|
} | undefined;
|
|
8474
8474
|
}, {
|
|
8475
|
-
|
|
8475
|
+
stakerInfo: {
|
|
8476
8476
|
address: string;
|
|
8477
8477
|
name?: string | undefined;
|
|
8478
8478
|
iconUrl?: string | undefined;
|
|
@@ -8487,7 +8487,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8487
8487
|
}>;
|
|
8488
8488
|
}>, "strip", z.ZodTypeAny, {
|
|
8489
8489
|
data: {
|
|
8490
|
-
|
|
8490
|
+
stakerInfo: {
|
|
8491
8491
|
address: `0x${string}`;
|
|
8492
8492
|
name?: string | undefined;
|
|
8493
8493
|
iconUrl?: string | undefined;
|
|
@@ -8506,7 +8506,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8506
8506
|
tokenAddress?: `0x${string}` | undefined;
|
|
8507
8507
|
}, {
|
|
8508
8508
|
data: {
|
|
8509
|
-
|
|
8509
|
+
stakerInfo: {
|
|
8510
8510
|
address: string;
|
|
8511
8511
|
name?: string | undefined;
|
|
8512
8512
|
iconUrl?: string | undefined;
|
|
@@ -8656,8 +8656,8 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8656
8656
|
id: string;
|
|
8657
8657
|
totalBalances: Record<string, string>;
|
|
8658
8658
|
tokenId: string;
|
|
8659
|
-
investmentId?: string | undefined;
|
|
8660
8659
|
tokenAddress?: `0x${string}` | undefined;
|
|
8660
|
+
investmentId?: string | undefined;
|
|
8661
8661
|
}, {
|
|
8662
8662
|
data: {
|
|
8663
8663
|
poolFeePercentage: string;
|
|
@@ -8682,8 +8682,8 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8682
8682
|
id: string;
|
|
8683
8683
|
totalBalances: Record<string, string>;
|
|
8684
8684
|
tokenId: string;
|
|
8685
|
-
investmentId?: string | undefined;
|
|
8686
8685
|
tokenAddress?: string | undefined;
|
|
8686
|
+
investmentId?: string | undefined;
|
|
8687
8687
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
8688
8688
|
id: z.ZodString;
|
|
8689
8689
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -8719,8 +8719,8 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8719
8719
|
};
|
|
8720
8720
|
id: string;
|
|
8721
8721
|
totalBalances: Record<string, string>;
|
|
8722
|
-
investmentId?: string | undefined;
|
|
8723
8722
|
tokenAddress?: `0x${string}` | undefined;
|
|
8723
|
+
investmentId?: string | undefined;
|
|
8724
8724
|
}, {
|
|
8725
8725
|
data: {
|
|
8726
8726
|
lending: boolean;
|
|
@@ -8731,8 +8731,8 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8731
8731
|
};
|
|
8732
8732
|
id: string;
|
|
8733
8733
|
totalBalances: Record<string, string>;
|
|
8734
|
-
investmentId?: string | undefined;
|
|
8735
8734
|
tokenAddress?: string | undefined;
|
|
8735
|
+
investmentId?: string | undefined;
|
|
8736
8736
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
8737
8737
|
id: z.ZodString;
|
|
8738
8738
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -8754,16 +8754,16 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8754
8754
|
};
|
|
8755
8755
|
id: string;
|
|
8756
8756
|
totalBalances: Record<string, string>;
|
|
8757
|
-
investmentId?: string | undefined;
|
|
8758
8757
|
tokenAddress?: `0x${string}` | undefined;
|
|
8758
|
+
investmentId?: string | undefined;
|
|
8759
8759
|
}, {
|
|
8760
8760
|
data: {
|
|
8761
8761
|
delegatingTo: string;
|
|
8762
8762
|
};
|
|
8763
8763
|
id: string;
|
|
8764
8764
|
totalBalances: Record<string, string>;
|
|
8765
|
-
investmentId?: string | undefined;
|
|
8766
8765
|
tokenAddress?: string | undefined;
|
|
8766
|
+
investmentId?: string | undefined;
|
|
8767
8767
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
8768
8768
|
id: z.ZodString;
|
|
8769
8769
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -8785,16 +8785,16 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8785
8785
|
};
|
|
8786
8786
|
id: string;
|
|
8787
8787
|
totalBalances: Record<string, string>;
|
|
8788
|
-
investmentId?: string | undefined;
|
|
8789
8788
|
tokenAddress?: `0x${string}` | undefined;
|
|
8789
|
+
investmentId?: string | undefined;
|
|
8790
8790
|
}, {
|
|
8791
8791
|
data: {
|
|
8792
8792
|
apy: string;
|
|
8793
8793
|
};
|
|
8794
8794
|
id: string;
|
|
8795
8795
|
totalBalances: Record<string, string>;
|
|
8796
|
-
investmentId?: string | undefined;
|
|
8797
8796
|
tokenAddress?: string | undefined;
|
|
8797
|
+
investmentId?: string | undefined;
|
|
8798
8798
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
8799
8799
|
id: z.ZodString;
|
|
8800
8800
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -8803,7 +8803,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8803
8803
|
}, {
|
|
8804
8804
|
investmentId: z.ZodString;
|
|
8805
8805
|
data: z.ZodObject<{
|
|
8806
|
-
|
|
8806
|
+
stakerInfo: z.ZodObject<{
|
|
8807
8807
|
name: z.ZodOptional<z.ZodString>;
|
|
8808
8808
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
8809
8809
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -8830,7 +8830,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8830
8830
|
}>>;
|
|
8831
8831
|
apy: z.ZodOptional<z.ZodString>;
|
|
8832
8832
|
}, "strip", z.ZodTypeAny, {
|
|
8833
|
-
|
|
8833
|
+
stakerInfo: {
|
|
8834
8834
|
address: `0x${string}`;
|
|
8835
8835
|
name?: string | undefined;
|
|
8836
8836
|
iconUrl?: string | undefined;
|
|
@@ -8843,7 +8843,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8843
8843
|
withdrawableAfter: number;
|
|
8844
8844
|
} | undefined;
|
|
8845
8845
|
}, {
|
|
8846
|
-
|
|
8846
|
+
stakerInfo: {
|
|
8847
8847
|
address: string;
|
|
8848
8848
|
name?: string | undefined;
|
|
8849
8849
|
iconUrl?: string | undefined;
|
|
@@ -8858,7 +8858,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8858
8858
|
}>;
|
|
8859
8859
|
}>, "strip", z.ZodTypeAny, {
|
|
8860
8860
|
data: {
|
|
8861
|
-
|
|
8861
|
+
stakerInfo: {
|
|
8862
8862
|
address: `0x${string}`;
|
|
8863
8863
|
name?: string | undefined;
|
|
8864
8864
|
iconUrl?: string | undefined;
|
|
@@ -8877,7 +8877,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8877
8877
|
tokenAddress?: `0x${string}` | undefined;
|
|
8878
8878
|
}, {
|
|
8879
8879
|
data: {
|
|
8880
|
-
|
|
8880
|
+
stakerInfo: {
|
|
8881
8881
|
address: string;
|
|
8882
8882
|
name?: string | undefined;
|
|
8883
8883
|
iconUrl?: string | undefined;
|
|
@@ -9027,8 +9027,8 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9027
9027
|
id: string;
|
|
9028
9028
|
totalBalances: Record<string, string>;
|
|
9029
9029
|
tokenId: string;
|
|
9030
|
-
investmentId?: string | undefined;
|
|
9031
9030
|
tokenAddress?: `0x${string}` | undefined;
|
|
9031
|
+
investmentId?: string | undefined;
|
|
9032
9032
|
}, {
|
|
9033
9033
|
data: {
|
|
9034
9034
|
poolFeePercentage: string;
|
|
@@ -9053,8 +9053,8 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9053
9053
|
id: string;
|
|
9054
9054
|
totalBalances: Record<string, string>;
|
|
9055
9055
|
tokenId: string;
|
|
9056
|
-
investmentId?: string | undefined;
|
|
9057
9056
|
tokenAddress?: string | undefined;
|
|
9057
|
+
investmentId?: string | undefined;
|
|
9058
9058
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
9059
9059
|
id: z.ZodString;
|
|
9060
9060
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -9090,8 +9090,8 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9090
9090
|
};
|
|
9091
9091
|
id: string;
|
|
9092
9092
|
totalBalances: Record<string, string>;
|
|
9093
|
-
investmentId?: string | undefined;
|
|
9094
9093
|
tokenAddress?: `0x${string}` | undefined;
|
|
9094
|
+
investmentId?: string | undefined;
|
|
9095
9095
|
}, {
|
|
9096
9096
|
data: {
|
|
9097
9097
|
lending: boolean;
|
|
@@ -9102,8 +9102,8 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9102
9102
|
};
|
|
9103
9103
|
id: string;
|
|
9104
9104
|
totalBalances: Record<string, string>;
|
|
9105
|
-
investmentId?: string | undefined;
|
|
9106
9105
|
tokenAddress?: string | undefined;
|
|
9106
|
+
investmentId?: string | undefined;
|
|
9107
9107
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
9108
9108
|
id: z.ZodString;
|
|
9109
9109
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -9125,16 +9125,16 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9125
9125
|
};
|
|
9126
9126
|
id: string;
|
|
9127
9127
|
totalBalances: Record<string, string>;
|
|
9128
|
-
investmentId?: string | undefined;
|
|
9129
9128
|
tokenAddress?: `0x${string}` | undefined;
|
|
9129
|
+
investmentId?: string | undefined;
|
|
9130
9130
|
}, {
|
|
9131
9131
|
data: {
|
|
9132
9132
|
delegatingTo: string;
|
|
9133
9133
|
};
|
|
9134
9134
|
id: string;
|
|
9135
9135
|
totalBalances: Record<string, string>;
|
|
9136
|
-
investmentId?: string | undefined;
|
|
9137
9136
|
tokenAddress?: string | undefined;
|
|
9137
|
+
investmentId?: string | undefined;
|
|
9138
9138
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
9139
9139
|
id: z.ZodString;
|
|
9140
9140
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -9156,16 +9156,16 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9156
9156
|
};
|
|
9157
9157
|
id: string;
|
|
9158
9158
|
totalBalances: Record<string, string>;
|
|
9159
|
-
investmentId?: string | undefined;
|
|
9160
9159
|
tokenAddress?: `0x${string}` | undefined;
|
|
9160
|
+
investmentId?: string | undefined;
|
|
9161
9161
|
}, {
|
|
9162
9162
|
data: {
|
|
9163
9163
|
apy: string;
|
|
9164
9164
|
};
|
|
9165
9165
|
id: string;
|
|
9166
9166
|
totalBalances: Record<string, string>;
|
|
9167
|
-
investmentId?: string | undefined;
|
|
9168
9167
|
tokenAddress?: string | undefined;
|
|
9168
|
+
investmentId?: string | undefined;
|
|
9169
9169
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
9170
9170
|
id: z.ZodString;
|
|
9171
9171
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -9174,7 +9174,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9174
9174
|
}, {
|
|
9175
9175
|
investmentId: z.ZodString;
|
|
9176
9176
|
data: z.ZodObject<{
|
|
9177
|
-
|
|
9177
|
+
stakerInfo: z.ZodObject<{
|
|
9178
9178
|
name: z.ZodOptional<z.ZodString>;
|
|
9179
9179
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
9180
9180
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -9201,7 +9201,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9201
9201
|
}>>;
|
|
9202
9202
|
apy: z.ZodOptional<z.ZodString>;
|
|
9203
9203
|
}, "strip", z.ZodTypeAny, {
|
|
9204
|
-
|
|
9204
|
+
stakerInfo: {
|
|
9205
9205
|
address: `0x${string}`;
|
|
9206
9206
|
name?: string | undefined;
|
|
9207
9207
|
iconUrl?: string | undefined;
|
|
@@ -9214,7 +9214,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9214
9214
|
withdrawableAfter: number;
|
|
9215
9215
|
} | undefined;
|
|
9216
9216
|
}, {
|
|
9217
|
-
|
|
9217
|
+
stakerInfo: {
|
|
9218
9218
|
address: string;
|
|
9219
9219
|
name?: string | undefined;
|
|
9220
9220
|
iconUrl?: string | undefined;
|
|
@@ -9229,7 +9229,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9229
9229
|
}>;
|
|
9230
9230
|
}>, "strip", z.ZodTypeAny, {
|
|
9231
9231
|
data: {
|
|
9232
|
-
|
|
9232
|
+
stakerInfo: {
|
|
9233
9233
|
address: `0x${string}`;
|
|
9234
9234
|
name?: string | undefined;
|
|
9235
9235
|
iconUrl?: string | undefined;
|
|
@@ -9248,7 +9248,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9248
9248
|
tokenAddress?: `0x${string}` | undefined;
|
|
9249
9249
|
}, {
|
|
9250
9250
|
data: {
|
|
9251
|
-
|
|
9251
|
+
stakerInfo: {
|
|
9252
9252
|
address: string;
|
|
9253
9253
|
name?: string | undefined;
|
|
9254
9254
|
iconUrl?: string | undefined;
|
|
@@ -9402,8 +9402,8 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9402
9402
|
id: string;
|
|
9403
9403
|
totalBalances: Record<string, string>;
|
|
9404
9404
|
tokenId: string;
|
|
9405
|
-
investmentId?: string | undefined;
|
|
9406
9405
|
tokenAddress?: `0x${string}` | undefined;
|
|
9406
|
+
investmentId?: string | undefined;
|
|
9407
9407
|
}, {
|
|
9408
9408
|
data: {
|
|
9409
9409
|
poolFeePercentage: string;
|
|
@@ -9428,8 +9428,8 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9428
9428
|
id: string;
|
|
9429
9429
|
totalBalances: Record<string, string>;
|
|
9430
9430
|
tokenId: string;
|
|
9431
|
-
investmentId?: string | undefined;
|
|
9432
9431
|
tokenAddress?: string | undefined;
|
|
9432
|
+
investmentId?: string | undefined;
|
|
9433
9433
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
9434
9434
|
id: z.ZodString;
|
|
9435
9435
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -9465,8 +9465,8 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9465
9465
|
};
|
|
9466
9466
|
id: string;
|
|
9467
9467
|
totalBalances: Record<string, string>;
|
|
9468
|
-
investmentId?: string | undefined;
|
|
9469
9468
|
tokenAddress?: `0x${string}` | undefined;
|
|
9469
|
+
investmentId?: string | undefined;
|
|
9470
9470
|
}, {
|
|
9471
9471
|
data: {
|
|
9472
9472
|
lending: boolean;
|
|
@@ -9477,8 +9477,8 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9477
9477
|
};
|
|
9478
9478
|
id: string;
|
|
9479
9479
|
totalBalances: Record<string, string>;
|
|
9480
|
-
investmentId?: string | undefined;
|
|
9481
9480
|
tokenAddress?: string | undefined;
|
|
9481
|
+
investmentId?: string | undefined;
|
|
9482
9482
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
9483
9483
|
id: z.ZodString;
|
|
9484
9484
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -9500,16 +9500,16 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9500
9500
|
};
|
|
9501
9501
|
id: string;
|
|
9502
9502
|
totalBalances: Record<string, string>;
|
|
9503
|
-
investmentId?: string | undefined;
|
|
9504
9503
|
tokenAddress?: `0x${string}` | undefined;
|
|
9504
|
+
investmentId?: string | undefined;
|
|
9505
9505
|
}, {
|
|
9506
9506
|
data: {
|
|
9507
9507
|
delegatingTo: string;
|
|
9508
9508
|
};
|
|
9509
9509
|
id: string;
|
|
9510
9510
|
totalBalances: Record<string, string>;
|
|
9511
|
-
investmentId?: string | undefined;
|
|
9512
9511
|
tokenAddress?: string | undefined;
|
|
9512
|
+
investmentId?: string | undefined;
|
|
9513
9513
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
9514
9514
|
id: z.ZodString;
|
|
9515
9515
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -9531,16 +9531,16 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9531
9531
|
};
|
|
9532
9532
|
id: string;
|
|
9533
9533
|
totalBalances: Record<string, string>;
|
|
9534
|
-
investmentId?: string | undefined;
|
|
9535
9534
|
tokenAddress?: `0x${string}` | undefined;
|
|
9535
|
+
investmentId?: string | undefined;
|
|
9536
9536
|
}, {
|
|
9537
9537
|
data: {
|
|
9538
9538
|
apy: string;
|
|
9539
9539
|
};
|
|
9540
9540
|
id: string;
|
|
9541
9541
|
totalBalances: Record<string, string>;
|
|
9542
|
-
investmentId?: string | undefined;
|
|
9543
9542
|
tokenAddress?: string | undefined;
|
|
9543
|
+
investmentId?: string | undefined;
|
|
9544
9544
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
9545
9545
|
id: z.ZodString;
|
|
9546
9546
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -9549,7 +9549,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9549
9549
|
}, {
|
|
9550
9550
|
investmentId: z.ZodString;
|
|
9551
9551
|
data: z.ZodObject<{
|
|
9552
|
-
|
|
9552
|
+
stakerInfo: z.ZodObject<{
|
|
9553
9553
|
name: z.ZodOptional<z.ZodString>;
|
|
9554
9554
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
9555
9555
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -9576,7 +9576,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9576
9576
|
}>>;
|
|
9577
9577
|
apy: z.ZodOptional<z.ZodString>;
|
|
9578
9578
|
}, "strip", z.ZodTypeAny, {
|
|
9579
|
-
|
|
9579
|
+
stakerInfo: {
|
|
9580
9580
|
address: `0x${string}`;
|
|
9581
9581
|
name?: string | undefined;
|
|
9582
9582
|
iconUrl?: string | undefined;
|
|
@@ -9589,7 +9589,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9589
9589
|
withdrawableAfter: number;
|
|
9590
9590
|
} | undefined;
|
|
9591
9591
|
}, {
|
|
9592
|
-
|
|
9592
|
+
stakerInfo: {
|
|
9593
9593
|
address: string;
|
|
9594
9594
|
name?: string | undefined;
|
|
9595
9595
|
iconUrl?: string | undefined;
|
|
@@ -9604,7 +9604,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9604
9604
|
}>;
|
|
9605
9605
|
}>, "strip", z.ZodTypeAny, {
|
|
9606
9606
|
data: {
|
|
9607
|
-
|
|
9607
|
+
stakerInfo: {
|
|
9608
9608
|
address: `0x${string}`;
|
|
9609
9609
|
name?: string | undefined;
|
|
9610
9610
|
iconUrl?: string | undefined;
|
|
@@ -9623,7 +9623,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9623
9623
|
tokenAddress?: `0x${string}` | undefined;
|
|
9624
9624
|
}, {
|
|
9625
9625
|
data: {
|
|
9626
|
-
|
|
9626
|
+
stakerInfo: {
|
|
9627
9627
|
address: string;
|
|
9628
9628
|
name?: string | undefined;
|
|
9629
9629
|
iconUrl?: string | undefined;
|
|
@@ -9776,8 +9776,8 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9776
9776
|
id: string;
|
|
9777
9777
|
totalBalances: Record<string, string>;
|
|
9778
9778
|
tokenId: string;
|
|
9779
|
-
investmentId?: string | undefined;
|
|
9780
9779
|
tokenAddress?: `0x${string}` | undefined;
|
|
9780
|
+
investmentId?: string | undefined;
|
|
9781
9781
|
}, {
|
|
9782
9782
|
data: {
|
|
9783
9783
|
poolFeePercentage: string;
|
|
@@ -9802,8 +9802,8 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9802
9802
|
id: string;
|
|
9803
9803
|
totalBalances: Record<string, string>;
|
|
9804
9804
|
tokenId: string;
|
|
9805
|
-
investmentId?: string | undefined;
|
|
9806
9805
|
tokenAddress?: string | undefined;
|
|
9806
|
+
investmentId?: string | undefined;
|
|
9807
9807
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
9808
9808
|
id: z.ZodString;
|
|
9809
9809
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -9839,8 +9839,8 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9839
9839
|
};
|
|
9840
9840
|
id: string;
|
|
9841
9841
|
totalBalances: Record<string, string>;
|
|
9842
|
-
investmentId?: string | undefined;
|
|
9843
9842
|
tokenAddress?: `0x${string}` | undefined;
|
|
9843
|
+
investmentId?: string | undefined;
|
|
9844
9844
|
}, {
|
|
9845
9845
|
data: {
|
|
9846
9846
|
lending: boolean;
|
|
@@ -9851,8 +9851,8 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9851
9851
|
};
|
|
9852
9852
|
id: string;
|
|
9853
9853
|
totalBalances: Record<string, string>;
|
|
9854
|
-
investmentId?: string | undefined;
|
|
9855
9854
|
tokenAddress?: string | undefined;
|
|
9855
|
+
investmentId?: string | undefined;
|
|
9856
9856
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
9857
9857
|
id: z.ZodString;
|
|
9858
9858
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -9874,16 +9874,16 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9874
9874
|
};
|
|
9875
9875
|
id: string;
|
|
9876
9876
|
totalBalances: Record<string, string>;
|
|
9877
|
-
investmentId?: string | undefined;
|
|
9878
9877
|
tokenAddress?: `0x${string}` | undefined;
|
|
9878
|
+
investmentId?: string | undefined;
|
|
9879
9879
|
}, {
|
|
9880
9880
|
data: {
|
|
9881
9881
|
delegatingTo: string;
|
|
9882
9882
|
};
|
|
9883
9883
|
id: string;
|
|
9884
9884
|
totalBalances: Record<string, string>;
|
|
9885
|
-
investmentId?: string | undefined;
|
|
9886
9885
|
tokenAddress?: string | undefined;
|
|
9886
|
+
investmentId?: string | undefined;
|
|
9887
9887
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
9888
9888
|
id: z.ZodString;
|
|
9889
9889
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -9905,16 +9905,16 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9905
9905
|
};
|
|
9906
9906
|
id: string;
|
|
9907
9907
|
totalBalances: Record<string, string>;
|
|
9908
|
-
investmentId?: string | undefined;
|
|
9909
9908
|
tokenAddress?: `0x${string}` | undefined;
|
|
9909
|
+
investmentId?: string | undefined;
|
|
9910
9910
|
}, {
|
|
9911
9911
|
data: {
|
|
9912
9912
|
apy: string;
|
|
9913
9913
|
};
|
|
9914
9914
|
id: string;
|
|
9915
9915
|
totalBalances: Record<string, string>;
|
|
9916
|
-
investmentId?: string | undefined;
|
|
9917
9916
|
tokenAddress?: string | undefined;
|
|
9917
|
+
investmentId?: string | undefined;
|
|
9918
9918
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
9919
9919
|
id: z.ZodString;
|
|
9920
9920
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -9923,7 +9923,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9923
9923
|
}, {
|
|
9924
9924
|
investmentId: z.ZodString;
|
|
9925
9925
|
data: z.ZodObject<{
|
|
9926
|
-
|
|
9926
|
+
stakerInfo: z.ZodObject<{
|
|
9927
9927
|
name: z.ZodOptional<z.ZodString>;
|
|
9928
9928
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
9929
9929
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -9950,7 +9950,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9950
9950
|
}>>;
|
|
9951
9951
|
apy: z.ZodOptional<z.ZodString>;
|
|
9952
9952
|
}, "strip", z.ZodTypeAny, {
|
|
9953
|
-
|
|
9953
|
+
stakerInfo: {
|
|
9954
9954
|
address: `0x${string}`;
|
|
9955
9955
|
name?: string | undefined;
|
|
9956
9956
|
iconUrl?: string | undefined;
|
|
@@ -9963,7 +9963,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9963
9963
|
withdrawableAfter: number;
|
|
9964
9964
|
} | undefined;
|
|
9965
9965
|
}, {
|
|
9966
|
-
|
|
9966
|
+
stakerInfo: {
|
|
9967
9967
|
address: string;
|
|
9968
9968
|
name?: string | undefined;
|
|
9969
9969
|
iconUrl?: string | undefined;
|
|
@@ -9978,7 +9978,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9978
9978
|
}>;
|
|
9979
9979
|
}>, "strip", z.ZodTypeAny, {
|
|
9980
9980
|
data: {
|
|
9981
|
-
|
|
9981
|
+
stakerInfo: {
|
|
9982
9982
|
address: `0x${string}`;
|
|
9983
9983
|
name?: string | undefined;
|
|
9984
9984
|
iconUrl?: string | undefined;
|
|
@@ -9997,7 +9997,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9997
9997
|
tokenAddress?: `0x${string}` | undefined;
|
|
9998
9998
|
}, {
|
|
9999
9999
|
data: {
|
|
10000
|
-
|
|
10000
|
+
stakerInfo: {
|
|
10001
10001
|
address: string;
|
|
10002
10002
|
name?: string | undefined;
|
|
10003
10003
|
iconUrl?: string | undefined;
|
|
@@ -10152,8 +10152,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10152
10152
|
id: string;
|
|
10153
10153
|
totalBalances: Record<string, string>;
|
|
10154
10154
|
tokenId: string;
|
|
10155
|
-
investmentId?: string | undefined;
|
|
10156
10155
|
tokenAddress?: `0x${string}` | undefined;
|
|
10156
|
+
investmentId?: string | undefined;
|
|
10157
10157
|
}, {
|
|
10158
10158
|
data: {
|
|
10159
10159
|
poolFeePercentage: string;
|
|
@@ -10178,8 +10178,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10178
10178
|
id: string;
|
|
10179
10179
|
totalBalances: Record<string, string>;
|
|
10180
10180
|
tokenId: string;
|
|
10181
|
-
investmentId?: string | undefined;
|
|
10182
10181
|
tokenAddress?: string | undefined;
|
|
10182
|
+
investmentId?: string | undefined;
|
|
10183
10183
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10184
10184
|
id: z.ZodString;
|
|
10185
10185
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -10215,8 +10215,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10215
10215
|
};
|
|
10216
10216
|
id: string;
|
|
10217
10217
|
totalBalances: Record<string, string>;
|
|
10218
|
-
investmentId?: string | undefined;
|
|
10219
10218
|
tokenAddress?: `0x${string}` | undefined;
|
|
10219
|
+
investmentId?: string | undefined;
|
|
10220
10220
|
}, {
|
|
10221
10221
|
data: {
|
|
10222
10222
|
lending: boolean;
|
|
@@ -10227,8 +10227,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10227
10227
|
};
|
|
10228
10228
|
id: string;
|
|
10229
10229
|
totalBalances: Record<string, string>;
|
|
10230
|
-
investmentId?: string | undefined;
|
|
10231
10230
|
tokenAddress?: string | undefined;
|
|
10231
|
+
investmentId?: string | undefined;
|
|
10232
10232
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10233
10233
|
id: z.ZodString;
|
|
10234
10234
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -10250,16 +10250,16 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10250
10250
|
};
|
|
10251
10251
|
id: string;
|
|
10252
10252
|
totalBalances: Record<string, string>;
|
|
10253
|
-
investmentId?: string | undefined;
|
|
10254
10253
|
tokenAddress?: `0x${string}` | undefined;
|
|
10254
|
+
investmentId?: string | undefined;
|
|
10255
10255
|
}, {
|
|
10256
10256
|
data: {
|
|
10257
10257
|
delegatingTo: string;
|
|
10258
10258
|
};
|
|
10259
10259
|
id: string;
|
|
10260
10260
|
totalBalances: Record<string, string>;
|
|
10261
|
-
investmentId?: string | undefined;
|
|
10262
10261
|
tokenAddress?: string | undefined;
|
|
10262
|
+
investmentId?: string | undefined;
|
|
10263
10263
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10264
10264
|
id: z.ZodString;
|
|
10265
10265
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -10281,16 +10281,16 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10281
10281
|
};
|
|
10282
10282
|
id: string;
|
|
10283
10283
|
totalBalances: Record<string, string>;
|
|
10284
|
-
investmentId?: string | undefined;
|
|
10285
10284
|
tokenAddress?: `0x${string}` | undefined;
|
|
10285
|
+
investmentId?: string | undefined;
|
|
10286
10286
|
}, {
|
|
10287
10287
|
data: {
|
|
10288
10288
|
apy: string;
|
|
10289
10289
|
};
|
|
10290
10290
|
id: string;
|
|
10291
10291
|
totalBalances: Record<string, string>;
|
|
10292
|
-
investmentId?: string | undefined;
|
|
10293
10292
|
tokenAddress?: string | undefined;
|
|
10293
|
+
investmentId?: string | undefined;
|
|
10294
10294
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10295
10295
|
id: z.ZodString;
|
|
10296
10296
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -10299,7 +10299,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10299
10299
|
}, {
|
|
10300
10300
|
investmentId: z.ZodString;
|
|
10301
10301
|
data: z.ZodObject<{
|
|
10302
|
-
|
|
10302
|
+
stakerInfo: z.ZodObject<{
|
|
10303
10303
|
name: z.ZodOptional<z.ZodString>;
|
|
10304
10304
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
10305
10305
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -10326,7 +10326,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10326
10326
|
}>>;
|
|
10327
10327
|
apy: z.ZodOptional<z.ZodString>;
|
|
10328
10328
|
}, "strip", z.ZodTypeAny, {
|
|
10329
|
-
|
|
10329
|
+
stakerInfo: {
|
|
10330
10330
|
address: `0x${string}`;
|
|
10331
10331
|
name?: string | undefined;
|
|
10332
10332
|
iconUrl?: string | undefined;
|
|
@@ -10339,7 +10339,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10339
10339
|
withdrawableAfter: number;
|
|
10340
10340
|
} | undefined;
|
|
10341
10341
|
}, {
|
|
10342
|
-
|
|
10342
|
+
stakerInfo: {
|
|
10343
10343
|
address: string;
|
|
10344
10344
|
name?: string | undefined;
|
|
10345
10345
|
iconUrl?: string | undefined;
|
|
@@ -10354,7 +10354,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10354
10354
|
}>;
|
|
10355
10355
|
}>, "strip", z.ZodTypeAny, {
|
|
10356
10356
|
data: {
|
|
10357
|
-
|
|
10357
|
+
stakerInfo: {
|
|
10358
10358
|
address: `0x${string}`;
|
|
10359
10359
|
name?: string | undefined;
|
|
10360
10360
|
iconUrl?: string | undefined;
|
|
@@ -10373,7 +10373,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10373
10373
|
tokenAddress?: `0x${string}` | undefined;
|
|
10374
10374
|
}, {
|
|
10375
10375
|
data: {
|
|
10376
|
-
|
|
10376
|
+
stakerInfo: {
|
|
10377
10377
|
address: string;
|
|
10378
10378
|
name?: string | undefined;
|
|
10379
10379
|
iconUrl?: string | undefined;
|
|
@@ -10523,8 +10523,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10523
10523
|
id: string;
|
|
10524
10524
|
totalBalances: Record<string, string>;
|
|
10525
10525
|
tokenId: string;
|
|
10526
|
-
investmentId?: string | undefined;
|
|
10527
10526
|
tokenAddress?: `0x${string}` | undefined;
|
|
10527
|
+
investmentId?: string | undefined;
|
|
10528
10528
|
}, {
|
|
10529
10529
|
data: {
|
|
10530
10530
|
poolFeePercentage: string;
|
|
@@ -10549,8 +10549,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10549
10549
|
id: string;
|
|
10550
10550
|
totalBalances: Record<string, string>;
|
|
10551
10551
|
tokenId: string;
|
|
10552
|
-
investmentId?: string | undefined;
|
|
10553
10552
|
tokenAddress?: string | undefined;
|
|
10553
|
+
investmentId?: string | undefined;
|
|
10554
10554
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10555
10555
|
id: z.ZodString;
|
|
10556
10556
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -10586,8 +10586,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10586
10586
|
};
|
|
10587
10587
|
id: string;
|
|
10588
10588
|
totalBalances: Record<string, string>;
|
|
10589
|
-
investmentId?: string | undefined;
|
|
10590
10589
|
tokenAddress?: `0x${string}` | undefined;
|
|
10590
|
+
investmentId?: string | undefined;
|
|
10591
10591
|
}, {
|
|
10592
10592
|
data: {
|
|
10593
10593
|
lending: boolean;
|
|
@@ -10598,8 +10598,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10598
10598
|
};
|
|
10599
10599
|
id: string;
|
|
10600
10600
|
totalBalances: Record<string, string>;
|
|
10601
|
-
investmentId?: string | undefined;
|
|
10602
10601
|
tokenAddress?: string | undefined;
|
|
10602
|
+
investmentId?: string | undefined;
|
|
10603
10603
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10604
10604
|
id: z.ZodString;
|
|
10605
10605
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -10621,16 +10621,16 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10621
10621
|
};
|
|
10622
10622
|
id: string;
|
|
10623
10623
|
totalBalances: Record<string, string>;
|
|
10624
|
-
investmentId?: string | undefined;
|
|
10625
10624
|
tokenAddress?: `0x${string}` | undefined;
|
|
10625
|
+
investmentId?: string | undefined;
|
|
10626
10626
|
}, {
|
|
10627
10627
|
data: {
|
|
10628
10628
|
delegatingTo: string;
|
|
10629
10629
|
};
|
|
10630
10630
|
id: string;
|
|
10631
10631
|
totalBalances: Record<string, string>;
|
|
10632
|
-
investmentId?: string | undefined;
|
|
10633
10632
|
tokenAddress?: string | undefined;
|
|
10633
|
+
investmentId?: string | undefined;
|
|
10634
10634
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10635
10635
|
id: z.ZodString;
|
|
10636
10636
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -10652,16 +10652,16 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10652
10652
|
};
|
|
10653
10653
|
id: string;
|
|
10654
10654
|
totalBalances: Record<string, string>;
|
|
10655
|
-
investmentId?: string | undefined;
|
|
10656
10655
|
tokenAddress?: `0x${string}` | undefined;
|
|
10656
|
+
investmentId?: string | undefined;
|
|
10657
10657
|
}, {
|
|
10658
10658
|
data: {
|
|
10659
10659
|
apy: string;
|
|
10660
10660
|
};
|
|
10661
10661
|
id: string;
|
|
10662
10662
|
totalBalances: Record<string, string>;
|
|
10663
|
-
investmentId?: string | undefined;
|
|
10664
10663
|
tokenAddress?: string | undefined;
|
|
10664
|
+
investmentId?: string | undefined;
|
|
10665
10665
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10666
10666
|
id: z.ZodString;
|
|
10667
10667
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -10670,7 +10670,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10670
10670
|
}, {
|
|
10671
10671
|
investmentId: z.ZodString;
|
|
10672
10672
|
data: z.ZodObject<{
|
|
10673
|
-
|
|
10673
|
+
stakerInfo: z.ZodObject<{
|
|
10674
10674
|
name: z.ZodOptional<z.ZodString>;
|
|
10675
10675
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
10676
10676
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -10697,7 +10697,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10697
10697
|
}>>;
|
|
10698
10698
|
apy: z.ZodOptional<z.ZodString>;
|
|
10699
10699
|
}, "strip", z.ZodTypeAny, {
|
|
10700
|
-
|
|
10700
|
+
stakerInfo: {
|
|
10701
10701
|
address: `0x${string}`;
|
|
10702
10702
|
name?: string | undefined;
|
|
10703
10703
|
iconUrl?: string | undefined;
|
|
@@ -10710,7 +10710,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10710
10710
|
withdrawableAfter: number;
|
|
10711
10711
|
} | undefined;
|
|
10712
10712
|
}, {
|
|
10713
|
-
|
|
10713
|
+
stakerInfo: {
|
|
10714
10714
|
address: string;
|
|
10715
10715
|
name?: string | undefined;
|
|
10716
10716
|
iconUrl?: string | undefined;
|
|
@@ -10725,7 +10725,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10725
10725
|
}>;
|
|
10726
10726
|
}>, "strip", z.ZodTypeAny, {
|
|
10727
10727
|
data: {
|
|
10728
|
-
|
|
10728
|
+
stakerInfo: {
|
|
10729
10729
|
address: `0x${string}`;
|
|
10730
10730
|
name?: string | undefined;
|
|
10731
10731
|
iconUrl?: string | undefined;
|
|
@@ -10744,7 +10744,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10744
10744
|
tokenAddress?: `0x${string}` | undefined;
|
|
10745
10745
|
}, {
|
|
10746
10746
|
data: {
|
|
10747
|
-
|
|
10747
|
+
stakerInfo: {
|
|
10748
10748
|
address: string;
|
|
10749
10749
|
name?: string | undefined;
|
|
10750
10750
|
iconUrl?: string | undefined;
|
|
@@ -10894,8 +10894,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10894
10894
|
id: string;
|
|
10895
10895
|
totalBalances: Record<string, string>;
|
|
10896
10896
|
tokenId: string;
|
|
10897
|
-
investmentId?: string | undefined;
|
|
10898
10897
|
tokenAddress?: `0x${string}` | undefined;
|
|
10898
|
+
investmentId?: string | undefined;
|
|
10899
10899
|
}, {
|
|
10900
10900
|
data: {
|
|
10901
10901
|
poolFeePercentage: string;
|
|
@@ -10920,8 +10920,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10920
10920
|
id: string;
|
|
10921
10921
|
totalBalances: Record<string, string>;
|
|
10922
10922
|
tokenId: string;
|
|
10923
|
-
investmentId?: string | undefined;
|
|
10924
10923
|
tokenAddress?: string | undefined;
|
|
10924
|
+
investmentId?: string | undefined;
|
|
10925
10925
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10926
10926
|
id: z.ZodString;
|
|
10927
10927
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -10957,8 +10957,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10957
10957
|
};
|
|
10958
10958
|
id: string;
|
|
10959
10959
|
totalBalances: Record<string, string>;
|
|
10960
|
-
investmentId?: string | undefined;
|
|
10961
10960
|
tokenAddress?: `0x${string}` | undefined;
|
|
10961
|
+
investmentId?: string | undefined;
|
|
10962
10962
|
}, {
|
|
10963
10963
|
data: {
|
|
10964
10964
|
lending: boolean;
|
|
@@ -10969,8 +10969,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10969
10969
|
};
|
|
10970
10970
|
id: string;
|
|
10971
10971
|
totalBalances: Record<string, string>;
|
|
10972
|
-
investmentId?: string | undefined;
|
|
10973
10972
|
tokenAddress?: string | undefined;
|
|
10973
|
+
investmentId?: string | undefined;
|
|
10974
10974
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10975
10975
|
id: z.ZodString;
|
|
10976
10976
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -10992,16 +10992,16 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10992
10992
|
};
|
|
10993
10993
|
id: string;
|
|
10994
10994
|
totalBalances: Record<string, string>;
|
|
10995
|
-
investmentId?: string | undefined;
|
|
10996
10995
|
tokenAddress?: `0x${string}` | undefined;
|
|
10996
|
+
investmentId?: string | undefined;
|
|
10997
10997
|
}, {
|
|
10998
10998
|
data: {
|
|
10999
10999
|
delegatingTo: string;
|
|
11000
11000
|
};
|
|
11001
11001
|
id: string;
|
|
11002
11002
|
totalBalances: Record<string, string>;
|
|
11003
|
-
investmentId?: string | undefined;
|
|
11004
11003
|
tokenAddress?: string | undefined;
|
|
11004
|
+
investmentId?: string | undefined;
|
|
11005
11005
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11006
11006
|
id: z.ZodString;
|
|
11007
11007
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -11023,16 +11023,16 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11023
11023
|
};
|
|
11024
11024
|
id: string;
|
|
11025
11025
|
totalBalances: Record<string, string>;
|
|
11026
|
-
investmentId?: string | undefined;
|
|
11027
11026
|
tokenAddress?: `0x${string}` | undefined;
|
|
11027
|
+
investmentId?: string | undefined;
|
|
11028
11028
|
}, {
|
|
11029
11029
|
data: {
|
|
11030
11030
|
apy: string;
|
|
11031
11031
|
};
|
|
11032
11032
|
id: string;
|
|
11033
11033
|
totalBalances: Record<string, string>;
|
|
11034
|
-
investmentId?: string | undefined;
|
|
11035
11034
|
tokenAddress?: string | undefined;
|
|
11035
|
+
investmentId?: string | undefined;
|
|
11036
11036
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11037
11037
|
id: z.ZodString;
|
|
11038
11038
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -11041,7 +11041,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11041
11041
|
}, {
|
|
11042
11042
|
investmentId: z.ZodString;
|
|
11043
11043
|
data: z.ZodObject<{
|
|
11044
|
-
|
|
11044
|
+
stakerInfo: z.ZodObject<{
|
|
11045
11045
|
name: z.ZodOptional<z.ZodString>;
|
|
11046
11046
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
11047
11047
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -11068,7 +11068,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11068
11068
|
}>>;
|
|
11069
11069
|
apy: z.ZodOptional<z.ZodString>;
|
|
11070
11070
|
}, "strip", z.ZodTypeAny, {
|
|
11071
|
-
|
|
11071
|
+
stakerInfo: {
|
|
11072
11072
|
address: `0x${string}`;
|
|
11073
11073
|
name?: string | undefined;
|
|
11074
11074
|
iconUrl?: string | undefined;
|
|
@@ -11081,7 +11081,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11081
11081
|
withdrawableAfter: number;
|
|
11082
11082
|
} | undefined;
|
|
11083
11083
|
}, {
|
|
11084
|
-
|
|
11084
|
+
stakerInfo: {
|
|
11085
11085
|
address: string;
|
|
11086
11086
|
name?: string | undefined;
|
|
11087
11087
|
iconUrl?: string | undefined;
|
|
@@ -11096,7 +11096,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11096
11096
|
}>;
|
|
11097
11097
|
}>, "strip", z.ZodTypeAny, {
|
|
11098
11098
|
data: {
|
|
11099
|
-
|
|
11099
|
+
stakerInfo: {
|
|
11100
11100
|
address: `0x${string}`;
|
|
11101
11101
|
name?: string | undefined;
|
|
11102
11102
|
iconUrl?: string | undefined;
|
|
@@ -11115,7 +11115,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11115
11115
|
tokenAddress?: `0x${string}` | undefined;
|
|
11116
11116
|
}, {
|
|
11117
11117
|
data: {
|
|
11118
|
-
|
|
11118
|
+
stakerInfo: {
|
|
11119
11119
|
address: string;
|
|
11120
11120
|
name?: string | undefined;
|
|
11121
11121
|
iconUrl?: string | undefined;
|
|
@@ -11265,8 +11265,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11265
11265
|
id: string;
|
|
11266
11266
|
totalBalances: Record<string, string>;
|
|
11267
11267
|
tokenId: string;
|
|
11268
|
-
investmentId?: string | undefined;
|
|
11269
11268
|
tokenAddress?: `0x${string}` | undefined;
|
|
11269
|
+
investmentId?: string | undefined;
|
|
11270
11270
|
}, {
|
|
11271
11271
|
data: {
|
|
11272
11272
|
poolFeePercentage: string;
|
|
@@ -11291,8 +11291,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11291
11291
|
id: string;
|
|
11292
11292
|
totalBalances: Record<string, string>;
|
|
11293
11293
|
tokenId: string;
|
|
11294
|
-
investmentId?: string | undefined;
|
|
11295
11294
|
tokenAddress?: string | undefined;
|
|
11295
|
+
investmentId?: string | undefined;
|
|
11296
11296
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11297
11297
|
id: z.ZodString;
|
|
11298
11298
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -11328,8 +11328,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11328
11328
|
};
|
|
11329
11329
|
id: string;
|
|
11330
11330
|
totalBalances: Record<string, string>;
|
|
11331
|
-
investmentId?: string | undefined;
|
|
11332
11331
|
tokenAddress?: `0x${string}` | undefined;
|
|
11332
|
+
investmentId?: string | undefined;
|
|
11333
11333
|
}, {
|
|
11334
11334
|
data: {
|
|
11335
11335
|
lending: boolean;
|
|
@@ -11340,8 +11340,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11340
11340
|
};
|
|
11341
11341
|
id: string;
|
|
11342
11342
|
totalBalances: Record<string, string>;
|
|
11343
|
-
investmentId?: string | undefined;
|
|
11344
11343
|
tokenAddress?: string | undefined;
|
|
11344
|
+
investmentId?: string | undefined;
|
|
11345
11345
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11346
11346
|
id: z.ZodString;
|
|
11347
11347
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -11363,16 +11363,16 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11363
11363
|
};
|
|
11364
11364
|
id: string;
|
|
11365
11365
|
totalBalances: Record<string, string>;
|
|
11366
|
-
investmentId?: string | undefined;
|
|
11367
11366
|
tokenAddress?: `0x${string}` | undefined;
|
|
11367
|
+
investmentId?: string | undefined;
|
|
11368
11368
|
}, {
|
|
11369
11369
|
data: {
|
|
11370
11370
|
delegatingTo: string;
|
|
11371
11371
|
};
|
|
11372
11372
|
id: string;
|
|
11373
11373
|
totalBalances: Record<string, string>;
|
|
11374
|
-
investmentId?: string | undefined;
|
|
11375
11374
|
tokenAddress?: string | undefined;
|
|
11375
|
+
investmentId?: string | undefined;
|
|
11376
11376
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11377
11377
|
id: z.ZodString;
|
|
11378
11378
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -11394,16 +11394,16 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11394
11394
|
};
|
|
11395
11395
|
id: string;
|
|
11396
11396
|
totalBalances: Record<string, string>;
|
|
11397
|
-
investmentId?: string | undefined;
|
|
11398
11397
|
tokenAddress?: `0x${string}` | undefined;
|
|
11398
|
+
investmentId?: string | undefined;
|
|
11399
11399
|
}, {
|
|
11400
11400
|
data: {
|
|
11401
11401
|
apy: string;
|
|
11402
11402
|
};
|
|
11403
11403
|
id: string;
|
|
11404
11404
|
totalBalances: Record<string, string>;
|
|
11405
|
-
investmentId?: string | undefined;
|
|
11406
11405
|
tokenAddress?: string | undefined;
|
|
11406
|
+
investmentId?: string | undefined;
|
|
11407
11407
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11408
11408
|
id: z.ZodString;
|
|
11409
11409
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -11412,7 +11412,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11412
11412
|
}, {
|
|
11413
11413
|
investmentId: z.ZodString;
|
|
11414
11414
|
data: z.ZodObject<{
|
|
11415
|
-
|
|
11415
|
+
stakerInfo: z.ZodObject<{
|
|
11416
11416
|
name: z.ZodOptional<z.ZodString>;
|
|
11417
11417
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
11418
11418
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -11439,7 +11439,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11439
11439
|
}>>;
|
|
11440
11440
|
apy: z.ZodOptional<z.ZodString>;
|
|
11441
11441
|
}, "strip", z.ZodTypeAny, {
|
|
11442
|
-
|
|
11442
|
+
stakerInfo: {
|
|
11443
11443
|
address: `0x${string}`;
|
|
11444
11444
|
name?: string | undefined;
|
|
11445
11445
|
iconUrl?: string | undefined;
|
|
@@ -11452,7 +11452,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11452
11452
|
withdrawableAfter: number;
|
|
11453
11453
|
} | undefined;
|
|
11454
11454
|
}, {
|
|
11455
|
-
|
|
11455
|
+
stakerInfo: {
|
|
11456
11456
|
address: string;
|
|
11457
11457
|
name?: string | undefined;
|
|
11458
11458
|
iconUrl?: string | undefined;
|
|
@@ -11467,7 +11467,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11467
11467
|
}>;
|
|
11468
11468
|
}>, "strip", z.ZodTypeAny, {
|
|
11469
11469
|
data: {
|
|
11470
|
-
|
|
11470
|
+
stakerInfo: {
|
|
11471
11471
|
address: `0x${string}`;
|
|
11472
11472
|
name?: string | undefined;
|
|
11473
11473
|
iconUrl?: string | undefined;
|
|
@@ -11486,7 +11486,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11486
11486
|
tokenAddress?: `0x${string}` | undefined;
|
|
11487
11487
|
}, {
|
|
11488
11488
|
data: {
|
|
11489
|
-
|
|
11489
|
+
stakerInfo: {
|
|
11490
11490
|
address: string;
|
|
11491
11491
|
name?: string | undefined;
|
|
11492
11492
|
iconUrl?: string | undefined;
|
|
@@ -11636,8 +11636,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11636
11636
|
id: string;
|
|
11637
11637
|
totalBalances: Record<string, string>;
|
|
11638
11638
|
tokenId: string;
|
|
11639
|
-
investmentId?: string | undefined;
|
|
11640
11639
|
tokenAddress?: `0x${string}` | undefined;
|
|
11640
|
+
investmentId?: string | undefined;
|
|
11641
11641
|
}, {
|
|
11642
11642
|
data: {
|
|
11643
11643
|
poolFeePercentage: string;
|
|
@@ -11662,8 +11662,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11662
11662
|
id: string;
|
|
11663
11663
|
totalBalances: Record<string, string>;
|
|
11664
11664
|
tokenId: string;
|
|
11665
|
-
investmentId?: string | undefined;
|
|
11666
11665
|
tokenAddress?: string | undefined;
|
|
11666
|
+
investmentId?: string | undefined;
|
|
11667
11667
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11668
11668
|
id: z.ZodString;
|
|
11669
11669
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -11699,8 +11699,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11699
11699
|
};
|
|
11700
11700
|
id: string;
|
|
11701
11701
|
totalBalances: Record<string, string>;
|
|
11702
|
-
investmentId?: string | undefined;
|
|
11703
11702
|
tokenAddress?: `0x${string}` | undefined;
|
|
11703
|
+
investmentId?: string | undefined;
|
|
11704
11704
|
}, {
|
|
11705
11705
|
data: {
|
|
11706
11706
|
lending: boolean;
|
|
@@ -11711,8 +11711,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11711
11711
|
};
|
|
11712
11712
|
id: string;
|
|
11713
11713
|
totalBalances: Record<string, string>;
|
|
11714
|
-
investmentId?: string | undefined;
|
|
11715
11714
|
tokenAddress?: string | undefined;
|
|
11715
|
+
investmentId?: string | undefined;
|
|
11716
11716
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11717
11717
|
id: z.ZodString;
|
|
11718
11718
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -11734,16 +11734,16 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11734
11734
|
};
|
|
11735
11735
|
id: string;
|
|
11736
11736
|
totalBalances: Record<string, string>;
|
|
11737
|
-
investmentId?: string | undefined;
|
|
11738
11737
|
tokenAddress?: `0x${string}` | undefined;
|
|
11738
|
+
investmentId?: string | undefined;
|
|
11739
11739
|
}, {
|
|
11740
11740
|
data: {
|
|
11741
11741
|
delegatingTo: string;
|
|
11742
11742
|
};
|
|
11743
11743
|
id: string;
|
|
11744
11744
|
totalBalances: Record<string, string>;
|
|
11745
|
-
investmentId?: string | undefined;
|
|
11746
11745
|
tokenAddress?: string | undefined;
|
|
11746
|
+
investmentId?: string | undefined;
|
|
11747
11747
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11748
11748
|
id: z.ZodString;
|
|
11749
11749
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -11765,16 +11765,16 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11765
11765
|
};
|
|
11766
11766
|
id: string;
|
|
11767
11767
|
totalBalances: Record<string, string>;
|
|
11768
|
-
investmentId?: string | undefined;
|
|
11769
11768
|
tokenAddress?: `0x${string}` | undefined;
|
|
11769
|
+
investmentId?: string | undefined;
|
|
11770
11770
|
}, {
|
|
11771
11771
|
data: {
|
|
11772
11772
|
apy: string;
|
|
11773
11773
|
};
|
|
11774
11774
|
id: string;
|
|
11775
11775
|
totalBalances: Record<string, string>;
|
|
11776
|
-
investmentId?: string | undefined;
|
|
11777
11776
|
tokenAddress?: string | undefined;
|
|
11777
|
+
investmentId?: string | undefined;
|
|
11778
11778
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11779
11779
|
id: z.ZodString;
|
|
11780
11780
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -11783,7 +11783,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11783
11783
|
}, {
|
|
11784
11784
|
investmentId: z.ZodString;
|
|
11785
11785
|
data: z.ZodObject<{
|
|
11786
|
-
|
|
11786
|
+
stakerInfo: z.ZodObject<{
|
|
11787
11787
|
name: z.ZodOptional<z.ZodString>;
|
|
11788
11788
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
11789
11789
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -11810,7 +11810,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11810
11810
|
}>>;
|
|
11811
11811
|
apy: z.ZodOptional<z.ZodString>;
|
|
11812
11812
|
}, "strip", z.ZodTypeAny, {
|
|
11813
|
-
|
|
11813
|
+
stakerInfo: {
|
|
11814
11814
|
address: `0x${string}`;
|
|
11815
11815
|
name?: string | undefined;
|
|
11816
11816
|
iconUrl?: string | undefined;
|
|
@@ -11823,7 +11823,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11823
11823
|
withdrawableAfter: number;
|
|
11824
11824
|
} | undefined;
|
|
11825
11825
|
}, {
|
|
11826
|
-
|
|
11826
|
+
stakerInfo: {
|
|
11827
11827
|
address: string;
|
|
11828
11828
|
name?: string | undefined;
|
|
11829
11829
|
iconUrl?: string | undefined;
|
|
@@ -11838,7 +11838,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11838
11838
|
}>;
|
|
11839
11839
|
}>, "strip", z.ZodTypeAny, {
|
|
11840
11840
|
data: {
|
|
11841
|
-
|
|
11841
|
+
stakerInfo: {
|
|
11842
11842
|
address: `0x${string}`;
|
|
11843
11843
|
name?: string | undefined;
|
|
11844
11844
|
iconUrl?: string | undefined;
|
|
@@ -11857,7 +11857,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11857
11857
|
tokenAddress?: `0x${string}` | undefined;
|
|
11858
11858
|
}, {
|
|
11859
11859
|
data: {
|
|
11860
|
-
|
|
11860
|
+
stakerInfo: {
|
|
11861
11861
|
address: string;
|
|
11862
11862
|
name?: string | undefined;
|
|
11863
11863
|
iconUrl?: string | undefined;
|
|
@@ -12008,8 +12008,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12008
12008
|
id: string;
|
|
12009
12009
|
totalBalances: Record<string, string>;
|
|
12010
12010
|
tokenId: string;
|
|
12011
|
-
investmentId?: string | undefined;
|
|
12012
12011
|
tokenAddress?: `0x${string}` | undefined;
|
|
12012
|
+
investmentId?: string | undefined;
|
|
12013
12013
|
}, {
|
|
12014
12014
|
data: {
|
|
12015
12015
|
poolFeePercentage: string;
|
|
@@ -12034,8 +12034,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12034
12034
|
id: string;
|
|
12035
12035
|
totalBalances: Record<string, string>;
|
|
12036
12036
|
tokenId: string;
|
|
12037
|
-
investmentId?: string | undefined;
|
|
12038
12037
|
tokenAddress?: string | undefined;
|
|
12038
|
+
investmentId?: string | undefined;
|
|
12039
12039
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
12040
12040
|
id: z.ZodString;
|
|
12041
12041
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -12071,8 +12071,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12071
12071
|
};
|
|
12072
12072
|
id: string;
|
|
12073
12073
|
totalBalances: Record<string, string>;
|
|
12074
|
-
investmentId?: string | undefined;
|
|
12075
12074
|
tokenAddress?: `0x${string}` | undefined;
|
|
12075
|
+
investmentId?: string | undefined;
|
|
12076
12076
|
}, {
|
|
12077
12077
|
data: {
|
|
12078
12078
|
lending: boolean;
|
|
@@ -12083,8 +12083,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12083
12083
|
};
|
|
12084
12084
|
id: string;
|
|
12085
12085
|
totalBalances: Record<string, string>;
|
|
12086
|
-
investmentId?: string | undefined;
|
|
12087
12086
|
tokenAddress?: string | undefined;
|
|
12087
|
+
investmentId?: string | undefined;
|
|
12088
12088
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
12089
12089
|
id: z.ZodString;
|
|
12090
12090
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -12106,16 +12106,16 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12106
12106
|
};
|
|
12107
12107
|
id: string;
|
|
12108
12108
|
totalBalances: Record<string, string>;
|
|
12109
|
-
investmentId?: string | undefined;
|
|
12110
12109
|
tokenAddress?: `0x${string}` | undefined;
|
|
12110
|
+
investmentId?: string | undefined;
|
|
12111
12111
|
}, {
|
|
12112
12112
|
data: {
|
|
12113
12113
|
delegatingTo: string;
|
|
12114
12114
|
};
|
|
12115
12115
|
id: string;
|
|
12116
12116
|
totalBalances: Record<string, string>;
|
|
12117
|
-
investmentId?: string | undefined;
|
|
12118
12117
|
tokenAddress?: string | undefined;
|
|
12118
|
+
investmentId?: string | undefined;
|
|
12119
12119
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
12120
12120
|
id: z.ZodString;
|
|
12121
12121
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -12137,16 +12137,16 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12137
12137
|
};
|
|
12138
12138
|
id: string;
|
|
12139
12139
|
totalBalances: Record<string, string>;
|
|
12140
|
-
investmentId?: string | undefined;
|
|
12141
12140
|
tokenAddress?: `0x${string}` | undefined;
|
|
12141
|
+
investmentId?: string | undefined;
|
|
12142
12142
|
}, {
|
|
12143
12143
|
data: {
|
|
12144
12144
|
apy: string;
|
|
12145
12145
|
};
|
|
12146
12146
|
id: string;
|
|
12147
12147
|
totalBalances: Record<string, string>;
|
|
12148
|
-
investmentId?: string | undefined;
|
|
12149
12148
|
tokenAddress?: string | undefined;
|
|
12149
|
+
investmentId?: string | undefined;
|
|
12150
12150
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
12151
12151
|
id: z.ZodString;
|
|
12152
12152
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -12155,7 +12155,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12155
12155
|
}, {
|
|
12156
12156
|
investmentId: z.ZodString;
|
|
12157
12157
|
data: z.ZodObject<{
|
|
12158
|
-
|
|
12158
|
+
stakerInfo: z.ZodObject<{
|
|
12159
12159
|
name: z.ZodOptional<z.ZodString>;
|
|
12160
12160
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
12161
12161
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -12182,7 +12182,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12182
12182
|
}>>;
|
|
12183
12183
|
apy: z.ZodOptional<z.ZodString>;
|
|
12184
12184
|
}, "strip", z.ZodTypeAny, {
|
|
12185
|
-
|
|
12185
|
+
stakerInfo: {
|
|
12186
12186
|
address: `0x${string}`;
|
|
12187
12187
|
name?: string | undefined;
|
|
12188
12188
|
iconUrl?: string | undefined;
|
|
@@ -12195,7 +12195,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12195
12195
|
withdrawableAfter: number;
|
|
12196
12196
|
} | undefined;
|
|
12197
12197
|
}, {
|
|
12198
|
-
|
|
12198
|
+
stakerInfo: {
|
|
12199
12199
|
address: string;
|
|
12200
12200
|
name?: string | undefined;
|
|
12201
12201
|
iconUrl?: string | undefined;
|
|
@@ -12210,7 +12210,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12210
12210
|
}>;
|
|
12211
12211
|
}>, "strip", z.ZodTypeAny, {
|
|
12212
12212
|
data: {
|
|
12213
|
-
|
|
12213
|
+
stakerInfo: {
|
|
12214
12214
|
address: `0x${string}`;
|
|
12215
12215
|
name?: string | undefined;
|
|
12216
12216
|
iconUrl?: string | undefined;
|
|
@@ -12229,7 +12229,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12229
12229
|
tokenAddress?: `0x${string}` | undefined;
|
|
12230
12230
|
}, {
|
|
12231
12231
|
data: {
|
|
12232
|
-
|
|
12232
|
+
stakerInfo: {
|
|
12233
12233
|
address: string;
|
|
12234
12234
|
name?: string | undefined;
|
|
12235
12235
|
iconUrl?: string | undefined;
|
|
@@ -12379,8 +12379,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12379
12379
|
id: string;
|
|
12380
12380
|
totalBalances: Record<string, string>;
|
|
12381
12381
|
tokenId: string;
|
|
12382
|
-
investmentId?: string | undefined;
|
|
12383
12382
|
tokenAddress?: `0x${string}` | undefined;
|
|
12383
|
+
investmentId?: string | undefined;
|
|
12384
12384
|
}, {
|
|
12385
12385
|
data: {
|
|
12386
12386
|
poolFeePercentage: string;
|
|
@@ -12405,8 +12405,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12405
12405
|
id: string;
|
|
12406
12406
|
totalBalances: Record<string, string>;
|
|
12407
12407
|
tokenId: string;
|
|
12408
|
-
investmentId?: string | undefined;
|
|
12409
12408
|
tokenAddress?: string | undefined;
|
|
12409
|
+
investmentId?: string | undefined;
|
|
12410
12410
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
12411
12411
|
id: z.ZodString;
|
|
12412
12412
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -12442,8 +12442,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12442
12442
|
};
|
|
12443
12443
|
id: string;
|
|
12444
12444
|
totalBalances: Record<string, string>;
|
|
12445
|
-
investmentId?: string | undefined;
|
|
12446
12445
|
tokenAddress?: `0x${string}` | undefined;
|
|
12446
|
+
investmentId?: string | undefined;
|
|
12447
12447
|
}, {
|
|
12448
12448
|
data: {
|
|
12449
12449
|
lending: boolean;
|
|
@@ -12454,8 +12454,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12454
12454
|
};
|
|
12455
12455
|
id: string;
|
|
12456
12456
|
totalBalances: Record<string, string>;
|
|
12457
|
-
investmentId?: string | undefined;
|
|
12458
12457
|
tokenAddress?: string | undefined;
|
|
12458
|
+
investmentId?: string | undefined;
|
|
12459
12459
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
12460
12460
|
id: z.ZodString;
|
|
12461
12461
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -12477,16 +12477,16 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12477
12477
|
};
|
|
12478
12478
|
id: string;
|
|
12479
12479
|
totalBalances: Record<string, string>;
|
|
12480
|
-
investmentId?: string | undefined;
|
|
12481
12480
|
tokenAddress?: `0x${string}` | undefined;
|
|
12481
|
+
investmentId?: string | undefined;
|
|
12482
12482
|
}, {
|
|
12483
12483
|
data: {
|
|
12484
12484
|
delegatingTo: string;
|
|
12485
12485
|
};
|
|
12486
12486
|
id: string;
|
|
12487
12487
|
totalBalances: Record<string, string>;
|
|
12488
|
-
investmentId?: string | undefined;
|
|
12489
12488
|
tokenAddress?: string | undefined;
|
|
12489
|
+
investmentId?: string | undefined;
|
|
12490
12490
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
12491
12491
|
id: z.ZodString;
|
|
12492
12492
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -12508,16 +12508,16 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12508
12508
|
};
|
|
12509
12509
|
id: string;
|
|
12510
12510
|
totalBalances: Record<string, string>;
|
|
12511
|
-
investmentId?: string | undefined;
|
|
12512
12511
|
tokenAddress?: `0x${string}` | undefined;
|
|
12512
|
+
investmentId?: string | undefined;
|
|
12513
12513
|
}, {
|
|
12514
12514
|
data: {
|
|
12515
12515
|
apy: string;
|
|
12516
12516
|
};
|
|
12517
12517
|
id: string;
|
|
12518
12518
|
totalBalances: Record<string, string>;
|
|
12519
|
-
investmentId?: string | undefined;
|
|
12520
12519
|
tokenAddress?: string | undefined;
|
|
12520
|
+
investmentId?: string | undefined;
|
|
12521
12521
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
12522
12522
|
id: z.ZodString;
|
|
12523
12523
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -12526,7 +12526,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12526
12526
|
}, {
|
|
12527
12527
|
investmentId: z.ZodString;
|
|
12528
12528
|
data: z.ZodObject<{
|
|
12529
|
-
|
|
12529
|
+
stakerInfo: z.ZodObject<{
|
|
12530
12530
|
name: z.ZodOptional<z.ZodString>;
|
|
12531
12531
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
12532
12532
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -12553,7 +12553,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12553
12553
|
}>>;
|
|
12554
12554
|
apy: z.ZodOptional<z.ZodString>;
|
|
12555
12555
|
}, "strip", z.ZodTypeAny, {
|
|
12556
|
-
|
|
12556
|
+
stakerInfo: {
|
|
12557
12557
|
address: `0x${string}`;
|
|
12558
12558
|
name?: string | undefined;
|
|
12559
12559
|
iconUrl?: string | undefined;
|
|
@@ -12566,7 +12566,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12566
12566
|
withdrawableAfter: number;
|
|
12567
12567
|
} | undefined;
|
|
12568
12568
|
}, {
|
|
12569
|
-
|
|
12569
|
+
stakerInfo: {
|
|
12570
12570
|
address: string;
|
|
12571
12571
|
name?: string | undefined;
|
|
12572
12572
|
iconUrl?: string | undefined;
|
|
@@ -12581,7 +12581,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12581
12581
|
}>;
|
|
12582
12582
|
}>, "strip", z.ZodTypeAny, {
|
|
12583
12583
|
data: {
|
|
12584
|
-
|
|
12584
|
+
stakerInfo: {
|
|
12585
12585
|
address: `0x${string}`;
|
|
12586
12586
|
name?: string | undefined;
|
|
12587
12587
|
iconUrl?: string | undefined;
|
|
@@ -12600,7 +12600,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12600
12600
|
tokenAddress?: `0x${string}` | undefined;
|
|
12601
12601
|
}, {
|
|
12602
12602
|
data: {
|
|
12603
|
-
|
|
12603
|
+
stakerInfo: {
|
|
12604
12604
|
address: string;
|
|
12605
12605
|
name?: string | undefined;
|
|
12606
12606
|
iconUrl?: string | undefined;
|
|
@@ -12750,8 +12750,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12750
12750
|
id: string;
|
|
12751
12751
|
totalBalances: Record<string, string>;
|
|
12752
12752
|
tokenId: string;
|
|
12753
|
-
investmentId?: string | undefined;
|
|
12754
12753
|
tokenAddress?: `0x${string}` | undefined;
|
|
12754
|
+
investmentId?: string | undefined;
|
|
12755
12755
|
}, {
|
|
12756
12756
|
data: {
|
|
12757
12757
|
poolFeePercentage: string;
|
|
@@ -12776,8 +12776,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12776
12776
|
id: string;
|
|
12777
12777
|
totalBalances: Record<string, string>;
|
|
12778
12778
|
tokenId: string;
|
|
12779
|
-
investmentId?: string | undefined;
|
|
12780
12779
|
tokenAddress?: string | undefined;
|
|
12780
|
+
investmentId?: string | undefined;
|
|
12781
12781
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
12782
12782
|
id: z.ZodString;
|
|
12783
12783
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -12813,8 +12813,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12813
12813
|
};
|
|
12814
12814
|
id: string;
|
|
12815
12815
|
totalBalances: Record<string, string>;
|
|
12816
|
-
investmentId?: string | undefined;
|
|
12817
12816
|
tokenAddress?: `0x${string}` | undefined;
|
|
12817
|
+
investmentId?: string | undefined;
|
|
12818
12818
|
}, {
|
|
12819
12819
|
data: {
|
|
12820
12820
|
lending: boolean;
|
|
@@ -12825,8 +12825,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12825
12825
|
};
|
|
12826
12826
|
id: string;
|
|
12827
12827
|
totalBalances: Record<string, string>;
|
|
12828
|
-
investmentId?: string | undefined;
|
|
12829
12828
|
tokenAddress?: string | undefined;
|
|
12829
|
+
investmentId?: string | undefined;
|
|
12830
12830
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
12831
12831
|
id: z.ZodString;
|
|
12832
12832
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -12848,16 +12848,16 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12848
12848
|
};
|
|
12849
12849
|
id: string;
|
|
12850
12850
|
totalBalances: Record<string, string>;
|
|
12851
|
-
investmentId?: string | undefined;
|
|
12852
12851
|
tokenAddress?: `0x${string}` | undefined;
|
|
12852
|
+
investmentId?: string | undefined;
|
|
12853
12853
|
}, {
|
|
12854
12854
|
data: {
|
|
12855
12855
|
delegatingTo: string;
|
|
12856
12856
|
};
|
|
12857
12857
|
id: string;
|
|
12858
12858
|
totalBalances: Record<string, string>;
|
|
12859
|
-
investmentId?: string | undefined;
|
|
12860
12859
|
tokenAddress?: string | undefined;
|
|
12860
|
+
investmentId?: string | undefined;
|
|
12861
12861
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
12862
12862
|
id: z.ZodString;
|
|
12863
12863
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -12879,16 +12879,16 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12879
12879
|
};
|
|
12880
12880
|
id: string;
|
|
12881
12881
|
totalBalances: Record<string, string>;
|
|
12882
|
-
investmentId?: string | undefined;
|
|
12883
12882
|
tokenAddress?: `0x${string}` | undefined;
|
|
12883
|
+
investmentId?: string | undefined;
|
|
12884
12884
|
}, {
|
|
12885
12885
|
data: {
|
|
12886
12886
|
apy: string;
|
|
12887
12887
|
};
|
|
12888
12888
|
id: string;
|
|
12889
12889
|
totalBalances: Record<string, string>;
|
|
12890
|
-
investmentId?: string | undefined;
|
|
12891
12890
|
tokenAddress?: string | undefined;
|
|
12891
|
+
investmentId?: string | undefined;
|
|
12892
12892
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
12893
12893
|
id: z.ZodString;
|
|
12894
12894
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -12897,7 +12897,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12897
12897
|
}, {
|
|
12898
12898
|
investmentId: z.ZodString;
|
|
12899
12899
|
data: z.ZodObject<{
|
|
12900
|
-
|
|
12900
|
+
stakerInfo: z.ZodObject<{
|
|
12901
12901
|
name: z.ZodOptional<z.ZodString>;
|
|
12902
12902
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
12903
12903
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -12924,7 +12924,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12924
12924
|
}>>;
|
|
12925
12925
|
apy: z.ZodOptional<z.ZodString>;
|
|
12926
12926
|
}, "strip", z.ZodTypeAny, {
|
|
12927
|
-
|
|
12927
|
+
stakerInfo: {
|
|
12928
12928
|
address: `0x${string}`;
|
|
12929
12929
|
name?: string | undefined;
|
|
12930
12930
|
iconUrl?: string | undefined;
|
|
@@ -12937,7 +12937,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12937
12937
|
withdrawableAfter: number;
|
|
12938
12938
|
} | undefined;
|
|
12939
12939
|
}, {
|
|
12940
|
-
|
|
12940
|
+
stakerInfo: {
|
|
12941
12941
|
address: string;
|
|
12942
12942
|
name?: string | undefined;
|
|
12943
12943
|
iconUrl?: string | undefined;
|
|
@@ -12952,7 +12952,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12952
12952
|
}>;
|
|
12953
12953
|
}>, "strip", z.ZodTypeAny, {
|
|
12954
12954
|
data: {
|
|
12955
|
-
|
|
12955
|
+
stakerInfo: {
|
|
12956
12956
|
address: `0x${string}`;
|
|
12957
12957
|
name?: string | undefined;
|
|
12958
12958
|
iconUrl?: string | undefined;
|
|
@@ -12971,7 +12971,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12971
12971
|
tokenAddress?: `0x${string}` | undefined;
|
|
12972
12972
|
}, {
|
|
12973
12973
|
data: {
|
|
12974
|
-
|
|
12974
|
+
stakerInfo: {
|
|
12975
12975
|
address: string;
|
|
12976
12976
|
name?: string | undefined;
|
|
12977
12977
|
iconUrl?: string | undefined;
|
|
@@ -13121,8 +13121,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13121
13121
|
id: string;
|
|
13122
13122
|
totalBalances: Record<string, string>;
|
|
13123
13123
|
tokenId: string;
|
|
13124
|
-
investmentId?: string | undefined;
|
|
13125
13124
|
tokenAddress?: `0x${string}` | undefined;
|
|
13125
|
+
investmentId?: string | undefined;
|
|
13126
13126
|
}, {
|
|
13127
13127
|
data: {
|
|
13128
13128
|
poolFeePercentage: string;
|
|
@@ -13147,8 +13147,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13147
13147
|
id: string;
|
|
13148
13148
|
totalBalances: Record<string, string>;
|
|
13149
13149
|
tokenId: string;
|
|
13150
|
-
investmentId?: string | undefined;
|
|
13151
13150
|
tokenAddress?: string | undefined;
|
|
13151
|
+
investmentId?: string | undefined;
|
|
13152
13152
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
13153
13153
|
id: z.ZodString;
|
|
13154
13154
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -13184,8 +13184,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13184
13184
|
};
|
|
13185
13185
|
id: string;
|
|
13186
13186
|
totalBalances: Record<string, string>;
|
|
13187
|
-
investmentId?: string | undefined;
|
|
13188
13187
|
tokenAddress?: `0x${string}` | undefined;
|
|
13188
|
+
investmentId?: string | undefined;
|
|
13189
13189
|
}, {
|
|
13190
13190
|
data: {
|
|
13191
13191
|
lending: boolean;
|
|
@@ -13196,8 +13196,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13196
13196
|
};
|
|
13197
13197
|
id: string;
|
|
13198
13198
|
totalBalances: Record<string, string>;
|
|
13199
|
-
investmentId?: string | undefined;
|
|
13200
13199
|
tokenAddress?: string | undefined;
|
|
13200
|
+
investmentId?: string | undefined;
|
|
13201
13201
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
13202
13202
|
id: z.ZodString;
|
|
13203
13203
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -13219,16 +13219,16 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13219
13219
|
};
|
|
13220
13220
|
id: string;
|
|
13221
13221
|
totalBalances: Record<string, string>;
|
|
13222
|
-
investmentId?: string | undefined;
|
|
13223
13222
|
tokenAddress?: `0x${string}` | undefined;
|
|
13223
|
+
investmentId?: string | undefined;
|
|
13224
13224
|
}, {
|
|
13225
13225
|
data: {
|
|
13226
13226
|
delegatingTo: string;
|
|
13227
13227
|
};
|
|
13228
13228
|
id: string;
|
|
13229
13229
|
totalBalances: Record<string, string>;
|
|
13230
|
-
investmentId?: string | undefined;
|
|
13231
13230
|
tokenAddress?: string | undefined;
|
|
13231
|
+
investmentId?: string | undefined;
|
|
13232
13232
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
13233
13233
|
id: z.ZodString;
|
|
13234
13234
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -13250,16 +13250,16 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13250
13250
|
};
|
|
13251
13251
|
id: string;
|
|
13252
13252
|
totalBalances: Record<string, string>;
|
|
13253
|
-
investmentId?: string | undefined;
|
|
13254
13253
|
tokenAddress?: `0x${string}` | undefined;
|
|
13254
|
+
investmentId?: string | undefined;
|
|
13255
13255
|
}, {
|
|
13256
13256
|
data: {
|
|
13257
13257
|
apy: string;
|
|
13258
13258
|
};
|
|
13259
13259
|
id: string;
|
|
13260
13260
|
totalBalances: Record<string, string>;
|
|
13261
|
-
investmentId?: string | undefined;
|
|
13262
13261
|
tokenAddress?: string | undefined;
|
|
13262
|
+
investmentId?: string | undefined;
|
|
13263
13263
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
13264
13264
|
id: z.ZodString;
|
|
13265
13265
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -13268,7 +13268,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13268
13268
|
}, {
|
|
13269
13269
|
investmentId: z.ZodString;
|
|
13270
13270
|
data: z.ZodObject<{
|
|
13271
|
-
|
|
13271
|
+
stakerInfo: z.ZodObject<{
|
|
13272
13272
|
name: z.ZodOptional<z.ZodString>;
|
|
13273
13273
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
13274
13274
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -13295,7 +13295,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13295
13295
|
}>>;
|
|
13296
13296
|
apy: z.ZodOptional<z.ZodString>;
|
|
13297
13297
|
}, "strip", z.ZodTypeAny, {
|
|
13298
|
-
|
|
13298
|
+
stakerInfo: {
|
|
13299
13299
|
address: `0x${string}`;
|
|
13300
13300
|
name?: string | undefined;
|
|
13301
13301
|
iconUrl?: string | undefined;
|
|
@@ -13308,7 +13308,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13308
13308
|
withdrawableAfter: number;
|
|
13309
13309
|
} | undefined;
|
|
13310
13310
|
}, {
|
|
13311
|
-
|
|
13311
|
+
stakerInfo: {
|
|
13312
13312
|
address: string;
|
|
13313
13313
|
name?: string | undefined;
|
|
13314
13314
|
iconUrl?: string | undefined;
|
|
@@ -13323,7 +13323,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13323
13323
|
}>;
|
|
13324
13324
|
}>, "strip", z.ZodTypeAny, {
|
|
13325
13325
|
data: {
|
|
13326
|
-
|
|
13326
|
+
stakerInfo: {
|
|
13327
13327
|
address: `0x${string}`;
|
|
13328
13328
|
name?: string | undefined;
|
|
13329
13329
|
iconUrl?: string | undefined;
|
|
@@ -13342,7 +13342,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13342
13342
|
tokenAddress?: `0x${string}` | undefined;
|
|
13343
13343
|
}, {
|
|
13344
13344
|
data: {
|
|
13345
|
-
|
|
13345
|
+
stakerInfo: {
|
|
13346
13346
|
address: string;
|
|
13347
13347
|
name?: string | undefined;
|
|
13348
13348
|
iconUrl?: string | undefined;
|
|
@@ -13492,8 +13492,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13492
13492
|
id: string;
|
|
13493
13493
|
totalBalances: Record<string, string>;
|
|
13494
13494
|
tokenId: string;
|
|
13495
|
-
investmentId?: string | undefined;
|
|
13496
13495
|
tokenAddress?: `0x${string}` | undefined;
|
|
13496
|
+
investmentId?: string | undefined;
|
|
13497
13497
|
}, {
|
|
13498
13498
|
data: {
|
|
13499
13499
|
poolFeePercentage: string;
|
|
@@ -13518,8 +13518,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13518
13518
|
id: string;
|
|
13519
13519
|
totalBalances: Record<string, string>;
|
|
13520
13520
|
tokenId: string;
|
|
13521
|
-
investmentId?: string | undefined;
|
|
13522
13521
|
tokenAddress?: string | undefined;
|
|
13522
|
+
investmentId?: string | undefined;
|
|
13523
13523
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
13524
13524
|
id: z.ZodString;
|
|
13525
13525
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -13555,8 +13555,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13555
13555
|
};
|
|
13556
13556
|
id: string;
|
|
13557
13557
|
totalBalances: Record<string, string>;
|
|
13558
|
-
investmentId?: string | undefined;
|
|
13559
13558
|
tokenAddress?: `0x${string}` | undefined;
|
|
13559
|
+
investmentId?: string | undefined;
|
|
13560
13560
|
}, {
|
|
13561
13561
|
data: {
|
|
13562
13562
|
lending: boolean;
|
|
@@ -13567,8 +13567,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13567
13567
|
};
|
|
13568
13568
|
id: string;
|
|
13569
13569
|
totalBalances: Record<string, string>;
|
|
13570
|
-
investmentId?: string | undefined;
|
|
13571
13570
|
tokenAddress?: string | undefined;
|
|
13571
|
+
investmentId?: string | undefined;
|
|
13572
13572
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
13573
13573
|
id: z.ZodString;
|
|
13574
13574
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -13590,16 +13590,16 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13590
13590
|
};
|
|
13591
13591
|
id: string;
|
|
13592
13592
|
totalBalances: Record<string, string>;
|
|
13593
|
-
investmentId?: string | undefined;
|
|
13594
13593
|
tokenAddress?: `0x${string}` | undefined;
|
|
13594
|
+
investmentId?: string | undefined;
|
|
13595
13595
|
}, {
|
|
13596
13596
|
data: {
|
|
13597
13597
|
delegatingTo: string;
|
|
13598
13598
|
};
|
|
13599
13599
|
id: string;
|
|
13600
13600
|
totalBalances: Record<string, string>;
|
|
13601
|
-
investmentId?: string | undefined;
|
|
13602
13601
|
tokenAddress?: string | undefined;
|
|
13602
|
+
investmentId?: string | undefined;
|
|
13603
13603
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
13604
13604
|
id: z.ZodString;
|
|
13605
13605
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -13621,16 +13621,16 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13621
13621
|
};
|
|
13622
13622
|
id: string;
|
|
13623
13623
|
totalBalances: Record<string, string>;
|
|
13624
|
-
investmentId?: string | undefined;
|
|
13625
13624
|
tokenAddress?: `0x${string}` | undefined;
|
|
13625
|
+
investmentId?: string | undefined;
|
|
13626
13626
|
}, {
|
|
13627
13627
|
data: {
|
|
13628
13628
|
apy: string;
|
|
13629
13629
|
};
|
|
13630
13630
|
id: string;
|
|
13631
13631
|
totalBalances: Record<string, string>;
|
|
13632
|
-
investmentId?: string | undefined;
|
|
13633
13632
|
tokenAddress?: string | undefined;
|
|
13633
|
+
investmentId?: string | undefined;
|
|
13634
13634
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
13635
13635
|
id: z.ZodString;
|
|
13636
13636
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -13639,7 +13639,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13639
13639
|
}, {
|
|
13640
13640
|
investmentId: z.ZodString;
|
|
13641
13641
|
data: z.ZodObject<{
|
|
13642
|
-
|
|
13642
|
+
stakerInfo: z.ZodObject<{
|
|
13643
13643
|
name: z.ZodOptional<z.ZodString>;
|
|
13644
13644
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
13645
13645
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -13666,7 +13666,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13666
13666
|
}>>;
|
|
13667
13667
|
apy: z.ZodOptional<z.ZodString>;
|
|
13668
13668
|
}, "strip", z.ZodTypeAny, {
|
|
13669
|
-
|
|
13669
|
+
stakerInfo: {
|
|
13670
13670
|
address: `0x${string}`;
|
|
13671
13671
|
name?: string | undefined;
|
|
13672
13672
|
iconUrl?: string | undefined;
|
|
@@ -13679,7 +13679,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13679
13679
|
withdrawableAfter: number;
|
|
13680
13680
|
} | undefined;
|
|
13681
13681
|
}, {
|
|
13682
|
-
|
|
13682
|
+
stakerInfo: {
|
|
13683
13683
|
address: string;
|
|
13684
13684
|
name?: string | undefined;
|
|
13685
13685
|
iconUrl?: string | undefined;
|
|
@@ -13694,7 +13694,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13694
13694
|
}>;
|
|
13695
13695
|
}>, "strip", z.ZodTypeAny, {
|
|
13696
13696
|
data: {
|
|
13697
|
-
|
|
13697
|
+
stakerInfo: {
|
|
13698
13698
|
address: `0x${string}`;
|
|
13699
13699
|
name?: string | undefined;
|
|
13700
13700
|
iconUrl?: string | undefined;
|
|
@@ -13713,7 +13713,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13713
13713
|
tokenAddress?: `0x${string}` | undefined;
|
|
13714
13714
|
}, {
|
|
13715
13715
|
data: {
|
|
13716
|
-
|
|
13716
|
+
stakerInfo: {
|
|
13717
13717
|
address: string;
|
|
13718
13718
|
name?: string | undefined;
|
|
13719
13719
|
iconUrl?: string | undefined;
|
|
@@ -13867,8 +13867,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13867
13867
|
id: string;
|
|
13868
13868
|
totalBalances: Record<string, string>;
|
|
13869
13869
|
tokenId: string;
|
|
13870
|
-
investmentId?: string | undefined;
|
|
13871
13870
|
tokenAddress?: `0x${string}` | undefined;
|
|
13871
|
+
investmentId?: string | undefined;
|
|
13872
13872
|
}, {
|
|
13873
13873
|
data: {
|
|
13874
13874
|
poolFeePercentage: string;
|
|
@@ -13893,8 +13893,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13893
13893
|
id: string;
|
|
13894
13894
|
totalBalances: Record<string, string>;
|
|
13895
13895
|
tokenId: string;
|
|
13896
|
-
investmentId?: string | undefined;
|
|
13897
13896
|
tokenAddress?: string | undefined;
|
|
13897
|
+
investmentId?: string | undefined;
|
|
13898
13898
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
13899
13899
|
id: z.ZodString;
|
|
13900
13900
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -13930,8 +13930,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13930
13930
|
};
|
|
13931
13931
|
id: string;
|
|
13932
13932
|
totalBalances: Record<string, string>;
|
|
13933
|
-
investmentId?: string | undefined;
|
|
13934
13933
|
tokenAddress?: `0x${string}` | undefined;
|
|
13934
|
+
investmentId?: string | undefined;
|
|
13935
13935
|
}, {
|
|
13936
13936
|
data: {
|
|
13937
13937
|
lending: boolean;
|
|
@@ -13942,8 +13942,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13942
13942
|
};
|
|
13943
13943
|
id: string;
|
|
13944
13944
|
totalBalances: Record<string, string>;
|
|
13945
|
-
investmentId?: string | undefined;
|
|
13946
13945
|
tokenAddress?: string | undefined;
|
|
13946
|
+
investmentId?: string | undefined;
|
|
13947
13947
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
13948
13948
|
id: z.ZodString;
|
|
13949
13949
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -13965,16 +13965,16 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13965
13965
|
};
|
|
13966
13966
|
id: string;
|
|
13967
13967
|
totalBalances: Record<string, string>;
|
|
13968
|
-
investmentId?: string | undefined;
|
|
13969
13968
|
tokenAddress?: `0x${string}` | undefined;
|
|
13969
|
+
investmentId?: string | undefined;
|
|
13970
13970
|
}, {
|
|
13971
13971
|
data: {
|
|
13972
13972
|
delegatingTo: string;
|
|
13973
13973
|
};
|
|
13974
13974
|
id: string;
|
|
13975
13975
|
totalBalances: Record<string, string>;
|
|
13976
|
-
investmentId?: string | undefined;
|
|
13977
13976
|
tokenAddress?: string | undefined;
|
|
13977
|
+
investmentId?: string | undefined;
|
|
13978
13978
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
13979
13979
|
id: z.ZodString;
|
|
13980
13980
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -13996,16 +13996,16 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13996
13996
|
};
|
|
13997
13997
|
id: string;
|
|
13998
13998
|
totalBalances: Record<string, string>;
|
|
13999
|
-
investmentId?: string | undefined;
|
|
14000
13999
|
tokenAddress?: `0x${string}` | undefined;
|
|
14000
|
+
investmentId?: string | undefined;
|
|
14001
14001
|
}, {
|
|
14002
14002
|
data: {
|
|
14003
14003
|
apy: string;
|
|
14004
14004
|
};
|
|
14005
14005
|
id: string;
|
|
14006
14006
|
totalBalances: Record<string, string>;
|
|
14007
|
-
investmentId?: string | undefined;
|
|
14008
14007
|
tokenAddress?: string | undefined;
|
|
14008
|
+
investmentId?: string | undefined;
|
|
14009
14009
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
14010
14010
|
id: z.ZodString;
|
|
14011
14011
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -14014,7 +14014,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14014
14014
|
}, {
|
|
14015
14015
|
investmentId: z.ZodString;
|
|
14016
14016
|
data: z.ZodObject<{
|
|
14017
|
-
|
|
14017
|
+
stakerInfo: z.ZodObject<{
|
|
14018
14018
|
name: z.ZodOptional<z.ZodString>;
|
|
14019
14019
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
14020
14020
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -14041,7 +14041,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14041
14041
|
}>>;
|
|
14042
14042
|
apy: z.ZodOptional<z.ZodString>;
|
|
14043
14043
|
}, "strip", z.ZodTypeAny, {
|
|
14044
|
-
|
|
14044
|
+
stakerInfo: {
|
|
14045
14045
|
address: `0x${string}`;
|
|
14046
14046
|
name?: string | undefined;
|
|
14047
14047
|
iconUrl?: string | undefined;
|
|
@@ -14054,7 +14054,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14054
14054
|
withdrawableAfter: number;
|
|
14055
14055
|
} | undefined;
|
|
14056
14056
|
}, {
|
|
14057
|
-
|
|
14057
|
+
stakerInfo: {
|
|
14058
14058
|
address: string;
|
|
14059
14059
|
name?: string | undefined;
|
|
14060
14060
|
iconUrl?: string | undefined;
|
|
@@ -14069,7 +14069,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14069
14069
|
}>;
|
|
14070
14070
|
}>, "strip", z.ZodTypeAny, {
|
|
14071
14071
|
data: {
|
|
14072
|
-
|
|
14072
|
+
stakerInfo: {
|
|
14073
14073
|
address: `0x${string}`;
|
|
14074
14074
|
name?: string | undefined;
|
|
14075
14075
|
iconUrl?: string | undefined;
|
|
@@ -14088,7 +14088,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14088
14088
|
tokenAddress?: `0x${string}` | undefined;
|
|
14089
14089
|
}, {
|
|
14090
14090
|
data: {
|
|
14091
|
-
|
|
14091
|
+
stakerInfo: {
|
|
14092
14092
|
address: string;
|
|
14093
14093
|
name?: string | undefined;
|
|
14094
14094
|
iconUrl?: string | undefined;
|
|
@@ -14241,8 +14241,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14241
14241
|
id: string;
|
|
14242
14242
|
totalBalances: Record<string, string>;
|
|
14243
14243
|
tokenId: string;
|
|
14244
|
-
investmentId?: string | undefined;
|
|
14245
14244
|
tokenAddress?: `0x${string}` | undefined;
|
|
14245
|
+
investmentId?: string | undefined;
|
|
14246
14246
|
}, {
|
|
14247
14247
|
data: {
|
|
14248
14248
|
poolFeePercentage: string;
|
|
@@ -14267,8 +14267,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14267
14267
|
id: string;
|
|
14268
14268
|
totalBalances: Record<string, string>;
|
|
14269
14269
|
tokenId: string;
|
|
14270
|
-
investmentId?: string | undefined;
|
|
14271
14270
|
tokenAddress?: string | undefined;
|
|
14271
|
+
investmentId?: string | undefined;
|
|
14272
14272
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
14273
14273
|
id: z.ZodString;
|
|
14274
14274
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -14304,8 +14304,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14304
14304
|
};
|
|
14305
14305
|
id: string;
|
|
14306
14306
|
totalBalances: Record<string, string>;
|
|
14307
|
-
investmentId?: string | undefined;
|
|
14308
14307
|
tokenAddress?: `0x${string}` | undefined;
|
|
14308
|
+
investmentId?: string | undefined;
|
|
14309
14309
|
}, {
|
|
14310
14310
|
data: {
|
|
14311
14311
|
lending: boolean;
|
|
@@ -14316,8 +14316,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14316
14316
|
};
|
|
14317
14317
|
id: string;
|
|
14318
14318
|
totalBalances: Record<string, string>;
|
|
14319
|
-
investmentId?: string | undefined;
|
|
14320
14319
|
tokenAddress?: string | undefined;
|
|
14320
|
+
investmentId?: string | undefined;
|
|
14321
14321
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
14322
14322
|
id: z.ZodString;
|
|
14323
14323
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -14339,16 +14339,16 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14339
14339
|
};
|
|
14340
14340
|
id: string;
|
|
14341
14341
|
totalBalances: Record<string, string>;
|
|
14342
|
-
investmentId?: string | undefined;
|
|
14343
14342
|
tokenAddress?: `0x${string}` | undefined;
|
|
14343
|
+
investmentId?: string | undefined;
|
|
14344
14344
|
}, {
|
|
14345
14345
|
data: {
|
|
14346
14346
|
delegatingTo: string;
|
|
14347
14347
|
};
|
|
14348
14348
|
id: string;
|
|
14349
14349
|
totalBalances: Record<string, string>;
|
|
14350
|
-
investmentId?: string | undefined;
|
|
14351
14350
|
tokenAddress?: string | undefined;
|
|
14351
|
+
investmentId?: string | undefined;
|
|
14352
14352
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
14353
14353
|
id: z.ZodString;
|
|
14354
14354
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -14370,16 +14370,16 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14370
14370
|
};
|
|
14371
14371
|
id: string;
|
|
14372
14372
|
totalBalances: Record<string, string>;
|
|
14373
|
-
investmentId?: string | undefined;
|
|
14374
14373
|
tokenAddress?: `0x${string}` | undefined;
|
|
14374
|
+
investmentId?: string | undefined;
|
|
14375
14375
|
}, {
|
|
14376
14376
|
data: {
|
|
14377
14377
|
apy: string;
|
|
14378
14378
|
};
|
|
14379
14379
|
id: string;
|
|
14380
14380
|
totalBalances: Record<string, string>;
|
|
14381
|
-
investmentId?: string | undefined;
|
|
14382
14381
|
tokenAddress?: string | undefined;
|
|
14382
|
+
investmentId?: string | undefined;
|
|
14383
14383
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
14384
14384
|
id: z.ZodString;
|
|
14385
14385
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -14388,7 +14388,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14388
14388
|
}, {
|
|
14389
14389
|
investmentId: z.ZodString;
|
|
14390
14390
|
data: z.ZodObject<{
|
|
14391
|
-
|
|
14391
|
+
stakerInfo: z.ZodObject<{
|
|
14392
14392
|
name: z.ZodOptional<z.ZodString>;
|
|
14393
14393
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
14394
14394
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -14415,7 +14415,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14415
14415
|
}>>;
|
|
14416
14416
|
apy: z.ZodOptional<z.ZodString>;
|
|
14417
14417
|
}, "strip", z.ZodTypeAny, {
|
|
14418
|
-
|
|
14418
|
+
stakerInfo: {
|
|
14419
14419
|
address: `0x${string}`;
|
|
14420
14420
|
name?: string | undefined;
|
|
14421
14421
|
iconUrl?: string | undefined;
|
|
@@ -14428,7 +14428,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14428
14428
|
withdrawableAfter: number;
|
|
14429
14429
|
} | undefined;
|
|
14430
14430
|
}, {
|
|
14431
|
-
|
|
14431
|
+
stakerInfo: {
|
|
14432
14432
|
address: string;
|
|
14433
14433
|
name?: string | undefined;
|
|
14434
14434
|
iconUrl?: string | undefined;
|
|
@@ -14443,7 +14443,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14443
14443
|
}>;
|
|
14444
14444
|
}>, "strip", z.ZodTypeAny, {
|
|
14445
14445
|
data: {
|
|
14446
|
-
|
|
14446
|
+
stakerInfo: {
|
|
14447
14447
|
address: `0x${string}`;
|
|
14448
14448
|
name?: string | undefined;
|
|
14449
14449
|
iconUrl?: string | undefined;
|
|
@@ -14462,7 +14462,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14462
14462
|
tokenAddress?: `0x${string}` | undefined;
|
|
14463
14463
|
}, {
|
|
14464
14464
|
data: {
|
|
14465
|
-
|
|
14465
|
+
stakerInfo: {
|
|
14466
14466
|
address: string;
|
|
14467
14467
|
name?: string | undefined;
|
|
14468
14468
|
iconUrl?: string | undefined;
|
|
@@ -14617,8 +14617,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14617
14617
|
id: string;
|
|
14618
14618
|
totalBalances: Record<string, string>;
|
|
14619
14619
|
tokenId: string;
|
|
14620
|
-
investmentId?: string | undefined;
|
|
14621
14620
|
tokenAddress?: `0x${string}` | undefined;
|
|
14621
|
+
investmentId?: string | undefined;
|
|
14622
14622
|
}, {
|
|
14623
14623
|
data: {
|
|
14624
14624
|
poolFeePercentage: string;
|
|
@@ -14643,8 +14643,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14643
14643
|
id: string;
|
|
14644
14644
|
totalBalances: Record<string, string>;
|
|
14645
14645
|
tokenId: string;
|
|
14646
|
-
investmentId?: string | undefined;
|
|
14647
14646
|
tokenAddress?: string | undefined;
|
|
14647
|
+
investmentId?: string | undefined;
|
|
14648
14648
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
14649
14649
|
id: z.ZodString;
|
|
14650
14650
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -14680,8 +14680,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14680
14680
|
};
|
|
14681
14681
|
id: string;
|
|
14682
14682
|
totalBalances: Record<string, string>;
|
|
14683
|
-
investmentId?: string | undefined;
|
|
14684
14683
|
tokenAddress?: `0x${string}` | undefined;
|
|
14684
|
+
investmentId?: string | undefined;
|
|
14685
14685
|
}, {
|
|
14686
14686
|
data: {
|
|
14687
14687
|
lending: boolean;
|
|
@@ -14692,8 +14692,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14692
14692
|
};
|
|
14693
14693
|
id: string;
|
|
14694
14694
|
totalBalances: Record<string, string>;
|
|
14695
|
-
investmentId?: string | undefined;
|
|
14696
14695
|
tokenAddress?: string | undefined;
|
|
14696
|
+
investmentId?: string | undefined;
|
|
14697
14697
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
14698
14698
|
id: z.ZodString;
|
|
14699
14699
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -14715,16 +14715,16 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14715
14715
|
};
|
|
14716
14716
|
id: string;
|
|
14717
14717
|
totalBalances: Record<string, string>;
|
|
14718
|
-
investmentId?: string | undefined;
|
|
14719
14718
|
tokenAddress?: `0x${string}` | undefined;
|
|
14719
|
+
investmentId?: string | undefined;
|
|
14720
14720
|
}, {
|
|
14721
14721
|
data: {
|
|
14722
14722
|
delegatingTo: string;
|
|
14723
14723
|
};
|
|
14724
14724
|
id: string;
|
|
14725
14725
|
totalBalances: Record<string, string>;
|
|
14726
|
-
investmentId?: string | undefined;
|
|
14727
14726
|
tokenAddress?: string | undefined;
|
|
14727
|
+
investmentId?: string | undefined;
|
|
14728
14728
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
14729
14729
|
id: z.ZodString;
|
|
14730
14730
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -14746,16 +14746,16 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14746
14746
|
};
|
|
14747
14747
|
id: string;
|
|
14748
14748
|
totalBalances: Record<string, string>;
|
|
14749
|
-
investmentId?: string | undefined;
|
|
14750
14749
|
tokenAddress?: `0x${string}` | undefined;
|
|
14750
|
+
investmentId?: string | undefined;
|
|
14751
14751
|
}, {
|
|
14752
14752
|
data: {
|
|
14753
14753
|
apy: string;
|
|
14754
14754
|
};
|
|
14755
14755
|
id: string;
|
|
14756
14756
|
totalBalances: Record<string, string>;
|
|
14757
|
-
investmentId?: string | undefined;
|
|
14758
14757
|
tokenAddress?: string | undefined;
|
|
14758
|
+
investmentId?: string | undefined;
|
|
14759
14759
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
14760
14760
|
id: z.ZodString;
|
|
14761
14761
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -14764,7 +14764,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14764
14764
|
}, {
|
|
14765
14765
|
investmentId: z.ZodString;
|
|
14766
14766
|
data: z.ZodObject<{
|
|
14767
|
-
|
|
14767
|
+
stakerInfo: z.ZodObject<{
|
|
14768
14768
|
name: z.ZodOptional<z.ZodString>;
|
|
14769
14769
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
14770
14770
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -14791,7 +14791,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14791
14791
|
}>>;
|
|
14792
14792
|
apy: z.ZodOptional<z.ZodString>;
|
|
14793
14793
|
}, "strip", z.ZodTypeAny, {
|
|
14794
|
-
|
|
14794
|
+
stakerInfo: {
|
|
14795
14795
|
address: `0x${string}`;
|
|
14796
14796
|
name?: string | undefined;
|
|
14797
14797
|
iconUrl?: string | undefined;
|
|
@@ -14804,7 +14804,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14804
14804
|
withdrawableAfter: number;
|
|
14805
14805
|
} | undefined;
|
|
14806
14806
|
}, {
|
|
14807
|
-
|
|
14807
|
+
stakerInfo: {
|
|
14808
14808
|
address: string;
|
|
14809
14809
|
name?: string | undefined;
|
|
14810
14810
|
iconUrl?: string | undefined;
|
|
@@ -14819,7 +14819,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14819
14819
|
}>;
|
|
14820
14820
|
}>, "strip", z.ZodTypeAny, {
|
|
14821
14821
|
data: {
|
|
14822
|
-
|
|
14822
|
+
stakerInfo: {
|
|
14823
14823
|
address: `0x${string}`;
|
|
14824
14824
|
name?: string | undefined;
|
|
14825
14825
|
iconUrl?: string | undefined;
|
|
@@ -14838,7 +14838,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14838
14838
|
tokenAddress?: `0x${string}` | undefined;
|
|
14839
14839
|
}, {
|
|
14840
14840
|
data: {
|
|
14841
|
-
|
|
14841
|
+
stakerInfo: {
|
|
14842
14842
|
address: string;
|
|
14843
14843
|
name?: string | undefined;
|
|
14844
14844
|
iconUrl?: string | undefined;
|
|
@@ -14993,8 +14993,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14993
14993
|
id: string;
|
|
14994
14994
|
totalBalances: Record<string, string>;
|
|
14995
14995
|
tokenId: string;
|
|
14996
|
-
investmentId?: string | undefined;
|
|
14997
14996
|
tokenAddress?: `0x${string}` | undefined;
|
|
14997
|
+
investmentId?: string | undefined;
|
|
14998
14998
|
}, {
|
|
14999
14999
|
data: {
|
|
15000
15000
|
poolFeePercentage: string;
|
|
@@ -15019,8 +15019,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
15019
15019
|
id: string;
|
|
15020
15020
|
totalBalances: Record<string, string>;
|
|
15021
15021
|
tokenId: string;
|
|
15022
|
-
investmentId?: string | undefined;
|
|
15023
15022
|
tokenAddress?: string | undefined;
|
|
15023
|
+
investmentId?: string | undefined;
|
|
15024
15024
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
15025
15025
|
id: z.ZodString;
|
|
15026
15026
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -15056,8 +15056,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
15056
15056
|
};
|
|
15057
15057
|
id: string;
|
|
15058
15058
|
totalBalances: Record<string, string>;
|
|
15059
|
-
investmentId?: string | undefined;
|
|
15060
15059
|
tokenAddress?: `0x${string}` | undefined;
|
|
15060
|
+
investmentId?: string | undefined;
|
|
15061
15061
|
}, {
|
|
15062
15062
|
data: {
|
|
15063
15063
|
lending: boolean;
|
|
@@ -15068,8 +15068,8 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
15068
15068
|
};
|
|
15069
15069
|
id: string;
|
|
15070
15070
|
totalBalances: Record<string, string>;
|
|
15071
|
-
investmentId?: string | undefined;
|
|
15072
15071
|
tokenAddress?: string | undefined;
|
|
15072
|
+
investmentId?: string | undefined;
|
|
15073
15073
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
15074
15074
|
id: z.ZodString;
|
|
15075
15075
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -15091,16 +15091,16 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
15091
15091
|
};
|
|
15092
15092
|
id: string;
|
|
15093
15093
|
totalBalances: Record<string, string>;
|
|
15094
|
-
investmentId?: string | undefined;
|
|
15095
15094
|
tokenAddress?: `0x${string}` | undefined;
|
|
15095
|
+
investmentId?: string | undefined;
|
|
15096
15096
|
}, {
|
|
15097
15097
|
data: {
|
|
15098
15098
|
delegatingTo: string;
|
|
15099
15099
|
};
|
|
15100
15100
|
id: string;
|
|
15101
15101
|
totalBalances: Record<string, string>;
|
|
15102
|
-
investmentId?: string | undefined;
|
|
15103
15102
|
tokenAddress?: string | undefined;
|
|
15103
|
+
investmentId?: string | undefined;
|
|
15104
15104
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
15105
15105
|
id: z.ZodString;
|
|
15106
15106
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -15122,16 +15122,16 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
15122
15122
|
};
|
|
15123
15123
|
id: string;
|
|
15124
15124
|
totalBalances: Record<string, string>;
|
|
15125
|
-
investmentId?: string | undefined;
|
|
15126
15125
|
tokenAddress?: `0x${string}` | undefined;
|
|
15126
|
+
investmentId?: string | undefined;
|
|
15127
15127
|
}, {
|
|
15128
15128
|
data: {
|
|
15129
15129
|
apy: string;
|
|
15130
15130
|
};
|
|
15131
15131
|
id: string;
|
|
15132
15132
|
totalBalances: Record<string, string>;
|
|
15133
|
-
investmentId?: string | undefined;
|
|
15134
15133
|
tokenAddress?: string | undefined;
|
|
15134
|
+
investmentId?: string | undefined;
|
|
15135
15135
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
15136
15136
|
id: z.ZodString;
|
|
15137
15137
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
@@ -15140,7 +15140,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
15140
15140
|
}, {
|
|
15141
15141
|
investmentId: z.ZodString;
|
|
15142
15142
|
data: z.ZodObject<{
|
|
15143
|
-
|
|
15143
|
+
stakerInfo: z.ZodObject<{
|
|
15144
15144
|
name: z.ZodOptional<z.ZodString>;
|
|
15145
15145
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
15146
15146
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -15167,7 +15167,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
15167
15167
|
}>>;
|
|
15168
15168
|
apy: z.ZodOptional<z.ZodString>;
|
|
15169
15169
|
}, "strip", z.ZodTypeAny, {
|
|
15170
|
-
|
|
15170
|
+
stakerInfo: {
|
|
15171
15171
|
address: `0x${string}`;
|
|
15172
15172
|
name?: string | undefined;
|
|
15173
15173
|
iconUrl?: string | undefined;
|
|
@@ -15180,7 +15180,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
15180
15180
|
withdrawableAfter: number;
|
|
15181
15181
|
} | undefined;
|
|
15182
15182
|
}, {
|
|
15183
|
-
|
|
15183
|
+
stakerInfo: {
|
|
15184
15184
|
address: string;
|
|
15185
15185
|
name?: string | undefined;
|
|
15186
15186
|
iconUrl?: string | undefined;
|
|
@@ -15195,7 +15195,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
15195
15195
|
}>;
|
|
15196
15196
|
}>, "strip", z.ZodTypeAny, {
|
|
15197
15197
|
data: {
|
|
15198
|
-
|
|
15198
|
+
stakerInfo: {
|
|
15199
15199
|
address: `0x${string}`;
|
|
15200
15200
|
name?: string | undefined;
|
|
15201
15201
|
iconUrl?: string | undefined;
|
|
@@ -15214,7 +15214,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
15214
15214
|
tokenAddress?: `0x${string}` | undefined;
|
|
15215
15215
|
}, {
|
|
15216
15216
|
data: {
|
|
15217
|
-
|
|
15217
|
+
stakerInfo: {
|
|
15218
15218
|
address: string;
|
|
15219
15219
|
name?: string | undefined;
|
|
15220
15220
|
iconUrl?: string | undefined;
|