@argent/x-shared 1.42.0 → 1.42.1
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.
|
@@ -409,6 +409,7 @@ export declare const apiDefiDecompositionToken: z.ZodObject<{
|
|
|
409
409
|
export type ApiDefiDecompositionToken = z.infer<typeof apiDefiDecompositionToken>;
|
|
410
410
|
export declare const apiConcentratedLiquidityPositionSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
411
411
|
id: z.ZodString;
|
|
412
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
412
413
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
413
414
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
414
415
|
}, {
|
|
@@ -524,6 +525,7 @@ export declare const apiConcentratedLiquidityPositionSchema: z.ZodObject<z.objec
|
|
|
524
525
|
totalBalances: Record<string, string>;
|
|
525
526
|
tokenId: string;
|
|
526
527
|
tokenAddress?: `0x${string}` | undefined;
|
|
528
|
+
investmentId?: string | undefined;
|
|
527
529
|
}, {
|
|
528
530
|
data: {
|
|
529
531
|
poolFeePercentage: string;
|
|
@@ -549,9 +551,11 @@ export declare const apiConcentratedLiquidityPositionSchema: z.ZodObject<z.objec
|
|
|
549
551
|
totalBalances: Record<string, string>;
|
|
550
552
|
tokenId: string;
|
|
551
553
|
tokenAddress?: string | undefined;
|
|
554
|
+
investmentId?: string | undefined;
|
|
552
555
|
}>;
|
|
553
556
|
export declare const apiConcentratedLiquidityPositionsSchema: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
554
557
|
id: z.ZodString;
|
|
558
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
555
559
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
556
560
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
557
561
|
}, {
|
|
@@ -667,6 +671,7 @@ export declare const apiConcentratedLiquidityPositionsSchema: z.ZodArray<z.ZodOb
|
|
|
667
671
|
totalBalances: Record<string, string>;
|
|
668
672
|
tokenId: string;
|
|
669
673
|
tokenAddress?: `0x${string}` | undefined;
|
|
674
|
+
investmentId?: string | undefined;
|
|
670
675
|
}, {
|
|
671
676
|
data: {
|
|
672
677
|
poolFeePercentage: string;
|
|
@@ -692,9 +697,11 @@ export declare const apiConcentratedLiquidityPositionsSchema: z.ZodArray<z.ZodOb
|
|
|
692
697
|
totalBalances: Record<string, string>;
|
|
693
698
|
tokenId: string;
|
|
694
699
|
tokenAddress?: string | undefined;
|
|
700
|
+
investmentId?: string | undefined;
|
|
695
701
|
}>, "many">;
|
|
696
702
|
export declare const apiStakingPositionSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
697
703
|
id: z.ZodString;
|
|
704
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
698
705
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
699
706
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
700
707
|
}, {
|
|
@@ -726,6 +733,7 @@ export declare const apiStakingPositionSchema: z.ZodObject<z.objectUtil.extendSh
|
|
|
726
733
|
}>;
|
|
727
734
|
export declare const apiStakingPositionsSchema: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
728
735
|
id: z.ZodString;
|
|
736
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
729
737
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
730
738
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
731
739
|
}, {
|
|
@@ -757,6 +765,7 @@ export declare const apiStakingPositionsSchema: z.ZodArray<z.ZodObject<z.objectU
|
|
|
757
765
|
}>, "many">;
|
|
758
766
|
export declare const apiCollateralizedDebtPositionSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
759
767
|
id: z.ZodString;
|
|
768
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
760
769
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
761
770
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
762
771
|
}, {
|
|
@@ -790,6 +799,7 @@ export declare const apiCollateralizedDebtPositionSchema: z.ZodObject<z.objectUt
|
|
|
790
799
|
id: string;
|
|
791
800
|
totalBalances: Record<string, string>;
|
|
792
801
|
tokenAddress?: `0x${string}` | undefined;
|
|
802
|
+
investmentId?: string | undefined;
|
|
793
803
|
}, {
|
|
794
804
|
data: {
|
|
795
805
|
lending: boolean;
|
|
@@ -801,9 +811,11 @@ export declare const apiCollateralizedDebtPositionSchema: z.ZodObject<z.objectUt
|
|
|
801
811
|
id: string;
|
|
802
812
|
totalBalances: Record<string, string>;
|
|
803
813
|
tokenAddress?: string | undefined;
|
|
814
|
+
investmentId?: string | undefined;
|
|
804
815
|
}>;
|
|
805
816
|
export declare const apiCollateralizedDebtPositionsSchema: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
806
817
|
id: z.ZodString;
|
|
818
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
807
819
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
808
820
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
809
821
|
}, {
|
|
@@ -837,6 +849,7 @@ export declare const apiCollateralizedDebtPositionsSchema: z.ZodArray<z.ZodObjec
|
|
|
837
849
|
id: string;
|
|
838
850
|
totalBalances: Record<string, string>;
|
|
839
851
|
tokenAddress?: `0x${string}` | undefined;
|
|
852
|
+
investmentId?: string | undefined;
|
|
840
853
|
}, {
|
|
841
854
|
data: {
|
|
842
855
|
lending: boolean;
|
|
@@ -848,9 +861,11 @@ export declare const apiCollateralizedDebtPositionsSchema: z.ZodArray<z.ZodObjec
|
|
|
848
861
|
id: string;
|
|
849
862
|
totalBalances: Record<string, string>;
|
|
850
863
|
tokenAddress?: string | undefined;
|
|
864
|
+
investmentId?: string | undefined;
|
|
851
865
|
}>, "many">;
|
|
852
866
|
export declare const apiDelegatedTokensSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
853
867
|
id: z.ZodString;
|
|
868
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
854
869
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
855
870
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
856
871
|
}, {
|
|
@@ -870,6 +885,7 @@ export declare const apiDelegatedTokensSchema: z.ZodObject<z.objectUtil.extendSh
|
|
|
870
885
|
id: string;
|
|
871
886
|
totalBalances: Record<string, string>;
|
|
872
887
|
tokenAddress?: `0x${string}` | undefined;
|
|
888
|
+
investmentId?: string | undefined;
|
|
873
889
|
}, {
|
|
874
890
|
data: {
|
|
875
891
|
delegatingTo: string;
|
|
@@ -877,9 +893,11 @@ export declare const apiDelegatedTokensSchema: z.ZodObject<z.objectUtil.extendSh
|
|
|
877
893
|
id: string;
|
|
878
894
|
totalBalances: Record<string, string>;
|
|
879
895
|
tokenAddress?: string | undefined;
|
|
896
|
+
investmentId?: string | undefined;
|
|
880
897
|
}>;
|
|
881
898
|
export declare const apiDelegatedTokensArraySchema: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
882
899
|
id: z.ZodString;
|
|
900
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
883
901
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
884
902
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
885
903
|
}, {
|
|
@@ -899,6 +917,7 @@ export declare const apiDelegatedTokensArraySchema: z.ZodArray<z.ZodObject<z.obj
|
|
|
899
917
|
id: string;
|
|
900
918
|
totalBalances: Record<string, string>;
|
|
901
919
|
tokenAddress?: `0x${string}` | undefined;
|
|
920
|
+
investmentId?: string | undefined;
|
|
902
921
|
}, {
|
|
903
922
|
data: {
|
|
904
923
|
delegatingTo: string;
|
|
@@ -906,9 +925,11 @@ export declare const apiDelegatedTokensArraySchema: z.ZodArray<z.ZodObject<z.obj
|
|
|
906
925
|
id: string;
|
|
907
926
|
totalBalances: Record<string, string>;
|
|
908
927
|
tokenAddress?: string | undefined;
|
|
928
|
+
investmentId?: string | undefined;
|
|
909
929
|
}>, "many">;
|
|
910
930
|
export declare const apiStrkDelegatedStakingSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
911
931
|
id: z.ZodString;
|
|
932
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
912
933
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
913
934
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
914
935
|
}, {
|
|
@@ -980,6 +1001,7 @@ export declare const apiStrkDelegatedStakingSchema: z.ZodObject<z.objectUtil.ext
|
|
|
980
1001
|
id: string;
|
|
981
1002
|
totalBalances: Record<string, string>;
|
|
982
1003
|
tokenAddress?: `0x${string}` | undefined;
|
|
1004
|
+
investmentId?: string | undefined;
|
|
983
1005
|
}, {
|
|
984
1006
|
data: {
|
|
985
1007
|
stakerInfo: {
|
|
@@ -997,9 +1019,11 @@ export declare const apiStrkDelegatedStakingSchema: z.ZodObject<z.objectUtil.ext
|
|
|
997
1019
|
id: string;
|
|
998
1020
|
totalBalances: Record<string, string>;
|
|
999
1021
|
tokenAddress?: string | undefined;
|
|
1022
|
+
investmentId?: string | undefined;
|
|
1000
1023
|
}>;
|
|
1001
1024
|
export declare const apiStrkDelegatedStakingPositionsSchema: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
1002
1025
|
id: z.ZodString;
|
|
1026
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
1003
1027
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
1004
1028
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
1005
1029
|
}, {
|
|
@@ -1071,6 +1095,7 @@ export declare const apiStrkDelegatedStakingPositionsSchema: z.ZodArray<z.ZodObj
|
|
|
1071
1095
|
id: string;
|
|
1072
1096
|
totalBalances: Record<string, string>;
|
|
1073
1097
|
tokenAddress?: `0x${string}` | undefined;
|
|
1098
|
+
investmentId?: string | undefined;
|
|
1074
1099
|
}, {
|
|
1075
1100
|
data: {
|
|
1076
1101
|
stakerInfo: {
|
|
@@ -1088,9 +1113,11 @@ export declare const apiStrkDelegatedStakingPositionsSchema: z.ZodArray<z.ZodObj
|
|
|
1088
1113
|
id: string;
|
|
1089
1114
|
totalBalances: Record<string, string>;
|
|
1090
1115
|
tokenAddress?: string | undefined;
|
|
1116
|
+
investmentId?: string | undefined;
|
|
1091
1117
|
}>, "many">;
|
|
1092
1118
|
export declare const apiDefiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
1093
1119
|
id: z.ZodString;
|
|
1120
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
1094
1121
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
1095
1122
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
1096
1123
|
}, {
|
|
@@ -1206,6 +1233,7 @@ export declare const apiDefiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[
|
|
|
1206
1233
|
totalBalances: Record<string, string>;
|
|
1207
1234
|
tokenId: string;
|
|
1208
1235
|
tokenAddress?: `0x${string}` | undefined;
|
|
1236
|
+
investmentId?: string | undefined;
|
|
1209
1237
|
}, {
|
|
1210
1238
|
data: {
|
|
1211
1239
|
poolFeePercentage: string;
|
|
@@ -1231,8 +1259,10 @@ export declare const apiDefiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[
|
|
|
1231
1259
|
totalBalances: Record<string, string>;
|
|
1232
1260
|
tokenId: string;
|
|
1233
1261
|
tokenAddress?: string | undefined;
|
|
1262
|
+
investmentId?: string | undefined;
|
|
1234
1263
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1235
1264
|
id: z.ZodString;
|
|
1265
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
1236
1266
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
1237
1267
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
1238
1268
|
}, {
|
|
@@ -1266,6 +1296,7 @@ export declare const apiDefiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[
|
|
|
1266
1296
|
id: string;
|
|
1267
1297
|
totalBalances: Record<string, string>;
|
|
1268
1298
|
tokenAddress?: `0x${string}` | undefined;
|
|
1299
|
+
investmentId?: string | undefined;
|
|
1269
1300
|
}, {
|
|
1270
1301
|
data: {
|
|
1271
1302
|
lending: boolean;
|
|
@@ -1277,8 +1308,10 @@ export declare const apiDefiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[
|
|
|
1277
1308
|
id: string;
|
|
1278
1309
|
totalBalances: Record<string, string>;
|
|
1279
1310
|
tokenAddress?: string | undefined;
|
|
1311
|
+
investmentId?: string | undefined;
|
|
1280
1312
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1281
1313
|
id: z.ZodString;
|
|
1314
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
1282
1315
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
1283
1316
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
1284
1317
|
}, {
|
|
@@ -1298,6 +1331,7 @@ export declare const apiDefiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[
|
|
|
1298
1331
|
id: string;
|
|
1299
1332
|
totalBalances: Record<string, string>;
|
|
1300
1333
|
tokenAddress?: `0x${string}` | undefined;
|
|
1334
|
+
investmentId?: string | undefined;
|
|
1301
1335
|
}, {
|
|
1302
1336
|
data: {
|
|
1303
1337
|
delegatingTo: string;
|
|
@@ -1305,8 +1339,10 @@ export declare const apiDefiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[
|
|
|
1305
1339
|
id: string;
|
|
1306
1340
|
totalBalances: Record<string, string>;
|
|
1307
1341
|
tokenAddress?: string | undefined;
|
|
1342
|
+
investmentId?: string | undefined;
|
|
1308
1343
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1309
1344
|
id: z.ZodString;
|
|
1345
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
1310
1346
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
1311
1347
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
1312
1348
|
}, {
|
|
@@ -1337,6 +1373,7 @@ export declare const apiDefiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[
|
|
|
1337
1373
|
investmentId?: string | undefined;
|
|
1338
1374
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1339
1375
|
id: z.ZodString;
|
|
1376
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
1340
1377
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
1341
1378
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
1342
1379
|
}, {
|
|
@@ -1408,6 +1445,7 @@ export declare const apiDefiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[
|
|
|
1408
1445
|
id: string;
|
|
1409
1446
|
totalBalances: Record<string, string>;
|
|
1410
1447
|
tokenAddress?: `0x${string}` | undefined;
|
|
1448
|
+
investmentId?: string | undefined;
|
|
1411
1449
|
}, {
|
|
1412
1450
|
data: {
|
|
1413
1451
|
stakerInfo: {
|
|
@@ -1425,10 +1463,12 @@ export declare const apiDefiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[
|
|
|
1425
1463
|
id: string;
|
|
1426
1464
|
totalBalances: Record<string, string>;
|
|
1427
1465
|
tokenAddress?: string | undefined;
|
|
1466
|
+
investmentId?: string | undefined;
|
|
1428
1467
|
}>]>;
|
|
1429
1468
|
export type ApiDefiPosition = z.infer<typeof apiDefiPositionSchema>;
|
|
1430
1469
|
export declare const apiDefiDecompositionProducts: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
1431
1470
|
id: z.ZodString;
|
|
1471
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
1432
1472
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
1433
1473
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
1434
1474
|
}, {
|
|
@@ -1544,6 +1584,7 @@ export declare const apiDefiDecompositionProducts: z.ZodArray<z.ZodUnion<[z.ZodU
|
|
|
1544
1584
|
totalBalances: Record<string, string>;
|
|
1545
1585
|
tokenId: string;
|
|
1546
1586
|
tokenAddress?: `0x${string}` | undefined;
|
|
1587
|
+
investmentId?: string | undefined;
|
|
1547
1588
|
}, {
|
|
1548
1589
|
data: {
|
|
1549
1590
|
poolFeePercentage: string;
|
|
@@ -1569,8 +1610,10 @@ export declare const apiDefiDecompositionProducts: z.ZodArray<z.ZodUnion<[z.ZodU
|
|
|
1569
1610
|
totalBalances: Record<string, string>;
|
|
1570
1611
|
tokenId: string;
|
|
1571
1612
|
tokenAddress?: string | undefined;
|
|
1613
|
+
investmentId?: string | undefined;
|
|
1572
1614
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1573
1615
|
id: z.ZodString;
|
|
1616
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
1574
1617
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
1575
1618
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
1576
1619
|
}, {
|
|
@@ -1604,6 +1647,7 @@ export declare const apiDefiDecompositionProducts: z.ZodArray<z.ZodUnion<[z.ZodU
|
|
|
1604
1647
|
id: string;
|
|
1605
1648
|
totalBalances: Record<string, string>;
|
|
1606
1649
|
tokenAddress?: `0x${string}` | undefined;
|
|
1650
|
+
investmentId?: string | undefined;
|
|
1607
1651
|
}, {
|
|
1608
1652
|
data: {
|
|
1609
1653
|
lending: boolean;
|
|
@@ -1615,8 +1659,10 @@ export declare const apiDefiDecompositionProducts: z.ZodArray<z.ZodUnion<[z.ZodU
|
|
|
1615
1659
|
id: string;
|
|
1616
1660
|
totalBalances: Record<string, string>;
|
|
1617
1661
|
tokenAddress?: string | undefined;
|
|
1662
|
+
investmentId?: string | undefined;
|
|
1618
1663
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1619
1664
|
id: z.ZodString;
|
|
1665
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
1620
1666
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
1621
1667
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
1622
1668
|
}, {
|
|
@@ -1636,6 +1682,7 @@ export declare const apiDefiDecompositionProducts: z.ZodArray<z.ZodUnion<[z.ZodU
|
|
|
1636
1682
|
id: string;
|
|
1637
1683
|
totalBalances: Record<string, string>;
|
|
1638
1684
|
tokenAddress?: `0x${string}` | undefined;
|
|
1685
|
+
investmentId?: string | undefined;
|
|
1639
1686
|
}, {
|
|
1640
1687
|
data: {
|
|
1641
1688
|
delegatingTo: string;
|
|
@@ -1643,8 +1690,10 @@ export declare const apiDefiDecompositionProducts: z.ZodArray<z.ZodUnion<[z.ZodU
|
|
|
1643
1690
|
id: string;
|
|
1644
1691
|
totalBalances: Record<string, string>;
|
|
1645
1692
|
tokenAddress?: string | undefined;
|
|
1693
|
+
investmentId?: string | undefined;
|
|
1646
1694
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1647
1695
|
id: z.ZodString;
|
|
1696
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
1648
1697
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
1649
1698
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
1650
1699
|
}, {
|
|
@@ -1675,6 +1724,7 @@ export declare const apiDefiDecompositionProducts: z.ZodArray<z.ZodUnion<[z.ZodU
|
|
|
1675
1724
|
investmentId?: string | undefined;
|
|
1676
1725
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1677
1726
|
id: z.ZodString;
|
|
1727
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
1678
1728
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
1679
1729
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
1680
1730
|
}, {
|
|
@@ -1746,6 +1796,7 @@ export declare const apiDefiDecompositionProducts: z.ZodArray<z.ZodUnion<[z.ZodU
|
|
|
1746
1796
|
id: string;
|
|
1747
1797
|
totalBalances: Record<string, string>;
|
|
1748
1798
|
tokenAddress?: `0x${string}` | undefined;
|
|
1799
|
+
investmentId?: string | undefined;
|
|
1749
1800
|
}, {
|
|
1750
1801
|
data: {
|
|
1751
1802
|
stakerInfo: {
|
|
@@ -1763,6 +1814,7 @@ export declare const apiDefiDecompositionProducts: z.ZodArray<z.ZodUnion<[z.ZodU
|
|
|
1763
1814
|
id: string;
|
|
1764
1815
|
totalBalances: Record<string, string>;
|
|
1765
1816
|
tokenAddress?: string | undefined;
|
|
1817
|
+
investmentId?: string | undefined;
|
|
1766
1818
|
}>]>, "many">;
|
|
1767
1819
|
export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
1768
1820
|
productId: z.ZodOptional<z.ZodString>;
|
|
@@ -1781,6 +1833,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
1781
1833
|
}>>>;
|
|
1782
1834
|
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
1783
1835
|
id: z.ZodString;
|
|
1836
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
1784
1837
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
1785
1838
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
1786
1839
|
}, {
|
|
@@ -1896,6 +1949,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
1896
1949
|
totalBalances: Record<string, string>;
|
|
1897
1950
|
tokenId: string;
|
|
1898
1951
|
tokenAddress?: `0x${string}` | undefined;
|
|
1952
|
+
investmentId?: string | undefined;
|
|
1899
1953
|
}, {
|
|
1900
1954
|
data: {
|
|
1901
1955
|
poolFeePercentage: string;
|
|
@@ -1921,8 +1975,10 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
1921
1975
|
totalBalances: Record<string, string>;
|
|
1922
1976
|
tokenId: string;
|
|
1923
1977
|
tokenAddress?: string | undefined;
|
|
1978
|
+
investmentId?: string | undefined;
|
|
1924
1979
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1925
1980
|
id: z.ZodString;
|
|
1981
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
1926
1982
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
1927
1983
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
1928
1984
|
}, {
|
|
@@ -1956,6 +2012,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
1956
2012
|
id: string;
|
|
1957
2013
|
totalBalances: Record<string, string>;
|
|
1958
2014
|
tokenAddress?: `0x${string}` | undefined;
|
|
2015
|
+
investmentId?: string | undefined;
|
|
1959
2016
|
}, {
|
|
1960
2017
|
data: {
|
|
1961
2018
|
lending: boolean;
|
|
@@ -1967,8 +2024,10 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
1967
2024
|
id: string;
|
|
1968
2025
|
totalBalances: Record<string, string>;
|
|
1969
2026
|
tokenAddress?: string | undefined;
|
|
2027
|
+
investmentId?: string | undefined;
|
|
1970
2028
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1971
2029
|
id: z.ZodString;
|
|
2030
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
1972
2031
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
1973
2032
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
1974
2033
|
}, {
|
|
@@ -1988,6 +2047,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
1988
2047
|
id: string;
|
|
1989
2048
|
totalBalances: Record<string, string>;
|
|
1990
2049
|
tokenAddress?: `0x${string}` | undefined;
|
|
2050
|
+
investmentId?: string | undefined;
|
|
1991
2051
|
}, {
|
|
1992
2052
|
data: {
|
|
1993
2053
|
delegatingTo: string;
|
|
@@ -1995,8 +2055,10 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
1995
2055
|
id: string;
|
|
1996
2056
|
totalBalances: Record<string, string>;
|
|
1997
2057
|
tokenAddress?: string | undefined;
|
|
2058
|
+
investmentId?: string | undefined;
|
|
1998
2059
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1999
2060
|
id: z.ZodString;
|
|
2061
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
2000
2062
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
2001
2063
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
2002
2064
|
}, {
|
|
@@ -2027,6 +2089,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2027
2089
|
investmentId?: string | undefined;
|
|
2028
2090
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2029
2091
|
id: z.ZodString;
|
|
2092
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
2030
2093
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
2031
2094
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
2032
2095
|
}, {
|
|
@@ -2098,6 +2161,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2098
2161
|
id: string;
|
|
2099
2162
|
totalBalances: Record<string, string>;
|
|
2100
2163
|
tokenAddress?: `0x${string}` | undefined;
|
|
2164
|
+
investmentId?: string | undefined;
|
|
2101
2165
|
}, {
|
|
2102
2166
|
data: {
|
|
2103
2167
|
stakerInfo: {
|
|
@@ -2115,6 +2179,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2115
2179
|
id: string;
|
|
2116
2180
|
totalBalances: Record<string, string>;
|
|
2117
2181
|
tokenAddress?: string | undefined;
|
|
2182
|
+
investmentId?: string | undefined;
|
|
2118
2183
|
}>]>, "many">;
|
|
2119
2184
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2120
2185
|
productId: z.ZodOptional<z.ZodString>;
|
|
@@ -2133,6 +2198,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2133
2198
|
}>>>;
|
|
2134
2199
|
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
2135
2200
|
id: z.ZodString;
|
|
2201
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
2136
2202
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
2137
2203
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
2138
2204
|
}, {
|
|
@@ -2248,6 +2314,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2248
2314
|
totalBalances: Record<string, string>;
|
|
2249
2315
|
tokenId: string;
|
|
2250
2316
|
tokenAddress?: `0x${string}` | undefined;
|
|
2317
|
+
investmentId?: string | undefined;
|
|
2251
2318
|
}, {
|
|
2252
2319
|
data: {
|
|
2253
2320
|
poolFeePercentage: string;
|
|
@@ -2273,8 +2340,10 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2273
2340
|
totalBalances: Record<string, string>;
|
|
2274
2341
|
tokenId: string;
|
|
2275
2342
|
tokenAddress?: string | undefined;
|
|
2343
|
+
investmentId?: string | undefined;
|
|
2276
2344
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2277
2345
|
id: z.ZodString;
|
|
2346
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
2278
2347
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
2279
2348
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
2280
2349
|
}, {
|
|
@@ -2308,6 +2377,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2308
2377
|
id: string;
|
|
2309
2378
|
totalBalances: Record<string, string>;
|
|
2310
2379
|
tokenAddress?: `0x${string}` | undefined;
|
|
2380
|
+
investmentId?: string | undefined;
|
|
2311
2381
|
}, {
|
|
2312
2382
|
data: {
|
|
2313
2383
|
lending: boolean;
|
|
@@ -2319,8 +2389,10 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2319
2389
|
id: string;
|
|
2320
2390
|
totalBalances: Record<string, string>;
|
|
2321
2391
|
tokenAddress?: string | undefined;
|
|
2392
|
+
investmentId?: string | undefined;
|
|
2322
2393
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2323
2394
|
id: z.ZodString;
|
|
2395
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
2324
2396
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
2325
2397
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
2326
2398
|
}, {
|
|
@@ -2340,6 +2412,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2340
2412
|
id: string;
|
|
2341
2413
|
totalBalances: Record<string, string>;
|
|
2342
2414
|
tokenAddress?: `0x${string}` | undefined;
|
|
2415
|
+
investmentId?: string | undefined;
|
|
2343
2416
|
}, {
|
|
2344
2417
|
data: {
|
|
2345
2418
|
delegatingTo: string;
|
|
@@ -2347,8 +2420,10 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2347
2420
|
id: string;
|
|
2348
2421
|
totalBalances: Record<string, string>;
|
|
2349
2422
|
tokenAddress?: string | undefined;
|
|
2423
|
+
investmentId?: string | undefined;
|
|
2350
2424
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2351
2425
|
id: z.ZodString;
|
|
2426
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
2352
2427
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
2353
2428
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
2354
2429
|
}, {
|
|
@@ -2379,6 +2454,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2379
2454
|
investmentId?: string | undefined;
|
|
2380
2455
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2381
2456
|
id: z.ZodString;
|
|
2457
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
2382
2458
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
2383
2459
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
2384
2460
|
}, {
|
|
@@ -2450,6 +2526,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2450
2526
|
id: string;
|
|
2451
2527
|
totalBalances: Record<string, string>;
|
|
2452
2528
|
tokenAddress?: `0x${string}` | undefined;
|
|
2529
|
+
investmentId?: string | undefined;
|
|
2453
2530
|
}, {
|
|
2454
2531
|
data: {
|
|
2455
2532
|
stakerInfo: {
|
|
@@ -2467,6 +2544,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2467
2544
|
id: string;
|
|
2468
2545
|
totalBalances: Record<string, string>;
|
|
2469
2546
|
tokenAddress?: string | undefined;
|
|
2547
|
+
investmentId?: string | undefined;
|
|
2470
2548
|
}>]>, "many">;
|
|
2471
2549
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2472
2550
|
productId: z.ZodOptional<z.ZodString>;
|
|
@@ -2485,6 +2563,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2485
2563
|
}>>>;
|
|
2486
2564
|
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
2487
2565
|
id: z.ZodString;
|
|
2566
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
2488
2567
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
2489
2568
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
2490
2569
|
}, {
|
|
@@ -2600,6 +2679,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2600
2679
|
totalBalances: Record<string, string>;
|
|
2601
2680
|
tokenId: string;
|
|
2602
2681
|
tokenAddress?: `0x${string}` | undefined;
|
|
2682
|
+
investmentId?: string | undefined;
|
|
2603
2683
|
}, {
|
|
2604
2684
|
data: {
|
|
2605
2685
|
poolFeePercentage: string;
|
|
@@ -2625,8 +2705,10 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2625
2705
|
totalBalances: Record<string, string>;
|
|
2626
2706
|
tokenId: string;
|
|
2627
2707
|
tokenAddress?: string | undefined;
|
|
2708
|
+
investmentId?: string | undefined;
|
|
2628
2709
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2629
2710
|
id: z.ZodString;
|
|
2711
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
2630
2712
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
2631
2713
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
2632
2714
|
}, {
|
|
@@ -2660,6 +2742,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2660
2742
|
id: string;
|
|
2661
2743
|
totalBalances: Record<string, string>;
|
|
2662
2744
|
tokenAddress?: `0x${string}` | undefined;
|
|
2745
|
+
investmentId?: string | undefined;
|
|
2663
2746
|
}, {
|
|
2664
2747
|
data: {
|
|
2665
2748
|
lending: boolean;
|
|
@@ -2671,8 +2754,10 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2671
2754
|
id: string;
|
|
2672
2755
|
totalBalances: Record<string, string>;
|
|
2673
2756
|
tokenAddress?: string | undefined;
|
|
2757
|
+
investmentId?: string | undefined;
|
|
2674
2758
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2675
2759
|
id: z.ZodString;
|
|
2760
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
2676
2761
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
2677
2762
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
2678
2763
|
}, {
|
|
@@ -2692,6 +2777,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2692
2777
|
id: string;
|
|
2693
2778
|
totalBalances: Record<string, string>;
|
|
2694
2779
|
tokenAddress?: `0x${string}` | undefined;
|
|
2780
|
+
investmentId?: string | undefined;
|
|
2695
2781
|
}, {
|
|
2696
2782
|
data: {
|
|
2697
2783
|
delegatingTo: string;
|
|
@@ -2699,8 +2785,10 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2699
2785
|
id: string;
|
|
2700
2786
|
totalBalances: Record<string, string>;
|
|
2701
2787
|
tokenAddress?: string | undefined;
|
|
2788
|
+
investmentId?: string | undefined;
|
|
2702
2789
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2703
2790
|
id: z.ZodString;
|
|
2791
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
2704
2792
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
2705
2793
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
2706
2794
|
}, {
|
|
@@ -2731,6 +2819,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2731
2819
|
investmentId?: string | undefined;
|
|
2732
2820
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2733
2821
|
id: z.ZodString;
|
|
2822
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
2734
2823
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
2735
2824
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
2736
2825
|
}, {
|
|
@@ -2802,6 +2891,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2802
2891
|
id: string;
|
|
2803
2892
|
totalBalances: Record<string, string>;
|
|
2804
2893
|
tokenAddress?: `0x${string}` | undefined;
|
|
2894
|
+
investmentId?: string | undefined;
|
|
2805
2895
|
}, {
|
|
2806
2896
|
data: {
|
|
2807
2897
|
stakerInfo: {
|
|
@@ -2819,6 +2909,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2819
2909
|
id: string;
|
|
2820
2910
|
totalBalances: Record<string, string>;
|
|
2821
2911
|
tokenAddress?: string | undefined;
|
|
2912
|
+
investmentId?: string | undefined;
|
|
2822
2913
|
}>]>, "many">;
|
|
2823
2914
|
}, z.ZodTypeAny, "passthrough">>, z.objectOutputType<{
|
|
2824
2915
|
productId: z.ZodOptional<z.ZodString>;
|
|
@@ -2837,6 +2928,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2837
2928
|
}>>>;
|
|
2838
2929
|
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
2839
2930
|
id: z.ZodString;
|
|
2931
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
2840
2932
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
2841
2933
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
2842
2934
|
}, {
|
|
@@ -2952,6 +3044,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2952
3044
|
totalBalances: Record<string, string>;
|
|
2953
3045
|
tokenId: string;
|
|
2954
3046
|
tokenAddress?: `0x${string}` | undefined;
|
|
3047
|
+
investmentId?: string | undefined;
|
|
2955
3048
|
}, {
|
|
2956
3049
|
data: {
|
|
2957
3050
|
poolFeePercentage: string;
|
|
@@ -2977,8 +3070,10 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2977
3070
|
totalBalances: Record<string, string>;
|
|
2978
3071
|
tokenId: string;
|
|
2979
3072
|
tokenAddress?: string | undefined;
|
|
3073
|
+
investmentId?: string | undefined;
|
|
2980
3074
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2981
3075
|
id: z.ZodString;
|
|
3076
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
2982
3077
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
2983
3078
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
2984
3079
|
}, {
|
|
@@ -3012,6 +3107,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3012
3107
|
id: string;
|
|
3013
3108
|
totalBalances: Record<string, string>;
|
|
3014
3109
|
tokenAddress?: `0x${string}` | undefined;
|
|
3110
|
+
investmentId?: string | undefined;
|
|
3015
3111
|
}, {
|
|
3016
3112
|
data: {
|
|
3017
3113
|
lending: boolean;
|
|
@@ -3023,8 +3119,10 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3023
3119
|
id: string;
|
|
3024
3120
|
totalBalances: Record<string, string>;
|
|
3025
3121
|
tokenAddress?: string | undefined;
|
|
3122
|
+
investmentId?: string | undefined;
|
|
3026
3123
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
3027
3124
|
id: z.ZodString;
|
|
3125
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
3028
3126
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
3029
3127
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
3030
3128
|
}, {
|
|
@@ -3044,6 +3142,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3044
3142
|
id: string;
|
|
3045
3143
|
totalBalances: Record<string, string>;
|
|
3046
3144
|
tokenAddress?: `0x${string}` | undefined;
|
|
3145
|
+
investmentId?: string | undefined;
|
|
3047
3146
|
}, {
|
|
3048
3147
|
data: {
|
|
3049
3148
|
delegatingTo: string;
|
|
@@ -3051,8 +3150,10 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3051
3150
|
id: string;
|
|
3052
3151
|
totalBalances: Record<string, string>;
|
|
3053
3152
|
tokenAddress?: string | undefined;
|
|
3153
|
+
investmentId?: string | undefined;
|
|
3054
3154
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
3055
3155
|
id: z.ZodString;
|
|
3156
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
3056
3157
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
3057
3158
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
3058
3159
|
}, {
|
|
@@ -3083,6 +3184,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3083
3184
|
investmentId?: string | undefined;
|
|
3084
3185
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
3085
3186
|
id: z.ZodString;
|
|
3187
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
3086
3188
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
3087
3189
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
3088
3190
|
}, {
|
|
@@ -3154,6 +3256,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3154
3256
|
id: string;
|
|
3155
3257
|
totalBalances: Record<string, string>;
|
|
3156
3258
|
tokenAddress?: `0x${string}` | undefined;
|
|
3259
|
+
investmentId?: string | undefined;
|
|
3157
3260
|
}, {
|
|
3158
3261
|
data: {
|
|
3159
3262
|
stakerInfo: {
|
|
@@ -3171,6 +3274,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3171
3274
|
id: string;
|
|
3172
3275
|
totalBalances: Record<string, string>;
|
|
3173
3276
|
tokenAddress?: string | undefined;
|
|
3277
|
+
investmentId?: string | undefined;
|
|
3174
3278
|
}>]>, "many">;
|
|
3175
3279
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
3176
3280
|
productId: z.ZodOptional<z.ZodString>;
|
|
@@ -3189,6 +3293,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3189
3293
|
}>>>;
|
|
3190
3294
|
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
3191
3295
|
id: z.ZodString;
|
|
3296
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
3192
3297
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
3193
3298
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
3194
3299
|
}, {
|
|
@@ -3304,6 +3409,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3304
3409
|
totalBalances: Record<string, string>;
|
|
3305
3410
|
tokenId: string;
|
|
3306
3411
|
tokenAddress?: `0x${string}` | undefined;
|
|
3412
|
+
investmentId?: string | undefined;
|
|
3307
3413
|
}, {
|
|
3308
3414
|
data: {
|
|
3309
3415
|
poolFeePercentage: string;
|
|
@@ -3329,8 +3435,10 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3329
3435
|
totalBalances: Record<string, string>;
|
|
3330
3436
|
tokenId: string;
|
|
3331
3437
|
tokenAddress?: string | undefined;
|
|
3438
|
+
investmentId?: string | undefined;
|
|
3332
3439
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
3333
3440
|
id: z.ZodString;
|
|
3441
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
3334
3442
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
3335
3443
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
3336
3444
|
}, {
|
|
@@ -3364,6 +3472,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3364
3472
|
id: string;
|
|
3365
3473
|
totalBalances: Record<string, string>;
|
|
3366
3474
|
tokenAddress?: `0x${string}` | undefined;
|
|
3475
|
+
investmentId?: string | undefined;
|
|
3367
3476
|
}, {
|
|
3368
3477
|
data: {
|
|
3369
3478
|
lending: boolean;
|
|
@@ -3375,8 +3484,10 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3375
3484
|
id: string;
|
|
3376
3485
|
totalBalances: Record<string, string>;
|
|
3377
3486
|
tokenAddress?: string | undefined;
|
|
3487
|
+
investmentId?: string | undefined;
|
|
3378
3488
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
3379
3489
|
id: z.ZodString;
|
|
3490
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
3380
3491
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
3381
3492
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
3382
3493
|
}, {
|
|
@@ -3396,6 +3507,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3396
3507
|
id: string;
|
|
3397
3508
|
totalBalances: Record<string, string>;
|
|
3398
3509
|
tokenAddress?: `0x${string}` | undefined;
|
|
3510
|
+
investmentId?: string | undefined;
|
|
3399
3511
|
}, {
|
|
3400
3512
|
data: {
|
|
3401
3513
|
delegatingTo: string;
|
|
@@ -3403,8 +3515,10 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3403
3515
|
id: string;
|
|
3404
3516
|
totalBalances: Record<string, string>;
|
|
3405
3517
|
tokenAddress?: string | undefined;
|
|
3518
|
+
investmentId?: string | undefined;
|
|
3406
3519
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
3407
3520
|
id: z.ZodString;
|
|
3521
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
3408
3522
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
3409
3523
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
3410
3524
|
}, {
|
|
@@ -3435,6 +3549,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3435
3549
|
investmentId?: string | undefined;
|
|
3436
3550
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
3437
3551
|
id: z.ZodString;
|
|
3552
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
3438
3553
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
3439
3554
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
3440
3555
|
}, {
|
|
@@ -3506,6 +3621,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3506
3621
|
id: string;
|
|
3507
3622
|
totalBalances: Record<string, string>;
|
|
3508
3623
|
tokenAddress?: `0x${string}` | undefined;
|
|
3624
|
+
investmentId?: string | undefined;
|
|
3509
3625
|
}, {
|
|
3510
3626
|
data: {
|
|
3511
3627
|
stakerInfo: {
|
|
@@ -3523,6 +3639,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3523
3639
|
id: string;
|
|
3524
3640
|
totalBalances: Record<string, string>;
|
|
3525
3641
|
tokenAddress?: string | undefined;
|
|
3642
|
+
investmentId?: string | undefined;
|
|
3526
3643
|
}>]>, "many">;
|
|
3527
3644
|
}, z.ZodTypeAny, "passthrough">> & {
|
|
3528
3645
|
extend: <E extends z.ZodRawShape>(extension: E) => z.ZodEffects<z.ZodObject<{
|
|
@@ -3542,6 +3659,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3542
3659
|
}>>>;
|
|
3543
3660
|
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
3544
3661
|
id: z.ZodString;
|
|
3662
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
3545
3663
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
3546
3664
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
3547
3665
|
}, {
|
|
@@ -3657,6 +3775,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3657
3775
|
totalBalances: Record<string, string>;
|
|
3658
3776
|
tokenId: string;
|
|
3659
3777
|
tokenAddress?: `0x${string}` | undefined;
|
|
3778
|
+
investmentId?: string | undefined;
|
|
3660
3779
|
}, {
|
|
3661
3780
|
data: {
|
|
3662
3781
|
poolFeePercentage: string;
|
|
@@ -3682,8 +3801,10 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3682
3801
|
totalBalances: Record<string, string>;
|
|
3683
3802
|
tokenId: string;
|
|
3684
3803
|
tokenAddress?: string | undefined;
|
|
3804
|
+
investmentId?: string | undefined;
|
|
3685
3805
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
3686
3806
|
id: z.ZodString;
|
|
3807
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
3687
3808
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
3688
3809
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
3689
3810
|
}, {
|
|
@@ -3717,6 +3838,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3717
3838
|
id: string;
|
|
3718
3839
|
totalBalances: Record<string, string>;
|
|
3719
3840
|
tokenAddress?: `0x${string}` | undefined;
|
|
3841
|
+
investmentId?: string | undefined;
|
|
3720
3842
|
}, {
|
|
3721
3843
|
data: {
|
|
3722
3844
|
lending: boolean;
|
|
@@ -3728,8 +3850,10 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3728
3850
|
id: string;
|
|
3729
3851
|
totalBalances: Record<string, string>;
|
|
3730
3852
|
tokenAddress?: string | undefined;
|
|
3853
|
+
investmentId?: string | undefined;
|
|
3731
3854
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
3732
3855
|
id: z.ZodString;
|
|
3856
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
3733
3857
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
3734
3858
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
3735
3859
|
}, {
|
|
@@ -3749,6 +3873,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3749
3873
|
id: string;
|
|
3750
3874
|
totalBalances: Record<string, string>;
|
|
3751
3875
|
tokenAddress?: `0x${string}` | undefined;
|
|
3876
|
+
investmentId?: string | undefined;
|
|
3752
3877
|
}, {
|
|
3753
3878
|
data: {
|
|
3754
3879
|
delegatingTo: string;
|
|
@@ -3756,8 +3881,10 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3756
3881
|
id: string;
|
|
3757
3882
|
totalBalances: Record<string, string>;
|
|
3758
3883
|
tokenAddress?: string | undefined;
|
|
3884
|
+
investmentId?: string | undefined;
|
|
3759
3885
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
3760
3886
|
id: z.ZodString;
|
|
3887
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
3761
3888
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
3762
3889
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
3763
3890
|
}, {
|
|
@@ -3788,6 +3915,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3788
3915
|
investmentId?: string | undefined;
|
|
3789
3916
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
3790
3917
|
id: z.ZodString;
|
|
3918
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
3791
3919
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
3792
3920
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
3793
3921
|
}, {
|
|
@@ -3859,6 +3987,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3859
3987
|
id: string;
|
|
3860
3988
|
totalBalances: Record<string, string>;
|
|
3861
3989
|
tokenAddress?: `0x${string}` | undefined;
|
|
3990
|
+
investmentId?: string | undefined;
|
|
3862
3991
|
}, {
|
|
3863
3992
|
data: {
|
|
3864
3993
|
stakerInfo: {
|
|
@@ -3876,6 +4005,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3876
4005
|
id: string;
|
|
3877
4006
|
totalBalances: Record<string, string>;
|
|
3878
4007
|
tokenAddress?: string | undefined;
|
|
4008
|
+
investmentId?: string | undefined;
|
|
3879
4009
|
}>]>, "many">;
|
|
3880
4010
|
} & E, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
3881
4011
|
productId: z.ZodOptional<z.ZodString>;
|
|
@@ -3894,6 +4024,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3894
4024
|
}>>>;
|
|
3895
4025
|
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
3896
4026
|
id: z.ZodString;
|
|
4027
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
3897
4028
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
3898
4029
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
3899
4030
|
}, {
|
|
@@ -4009,6 +4140,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4009
4140
|
totalBalances: Record<string, string>;
|
|
4010
4141
|
tokenId: string;
|
|
4011
4142
|
tokenAddress?: `0x${string}` | undefined;
|
|
4143
|
+
investmentId?: string | undefined;
|
|
4012
4144
|
}, {
|
|
4013
4145
|
data: {
|
|
4014
4146
|
poolFeePercentage: string;
|
|
@@ -4034,8 +4166,10 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4034
4166
|
totalBalances: Record<string, string>;
|
|
4035
4167
|
tokenId: string;
|
|
4036
4168
|
tokenAddress?: string | undefined;
|
|
4169
|
+
investmentId?: string | undefined;
|
|
4037
4170
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
4038
4171
|
id: z.ZodString;
|
|
4172
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
4039
4173
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
4040
4174
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
4041
4175
|
}, {
|
|
@@ -4069,6 +4203,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4069
4203
|
id: string;
|
|
4070
4204
|
totalBalances: Record<string, string>;
|
|
4071
4205
|
tokenAddress?: `0x${string}` | undefined;
|
|
4206
|
+
investmentId?: string | undefined;
|
|
4072
4207
|
}, {
|
|
4073
4208
|
data: {
|
|
4074
4209
|
lending: boolean;
|
|
@@ -4080,8 +4215,10 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4080
4215
|
id: string;
|
|
4081
4216
|
totalBalances: Record<string, string>;
|
|
4082
4217
|
tokenAddress?: string | undefined;
|
|
4218
|
+
investmentId?: string | undefined;
|
|
4083
4219
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
4084
4220
|
id: z.ZodString;
|
|
4221
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
4085
4222
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
4086
4223
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
4087
4224
|
}, {
|
|
@@ -4101,6 +4238,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4101
4238
|
id: string;
|
|
4102
4239
|
totalBalances: Record<string, string>;
|
|
4103
4240
|
tokenAddress?: `0x${string}` | undefined;
|
|
4241
|
+
investmentId?: string | undefined;
|
|
4104
4242
|
}, {
|
|
4105
4243
|
data: {
|
|
4106
4244
|
delegatingTo: string;
|
|
@@ -4108,8 +4246,10 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4108
4246
|
id: string;
|
|
4109
4247
|
totalBalances: Record<string, string>;
|
|
4110
4248
|
tokenAddress?: string | undefined;
|
|
4249
|
+
investmentId?: string | undefined;
|
|
4111
4250
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
4112
4251
|
id: z.ZodString;
|
|
4252
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
4113
4253
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
4114
4254
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
4115
4255
|
}, {
|
|
@@ -4140,6 +4280,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4140
4280
|
investmentId?: string | undefined;
|
|
4141
4281
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
4142
4282
|
id: z.ZodString;
|
|
4283
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
4143
4284
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
4144
4285
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
4145
4286
|
}, {
|
|
@@ -4211,6 +4352,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4211
4352
|
id: string;
|
|
4212
4353
|
totalBalances: Record<string, string>;
|
|
4213
4354
|
tokenAddress?: `0x${string}` | undefined;
|
|
4355
|
+
investmentId?: string | undefined;
|
|
4214
4356
|
}, {
|
|
4215
4357
|
data: {
|
|
4216
4358
|
stakerInfo: {
|
|
@@ -4228,6 +4370,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4228
4370
|
id: string;
|
|
4229
4371
|
totalBalances: Record<string, string>;
|
|
4230
4372
|
tokenAddress?: string | undefined;
|
|
4373
|
+
investmentId?: string | undefined;
|
|
4231
4374
|
}>]>, "many">;
|
|
4232
4375
|
} & E, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
4233
4376
|
productId: z.ZodOptional<z.ZodString>;
|
|
@@ -4246,6 +4389,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4246
4389
|
}>>>;
|
|
4247
4390
|
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
4248
4391
|
id: z.ZodString;
|
|
4392
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
4249
4393
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
4250
4394
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
4251
4395
|
}, {
|
|
@@ -4361,6 +4505,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4361
4505
|
totalBalances: Record<string, string>;
|
|
4362
4506
|
tokenId: string;
|
|
4363
4507
|
tokenAddress?: `0x${string}` | undefined;
|
|
4508
|
+
investmentId?: string | undefined;
|
|
4364
4509
|
}, {
|
|
4365
4510
|
data: {
|
|
4366
4511
|
poolFeePercentage: string;
|
|
@@ -4386,8 +4531,10 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4386
4531
|
totalBalances: Record<string, string>;
|
|
4387
4532
|
tokenId: string;
|
|
4388
4533
|
tokenAddress?: string | undefined;
|
|
4534
|
+
investmentId?: string | undefined;
|
|
4389
4535
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
4390
4536
|
id: z.ZodString;
|
|
4537
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
4391
4538
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
4392
4539
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
4393
4540
|
}, {
|
|
@@ -4421,6 +4568,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4421
4568
|
id: string;
|
|
4422
4569
|
totalBalances: Record<string, string>;
|
|
4423
4570
|
tokenAddress?: `0x${string}` | undefined;
|
|
4571
|
+
investmentId?: string | undefined;
|
|
4424
4572
|
}, {
|
|
4425
4573
|
data: {
|
|
4426
4574
|
lending: boolean;
|
|
@@ -4432,8 +4580,10 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4432
4580
|
id: string;
|
|
4433
4581
|
totalBalances: Record<string, string>;
|
|
4434
4582
|
tokenAddress?: string | undefined;
|
|
4583
|
+
investmentId?: string | undefined;
|
|
4435
4584
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
4436
4585
|
id: z.ZodString;
|
|
4586
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
4437
4587
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
4438
4588
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
4439
4589
|
}, {
|
|
@@ -4453,6 +4603,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4453
4603
|
id: string;
|
|
4454
4604
|
totalBalances: Record<string, string>;
|
|
4455
4605
|
tokenAddress?: `0x${string}` | undefined;
|
|
4606
|
+
investmentId?: string | undefined;
|
|
4456
4607
|
}, {
|
|
4457
4608
|
data: {
|
|
4458
4609
|
delegatingTo: string;
|
|
@@ -4460,8 +4611,10 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4460
4611
|
id: string;
|
|
4461
4612
|
totalBalances: Record<string, string>;
|
|
4462
4613
|
tokenAddress?: string | undefined;
|
|
4614
|
+
investmentId?: string | undefined;
|
|
4463
4615
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
4464
4616
|
id: z.ZodString;
|
|
4617
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
4465
4618
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
4466
4619
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
4467
4620
|
}, {
|
|
@@ -4492,6 +4645,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4492
4645
|
investmentId?: string | undefined;
|
|
4493
4646
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
4494
4647
|
id: z.ZodString;
|
|
4648
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
4495
4649
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
4496
4650
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
4497
4651
|
}, {
|
|
@@ -4563,6 +4717,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4563
4717
|
id: string;
|
|
4564
4718
|
totalBalances: Record<string, string>;
|
|
4565
4719
|
tokenAddress?: `0x${string}` | undefined;
|
|
4720
|
+
investmentId?: string | undefined;
|
|
4566
4721
|
}, {
|
|
4567
4722
|
data: {
|
|
4568
4723
|
stakerInfo: {
|
|
@@ -4580,6 +4735,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4580
4735
|
id: string;
|
|
4581
4736
|
totalBalances: Record<string, string>;
|
|
4582
4737
|
tokenAddress?: string | undefined;
|
|
4738
|
+
investmentId?: string | undefined;
|
|
4583
4739
|
}>]>, "many">;
|
|
4584
4740
|
} & E, z.ZodTypeAny, "passthrough">>, z.objectOutputType<{
|
|
4585
4741
|
productId: z.ZodOptional<z.ZodString>;
|
|
@@ -4598,6 +4754,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4598
4754
|
}>>>;
|
|
4599
4755
|
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
4600
4756
|
id: z.ZodString;
|
|
4757
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
4601
4758
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
4602
4759
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
4603
4760
|
}, {
|
|
@@ -4713,6 +4870,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4713
4870
|
totalBalances: Record<string, string>;
|
|
4714
4871
|
tokenId: string;
|
|
4715
4872
|
tokenAddress?: `0x${string}` | undefined;
|
|
4873
|
+
investmentId?: string | undefined;
|
|
4716
4874
|
}, {
|
|
4717
4875
|
data: {
|
|
4718
4876
|
poolFeePercentage: string;
|
|
@@ -4738,8 +4896,10 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4738
4896
|
totalBalances: Record<string, string>;
|
|
4739
4897
|
tokenId: string;
|
|
4740
4898
|
tokenAddress?: string | undefined;
|
|
4899
|
+
investmentId?: string | undefined;
|
|
4741
4900
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
4742
4901
|
id: z.ZodString;
|
|
4902
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
4743
4903
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
4744
4904
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
4745
4905
|
}, {
|
|
@@ -4773,6 +4933,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4773
4933
|
id: string;
|
|
4774
4934
|
totalBalances: Record<string, string>;
|
|
4775
4935
|
tokenAddress?: `0x${string}` | undefined;
|
|
4936
|
+
investmentId?: string | undefined;
|
|
4776
4937
|
}, {
|
|
4777
4938
|
data: {
|
|
4778
4939
|
lending: boolean;
|
|
@@ -4784,8 +4945,10 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4784
4945
|
id: string;
|
|
4785
4946
|
totalBalances: Record<string, string>;
|
|
4786
4947
|
tokenAddress?: string | undefined;
|
|
4948
|
+
investmentId?: string | undefined;
|
|
4787
4949
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
4788
4950
|
id: z.ZodString;
|
|
4951
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
4789
4952
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
4790
4953
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
4791
4954
|
}, {
|
|
@@ -4805,6 +4968,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4805
4968
|
id: string;
|
|
4806
4969
|
totalBalances: Record<string, string>;
|
|
4807
4970
|
tokenAddress?: `0x${string}` | undefined;
|
|
4971
|
+
investmentId?: string | undefined;
|
|
4808
4972
|
}, {
|
|
4809
4973
|
data: {
|
|
4810
4974
|
delegatingTo: string;
|
|
@@ -4812,8 +4976,10 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4812
4976
|
id: string;
|
|
4813
4977
|
totalBalances: Record<string, string>;
|
|
4814
4978
|
tokenAddress?: string | undefined;
|
|
4979
|
+
investmentId?: string | undefined;
|
|
4815
4980
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
4816
4981
|
id: z.ZodString;
|
|
4982
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
4817
4983
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
4818
4984
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
4819
4985
|
}, {
|
|
@@ -4844,6 +5010,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4844
5010
|
investmentId?: string | undefined;
|
|
4845
5011
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
4846
5012
|
id: z.ZodString;
|
|
5013
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
4847
5014
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
4848
5015
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
4849
5016
|
}, {
|
|
@@ -4915,6 +5082,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4915
5082
|
id: string;
|
|
4916
5083
|
totalBalances: Record<string, string>;
|
|
4917
5084
|
tokenAddress?: `0x${string}` | undefined;
|
|
5085
|
+
investmentId?: string | undefined;
|
|
4918
5086
|
}, {
|
|
4919
5087
|
data: {
|
|
4920
5088
|
stakerInfo: {
|
|
@@ -4932,6 +5100,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4932
5100
|
id: string;
|
|
4933
5101
|
totalBalances: Record<string, string>;
|
|
4934
5102
|
tokenAddress?: string | undefined;
|
|
5103
|
+
investmentId?: string | undefined;
|
|
4935
5104
|
}>]>, "many">;
|
|
4936
5105
|
} & E, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
4937
5106
|
productId: z.ZodOptional<z.ZodString>;
|
|
@@ -4950,6 +5119,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4950
5119
|
}>>>;
|
|
4951
5120
|
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
4952
5121
|
id: z.ZodString;
|
|
5122
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
4953
5123
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
4954
5124
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
4955
5125
|
}, {
|
|
@@ -5065,6 +5235,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5065
5235
|
totalBalances: Record<string, string>;
|
|
5066
5236
|
tokenId: string;
|
|
5067
5237
|
tokenAddress?: `0x${string}` | undefined;
|
|
5238
|
+
investmentId?: string | undefined;
|
|
5068
5239
|
}, {
|
|
5069
5240
|
data: {
|
|
5070
5241
|
poolFeePercentage: string;
|
|
@@ -5090,8 +5261,10 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5090
5261
|
totalBalances: Record<string, string>;
|
|
5091
5262
|
tokenId: string;
|
|
5092
5263
|
tokenAddress?: string | undefined;
|
|
5264
|
+
investmentId?: string | undefined;
|
|
5093
5265
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5094
5266
|
id: z.ZodString;
|
|
5267
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
5095
5268
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
5096
5269
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
5097
5270
|
}, {
|
|
@@ -5125,6 +5298,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5125
5298
|
id: string;
|
|
5126
5299
|
totalBalances: Record<string, string>;
|
|
5127
5300
|
tokenAddress?: `0x${string}` | undefined;
|
|
5301
|
+
investmentId?: string | undefined;
|
|
5128
5302
|
}, {
|
|
5129
5303
|
data: {
|
|
5130
5304
|
lending: boolean;
|
|
@@ -5136,8 +5310,10 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5136
5310
|
id: string;
|
|
5137
5311
|
totalBalances: Record<string, string>;
|
|
5138
5312
|
tokenAddress?: string | undefined;
|
|
5313
|
+
investmentId?: string | undefined;
|
|
5139
5314
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5140
5315
|
id: z.ZodString;
|
|
5316
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
5141
5317
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
5142
5318
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
5143
5319
|
}, {
|
|
@@ -5157,6 +5333,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5157
5333
|
id: string;
|
|
5158
5334
|
totalBalances: Record<string, string>;
|
|
5159
5335
|
tokenAddress?: `0x${string}` | undefined;
|
|
5336
|
+
investmentId?: string | undefined;
|
|
5160
5337
|
}, {
|
|
5161
5338
|
data: {
|
|
5162
5339
|
delegatingTo: string;
|
|
@@ -5164,8 +5341,10 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5164
5341
|
id: string;
|
|
5165
5342
|
totalBalances: Record<string, string>;
|
|
5166
5343
|
tokenAddress?: string | undefined;
|
|
5344
|
+
investmentId?: string | undefined;
|
|
5167
5345
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5168
5346
|
id: z.ZodString;
|
|
5347
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
5169
5348
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
5170
5349
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
5171
5350
|
}, {
|
|
@@ -5196,6 +5375,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5196
5375
|
investmentId?: string | undefined;
|
|
5197
5376
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5198
5377
|
id: z.ZodString;
|
|
5378
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
5199
5379
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
5200
5380
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
5201
5381
|
}, {
|
|
@@ -5267,6 +5447,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5267
5447
|
id: string;
|
|
5268
5448
|
totalBalances: Record<string, string>;
|
|
5269
5449
|
tokenAddress?: `0x${string}` | undefined;
|
|
5450
|
+
investmentId?: string | undefined;
|
|
5270
5451
|
}, {
|
|
5271
5452
|
data: {
|
|
5272
5453
|
stakerInfo: {
|
|
@@ -5284,6 +5465,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5284
5465
|
id: string;
|
|
5285
5466
|
totalBalances: Record<string, string>;
|
|
5286
5467
|
tokenAddress?: string | undefined;
|
|
5468
|
+
investmentId?: string | undefined;
|
|
5287
5469
|
}>]>, "many">;
|
|
5288
5470
|
} & E, z.ZodTypeAny, "passthrough">>;
|
|
5289
5471
|
};
|
|
@@ -5306,6 +5488,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5306
5488
|
}>>>;
|
|
5307
5489
|
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
5308
5490
|
id: z.ZodString;
|
|
5491
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
5309
5492
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
5310
5493
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
5311
5494
|
}, {
|
|
@@ -5421,6 +5604,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5421
5604
|
totalBalances: Record<string, string>;
|
|
5422
5605
|
tokenId: string;
|
|
5423
5606
|
tokenAddress?: `0x${string}` | undefined;
|
|
5607
|
+
investmentId?: string | undefined;
|
|
5424
5608
|
}, {
|
|
5425
5609
|
data: {
|
|
5426
5610
|
poolFeePercentage: string;
|
|
@@ -5446,8 +5630,10 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5446
5630
|
totalBalances: Record<string, string>;
|
|
5447
5631
|
tokenId: string;
|
|
5448
5632
|
tokenAddress?: string | undefined;
|
|
5633
|
+
investmentId?: string | undefined;
|
|
5449
5634
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5450
5635
|
id: z.ZodString;
|
|
5636
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
5451
5637
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
5452
5638
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
5453
5639
|
}, {
|
|
@@ -5481,6 +5667,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5481
5667
|
id: string;
|
|
5482
5668
|
totalBalances: Record<string, string>;
|
|
5483
5669
|
tokenAddress?: `0x${string}` | undefined;
|
|
5670
|
+
investmentId?: string | undefined;
|
|
5484
5671
|
}, {
|
|
5485
5672
|
data: {
|
|
5486
5673
|
lending: boolean;
|
|
@@ -5492,8 +5679,10 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5492
5679
|
id: string;
|
|
5493
5680
|
totalBalances: Record<string, string>;
|
|
5494
5681
|
tokenAddress?: string | undefined;
|
|
5682
|
+
investmentId?: string | undefined;
|
|
5495
5683
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5496
5684
|
id: z.ZodString;
|
|
5685
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
5497
5686
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
5498
5687
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
5499
5688
|
}, {
|
|
@@ -5513,6 +5702,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5513
5702
|
id: string;
|
|
5514
5703
|
totalBalances: Record<string, string>;
|
|
5515
5704
|
tokenAddress?: `0x${string}` | undefined;
|
|
5705
|
+
investmentId?: string | undefined;
|
|
5516
5706
|
}, {
|
|
5517
5707
|
data: {
|
|
5518
5708
|
delegatingTo: string;
|
|
@@ -5520,8 +5710,10 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5520
5710
|
id: string;
|
|
5521
5711
|
totalBalances: Record<string, string>;
|
|
5522
5712
|
tokenAddress?: string | undefined;
|
|
5713
|
+
investmentId?: string | undefined;
|
|
5523
5714
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5524
5715
|
id: z.ZodString;
|
|
5716
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
5525
5717
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
5526
5718
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
5527
5719
|
}, {
|
|
@@ -5552,6 +5744,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5552
5744
|
investmentId?: string | undefined;
|
|
5553
5745
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5554
5746
|
id: z.ZodString;
|
|
5747
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
5555
5748
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
5556
5749
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
5557
5750
|
}, {
|
|
@@ -5623,6 +5816,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5623
5816
|
id: string;
|
|
5624
5817
|
totalBalances: Record<string, string>;
|
|
5625
5818
|
tokenAddress?: `0x${string}` | undefined;
|
|
5819
|
+
investmentId?: string | undefined;
|
|
5626
5820
|
}, {
|
|
5627
5821
|
data: {
|
|
5628
5822
|
stakerInfo: {
|
|
@@ -5640,6 +5834,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5640
5834
|
id: string;
|
|
5641
5835
|
totalBalances: Record<string, string>;
|
|
5642
5836
|
tokenAddress?: string | undefined;
|
|
5837
|
+
investmentId?: string | undefined;
|
|
5643
5838
|
}>]>, "many">;
|
|
5644
5839
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
5645
5840
|
productId: z.ZodOptional<z.ZodString>;
|
|
@@ -5658,6 +5853,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5658
5853
|
}>>>;
|
|
5659
5854
|
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
5660
5855
|
id: z.ZodString;
|
|
5856
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
5661
5857
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
5662
5858
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
5663
5859
|
}, {
|
|
@@ -5773,6 +5969,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5773
5969
|
totalBalances: Record<string, string>;
|
|
5774
5970
|
tokenId: string;
|
|
5775
5971
|
tokenAddress?: `0x${string}` | undefined;
|
|
5972
|
+
investmentId?: string | undefined;
|
|
5776
5973
|
}, {
|
|
5777
5974
|
data: {
|
|
5778
5975
|
poolFeePercentage: string;
|
|
@@ -5798,8 +5995,10 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5798
5995
|
totalBalances: Record<string, string>;
|
|
5799
5996
|
tokenId: string;
|
|
5800
5997
|
tokenAddress?: string | undefined;
|
|
5998
|
+
investmentId?: string | undefined;
|
|
5801
5999
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5802
6000
|
id: z.ZodString;
|
|
6001
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
5803
6002
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
5804
6003
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
5805
6004
|
}, {
|
|
@@ -5833,6 +6032,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5833
6032
|
id: string;
|
|
5834
6033
|
totalBalances: Record<string, string>;
|
|
5835
6034
|
tokenAddress?: `0x${string}` | undefined;
|
|
6035
|
+
investmentId?: string | undefined;
|
|
5836
6036
|
}, {
|
|
5837
6037
|
data: {
|
|
5838
6038
|
lending: boolean;
|
|
@@ -5844,8 +6044,10 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5844
6044
|
id: string;
|
|
5845
6045
|
totalBalances: Record<string, string>;
|
|
5846
6046
|
tokenAddress?: string | undefined;
|
|
6047
|
+
investmentId?: string | undefined;
|
|
5847
6048
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5848
6049
|
id: z.ZodString;
|
|
6050
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
5849
6051
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
5850
6052
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
5851
6053
|
}, {
|
|
@@ -5865,6 +6067,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5865
6067
|
id: string;
|
|
5866
6068
|
totalBalances: Record<string, string>;
|
|
5867
6069
|
tokenAddress?: `0x${string}` | undefined;
|
|
6070
|
+
investmentId?: string | undefined;
|
|
5868
6071
|
}, {
|
|
5869
6072
|
data: {
|
|
5870
6073
|
delegatingTo: string;
|
|
@@ -5872,8 +6075,10 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5872
6075
|
id: string;
|
|
5873
6076
|
totalBalances: Record<string, string>;
|
|
5874
6077
|
tokenAddress?: string | undefined;
|
|
6078
|
+
investmentId?: string | undefined;
|
|
5875
6079
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5876
6080
|
id: z.ZodString;
|
|
6081
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
5877
6082
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
5878
6083
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
5879
6084
|
}, {
|
|
@@ -5904,6 +6109,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5904
6109
|
investmentId?: string | undefined;
|
|
5905
6110
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5906
6111
|
id: z.ZodString;
|
|
6112
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
5907
6113
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
5908
6114
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
5909
6115
|
}, {
|
|
@@ -5975,6 +6181,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5975
6181
|
id: string;
|
|
5976
6182
|
totalBalances: Record<string, string>;
|
|
5977
6183
|
tokenAddress?: `0x${string}` | undefined;
|
|
6184
|
+
investmentId?: string | undefined;
|
|
5978
6185
|
}, {
|
|
5979
6186
|
data: {
|
|
5980
6187
|
stakerInfo: {
|
|
@@ -5992,6 +6199,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5992
6199
|
id: string;
|
|
5993
6200
|
totalBalances: Record<string, string>;
|
|
5994
6201
|
tokenAddress?: string | undefined;
|
|
6202
|
+
investmentId?: string | undefined;
|
|
5995
6203
|
}>]>, "many">;
|
|
5996
6204
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
5997
6205
|
productId: z.ZodOptional<z.ZodString>;
|
|
@@ -6010,6 +6218,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6010
6218
|
}>>>;
|
|
6011
6219
|
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
6012
6220
|
id: z.ZodString;
|
|
6221
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
6013
6222
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
6014
6223
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
6015
6224
|
}, {
|
|
@@ -6125,6 +6334,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6125
6334
|
totalBalances: Record<string, string>;
|
|
6126
6335
|
tokenId: string;
|
|
6127
6336
|
tokenAddress?: `0x${string}` | undefined;
|
|
6337
|
+
investmentId?: string | undefined;
|
|
6128
6338
|
}, {
|
|
6129
6339
|
data: {
|
|
6130
6340
|
poolFeePercentage: string;
|
|
@@ -6150,8 +6360,10 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6150
6360
|
totalBalances: Record<string, string>;
|
|
6151
6361
|
tokenId: string;
|
|
6152
6362
|
tokenAddress?: string | undefined;
|
|
6363
|
+
investmentId?: string | undefined;
|
|
6153
6364
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6154
6365
|
id: z.ZodString;
|
|
6366
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
6155
6367
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
6156
6368
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
6157
6369
|
}, {
|
|
@@ -6185,6 +6397,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6185
6397
|
id: string;
|
|
6186
6398
|
totalBalances: Record<string, string>;
|
|
6187
6399
|
tokenAddress?: `0x${string}` | undefined;
|
|
6400
|
+
investmentId?: string | undefined;
|
|
6188
6401
|
}, {
|
|
6189
6402
|
data: {
|
|
6190
6403
|
lending: boolean;
|
|
@@ -6196,8 +6409,10 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6196
6409
|
id: string;
|
|
6197
6410
|
totalBalances: Record<string, string>;
|
|
6198
6411
|
tokenAddress?: string | undefined;
|
|
6412
|
+
investmentId?: string | undefined;
|
|
6199
6413
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6200
6414
|
id: z.ZodString;
|
|
6415
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
6201
6416
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
6202
6417
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
6203
6418
|
}, {
|
|
@@ -6217,6 +6432,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6217
6432
|
id: string;
|
|
6218
6433
|
totalBalances: Record<string, string>;
|
|
6219
6434
|
tokenAddress?: `0x${string}` | undefined;
|
|
6435
|
+
investmentId?: string | undefined;
|
|
6220
6436
|
}, {
|
|
6221
6437
|
data: {
|
|
6222
6438
|
delegatingTo: string;
|
|
@@ -6224,8 +6440,10 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6224
6440
|
id: string;
|
|
6225
6441
|
totalBalances: Record<string, string>;
|
|
6226
6442
|
tokenAddress?: string | undefined;
|
|
6443
|
+
investmentId?: string | undefined;
|
|
6227
6444
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6228
6445
|
id: z.ZodString;
|
|
6446
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
6229
6447
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
6230
6448
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
6231
6449
|
}, {
|
|
@@ -6256,6 +6474,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6256
6474
|
investmentId?: string | undefined;
|
|
6257
6475
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6258
6476
|
id: z.ZodString;
|
|
6477
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
6259
6478
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
6260
6479
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
6261
6480
|
}, {
|
|
@@ -6327,6 +6546,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6327
6546
|
id: string;
|
|
6328
6547
|
totalBalances: Record<string, string>;
|
|
6329
6548
|
tokenAddress?: `0x${string}` | undefined;
|
|
6549
|
+
investmentId?: string | undefined;
|
|
6330
6550
|
}, {
|
|
6331
6551
|
data: {
|
|
6332
6552
|
stakerInfo: {
|
|
@@ -6344,6 +6564,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6344
6564
|
id: string;
|
|
6345
6565
|
totalBalances: Record<string, string>;
|
|
6346
6566
|
tokenAddress?: string | undefined;
|
|
6567
|
+
investmentId?: string | undefined;
|
|
6347
6568
|
}>]>, "many">;
|
|
6348
6569
|
}, z.ZodTypeAny, "passthrough">>, z.objectOutputType<{
|
|
6349
6570
|
productId: z.ZodOptional<z.ZodString>;
|
|
@@ -6362,6 +6583,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6362
6583
|
}>>>;
|
|
6363
6584
|
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
6364
6585
|
id: z.ZodString;
|
|
6586
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
6365
6587
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
6366
6588
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
6367
6589
|
}, {
|
|
@@ -6477,6 +6699,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6477
6699
|
totalBalances: Record<string, string>;
|
|
6478
6700
|
tokenId: string;
|
|
6479
6701
|
tokenAddress?: `0x${string}` | undefined;
|
|
6702
|
+
investmentId?: string | undefined;
|
|
6480
6703
|
}, {
|
|
6481
6704
|
data: {
|
|
6482
6705
|
poolFeePercentage: string;
|
|
@@ -6502,8 +6725,10 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6502
6725
|
totalBalances: Record<string, string>;
|
|
6503
6726
|
tokenId: string;
|
|
6504
6727
|
tokenAddress?: string | undefined;
|
|
6728
|
+
investmentId?: string | undefined;
|
|
6505
6729
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6506
6730
|
id: z.ZodString;
|
|
6731
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
6507
6732
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
6508
6733
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
6509
6734
|
}, {
|
|
@@ -6537,6 +6762,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6537
6762
|
id: string;
|
|
6538
6763
|
totalBalances: Record<string, string>;
|
|
6539
6764
|
tokenAddress?: `0x${string}` | undefined;
|
|
6765
|
+
investmentId?: string | undefined;
|
|
6540
6766
|
}, {
|
|
6541
6767
|
data: {
|
|
6542
6768
|
lending: boolean;
|
|
@@ -6548,8 +6774,10 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6548
6774
|
id: string;
|
|
6549
6775
|
totalBalances: Record<string, string>;
|
|
6550
6776
|
tokenAddress?: string | undefined;
|
|
6777
|
+
investmentId?: string | undefined;
|
|
6551
6778
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6552
6779
|
id: z.ZodString;
|
|
6780
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
6553
6781
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
6554
6782
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
6555
6783
|
}, {
|
|
@@ -6569,6 +6797,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6569
6797
|
id: string;
|
|
6570
6798
|
totalBalances: Record<string, string>;
|
|
6571
6799
|
tokenAddress?: `0x${string}` | undefined;
|
|
6800
|
+
investmentId?: string | undefined;
|
|
6572
6801
|
}, {
|
|
6573
6802
|
data: {
|
|
6574
6803
|
delegatingTo: string;
|
|
@@ -6576,8 +6805,10 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6576
6805
|
id: string;
|
|
6577
6806
|
totalBalances: Record<string, string>;
|
|
6578
6807
|
tokenAddress?: string | undefined;
|
|
6808
|
+
investmentId?: string | undefined;
|
|
6579
6809
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6580
6810
|
id: z.ZodString;
|
|
6811
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
6581
6812
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
6582
6813
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
6583
6814
|
}, {
|
|
@@ -6608,6 +6839,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6608
6839
|
investmentId?: string | undefined;
|
|
6609
6840
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6610
6841
|
id: z.ZodString;
|
|
6842
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
6611
6843
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
6612
6844
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
6613
6845
|
}, {
|
|
@@ -6679,6 +6911,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6679
6911
|
id: string;
|
|
6680
6912
|
totalBalances: Record<string, string>;
|
|
6681
6913
|
tokenAddress?: `0x${string}` | undefined;
|
|
6914
|
+
investmentId?: string | undefined;
|
|
6682
6915
|
}, {
|
|
6683
6916
|
data: {
|
|
6684
6917
|
stakerInfo: {
|
|
@@ -6696,6 +6929,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6696
6929
|
id: string;
|
|
6697
6930
|
totalBalances: Record<string, string>;
|
|
6698
6931
|
tokenAddress?: string | undefined;
|
|
6932
|
+
investmentId?: string | undefined;
|
|
6699
6933
|
}>]>, "many">;
|
|
6700
6934
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
6701
6935
|
productId: z.ZodOptional<z.ZodString>;
|
|
@@ -6714,6 +6948,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6714
6948
|
}>>>;
|
|
6715
6949
|
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
6716
6950
|
id: z.ZodString;
|
|
6951
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
6717
6952
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
6718
6953
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
6719
6954
|
}, {
|
|
@@ -6829,6 +7064,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6829
7064
|
totalBalances: Record<string, string>;
|
|
6830
7065
|
tokenId: string;
|
|
6831
7066
|
tokenAddress?: `0x${string}` | undefined;
|
|
7067
|
+
investmentId?: string | undefined;
|
|
6832
7068
|
}, {
|
|
6833
7069
|
data: {
|
|
6834
7070
|
poolFeePercentage: string;
|
|
@@ -6854,8 +7090,10 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6854
7090
|
totalBalances: Record<string, string>;
|
|
6855
7091
|
tokenId: string;
|
|
6856
7092
|
tokenAddress?: string | undefined;
|
|
7093
|
+
investmentId?: string | undefined;
|
|
6857
7094
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6858
7095
|
id: z.ZodString;
|
|
7096
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
6859
7097
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
6860
7098
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
6861
7099
|
}, {
|
|
@@ -6889,6 +7127,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6889
7127
|
id: string;
|
|
6890
7128
|
totalBalances: Record<string, string>;
|
|
6891
7129
|
tokenAddress?: `0x${string}` | undefined;
|
|
7130
|
+
investmentId?: string | undefined;
|
|
6892
7131
|
}, {
|
|
6893
7132
|
data: {
|
|
6894
7133
|
lending: boolean;
|
|
@@ -6900,8 +7139,10 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6900
7139
|
id: string;
|
|
6901
7140
|
totalBalances: Record<string, string>;
|
|
6902
7141
|
tokenAddress?: string | undefined;
|
|
7142
|
+
investmentId?: string | undefined;
|
|
6903
7143
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6904
7144
|
id: z.ZodString;
|
|
7145
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
6905
7146
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
6906
7147
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
6907
7148
|
}, {
|
|
@@ -6921,6 +7162,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6921
7162
|
id: string;
|
|
6922
7163
|
totalBalances: Record<string, string>;
|
|
6923
7164
|
tokenAddress?: `0x${string}` | undefined;
|
|
7165
|
+
investmentId?: string | undefined;
|
|
6924
7166
|
}, {
|
|
6925
7167
|
data: {
|
|
6926
7168
|
delegatingTo: string;
|
|
@@ -6928,8 +7170,10 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6928
7170
|
id: string;
|
|
6929
7171
|
totalBalances: Record<string, string>;
|
|
6930
7172
|
tokenAddress?: string | undefined;
|
|
7173
|
+
investmentId?: string | undefined;
|
|
6931
7174
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6932
7175
|
id: z.ZodString;
|
|
7176
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
6933
7177
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
6934
7178
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
6935
7179
|
}, {
|
|
@@ -6960,6 +7204,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6960
7204
|
investmentId?: string | undefined;
|
|
6961
7205
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6962
7206
|
id: z.ZodString;
|
|
7207
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
6963
7208
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
6964
7209
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
6965
7210
|
}, {
|
|
@@ -7031,6 +7276,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7031
7276
|
id: string;
|
|
7032
7277
|
totalBalances: Record<string, string>;
|
|
7033
7278
|
tokenAddress?: `0x${string}` | undefined;
|
|
7279
|
+
investmentId?: string | undefined;
|
|
7034
7280
|
}, {
|
|
7035
7281
|
data: {
|
|
7036
7282
|
stakerInfo: {
|
|
@@ -7048,6 +7294,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7048
7294
|
id: string;
|
|
7049
7295
|
totalBalances: Record<string, string>;
|
|
7050
7296
|
tokenAddress?: string | undefined;
|
|
7297
|
+
investmentId?: string | undefined;
|
|
7051
7298
|
}>]>, "many">;
|
|
7052
7299
|
}, z.ZodTypeAny, "passthrough">> & {
|
|
7053
7300
|
extend: <E extends z.ZodRawShape>(extension: E) => z.ZodEffects<z.ZodObject<{
|
|
@@ -7067,6 +7314,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7067
7314
|
}>>>;
|
|
7068
7315
|
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
7069
7316
|
id: z.ZodString;
|
|
7317
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
7070
7318
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
7071
7319
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
7072
7320
|
}, {
|
|
@@ -7182,6 +7430,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7182
7430
|
totalBalances: Record<string, string>;
|
|
7183
7431
|
tokenId: string;
|
|
7184
7432
|
tokenAddress?: `0x${string}` | undefined;
|
|
7433
|
+
investmentId?: string | undefined;
|
|
7185
7434
|
}, {
|
|
7186
7435
|
data: {
|
|
7187
7436
|
poolFeePercentage: string;
|
|
@@ -7207,8 +7456,10 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7207
7456
|
totalBalances: Record<string, string>;
|
|
7208
7457
|
tokenId: string;
|
|
7209
7458
|
tokenAddress?: string | undefined;
|
|
7459
|
+
investmentId?: string | undefined;
|
|
7210
7460
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7211
7461
|
id: z.ZodString;
|
|
7462
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
7212
7463
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
7213
7464
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
7214
7465
|
}, {
|
|
@@ -7242,6 +7493,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7242
7493
|
id: string;
|
|
7243
7494
|
totalBalances: Record<string, string>;
|
|
7244
7495
|
tokenAddress?: `0x${string}` | undefined;
|
|
7496
|
+
investmentId?: string | undefined;
|
|
7245
7497
|
}, {
|
|
7246
7498
|
data: {
|
|
7247
7499
|
lending: boolean;
|
|
@@ -7253,8 +7505,10 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7253
7505
|
id: string;
|
|
7254
7506
|
totalBalances: Record<string, string>;
|
|
7255
7507
|
tokenAddress?: string | undefined;
|
|
7508
|
+
investmentId?: string | undefined;
|
|
7256
7509
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7257
7510
|
id: z.ZodString;
|
|
7511
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
7258
7512
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
7259
7513
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
7260
7514
|
}, {
|
|
@@ -7274,6 +7528,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7274
7528
|
id: string;
|
|
7275
7529
|
totalBalances: Record<string, string>;
|
|
7276
7530
|
tokenAddress?: `0x${string}` | undefined;
|
|
7531
|
+
investmentId?: string | undefined;
|
|
7277
7532
|
}, {
|
|
7278
7533
|
data: {
|
|
7279
7534
|
delegatingTo: string;
|
|
@@ -7281,8 +7536,10 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7281
7536
|
id: string;
|
|
7282
7537
|
totalBalances: Record<string, string>;
|
|
7283
7538
|
tokenAddress?: string | undefined;
|
|
7539
|
+
investmentId?: string | undefined;
|
|
7284
7540
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7285
7541
|
id: z.ZodString;
|
|
7542
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
7286
7543
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
7287
7544
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
7288
7545
|
}, {
|
|
@@ -7313,6 +7570,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7313
7570
|
investmentId?: string | undefined;
|
|
7314
7571
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7315
7572
|
id: z.ZodString;
|
|
7573
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
7316
7574
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
7317
7575
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
7318
7576
|
}, {
|
|
@@ -7384,6 +7642,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7384
7642
|
id: string;
|
|
7385
7643
|
totalBalances: Record<string, string>;
|
|
7386
7644
|
tokenAddress?: `0x${string}` | undefined;
|
|
7645
|
+
investmentId?: string | undefined;
|
|
7387
7646
|
}, {
|
|
7388
7647
|
data: {
|
|
7389
7648
|
stakerInfo: {
|
|
@@ -7401,6 +7660,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7401
7660
|
id: string;
|
|
7402
7661
|
totalBalances: Record<string, string>;
|
|
7403
7662
|
tokenAddress?: string | undefined;
|
|
7663
|
+
investmentId?: string | undefined;
|
|
7404
7664
|
}>]>, "many">;
|
|
7405
7665
|
} & E, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
7406
7666
|
productId: z.ZodOptional<z.ZodString>;
|
|
@@ -7419,6 +7679,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7419
7679
|
}>>>;
|
|
7420
7680
|
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
7421
7681
|
id: z.ZodString;
|
|
7682
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
7422
7683
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
7423
7684
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
7424
7685
|
}, {
|
|
@@ -7534,6 +7795,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7534
7795
|
totalBalances: Record<string, string>;
|
|
7535
7796
|
tokenId: string;
|
|
7536
7797
|
tokenAddress?: `0x${string}` | undefined;
|
|
7798
|
+
investmentId?: string | undefined;
|
|
7537
7799
|
}, {
|
|
7538
7800
|
data: {
|
|
7539
7801
|
poolFeePercentage: string;
|
|
@@ -7559,8 +7821,10 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7559
7821
|
totalBalances: Record<string, string>;
|
|
7560
7822
|
tokenId: string;
|
|
7561
7823
|
tokenAddress?: string | undefined;
|
|
7824
|
+
investmentId?: string | undefined;
|
|
7562
7825
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7563
7826
|
id: z.ZodString;
|
|
7827
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
7564
7828
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
7565
7829
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
7566
7830
|
}, {
|
|
@@ -7594,6 +7858,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7594
7858
|
id: string;
|
|
7595
7859
|
totalBalances: Record<string, string>;
|
|
7596
7860
|
tokenAddress?: `0x${string}` | undefined;
|
|
7861
|
+
investmentId?: string | undefined;
|
|
7597
7862
|
}, {
|
|
7598
7863
|
data: {
|
|
7599
7864
|
lending: boolean;
|
|
@@ -7605,8 +7870,10 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7605
7870
|
id: string;
|
|
7606
7871
|
totalBalances: Record<string, string>;
|
|
7607
7872
|
tokenAddress?: string | undefined;
|
|
7873
|
+
investmentId?: string | undefined;
|
|
7608
7874
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7609
7875
|
id: z.ZodString;
|
|
7876
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
7610
7877
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
7611
7878
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
7612
7879
|
}, {
|
|
@@ -7626,6 +7893,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7626
7893
|
id: string;
|
|
7627
7894
|
totalBalances: Record<string, string>;
|
|
7628
7895
|
tokenAddress?: `0x${string}` | undefined;
|
|
7896
|
+
investmentId?: string | undefined;
|
|
7629
7897
|
}, {
|
|
7630
7898
|
data: {
|
|
7631
7899
|
delegatingTo: string;
|
|
@@ -7633,8 +7901,10 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7633
7901
|
id: string;
|
|
7634
7902
|
totalBalances: Record<string, string>;
|
|
7635
7903
|
tokenAddress?: string | undefined;
|
|
7904
|
+
investmentId?: string | undefined;
|
|
7636
7905
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7637
7906
|
id: z.ZodString;
|
|
7907
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
7638
7908
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
7639
7909
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
7640
7910
|
}, {
|
|
@@ -7665,6 +7935,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7665
7935
|
investmentId?: string | undefined;
|
|
7666
7936
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7667
7937
|
id: z.ZodString;
|
|
7938
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
7668
7939
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
7669
7940
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
7670
7941
|
}, {
|
|
@@ -7736,6 +8007,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7736
8007
|
id: string;
|
|
7737
8008
|
totalBalances: Record<string, string>;
|
|
7738
8009
|
tokenAddress?: `0x${string}` | undefined;
|
|
8010
|
+
investmentId?: string | undefined;
|
|
7739
8011
|
}, {
|
|
7740
8012
|
data: {
|
|
7741
8013
|
stakerInfo: {
|
|
@@ -7753,6 +8025,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7753
8025
|
id: string;
|
|
7754
8026
|
totalBalances: Record<string, string>;
|
|
7755
8027
|
tokenAddress?: string | undefined;
|
|
8028
|
+
investmentId?: string | undefined;
|
|
7756
8029
|
}>]>, "many">;
|
|
7757
8030
|
} & E, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
7758
8031
|
productId: z.ZodOptional<z.ZodString>;
|
|
@@ -7771,6 +8044,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7771
8044
|
}>>>;
|
|
7772
8045
|
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
7773
8046
|
id: z.ZodString;
|
|
8047
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
7774
8048
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
7775
8049
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
7776
8050
|
}, {
|
|
@@ -7886,6 +8160,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7886
8160
|
totalBalances: Record<string, string>;
|
|
7887
8161
|
tokenId: string;
|
|
7888
8162
|
tokenAddress?: `0x${string}` | undefined;
|
|
8163
|
+
investmentId?: string | undefined;
|
|
7889
8164
|
}, {
|
|
7890
8165
|
data: {
|
|
7891
8166
|
poolFeePercentage: string;
|
|
@@ -7911,8 +8186,10 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7911
8186
|
totalBalances: Record<string, string>;
|
|
7912
8187
|
tokenId: string;
|
|
7913
8188
|
tokenAddress?: string | undefined;
|
|
8189
|
+
investmentId?: string | undefined;
|
|
7914
8190
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7915
8191
|
id: z.ZodString;
|
|
8192
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
7916
8193
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
7917
8194
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
7918
8195
|
}, {
|
|
@@ -7946,6 +8223,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7946
8223
|
id: string;
|
|
7947
8224
|
totalBalances: Record<string, string>;
|
|
7948
8225
|
tokenAddress?: `0x${string}` | undefined;
|
|
8226
|
+
investmentId?: string | undefined;
|
|
7949
8227
|
}, {
|
|
7950
8228
|
data: {
|
|
7951
8229
|
lending: boolean;
|
|
@@ -7957,8 +8235,10 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7957
8235
|
id: string;
|
|
7958
8236
|
totalBalances: Record<string, string>;
|
|
7959
8237
|
tokenAddress?: string | undefined;
|
|
8238
|
+
investmentId?: string | undefined;
|
|
7960
8239
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7961
8240
|
id: z.ZodString;
|
|
8241
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
7962
8242
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
7963
8243
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
7964
8244
|
}, {
|
|
@@ -7978,6 +8258,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7978
8258
|
id: string;
|
|
7979
8259
|
totalBalances: Record<string, string>;
|
|
7980
8260
|
tokenAddress?: `0x${string}` | undefined;
|
|
8261
|
+
investmentId?: string | undefined;
|
|
7981
8262
|
}, {
|
|
7982
8263
|
data: {
|
|
7983
8264
|
delegatingTo: string;
|
|
@@ -7985,8 +8266,10 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7985
8266
|
id: string;
|
|
7986
8267
|
totalBalances: Record<string, string>;
|
|
7987
8268
|
tokenAddress?: string | undefined;
|
|
8269
|
+
investmentId?: string | undefined;
|
|
7988
8270
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7989
8271
|
id: z.ZodString;
|
|
8272
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
7990
8273
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
7991
8274
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
7992
8275
|
}, {
|
|
@@ -8017,6 +8300,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8017
8300
|
investmentId?: string | undefined;
|
|
8018
8301
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
8019
8302
|
id: z.ZodString;
|
|
8303
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
8020
8304
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
8021
8305
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
8022
8306
|
}, {
|
|
@@ -8088,6 +8372,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8088
8372
|
id: string;
|
|
8089
8373
|
totalBalances: Record<string, string>;
|
|
8090
8374
|
tokenAddress?: `0x${string}` | undefined;
|
|
8375
|
+
investmentId?: string | undefined;
|
|
8091
8376
|
}, {
|
|
8092
8377
|
data: {
|
|
8093
8378
|
stakerInfo: {
|
|
@@ -8105,6 +8390,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8105
8390
|
id: string;
|
|
8106
8391
|
totalBalances: Record<string, string>;
|
|
8107
8392
|
tokenAddress?: string | undefined;
|
|
8393
|
+
investmentId?: string | undefined;
|
|
8108
8394
|
}>]>, "many">;
|
|
8109
8395
|
} & E, z.ZodTypeAny, "passthrough">>, z.objectOutputType<{
|
|
8110
8396
|
productId: z.ZodOptional<z.ZodString>;
|
|
@@ -8123,6 +8409,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8123
8409
|
}>>>;
|
|
8124
8410
|
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
8125
8411
|
id: z.ZodString;
|
|
8412
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
8126
8413
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
8127
8414
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
8128
8415
|
}, {
|
|
@@ -8238,6 +8525,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8238
8525
|
totalBalances: Record<string, string>;
|
|
8239
8526
|
tokenId: string;
|
|
8240
8527
|
tokenAddress?: `0x${string}` | undefined;
|
|
8528
|
+
investmentId?: string | undefined;
|
|
8241
8529
|
}, {
|
|
8242
8530
|
data: {
|
|
8243
8531
|
poolFeePercentage: string;
|
|
@@ -8263,8 +8551,10 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8263
8551
|
totalBalances: Record<string, string>;
|
|
8264
8552
|
tokenId: string;
|
|
8265
8553
|
tokenAddress?: string | undefined;
|
|
8554
|
+
investmentId?: string | undefined;
|
|
8266
8555
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
8267
8556
|
id: z.ZodString;
|
|
8557
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
8268
8558
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
8269
8559
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
8270
8560
|
}, {
|
|
@@ -8298,6 +8588,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8298
8588
|
id: string;
|
|
8299
8589
|
totalBalances: Record<string, string>;
|
|
8300
8590
|
tokenAddress?: `0x${string}` | undefined;
|
|
8591
|
+
investmentId?: string | undefined;
|
|
8301
8592
|
}, {
|
|
8302
8593
|
data: {
|
|
8303
8594
|
lending: boolean;
|
|
@@ -8309,8 +8600,10 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8309
8600
|
id: string;
|
|
8310
8601
|
totalBalances: Record<string, string>;
|
|
8311
8602
|
tokenAddress?: string | undefined;
|
|
8603
|
+
investmentId?: string | undefined;
|
|
8312
8604
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
8313
8605
|
id: z.ZodString;
|
|
8606
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
8314
8607
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
8315
8608
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
8316
8609
|
}, {
|
|
@@ -8330,6 +8623,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8330
8623
|
id: string;
|
|
8331
8624
|
totalBalances: Record<string, string>;
|
|
8332
8625
|
tokenAddress?: `0x${string}` | undefined;
|
|
8626
|
+
investmentId?: string | undefined;
|
|
8333
8627
|
}, {
|
|
8334
8628
|
data: {
|
|
8335
8629
|
delegatingTo: string;
|
|
@@ -8337,8 +8631,10 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8337
8631
|
id: string;
|
|
8338
8632
|
totalBalances: Record<string, string>;
|
|
8339
8633
|
tokenAddress?: string | undefined;
|
|
8634
|
+
investmentId?: string | undefined;
|
|
8340
8635
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
8341
8636
|
id: z.ZodString;
|
|
8637
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
8342
8638
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
8343
8639
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
8344
8640
|
}, {
|
|
@@ -8369,6 +8665,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8369
8665
|
investmentId?: string | undefined;
|
|
8370
8666
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
8371
8667
|
id: z.ZodString;
|
|
8668
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
8372
8669
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
8373
8670
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
8374
8671
|
}, {
|
|
@@ -8440,6 +8737,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8440
8737
|
id: string;
|
|
8441
8738
|
totalBalances: Record<string, string>;
|
|
8442
8739
|
tokenAddress?: `0x${string}` | undefined;
|
|
8740
|
+
investmentId?: string | undefined;
|
|
8443
8741
|
}, {
|
|
8444
8742
|
data: {
|
|
8445
8743
|
stakerInfo: {
|
|
@@ -8457,6 +8755,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8457
8755
|
id: string;
|
|
8458
8756
|
totalBalances: Record<string, string>;
|
|
8459
8757
|
tokenAddress?: string | undefined;
|
|
8758
|
+
investmentId?: string | undefined;
|
|
8460
8759
|
}>]>, "many">;
|
|
8461
8760
|
} & E, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
8462
8761
|
productId: z.ZodOptional<z.ZodString>;
|
|
@@ -8475,6 +8774,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8475
8774
|
}>>>;
|
|
8476
8775
|
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
8477
8776
|
id: z.ZodString;
|
|
8777
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
8478
8778
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
8479
8779
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
8480
8780
|
}, {
|
|
@@ -8590,6 +8890,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8590
8890
|
totalBalances: Record<string, string>;
|
|
8591
8891
|
tokenId: string;
|
|
8592
8892
|
tokenAddress?: `0x${string}` | undefined;
|
|
8893
|
+
investmentId?: string | undefined;
|
|
8593
8894
|
}, {
|
|
8594
8895
|
data: {
|
|
8595
8896
|
poolFeePercentage: string;
|
|
@@ -8615,8 +8916,10 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8615
8916
|
totalBalances: Record<string, string>;
|
|
8616
8917
|
tokenId: string;
|
|
8617
8918
|
tokenAddress?: string | undefined;
|
|
8919
|
+
investmentId?: string | undefined;
|
|
8618
8920
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
8619
8921
|
id: z.ZodString;
|
|
8922
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
8620
8923
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
8621
8924
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
8622
8925
|
}, {
|
|
@@ -8650,6 +8953,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8650
8953
|
id: string;
|
|
8651
8954
|
totalBalances: Record<string, string>;
|
|
8652
8955
|
tokenAddress?: `0x${string}` | undefined;
|
|
8956
|
+
investmentId?: string | undefined;
|
|
8653
8957
|
}, {
|
|
8654
8958
|
data: {
|
|
8655
8959
|
lending: boolean;
|
|
@@ -8661,8 +8965,10 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8661
8965
|
id: string;
|
|
8662
8966
|
totalBalances: Record<string, string>;
|
|
8663
8967
|
tokenAddress?: string | undefined;
|
|
8968
|
+
investmentId?: string | undefined;
|
|
8664
8969
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
8665
8970
|
id: z.ZodString;
|
|
8971
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
8666
8972
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
8667
8973
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
8668
8974
|
}, {
|
|
@@ -8682,6 +8988,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8682
8988
|
id: string;
|
|
8683
8989
|
totalBalances: Record<string, string>;
|
|
8684
8990
|
tokenAddress?: `0x${string}` | undefined;
|
|
8991
|
+
investmentId?: string | undefined;
|
|
8685
8992
|
}, {
|
|
8686
8993
|
data: {
|
|
8687
8994
|
delegatingTo: string;
|
|
@@ -8689,8 +8996,10 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8689
8996
|
id: string;
|
|
8690
8997
|
totalBalances: Record<string, string>;
|
|
8691
8998
|
tokenAddress?: string | undefined;
|
|
8999
|
+
investmentId?: string | undefined;
|
|
8692
9000
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
8693
9001
|
id: z.ZodString;
|
|
9002
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
8694
9003
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
8695
9004
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
8696
9005
|
}, {
|
|
@@ -8721,6 +9030,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8721
9030
|
investmentId?: string | undefined;
|
|
8722
9031
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
8723
9032
|
id: z.ZodString;
|
|
9033
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
8724
9034
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
8725
9035
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
8726
9036
|
}, {
|
|
@@ -8792,6 +9102,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8792
9102
|
id: string;
|
|
8793
9103
|
totalBalances: Record<string, string>;
|
|
8794
9104
|
tokenAddress?: `0x${string}` | undefined;
|
|
9105
|
+
investmentId?: string | undefined;
|
|
8795
9106
|
}, {
|
|
8796
9107
|
data: {
|
|
8797
9108
|
stakerInfo: {
|
|
@@ -8809,6 +9120,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8809
9120
|
id: string;
|
|
8810
9121
|
totalBalances: Record<string, string>;
|
|
8811
9122
|
tokenAddress?: string | undefined;
|
|
9123
|
+
investmentId?: string | undefined;
|
|
8812
9124
|
}>]>, "many">;
|
|
8813
9125
|
} & E, z.ZodTypeAny, "passthrough">>;
|
|
8814
9126
|
}, "many">;
|
|
@@ -8831,6 +9143,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8831
9143
|
}>>>;
|
|
8832
9144
|
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
8833
9145
|
id: z.ZodString;
|
|
9146
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
8834
9147
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
8835
9148
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
8836
9149
|
}, {
|
|
@@ -8946,6 +9259,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8946
9259
|
totalBalances: Record<string, string>;
|
|
8947
9260
|
tokenId: string;
|
|
8948
9261
|
tokenAddress?: `0x${string}` | undefined;
|
|
9262
|
+
investmentId?: string | undefined;
|
|
8949
9263
|
}, {
|
|
8950
9264
|
data: {
|
|
8951
9265
|
poolFeePercentage: string;
|
|
@@ -8971,8 +9285,10 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8971
9285
|
totalBalances: Record<string, string>;
|
|
8972
9286
|
tokenId: string;
|
|
8973
9287
|
tokenAddress?: string | undefined;
|
|
9288
|
+
investmentId?: string | undefined;
|
|
8974
9289
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
8975
9290
|
id: z.ZodString;
|
|
9291
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
8976
9292
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
8977
9293
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
8978
9294
|
}, {
|
|
@@ -9006,6 +9322,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9006
9322
|
id: string;
|
|
9007
9323
|
totalBalances: Record<string, string>;
|
|
9008
9324
|
tokenAddress?: `0x${string}` | undefined;
|
|
9325
|
+
investmentId?: string | undefined;
|
|
9009
9326
|
}, {
|
|
9010
9327
|
data: {
|
|
9011
9328
|
lending: boolean;
|
|
@@ -9017,8 +9334,10 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9017
9334
|
id: string;
|
|
9018
9335
|
totalBalances: Record<string, string>;
|
|
9019
9336
|
tokenAddress?: string | undefined;
|
|
9337
|
+
investmentId?: string | undefined;
|
|
9020
9338
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
9021
9339
|
id: z.ZodString;
|
|
9340
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
9022
9341
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
9023
9342
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
9024
9343
|
}, {
|
|
@@ -9038,6 +9357,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9038
9357
|
id: string;
|
|
9039
9358
|
totalBalances: Record<string, string>;
|
|
9040
9359
|
tokenAddress?: `0x${string}` | undefined;
|
|
9360
|
+
investmentId?: string | undefined;
|
|
9041
9361
|
}, {
|
|
9042
9362
|
data: {
|
|
9043
9363
|
delegatingTo: string;
|
|
@@ -9045,8 +9365,10 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9045
9365
|
id: string;
|
|
9046
9366
|
totalBalances: Record<string, string>;
|
|
9047
9367
|
tokenAddress?: string | undefined;
|
|
9368
|
+
investmentId?: string | undefined;
|
|
9048
9369
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
9049
9370
|
id: z.ZodString;
|
|
9371
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
9050
9372
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
9051
9373
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
9052
9374
|
}, {
|
|
@@ -9077,6 +9399,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9077
9399
|
investmentId?: string | undefined;
|
|
9078
9400
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
9079
9401
|
id: z.ZodString;
|
|
9402
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
9080
9403
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
9081
9404
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
9082
9405
|
}, {
|
|
@@ -9148,6 +9471,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9148
9471
|
id: string;
|
|
9149
9472
|
totalBalances: Record<string, string>;
|
|
9150
9473
|
tokenAddress?: `0x${string}` | undefined;
|
|
9474
|
+
investmentId?: string | undefined;
|
|
9151
9475
|
}, {
|
|
9152
9476
|
data: {
|
|
9153
9477
|
stakerInfo: {
|
|
@@ -9165,6 +9489,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9165
9489
|
id: string;
|
|
9166
9490
|
totalBalances: Record<string, string>;
|
|
9167
9491
|
tokenAddress?: string | undefined;
|
|
9492
|
+
investmentId?: string | undefined;
|
|
9168
9493
|
}>]>, "many">;
|
|
9169
9494
|
}, z.ZodTypeAny, "passthrough">[];
|
|
9170
9495
|
}, {
|
|
@@ -9186,6 +9511,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9186
9511
|
}>>>;
|
|
9187
9512
|
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
9188
9513
|
id: z.ZodString;
|
|
9514
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
9189
9515
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
9190
9516
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
9191
9517
|
}, {
|
|
@@ -9301,6 +9627,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9301
9627
|
totalBalances: Record<string, string>;
|
|
9302
9628
|
tokenId: string;
|
|
9303
9629
|
tokenAddress?: `0x${string}` | undefined;
|
|
9630
|
+
investmentId?: string | undefined;
|
|
9304
9631
|
}, {
|
|
9305
9632
|
data: {
|
|
9306
9633
|
poolFeePercentage: string;
|
|
@@ -9326,8 +9653,10 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9326
9653
|
totalBalances: Record<string, string>;
|
|
9327
9654
|
tokenId: string;
|
|
9328
9655
|
tokenAddress?: string | undefined;
|
|
9656
|
+
investmentId?: string | undefined;
|
|
9329
9657
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
9330
9658
|
id: z.ZodString;
|
|
9659
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
9331
9660
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
9332
9661
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
9333
9662
|
}, {
|
|
@@ -9361,6 +9690,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9361
9690
|
id: string;
|
|
9362
9691
|
totalBalances: Record<string, string>;
|
|
9363
9692
|
tokenAddress?: `0x${string}` | undefined;
|
|
9693
|
+
investmentId?: string | undefined;
|
|
9364
9694
|
}, {
|
|
9365
9695
|
data: {
|
|
9366
9696
|
lending: boolean;
|
|
@@ -9372,8 +9702,10 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9372
9702
|
id: string;
|
|
9373
9703
|
totalBalances: Record<string, string>;
|
|
9374
9704
|
tokenAddress?: string | undefined;
|
|
9705
|
+
investmentId?: string | undefined;
|
|
9375
9706
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
9376
9707
|
id: z.ZodString;
|
|
9708
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
9377
9709
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
9378
9710
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
9379
9711
|
}, {
|
|
@@ -9393,6 +9725,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9393
9725
|
id: string;
|
|
9394
9726
|
totalBalances: Record<string, string>;
|
|
9395
9727
|
tokenAddress?: `0x${string}` | undefined;
|
|
9728
|
+
investmentId?: string | undefined;
|
|
9396
9729
|
}, {
|
|
9397
9730
|
data: {
|
|
9398
9731
|
delegatingTo: string;
|
|
@@ -9400,8 +9733,10 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9400
9733
|
id: string;
|
|
9401
9734
|
totalBalances: Record<string, string>;
|
|
9402
9735
|
tokenAddress?: string | undefined;
|
|
9736
|
+
investmentId?: string | undefined;
|
|
9403
9737
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
9404
9738
|
id: z.ZodString;
|
|
9739
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
9405
9740
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
9406
9741
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
9407
9742
|
}, {
|
|
@@ -9432,6 +9767,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9432
9767
|
investmentId?: string | undefined;
|
|
9433
9768
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
9434
9769
|
id: z.ZodString;
|
|
9770
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
9435
9771
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
9436
9772
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
9437
9773
|
}, {
|
|
@@ -9503,6 +9839,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9503
9839
|
id: string;
|
|
9504
9840
|
totalBalances: Record<string, string>;
|
|
9505
9841
|
tokenAddress?: `0x${string}` | undefined;
|
|
9842
|
+
investmentId?: string | undefined;
|
|
9506
9843
|
}, {
|
|
9507
9844
|
data: {
|
|
9508
9845
|
stakerInfo: {
|
|
@@ -9520,6 +9857,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9520
9857
|
id: string;
|
|
9521
9858
|
totalBalances: Record<string, string>;
|
|
9522
9859
|
tokenAddress?: string | undefined;
|
|
9860
|
+
investmentId?: string | undefined;
|
|
9523
9861
|
}>]>, "many">;
|
|
9524
9862
|
}, z.ZodTypeAny, "passthrough">[];
|
|
9525
9863
|
}>;
|
|
@@ -9543,6 +9881,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
9543
9881
|
}>>>;
|
|
9544
9882
|
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
9545
9883
|
id: z.ZodString;
|
|
9884
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
9546
9885
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
9547
9886
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
9548
9887
|
}, {
|
|
@@ -9658,6 +9997,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
9658
9997
|
totalBalances: Record<string, string>;
|
|
9659
9998
|
tokenId: string;
|
|
9660
9999
|
tokenAddress?: `0x${string}` | undefined;
|
|
10000
|
+
investmentId?: string | undefined;
|
|
9661
10001
|
}, {
|
|
9662
10002
|
data: {
|
|
9663
10003
|
poolFeePercentage: string;
|
|
@@ -9683,8 +10023,10 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
9683
10023
|
totalBalances: Record<string, string>;
|
|
9684
10024
|
tokenId: string;
|
|
9685
10025
|
tokenAddress?: string | undefined;
|
|
10026
|
+
investmentId?: string | undefined;
|
|
9686
10027
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
9687
10028
|
id: z.ZodString;
|
|
10029
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
9688
10030
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
9689
10031
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
9690
10032
|
}, {
|
|
@@ -9718,6 +10060,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
9718
10060
|
id: string;
|
|
9719
10061
|
totalBalances: Record<string, string>;
|
|
9720
10062
|
tokenAddress?: `0x${string}` | undefined;
|
|
10063
|
+
investmentId?: string | undefined;
|
|
9721
10064
|
}, {
|
|
9722
10065
|
data: {
|
|
9723
10066
|
lending: boolean;
|
|
@@ -9729,8 +10072,10 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
9729
10072
|
id: string;
|
|
9730
10073
|
totalBalances: Record<string, string>;
|
|
9731
10074
|
tokenAddress?: string | undefined;
|
|
10075
|
+
investmentId?: string | undefined;
|
|
9732
10076
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
9733
10077
|
id: z.ZodString;
|
|
10078
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
9734
10079
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
9735
10080
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
9736
10081
|
}, {
|
|
@@ -9750,6 +10095,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
9750
10095
|
id: string;
|
|
9751
10096
|
totalBalances: Record<string, string>;
|
|
9752
10097
|
tokenAddress?: `0x${string}` | undefined;
|
|
10098
|
+
investmentId?: string | undefined;
|
|
9753
10099
|
}, {
|
|
9754
10100
|
data: {
|
|
9755
10101
|
delegatingTo: string;
|
|
@@ -9757,8 +10103,10 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
9757
10103
|
id: string;
|
|
9758
10104
|
totalBalances: Record<string, string>;
|
|
9759
10105
|
tokenAddress?: string | undefined;
|
|
10106
|
+
investmentId?: string | undefined;
|
|
9760
10107
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
9761
10108
|
id: z.ZodString;
|
|
10109
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
9762
10110
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
9763
10111
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
9764
10112
|
}, {
|
|
@@ -9789,6 +10137,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
9789
10137
|
investmentId?: string | undefined;
|
|
9790
10138
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
9791
10139
|
id: z.ZodString;
|
|
10140
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
9792
10141
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
9793
10142
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
9794
10143
|
}, {
|
|
@@ -9860,6 +10209,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
9860
10209
|
id: string;
|
|
9861
10210
|
totalBalances: Record<string, string>;
|
|
9862
10211
|
tokenAddress?: `0x${string}` | undefined;
|
|
10212
|
+
investmentId?: string | undefined;
|
|
9863
10213
|
}, {
|
|
9864
10214
|
data: {
|
|
9865
10215
|
stakerInfo: {
|
|
@@ -9877,6 +10227,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
9877
10227
|
id: string;
|
|
9878
10228
|
totalBalances: Record<string, string>;
|
|
9879
10229
|
tokenAddress?: string | undefined;
|
|
10230
|
+
investmentId?: string | undefined;
|
|
9880
10231
|
}>]>, "many">;
|
|
9881
10232
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
9882
10233
|
productId: z.ZodOptional<z.ZodString>;
|
|
@@ -9895,6 +10246,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
9895
10246
|
}>>>;
|
|
9896
10247
|
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
9897
10248
|
id: z.ZodString;
|
|
10249
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
9898
10250
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
9899
10251
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
9900
10252
|
}, {
|
|
@@ -10010,6 +10362,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10010
10362
|
totalBalances: Record<string, string>;
|
|
10011
10363
|
tokenId: string;
|
|
10012
10364
|
tokenAddress?: `0x${string}` | undefined;
|
|
10365
|
+
investmentId?: string | undefined;
|
|
10013
10366
|
}, {
|
|
10014
10367
|
data: {
|
|
10015
10368
|
poolFeePercentage: string;
|
|
@@ -10035,8 +10388,10 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10035
10388
|
totalBalances: Record<string, string>;
|
|
10036
10389
|
tokenId: string;
|
|
10037
10390
|
tokenAddress?: string | undefined;
|
|
10391
|
+
investmentId?: string | undefined;
|
|
10038
10392
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10039
10393
|
id: z.ZodString;
|
|
10394
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
10040
10395
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
10041
10396
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
10042
10397
|
}, {
|
|
@@ -10070,6 +10425,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10070
10425
|
id: string;
|
|
10071
10426
|
totalBalances: Record<string, string>;
|
|
10072
10427
|
tokenAddress?: `0x${string}` | undefined;
|
|
10428
|
+
investmentId?: string | undefined;
|
|
10073
10429
|
}, {
|
|
10074
10430
|
data: {
|
|
10075
10431
|
lending: boolean;
|
|
@@ -10081,8 +10437,10 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10081
10437
|
id: string;
|
|
10082
10438
|
totalBalances: Record<string, string>;
|
|
10083
10439
|
tokenAddress?: string | undefined;
|
|
10440
|
+
investmentId?: string | undefined;
|
|
10084
10441
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10085
10442
|
id: z.ZodString;
|
|
10443
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
10086
10444
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
10087
10445
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
10088
10446
|
}, {
|
|
@@ -10102,6 +10460,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10102
10460
|
id: string;
|
|
10103
10461
|
totalBalances: Record<string, string>;
|
|
10104
10462
|
tokenAddress?: `0x${string}` | undefined;
|
|
10463
|
+
investmentId?: string | undefined;
|
|
10105
10464
|
}, {
|
|
10106
10465
|
data: {
|
|
10107
10466
|
delegatingTo: string;
|
|
@@ -10109,8 +10468,10 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10109
10468
|
id: string;
|
|
10110
10469
|
totalBalances: Record<string, string>;
|
|
10111
10470
|
tokenAddress?: string | undefined;
|
|
10471
|
+
investmentId?: string | undefined;
|
|
10112
10472
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10113
10473
|
id: z.ZodString;
|
|
10474
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
10114
10475
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
10115
10476
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
10116
10477
|
}, {
|
|
@@ -10141,6 +10502,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10141
10502
|
investmentId?: string | undefined;
|
|
10142
10503
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10143
10504
|
id: z.ZodString;
|
|
10505
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
10144
10506
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
10145
10507
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
10146
10508
|
}, {
|
|
@@ -10212,6 +10574,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10212
10574
|
id: string;
|
|
10213
10575
|
totalBalances: Record<string, string>;
|
|
10214
10576
|
tokenAddress?: `0x${string}` | undefined;
|
|
10577
|
+
investmentId?: string | undefined;
|
|
10215
10578
|
}, {
|
|
10216
10579
|
data: {
|
|
10217
10580
|
stakerInfo: {
|
|
@@ -10229,6 +10592,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10229
10592
|
id: string;
|
|
10230
10593
|
totalBalances: Record<string, string>;
|
|
10231
10594
|
tokenAddress?: string | undefined;
|
|
10595
|
+
investmentId?: string | undefined;
|
|
10232
10596
|
}>]>, "many">;
|
|
10233
10597
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
10234
10598
|
productId: z.ZodOptional<z.ZodString>;
|
|
@@ -10247,6 +10611,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10247
10611
|
}>>>;
|
|
10248
10612
|
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
10249
10613
|
id: z.ZodString;
|
|
10614
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
10250
10615
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
10251
10616
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
10252
10617
|
}, {
|
|
@@ -10362,6 +10727,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10362
10727
|
totalBalances: Record<string, string>;
|
|
10363
10728
|
tokenId: string;
|
|
10364
10729
|
tokenAddress?: `0x${string}` | undefined;
|
|
10730
|
+
investmentId?: string | undefined;
|
|
10365
10731
|
}, {
|
|
10366
10732
|
data: {
|
|
10367
10733
|
poolFeePercentage: string;
|
|
@@ -10387,8 +10753,10 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10387
10753
|
totalBalances: Record<string, string>;
|
|
10388
10754
|
tokenId: string;
|
|
10389
10755
|
tokenAddress?: string | undefined;
|
|
10756
|
+
investmentId?: string | undefined;
|
|
10390
10757
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10391
10758
|
id: z.ZodString;
|
|
10759
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
10392
10760
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
10393
10761
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
10394
10762
|
}, {
|
|
@@ -10422,6 +10790,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10422
10790
|
id: string;
|
|
10423
10791
|
totalBalances: Record<string, string>;
|
|
10424
10792
|
tokenAddress?: `0x${string}` | undefined;
|
|
10793
|
+
investmentId?: string | undefined;
|
|
10425
10794
|
}, {
|
|
10426
10795
|
data: {
|
|
10427
10796
|
lending: boolean;
|
|
@@ -10433,8 +10802,10 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10433
10802
|
id: string;
|
|
10434
10803
|
totalBalances: Record<string, string>;
|
|
10435
10804
|
tokenAddress?: string | undefined;
|
|
10805
|
+
investmentId?: string | undefined;
|
|
10436
10806
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10437
10807
|
id: z.ZodString;
|
|
10808
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
10438
10809
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
10439
10810
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
10440
10811
|
}, {
|
|
@@ -10454,6 +10825,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10454
10825
|
id: string;
|
|
10455
10826
|
totalBalances: Record<string, string>;
|
|
10456
10827
|
tokenAddress?: `0x${string}` | undefined;
|
|
10828
|
+
investmentId?: string | undefined;
|
|
10457
10829
|
}, {
|
|
10458
10830
|
data: {
|
|
10459
10831
|
delegatingTo: string;
|
|
@@ -10461,8 +10833,10 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10461
10833
|
id: string;
|
|
10462
10834
|
totalBalances: Record<string, string>;
|
|
10463
10835
|
tokenAddress?: string | undefined;
|
|
10836
|
+
investmentId?: string | undefined;
|
|
10464
10837
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10465
10838
|
id: z.ZodString;
|
|
10839
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
10466
10840
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
10467
10841
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
10468
10842
|
}, {
|
|
@@ -10493,6 +10867,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10493
10867
|
investmentId?: string | undefined;
|
|
10494
10868
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10495
10869
|
id: z.ZodString;
|
|
10870
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
10496
10871
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
10497
10872
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
10498
10873
|
}, {
|
|
@@ -10564,6 +10939,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10564
10939
|
id: string;
|
|
10565
10940
|
totalBalances: Record<string, string>;
|
|
10566
10941
|
tokenAddress?: `0x${string}` | undefined;
|
|
10942
|
+
investmentId?: string | undefined;
|
|
10567
10943
|
}, {
|
|
10568
10944
|
data: {
|
|
10569
10945
|
stakerInfo: {
|
|
@@ -10581,6 +10957,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10581
10957
|
id: string;
|
|
10582
10958
|
totalBalances: Record<string, string>;
|
|
10583
10959
|
tokenAddress?: string | undefined;
|
|
10960
|
+
investmentId?: string | undefined;
|
|
10584
10961
|
}>]>, "many">;
|
|
10585
10962
|
}, z.ZodTypeAny, "passthrough">>, z.objectOutputType<{
|
|
10586
10963
|
productId: z.ZodOptional<z.ZodString>;
|
|
@@ -10599,6 +10976,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10599
10976
|
}>>>;
|
|
10600
10977
|
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
10601
10978
|
id: z.ZodString;
|
|
10979
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
10602
10980
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
10603
10981
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
10604
10982
|
}, {
|
|
@@ -10714,6 +11092,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10714
11092
|
totalBalances: Record<string, string>;
|
|
10715
11093
|
tokenId: string;
|
|
10716
11094
|
tokenAddress?: `0x${string}` | undefined;
|
|
11095
|
+
investmentId?: string | undefined;
|
|
10717
11096
|
}, {
|
|
10718
11097
|
data: {
|
|
10719
11098
|
poolFeePercentage: string;
|
|
@@ -10739,8 +11118,10 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10739
11118
|
totalBalances: Record<string, string>;
|
|
10740
11119
|
tokenId: string;
|
|
10741
11120
|
tokenAddress?: string | undefined;
|
|
11121
|
+
investmentId?: string | undefined;
|
|
10742
11122
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10743
11123
|
id: z.ZodString;
|
|
11124
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
10744
11125
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
10745
11126
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
10746
11127
|
}, {
|
|
@@ -10774,6 +11155,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10774
11155
|
id: string;
|
|
10775
11156
|
totalBalances: Record<string, string>;
|
|
10776
11157
|
tokenAddress?: `0x${string}` | undefined;
|
|
11158
|
+
investmentId?: string | undefined;
|
|
10777
11159
|
}, {
|
|
10778
11160
|
data: {
|
|
10779
11161
|
lending: boolean;
|
|
@@ -10785,8 +11167,10 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10785
11167
|
id: string;
|
|
10786
11168
|
totalBalances: Record<string, string>;
|
|
10787
11169
|
tokenAddress?: string | undefined;
|
|
11170
|
+
investmentId?: string | undefined;
|
|
10788
11171
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10789
11172
|
id: z.ZodString;
|
|
11173
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
10790
11174
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
10791
11175
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
10792
11176
|
}, {
|
|
@@ -10806,6 +11190,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10806
11190
|
id: string;
|
|
10807
11191
|
totalBalances: Record<string, string>;
|
|
10808
11192
|
tokenAddress?: `0x${string}` | undefined;
|
|
11193
|
+
investmentId?: string | undefined;
|
|
10809
11194
|
}, {
|
|
10810
11195
|
data: {
|
|
10811
11196
|
delegatingTo: string;
|
|
@@ -10813,8 +11198,10 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10813
11198
|
id: string;
|
|
10814
11199
|
totalBalances: Record<string, string>;
|
|
10815
11200
|
tokenAddress?: string | undefined;
|
|
11201
|
+
investmentId?: string | undefined;
|
|
10816
11202
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10817
11203
|
id: z.ZodString;
|
|
11204
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
10818
11205
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
10819
11206
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
10820
11207
|
}, {
|
|
@@ -10845,6 +11232,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10845
11232
|
investmentId?: string | undefined;
|
|
10846
11233
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10847
11234
|
id: z.ZodString;
|
|
11235
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
10848
11236
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
10849
11237
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
10850
11238
|
}, {
|
|
@@ -10916,6 +11304,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10916
11304
|
id: string;
|
|
10917
11305
|
totalBalances: Record<string, string>;
|
|
10918
11306
|
tokenAddress?: `0x${string}` | undefined;
|
|
11307
|
+
investmentId?: string | undefined;
|
|
10919
11308
|
}, {
|
|
10920
11309
|
data: {
|
|
10921
11310
|
stakerInfo: {
|
|
@@ -10933,6 +11322,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10933
11322
|
id: string;
|
|
10934
11323
|
totalBalances: Record<string, string>;
|
|
10935
11324
|
tokenAddress?: string | undefined;
|
|
11325
|
+
investmentId?: string | undefined;
|
|
10936
11326
|
}>]>, "many">;
|
|
10937
11327
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
10938
11328
|
productId: z.ZodOptional<z.ZodString>;
|
|
@@ -10951,6 +11341,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10951
11341
|
}>>>;
|
|
10952
11342
|
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
10953
11343
|
id: z.ZodString;
|
|
11344
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
10954
11345
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
10955
11346
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
10956
11347
|
}, {
|
|
@@ -11066,6 +11457,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11066
11457
|
totalBalances: Record<string, string>;
|
|
11067
11458
|
tokenId: string;
|
|
11068
11459
|
tokenAddress?: `0x${string}` | undefined;
|
|
11460
|
+
investmentId?: string | undefined;
|
|
11069
11461
|
}, {
|
|
11070
11462
|
data: {
|
|
11071
11463
|
poolFeePercentage: string;
|
|
@@ -11091,8 +11483,10 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11091
11483
|
totalBalances: Record<string, string>;
|
|
11092
11484
|
tokenId: string;
|
|
11093
11485
|
tokenAddress?: string | undefined;
|
|
11486
|
+
investmentId?: string | undefined;
|
|
11094
11487
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11095
11488
|
id: z.ZodString;
|
|
11489
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
11096
11490
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
11097
11491
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
11098
11492
|
}, {
|
|
@@ -11126,6 +11520,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11126
11520
|
id: string;
|
|
11127
11521
|
totalBalances: Record<string, string>;
|
|
11128
11522
|
tokenAddress?: `0x${string}` | undefined;
|
|
11523
|
+
investmentId?: string | undefined;
|
|
11129
11524
|
}, {
|
|
11130
11525
|
data: {
|
|
11131
11526
|
lending: boolean;
|
|
@@ -11137,8 +11532,10 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11137
11532
|
id: string;
|
|
11138
11533
|
totalBalances: Record<string, string>;
|
|
11139
11534
|
tokenAddress?: string | undefined;
|
|
11535
|
+
investmentId?: string | undefined;
|
|
11140
11536
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11141
11537
|
id: z.ZodString;
|
|
11538
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
11142
11539
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
11143
11540
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
11144
11541
|
}, {
|
|
@@ -11158,6 +11555,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11158
11555
|
id: string;
|
|
11159
11556
|
totalBalances: Record<string, string>;
|
|
11160
11557
|
tokenAddress?: `0x${string}` | undefined;
|
|
11558
|
+
investmentId?: string | undefined;
|
|
11161
11559
|
}, {
|
|
11162
11560
|
data: {
|
|
11163
11561
|
delegatingTo: string;
|
|
@@ -11165,8 +11563,10 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11165
11563
|
id: string;
|
|
11166
11564
|
totalBalances: Record<string, string>;
|
|
11167
11565
|
tokenAddress?: string | undefined;
|
|
11566
|
+
investmentId?: string | undefined;
|
|
11168
11567
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11169
11568
|
id: z.ZodString;
|
|
11569
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
11170
11570
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
11171
11571
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
11172
11572
|
}, {
|
|
@@ -11197,6 +11597,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11197
11597
|
investmentId?: string | undefined;
|
|
11198
11598
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11199
11599
|
id: z.ZodString;
|
|
11600
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
11200
11601
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
11201
11602
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
11202
11603
|
}, {
|
|
@@ -11268,6 +11669,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11268
11669
|
id: string;
|
|
11269
11670
|
totalBalances: Record<string, string>;
|
|
11270
11671
|
tokenAddress?: `0x${string}` | undefined;
|
|
11672
|
+
investmentId?: string | undefined;
|
|
11271
11673
|
}, {
|
|
11272
11674
|
data: {
|
|
11273
11675
|
stakerInfo: {
|
|
@@ -11285,6 +11687,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11285
11687
|
id: string;
|
|
11286
11688
|
totalBalances: Record<string, string>;
|
|
11287
11689
|
tokenAddress?: string | undefined;
|
|
11690
|
+
investmentId?: string | undefined;
|
|
11288
11691
|
}>]>, "many">;
|
|
11289
11692
|
}, z.ZodTypeAny, "passthrough">> & {
|
|
11290
11693
|
extend: <E extends z.ZodRawShape>(extension: E) => z.ZodEffects<z.ZodObject<{
|
|
@@ -11304,6 +11707,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11304
11707
|
}>>>;
|
|
11305
11708
|
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
11306
11709
|
id: z.ZodString;
|
|
11710
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
11307
11711
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
11308
11712
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
11309
11713
|
}, {
|
|
@@ -11419,6 +11823,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11419
11823
|
totalBalances: Record<string, string>;
|
|
11420
11824
|
tokenId: string;
|
|
11421
11825
|
tokenAddress?: `0x${string}` | undefined;
|
|
11826
|
+
investmentId?: string | undefined;
|
|
11422
11827
|
}, {
|
|
11423
11828
|
data: {
|
|
11424
11829
|
poolFeePercentage: string;
|
|
@@ -11444,8 +11849,10 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11444
11849
|
totalBalances: Record<string, string>;
|
|
11445
11850
|
tokenId: string;
|
|
11446
11851
|
tokenAddress?: string | undefined;
|
|
11852
|
+
investmentId?: string | undefined;
|
|
11447
11853
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11448
11854
|
id: z.ZodString;
|
|
11855
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
11449
11856
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
11450
11857
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
11451
11858
|
}, {
|
|
@@ -11479,6 +11886,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11479
11886
|
id: string;
|
|
11480
11887
|
totalBalances: Record<string, string>;
|
|
11481
11888
|
tokenAddress?: `0x${string}` | undefined;
|
|
11889
|
+
investmentId?: string | undefined;
|
|
11482
11890
|
}, {
|
|
11483
11891
|
data: {
|
|
11484
11892
|
lending: boolean;
|
|
@@ -11490,8 +11898,10 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11490
11898
|
id: string;
|
|
11491
11899
|
totalBalances: Record<string, string>;
|
|
11492
11900
|
tokenAddress?: string | undefined;
|
|
11901
|
+
investmentId?: string | undefined;
|
|
11493
11902
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11494
11903
|
id: z.ZodString;
|
|
11904
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
11495
11905
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
11496
11906
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
11497
11907
|
}, {
|
|
@@ -11511,6 +11921,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11511
11921
|
id: string;
|
|
11512
11922
|
totalBalances: Record<string, string>;
|
|
11513
11923
|
tokenAddress?: `0x${string}` | undefined;
|
|
11924
|
+
investmentId?: string | undefined;
|
|
11514
11925
|
}, {
|
|
11515
11926
|
data: {
|
|
11516
11927
|
delegatingTo: string;
|
|
@@ -11518,8 +11929,10 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11518
11929
|
id: string;
|
|
11519
11930
|
totalBalances: Record<string, string>;
|
|
11520
11931
|
tokenAddress?: string | undefined;
|
|
11932
|
+
investmentId?: string | undefined;
|
|
11521
11933
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11522
11934
|
id: z.ZodString;
|
|
11935
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
11523
11936
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
11524
11937
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
11525
11938
|
}, {
|
|
@@ -11550,6 +11963,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11550
11963
|
investmentId?: string | undefined;
|
|
11551
11964
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11552
11965
|
id: z.ZodString;
|
|
11966
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
11553
11967
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
11554
11968
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
11555
11969
|
}, {
|
|
@@ -11621,6 +12035,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11621
12035
|
id: string;
|
|
11622
12036
|
totalBalances: Record<string, string>;
|
|
11623
12037
|
tokenAddress?: `0x${string}` | undefined;
|
|
12038
|
+
investmentId?: string | undefined;
|
|
11624
12039
|
}, {
|
|
11625
12040
|
data: {
|
|
11626
12041
|
stakerInfo: {
|
|
@@ -11638,6 +12053,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11638
12053
|
id: string;
|
|
11639
12054
|
totalBalances: Record<string, string>;
|
|
11640
12055
|
tokenAddress?: string | undefined;
|
|
12056
|
+
investmentId?: string | undefined;
|
|
11641
12057
|
}>]>, "many">;
|
|
11642
12058
|
} & E, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
11643
12059
|
productId: z.ZodOptional<z.ZodString>;
|
|
@@ -11656,6 +12072,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11656
12072
|
}>>>;
|
|
11657
12073
|
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
11658
12074
|
id: z.ZodString;
|
|
12075
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
11659
12076
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
11660
12077
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
11661
12078
|
}, {
|
|
@@ -11771,6 +12188,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11771
12188
|
totalBalances: Record<string, string>;
|
|
11772
12189
|
tokenId: string;
|
|
11773
12190
|
tokenAddress?: `0x${string}` | undefined;
|
|
12191
|
+
investmentId?: string | undefined;
|
|
11774
12192
|
}, {
|
|
11775
12193
|
data: {
|
|
11776
12194
|
poolFeePercentage: string;
|
|
@@ -11796,8 +12214,10 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11796
12214
|
totalBalances: Record<string, string>;
|
|
11797
12215
|
tokenId: string;
|
|
11798
12216
|
tokenAddress?: string | undefined;
|
|
12217
|
+
investmentId?: string | undefined;
|
|
11799
12218
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11800
12219
|
id: z.ZodString;
|
|
12220
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
11801
12221
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
11802
12222
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
11803
12223
|
}, {
|
|
@@ -11831,6 +12251,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11831
12251
|
id: string;
|
|
11832
12252
|
totalBalances: Record<string, string>;
|
|
11833
12253
|
tokenAddress?: `0x${string}` | undefined;
|
|
12254
|
+
investmentId?: string | undefined;
|
|
11834
12255
|
}, {
|
|
11835
12256
|
data: {
|
|
11836
12257
|
lending: boolean;
|
|
@@ -11842,8 +12263,10 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11842
12263
|
id: string;
|
|
11843
12264
|
totalBalances: Record<string, string>;
|
|
11844
12265
|
tokenAddress?: string | undefined;
|
|
12266
|
+
investmentId?: string | undefined;
|
|
11845
12267
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11846
12268
|
id: z.ZodString;
|
|
12269
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
11847
12270
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
11848
12271
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
11849
12272
|
}, {
|
|
@@ -11863,6 +12286,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11863
12286
|
id: string;
|
|
11864
12287
|
totalBalances: Record<string, string>;
|
|
11865
12288
|
tokenAddress?: `0x${string}` | undefined;
|
|
12289
|
+
investmentId?: string | undefined;
|
|
11866
12290
|
}, {
|
|
11867
12291
|
data: {
|
|
11868
12292
|
delegatingTo: string;
|
|
@@ -11870,8 +12294,10 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11870
12294
|
id: string;
|
|
11871
12295
|
totalBalances: Record<string, string>;
|
|
11872
12296
|
tokenAddress?: string | undefined;
|
|
12297
|
+
investmentId?: string | undefined;
|
|
11873
12298
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11874
12299
|
id: z.ZodString;
|
|
12300
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
11875
12301
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
11876
12302
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
11877
12303
|
}, {
|
|
@@ -11902,6 +12328,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11902
12328
|
investmentId?: string | undefined;
|
|
11903
12329
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11904
12330
|
id: z.ZodString;
|
|
12331
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
11905
12332
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
11906
12333
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
11907
12334
|
}, {
|
|
@@ -11973,6 +12400,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11973
12400
|
id: string;
|
|
11974
12401
|
totalBalances: Record<string, string>;
|
|
11975
12402
|
tokenAddress?: `0x${string}` | undefined;
|
|
12403
|
+
investmentId?: string | undefined;
|
|
11976
12404
|
}, {
|
|
11977
12405
|
data: {
|
|
11978
12406
|
stakerInfo: {
|
|
@@ -11990,6 +12418,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11990
12418
|
id: string;
|
|
11991
12419
|
totalBalances: Record<string, string>;
|
|
11992
12420
|
tokenAddress?: string | undefined;
|
|
12421
|
+
investmentId?: string | undefined;
|
|
11993
12422
|
}>]>, "many">;
|
|
11994
12423
|
} & E, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
11995
12424
|
productId: z.ZodOptional<z.ZodString>;
|
|
@@ -12008,6 +12437,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12008
12437
|
}>>>;
|
|
12009
12438
|
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
12010
12439
|
id: z.ZodString;
|
|
12440
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
12011
12441
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
12012
12442
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
12013
12443
|
}, {
|
|
@@ -12123,6 +12553,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12123
12553
|
totalBalances: Record<string, string>;
|
|
12124
12554
|
tokenId: string;
|
|
12125
12555
|
tokenAddress?: `0x${string}` | undefined;
|
|
12556
|
+
investmentId?: string | undefined;
|
|
12126
12557
|
}, {
|
|
12127
12558
|
data: {
|
|
12128
12559
|
poolFeePercentage: string;
|
|
@@ -12148,8 +12579,10 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12148
12579
|
totalBalances: Record<string, string>;
|
|
12149
12580
|
tokenId: string;
|
|
12150
12581
|
tokenAddress?: string | undefined;
|
|
12582
|
+
investmentId?: string | undefined;
|
|
12151
12583
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
12152
12584
|
id: z.ZodString;
|
|
12585
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
12153
12586
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
12154
12587
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
12155
12588
|
}, {
|
|
@@ -12183,6 +12616,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12183
12616
|
id: string;
|
|
12184
12617
|
totalBalances: Record<string, string>;
|
|
12185
12618
|
tokenAddress?: `0x${string}` | undefined;
|
|
12619
|
+
investmentId?: string | undefined;
|
|
12186
12620
|
}, {
|
|
12187
12621
|
data: {
|
|
12188
12622
|
lending: boolean;
|
|
@@ -12194,8 +12628,10 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12194
12628
|
id: string;
|
|
12195
12629
|
totalBalances: Record<string, string>;
|
|
12196
12630
|
tokenAddress?: string | undefined;
|
|
12631
|
+
investmentId?: string | undefined;
|
|
12197
12632
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
12198
12633
|
id: z.ZodString;
|
|
12634
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
12199
12635
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
12200
12636
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
12201
12637
|
}, {
|
|
@@ -12215,6 +12651,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12215
12651
|
id: string;
|
|
12216
12652
|
totalBalances: Record<string, string>;
|
|
12217
12653
|
tokenAddress?: `0x${string}` | undefined;
|
|
12654
|
+
investmentId?: string | undefined;
|
|
12218
12655
|
}, {
|
|
12219
12656
|
data: {
|
|
12220
12657
|
delegatingTo: string;
|
|
@@ -12222,8 +12659,10 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12222
12659
|
id: string;
|
|
12223
12660
|
totalBalances: Record<string, string>;
|
|
12224
12661
|
tokenAddress?: string | undefined;
|
|
12662
|
+
investmentId?: string | undefined;
|
|
12225
12663
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
12226
12664
|
id: z.ZodString;
|
|
12665
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
12227
12666
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
12228
12667
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
12229
12668
|
}, {
|
|
@@ -12254,6 +12693,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12254
12693
|
investmentId?: string | undefined;
|
|
12255
12694
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
12256
12695
|
id: z.ZodString;
|
|
12696
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
12257
12697
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
12258
12698
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
12259
12699
|
}, {
|
|
@@ -12325,6 +12765,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12325
12765
|
id: string;
|
|
12326
12766
|
totalBalances: Record<string, string>;
|
|
12327
12767
|
tokenAddress?: `0x${string}` | undefined;
|
|
12768
|
+
investmentId?: string | undefined;
|
|
12328
12769
|
}, {
|
|
12329
12770
|
data: {
|
|
12330
12771
|
stakerInfo: {
|
|
@@ -12342,6 +12783,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12342
12783
|
id: string;
|
|
12343
12784
|
totalBalances: Record<string, string>;
|
|
12344
12785
|
tokenAddress?: string | undefined;
|
|
12786
|
+
investmentId?: string | undefined;
|
|
12345
12787
|
}>]>, "many">;
|
|
12346
12788
|
} & E, z.ZodTypeAny, "passthrough">>, z.objectOutputType<{
|
|
12347
12789
|
productId: z.ZodOptional<z.ZodString>;
|
|
@@ -12360,6 +12802,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12360
12802
|
}>>>;
|
|
12361
12803
|
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
12362
12804
|
id: z.ZodString;
|
|
12805
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
12363
12806
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
12364
12807
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
12365
12808
|
}, {
|
|
@@ -12475,6 +12918,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12475
12918
|
totalBalances: Record<string, string>;
|
|
12476
12919
|
tokenId: string;
|
|
12477
12920
|
tokenAddress?: `0x${string}` | undefined;
|
|
12921
|
+
investmentId?: string | undefined;
|
|
12478
12922
|
}, {
|
|
12479
12923
|
data: {
|
|
12480
12924
|
poolFeePercentage: string;
|
|
@@ -12500,8 +12944,10 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12500
12944
|
totalBalances: Record<string, string>;
|
|
12501
12945
|
tokenId: string;
|
|
12502
12946
|
tokenAddress?: string | undefined;
|
|
12947
|
+
investmentId?: string | undefined;
|
|
12503
12948
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
12504
12949
|
id: z.ZodString;
|
|
12950
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
12505
12951
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
12506
12952
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
12507
12953
|
}, {
|
|
@@ -12535,6 +12981,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12535
12981
|
id: string;
|
|
12536
12982
|
totalBalances: Record<string, string>;
|
|
12537
12983
|
tokenAddress?: `0x${string}` | undefined;
|
|
12984
|
+
investmentId?: string | undefined;
|
|
12538
12985
|
}, {
|
|
12539
12986
|
data: {
|
|
12540
12987
|
lending: boolean;
|
|
@@ -12546,8 +12993,10 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12546
12993
|
id: string;
|
|
12547
12994
|
totalBalances: Record<string, string>;
|
|
12548
12995
|
tokenAddress?: string | undefined;
|
|
12996
|
+
investmentId?: string | undefined;
|
|
12549
12997
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
12550
12998
|
id: z.ZodString;
|
|
12999
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
12551
13000
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
12552
13001
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
12553
13002
|
}, {
|
|
@@ -12567,6 +13016,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12567
13016
|
id: string;
|
|
12568
13017
|
totalBalances: Record<string, string>;
|
|
12569
13018
|
tokenAddress?: `0x${string}` | undefined;
|
|
13019
|
+
investmentId?: string | undefined;
|
|
12570
13020
|
}, {
|
|
12571
13021
|
data: {
|
|
12572
13022
|
delegatingTo: string;
|
|
@@ -12574,8 +13024,10 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12574
13024
|
id: string;
|
|
12575
13025
|
totalBalances: Record<string, string>;
|
|
12576
13026
|
tokenAddress?: string | undefined;
|
|
13027
|
+
investmentId?: string | undefined;
|
|
12577
13028
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
12578
13029
|
id: z.ZodString;
|
|
13030
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
12579
13031
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
12580
13032
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
12581
13033
|
}, {
|
|
@@ -12606,6 +13058,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12606
13058
|
investmentId?: string | undefined;
|
|
12607
13059
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
12608
13060
|
id: z.ZodString;
|
|
13061
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
12609
13062
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
12610
13063
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
12611
13064
|
}, {
|
|
@@ -12677,6 +13130,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12677
13130
|
id: string;
|
|
12678
13131
|
totalBalances: Record<string, string>;
|
|
12679
13132
|
tokenAddress?: `0x${string}` | undefined;
|
|
13133
|
+
investmentId?: string | undefined;
|
|
12680
13134
|
}, {
|
|
12681
13135
|
data: {
|
|
12682
13136
|
stakerInfo: {
|
|
@@ -12694,6 +13148,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12694
13148
|
id: string;
|
|
12695
13149
|
totalBalances: Record<string, string>;
|
|
12696
13150
|
tokenAddress?: string | undefined;
|
|
13151
|
+
investmentId?: string | undefined;
|
|
12697
13152
|
}>]>, "many">;
|
|
12698
13153
|
} & E, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
12699
13154
|
productId: z.ZodOptional<z.ZodString>;
|
|
@@ -12712,6 +13167,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12712
13167
|
}>>>;
|
|
12713
13168
|
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
12714
13169
|
id: z.ZodString;
|
|
13170
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
12715
13171
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
12716
13172
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
12717
13173
|
}, {
|
|
@@ -12827,6 +13283,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12827
13283
|
totalBalances: Record<string, string>;
|
|
12828
13284
|
tokenId: string;
|
|
12829
13285
|
tokenAddress?: `0x${string}` | undefined;
|
|
13286
|
+
investmentId?: string | undefined;
|
|
12830
13287
|
}, {
|
|
12831
13288
|
data: {
|
|
12832
13289
|
poolFeePercentage: string;
|
|
@@ -12852,8 +13309,10 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12852
13309
|
totalBalances: Record<string, string>;
|
|
12853
13310
|
tokenId: string;
|
|
12854
13311
|
tokenAddress?: string | undefined;
|
|
13312
|
+
investmentId?: string | undefined;
|
|
12855
13313
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
12856
13314
|
id: z.ZodString;
|
|
13315
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
12857
13316
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
12858
13317
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
12859
13318
|
}, {
|
|
@@ -12887,6 +13346,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12887
13346
|
id: string;
|
|
12888
13347
|
totalBalances: Record<string, string>;
|
|
12889
13348
|
tokenAddress?: `0x${string}` | undefined;
|
|
13349
|
+
investmentId?: string | undefined;
|
|
12890
13350
|
}, {
|
|
12891
13351
|
data: {
|
|
12892
13352
|
lending: boolean;
|
|
@@ -12898,8 +13358,10 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12898
13358
|
id: string;
|
|
12899
13359
|
totalBalances: Record<string, string>;
|
|
12900
13360
|
tokenAddress?: string | undefined;
|
|
13361
|
+
investmentId?: string | undefined;
|
|
12901
13362
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
12902
13363
|
id: z.ZodString;
|
|
13364
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
12903
13365
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
12904
13366
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
12905
13367
|
}, {
|
|
@@ -12919,6 +13381,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12919
13381
|
id: string;
|
|
12920
13382
|
totalBalances: Record<string, string>;
|
|
12921
13383
|
tokenAddress?: `0x${string}` | undefined;
|
|
13384
|
+
investmentId?: string | undefined;
|
|
12922
13385
|
}, {
|
|
12923
13386
|
data: {
|
|
12924
13387
|
delegatingTo: string;
|
|
@@ -12926,8 +13389,10 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12926
13389
|
id: string;
|
|
12927
13390
|
totalBalances: Record<string, string>;
|
|
12928
13391
|
tokenAddress?: string | undefined;
|
|
13392
|
+
investmentId?: string | undefined;
|
|
12929
13393
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
12930
13394
|
id: z.ZodString;
|
|
13395
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
12931
13396
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
12932
13397
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
12933
13398
|
}, {
|
|
@@ -12958,6 +13423,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12958
13423
|
investmentId?: string | undefined;
|
|
12959
13424
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
12960
13425
|
id: z.ZodString;
|
|
13426
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
12961
13427
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
12962
13428
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
12963
13429
|
}, {
|
|
@@ -13029,6 +13495,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13029
13495
|
id: string;
|
|
13030
13496
|
totalBalances: Record<string, string>;
|
|
13031
13497
|
tokenAddress?: `0x${string}` | undefined;
|
|
13498
|
+
investmentId?: string | undefined;
|
|
13032
13499
|
}, {
|
|
13033
13500
|
data: {
|
|
13034
13501
|
stakerInfo: {
|
|
@@ -13046,6 +13513,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13046
13513
|
id: string;
|
|
13047
13514
|
totalBalances: Record<string, string>;
|
|
13048
13515
|
tokenAddress?: string | undefined;
|
|
13516
|
+
investmentId?: string | undefined;
|
|
13049
13517
|
}>]>, "many">;
|
|
13050
13518
|
} & E, z.ZodTypeAny, "passthrough">>;
|
|
13051
13519
|
}, "many">;
|
|
@@ -13068,6 +13536,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13068
13536
|
}>>>;
|
|
13069
13537
|
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
13070
13538
|
id: z.ZodString;
|
|
13539
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
13071
13540
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
13072
13541
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
13073
13542
|
}, {
|
|
@@ -13183,6 +13652,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13183
13652
|
totalBalances: Record<string, string>;
|
|
13184
13653
|
tokenId: string;
|
|
13185
13654
|
tokenAddress?: `0x${string}` | undefined;
|
|
13655
|
+
investmentId?: string | undefined;
|
|
13186
13656
|
}, {
|
|
13187
13657
|
data: {
|
|
13188
13658
|
poolFeePercentage: string;
|
|
@@ -13208,8 +13678,10 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13208
13678
|
totalBalances: Record<string, string>;
|
|
13209
13679
|
tokenId: string;
|
|
13210
13680
|
tokenAddress?: string | undefined;
|
|
13681
|
+
investmentId?: string | undefined;
|
|
13211
13682
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
13212
13683
|
id: z.ZodString;
|
|
13684
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
13213
13685
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
13214
13686
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
13215
13687
|
}, {
|
|
@@ -13243,6 +13715,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13243
13715
|
id: string;
|
|
13244
13716
|
totalBalances: Record<string, string>;
|
|
13245
13717
|
tokenAddress?: `0x${string}` | undefined;
|
|
13718
|
+
investmentId?: string | undefined;
|
|
13246
13719
|
}, {
|
|
13247
13720
|
data: {
|
|
13248
13721
|
lending: boolean;
|
|
@@ -13254,8 +13727,10 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13254
13727
|
id: string;
|
|
13255
13728
|
totalBalances: Record<string, string>;
|
|
13256
13729
|
tokenAddress?: string | undefined;
|
|
13730
|
+
investmentId?: string | undefined;
|
|
13257
13731
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
13258
13732
|
id: z.ZodString;
|
|
13733
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
13259
13734
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
13260
13735
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
13261
13736
|
}, {
|
|
@@ -13275,6 +13750,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13275
13750
|
id: string;
|
|
13276
13751
|
totalBalances: Record<string, string>;
|
|
13277
13752
|
tokenAddress?: `0x${string}` | undefined;
|
|
13753
|
+
investmentId?: string | undefined;
|
|
13278
13754
|
}, {
|
|
13279
13755
|
data: {
|
|
13280
13756
|
delegatingTo: string;
|
|
@@ -13282,8 +13758,10 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13282
13758
|
id: string;
|
|
13283
13759
|
totalBalances: Record<string, string>;
|
|
13284
13760
|
tokenAddress?: string | undefined;
|
|
13761
|
+
investmentId?: string | undefined;
|
|
13285
13762
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
13286
13763
|
id: z.ZodString;
|
|
13764
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
13287
13765
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
13288
13766
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
13289
13767
|
}, {
|
|
@@ -13314,6 +13792,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13314
13792
|
investmentId?: string | undefined;
|
|
13315
13793
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
13316
13794
|
id: z.ZodString;
|
|
13795
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
13317
13796
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
13318
13797
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
13319
13798
|
}, {
|
|
@@ -13385,6 +13864,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13385
13864
|
id: string;
|
|
13386
13865
|
totalBalances: Record<string, string>;
|
|
13387
13866
|
tokenAddress?: `0x${string}` | undefined;
|
|
13867
|
+
investmentId?: string | undefined;
|
|
13388
13868
|
}, {
|
|
13389
13869
|
data: {
|
|
13390
13870
|
stakerInfo: {
|
|
@@ -13402,6 +13882,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13402
13882
|
id: string;
|
|
13403
13883
|
totalBalances: Record<string, string>;
|
|
13404
13884
|
tokenAddress?: string | undefined;
|
|
13885
|
+
investmentId?: string | undefined;
|
|
13405
13886
|
}>]>, "many">;
|
|
13406
13887
|
}, z.ZodTypeAny, "passthrough">[];
|
|
13407
13888
|
}, {
|
|
@@ -13423,6 +13904,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13423
13904
|
}>>>;
|
|
13424
13905
|
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
13425
13906
|
id: z.ZodString;
|
|
13907
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
13426
13908
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
13427
13909
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
13428
13910
|
}, {
|
|
@@ -13538,6 +14020,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13538
14020
|
totalBalances: Record<string, string>;
|
|
13539
14021
|
tokenId: string;
|
|
13540
14022
|
tokenAddress?: `0x${string}` | undefined;
|
|
14023
|
+
investmentId?: string | undefined;
|
|
13541
14024
|
}, {
|
|
13542
14025
|
data: {
|
|
13543
14026
|
poolFeePercentage: string;
|
|
@@ -13563,8 +14046,10 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13563
14046
|
totalBalances: Record<string, string>;
|
|
13564
14047
|
tokenId: string;
|
|
13565
14048
|
tokenAddress?: string | undefined;
|
|
14049
|
+
investmentId?: string | undefined;
|
|
13566
14050
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
13567
14051
|
id: z.ZodString;
|
|
14052
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
13568
14053
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
13569
14054
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
13570
14055
|
}, {
|
|
@@ -13598,6 +14083,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13598
14083
|
id: string;
|
|
13599
14084
|
totalBalances: Record<string, string>;
|
|
13600
14085
|
tokenAddress?: `0x${string}` | undefined;
|
|
14086
|
+
investmentId?: string | undefined;
|
|
13601
14087
|
}, {
|
|
13602
14088
|
data: {
|
|
13603
14089
|
lending: boolean;
|
|
@@ -13609,8 +14095,10 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13609
14095
|
id: string;
|
|
13610
14096
|
totalBalances: Record<string, string>;
|
|
13611
14097
|
tokenAddress?: string | undefined;
|
|
14098
|
+
investmentId?: string | undefined;
|
|
13612
14099
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
13613
14100
|
id: z.ZodString;
|
|
14101
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
13614
14102
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
13615
14103
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
13616
14104
|
}, {
|
|
@@ -13630,6 +14118,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13630
14118
|
id: string;
|
|
13631
14119
|
totalBalances: Record<string, string>;
|
|
13632
14120
|
tokenAddress?: `0x${string}` | undefined;
|
|
14121
|
+
investmentId?: string | undefined;
|
|
13633
14122
|
}, {
|
|
13634
14123
|
data: {
|
|
13635
14124
|
delegatingTo: string;
|
|
@@ -13637,8 +14126,10 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13637
14126
|
id: string;
|
|
13638
14127
|
totalBalances: Record<string, string>;
|
|
13639
14128
|
tokenAddress?: string | undefined;
|
|
14129
|
+
investmentId?: string | undefined;
|
|
13640
14130
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
13641
14131
|
id: z.ZodString;
|
|
14132
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
13642
14133
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
13643
14134
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
13644
14135
|
}, {
|
|
@@ -13669,6 +14160,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13669
14160
|
investmentId?: string | undefined;
|
|
13670
14161
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
13671
14162
|
id: z.ZodString;
|
|
14163
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
13672
14164
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
13673
14165
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
13674
14166
|
}, {
|
|
@@ -13740,6 +14232,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13740
14232
|
id: string;
|
|
13741
14233
|
totalBalances: Record<string, string>;
|
|
13742
14234
|
tokenAddress?: `0x${string}` | undefined;
|
|
14235
|
+
investmentId?: string | undefined;
|
|
13743
14236
|
}, {
|
|
13744
14237
|
data: {
|
|
13745
14238
|
stakerInfo: {
|
|
@@ -13757,6 +14250,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13757
14250
|
id: string;
|
|
13758
14251
|
totalBalances: Record<string, string>;
|
|
13759
14252
|
tokenAddress?: string | undefined;
|
|
14253
|
+
investmentId?: string | undefined;
|
|
13760
14254
|
}>]>, "many">;
|
|
13761
14255
|
}, z.ZodTypeAny, "passthrough">[];
|
|
13762
14256
|
}>, "many">;
|
|
@@ -13780,6 +14274,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13780
14274
|
}>>>;
|
|
13781
14275
|
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
13782
14276
|
id: z.ZodString;
|
|
14277
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
13783
14278
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
13784
14279
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
13785
14280
|
}, {
|
|
@@ -13895,6 +14390,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13895
14390
|
totalBalances: Record<string, string>;
|
|
13896
14391
|
tokenId: string;
|
|
13897
14392
|
tokenAddress?: `0x${string}` | undefined;
|
|
14393
|
+
investmentId?: string | undefined;
|
|
13898
14394
|
}, {
|
|
13899
14395
|
data: {
|
|
13900
14396
|
poolFeePercentage: string;
|
|
@@ -13920,8 +14416,10 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13920
14416
|
totalBalances: Record<string, string>;
|
|
13921
14417
|
tokenId: string;
|
|
13922
14418
|
tokenAddress?: string | undefined;
|
|
14419
|
+
investmentId?: string | undefined;
|
|
13923
14420
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
13924
14421
|
id: z.ZodString;
|
|
14422
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
13925
14423
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
13926
14424
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
13927
14425
|
}, {
|
|
@@ -13955,6 +14453,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13955
14453
|
id: string;
|
|
13956
14454
|
totalBalances: Record<string, string>;
|
|
13957
14455
|
tokenAddress?: `0x${string}` | undefined;
|
|
14456
|
+
investmentId?: string | undefined;
|
|
13958
14457
|
}, {
|
|
13959
14458
|
data: {
|
|
13960
14459
|
lending: boolean;
|
|
@@ -13966,8 +14465,10 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13966
14465
|
id: string;
|
|
13967
14466
|
totalBalances: Record<string, string>;
|
|
13968
14467
|
tokenAddress?: string | undefined;
|
|
14468
|
+
investmentId?: string | undefined;
|
|
13969
14469
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
13970
14470
|
id: z.ZodString;
|
|
14471
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
13971
14472
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
13972
14473
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
13973
14474
|
}, {
|
|
@@ -13987,6 +14488,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13987
14488
|
id: string;
|
|
13988
14489
|
totalBalances: Record<string, string>;
|
|
13989
14490
|
tokenAddress?: `0x${string}` | undefined;
|
|
14491
|
+
investmentId?: string | undefined;
|
|
13990
14492
|
}, {
|
|
13991
14493
|
data: {
|
|
13992
14494
|
delegatingTo: string;
|
|
@@ -13994,8 +14496,10 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13994
14496
|
id: string;
|
|
13995
14497
|
totalBalances: Record<string, string>;
|
|
13996
14498
|
tokenAddress?: string | undefined;
|
|
14499
|
+
investmentId?: string | undefined;
|
|
13997
14500
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
13998
14501
|
id: z.ZodString;
|
|
14502
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
13999
14503
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
14000
14504
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
14001
14505
|
}, {
|
|
@@ -14026,6 +14530,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14026
14530
|
investmentId?: string | undefined;
|
|
14027
14531
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
14028
14532
|
id: z.ZodString;
|
|
14533
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
14029
14534
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
14030
14535
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
14031
14536
|
}, {
|
|
@@ -14097,6 +14602,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14097
14602
|
id: string;
|
|
14098
14603
|
totalBalances: Record<string, string>;
|
|
14099
14604
|
tokenAddress?: `0x${string}` | undefined;
|
|
14605
|
+
investmentId?: string | undefined;
|
|
14100
14606
|
}, {
|
|
14101
14607
|
data: {
|
|
14102
14608
|
stakerInfo: {
|
|
@@ -14114,6 +14620,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14114
14620
|
id: string;
|
|
14115
14621
|
totalBalances: Record<string, string>;
|
|
14116
14622
|
tokenAddress?: string | undefined;
|
|
14623
|
+
investmentId?: string | undefined;
|
|
14117
14624
|
}>]>, "many">;
|
|
14118
14625
|
}, z.ZodTypeAny, "passthrough">[];
|
|
14119
14626
|
}[];
|
|
@@ -14137,6 +14644,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14137
14644
|
}>>>;
|
|
14138
14645
|
positions: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
14139
14646
|
id: z.ZodString;
|
|
14647
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
14140
14648
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
14141
14649
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
14142
14650
|
}, {
|
|
@@ -14252,6 +14760,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14252
14760
|
totalBalances: Record<string, string>;
|
|
14253
14761
|
tokenId: string;
|
|
14254
14762
|
tokenAddress?: `0x${string}` | undefined;
|
|
14763
|
+
investmentId?: string | undefined;
|
|
14255
14764
|
}, {
|
|
14256
14765
|
data: {
|
|
14257
14766
|
poolFeePercentage: string;
|
|
@@ -14277,8 +14786,10 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14277
14786
|
totalBalances: Record<string, string>;
|
|
14278
14787
|
tokenId: string;
|
|
14279
14788
|
tokenAddress?: string | undefined;
|
|
14789
|
+
investmentId?: string | undefined;
|
|
14280
14790
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
14281
14791
|
id: z.ZodString;
|
|
14792
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
14282
14793
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
14283
14794
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
14284
14795
|
}, {
|
|
@@ -14312,6 +14823,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14312
14823
|
id: string;
|
|
14313
14824
|
totalBalances: Record<string, string>;
|
|
14314
14825
|
tokenAddress?: `0x${string}` | undefined;
|
|
14826
|
+
investmentId?: string | undefined;
|
|
14315
14827
|
}, {
|
|
14316
14828
|
data: {
|
|
14317
14829
|
lending: boolean;
|
|
@@ -14323,8 +14835,10 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14323
14835
|
id: string;
|
|
14324
14836
|
totalBalances: Record<string, string>;
|
|
14325
14837
|
tokenAddress?: string | undefined;
|
|
14838
|
+
investmentId?: string | undefined;
|
|
14326
14839
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
14327
14840
|
id: z.ZodString;
|
|
14841
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
14328
14842
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
14329
14843
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
14330
14844
|
}, {
|
|
@@ -14344,6 +14858,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14344
14858
|
id: string;
|
|
14345
14859
|
totalBalances: Record<string, string>;
|
|
14346
14860
|
tokenAddress?: `0x${string}` | undefined;
|
|
14861
|
+
investmentId?: string | undefined;
|
|
14347
14862
|
}, {
|
|
14348
14863
|
data: {
|
|
14349
14864
|
delegatingTo: string;
|
|
@@ -14351,8 +14866,10 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14351
14866
|
id: string;
|
|
14352
14867
|
totalBalances: Record<string, string>;
|
|
14353
14868
|
tokenAddress?: string | undefined;
|
|
14869
|
+
investmentId?: string | undefined;
|
|
14354
14870
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
14355
14871
|
id: z.ZodString;
|
|
14872
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
14356
14873
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
14357
14874
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
14358
14875
|
}, {
|
|
@@ -14383,6 +14900,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14383
14900
|
investmentId?: string | undefined;
|
|
14384
14901
|
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
14385
14902
|
id: z.ZodString;
|
|
14903
|
+
investmentId: z.ZodOptional<z.ZodString>;
|
|
14386
14904
|
tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
14387
14905
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
14388
14906
|
}, {
|
|
@@ -14454,6 +14972,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14454
14972
|
id: string;
|
|
14455
14973
|
totalBalances: Record<string, string>;
|
|
14456
14974
|
tokenAddress?: `0x${string}` | undefined;
|
|
14975
|
+
investmentId?: string | undefined;
|
|
14457
14976
|
}, {
|
|
14458
14977
|
data: {
|
|
14459
14978
|
stakerInfo: {
|
|
@@ -14471,6 +14990,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14471
14990
|
id: string;
|
|
14472
14991
|
totalBalances: Record<string, string>;
|
|
14473
14992
|
tokenAddress?: string | undefined;
|
|
14993
|
+
investmentId?: string | undefined;
|
|
14474
14994
|
}>]>, "many">;
|
|
14475
14995
|
}, z.ZodTypeAny, "passthrough">[];
|
|
14476
14996
|
}[];
|