@argent/x-shared 1.47.0 → 1.48.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.
- package/dist/src/features/swap/services/implementation.cjs +1 -1
- package/dist/src/features/swap/services/implementation.js +11 -11
- package/dist/src/tokens/prettifyCurrencyValue.cjs +1 -1
- package/dist/src/tokens/prettifyCurrencyValue.js +11 -7
- package/dist/src/tokens/service/implementation.d.ts +15 -0
- package/dist/src/tokens/service/types/backend.model.cjs +1 -1
- package/dist/src/tokens/service/types/backend.model.d.ts +600 -0
- package/dist/src/tokens/service/types/backend.model.js +9 -6
- package/dist/src/tokens/service/types/defiPosition.model.cjs +1 -1
- package/dist/src/tokens/service/types/defiPosition.model.d.ts +52 -0
- package/dist/src/tokens/service/types/defiPosition.model.js +10 -8
- package/package.json +1 -1
|
@@ -707,15 +707,19 @@ export declare const apiStakingPositionSchema: z.ZodObject<z.objectUtil.extendSh
|
|
|
707
707
|
}, {
|
|
708
708
|
data: z.ZodObject<{
|
|
709
709
|
apy: z.ZodString;
|
|
710
|
+
totalApy: z.ZodString;
|
|
710
711
|
}, "strip", z.ZodTypeAny, {
|
|
712
|
+
totalApy: string;
|
|
711
713
|
apy: string;
|
|
712
714
|
}, {
|
|
715
|
+
totalApy: string;
|
|
713
716
|
apy: string;
|
|
714
717
|
}>;
|
|
715
718
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
716
719
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
717
720
|
}>, "strip", z.ZodTypeAny, {
|
|
718
721
|
data: {
|
|
722
|
+
totalApy: string;
|
|
719
723
|
apy: string;
|
|
720
724
|
};
|
|
721
725
|
id: string;
|
|
@@ -724,6 +728,7 @@ export declare const apiStakingPositionSchema: z.ZodObject<z.objectUtil.extendSh
|
|
|
724
728
|
investmentId?: string | undefined;
|
|
725
729
|
}, {
|
|
726
730
|
data: {
|
|
731
|
+
totalApy: string;
|
|
727
732
|
apy: string;
|
|
728
733
|
};
|
|
729
734
|
id: string;
|
|
@@ -739,15 +744,19 @@ export declare const apiStakingPositionsSchema: z.ZodArray<z.ZodObject<z.objectU
|
|
|
739
744
|
}, {
|
|
740
745
|
data: z.ZodObject<{
|
|
741
746
|
apy: z.ZodString;
|
|
747
|
+
totalApy: z.ZodString;
|
|
742
748
|
}, "strip", z.ZodTypeAny, {
|
|
749
|
+
totalApy: string;
|
|
743
750
|
apy: string;
|
|
744
751
|
}, {
|
|
752
|
+
totalApy: string;
|
|
745
753
|
apy: string;
|
|
746
754
|
}>;
|
|
747
755
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
748
756
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
749
757
|
}>, "strip", z.ZodTypeAny, {
|
|
750
758
|
data: {
|
|
759
|
+
totalApy: string;
|
|
751
760
|
apy: string;
|
|
752
761
|
};
|
|
753
762
|
id: string;
|
|
@@ -756,6 +765,7 @@ export declare const apiStakingPositionsSchema: z.ZodArray<z.ZodObject<z.objectU
|
|
|
756
765
|
investmentId?: string | undefined;
|
|
757
766
|
}, {
|
|
758
767
|
data: {
|
|
768
|
+
totalApy: string;
|
|
759
769
|
apy: string;
|
|
760
770
|
};
|
|
761
771
|
id: string;
|
|
@@ -771,6 +781,7 @@ export declare const apiCollateralizedDebtPositionSchema: z.ZodObject<z.objectUt
|
|
|
771
781
|
}, {
|
|
772
782
|
data: z.ZodObject<{
|
|
773
783
|
apy: z.ZodOptional<z.ZodString>;
|
|
784
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
774
785
|
group: z.ZodOptional<z.ZodNumber>;
|
|
775
786
|
collateral: z.ZodBoolean;
|
|
776
787
|
debt: z.ZodBoolean;
|
|
@@ -779,12 +790,14 @@ export declare const apiCollateralizedDebtPositionSchema: z.ZodObject<z.objectUt
|
|
|
779
790
|
lending: boolean;
|
|
780
791
|
collateral: boolean;
|
|
781
792
|
debt: boolean;
|
|
793
|
+
totalApy?: string | undefined;
|
|
782
794
|
apy?: string | undefined;
|
|
783
795
|
group?: number | undefined;
|
|
784
796
|
}, {
|
|
785
797
|
lending: boolean;
|
|
786
798
|
collateral: boolean;
|
|
787
799
|
debt: boolean;
|
|
800
|
+
totalApy?: string | undefined;
|
|
788
801
|
apy?: string | undefined;
|
|
789
802
|
group?: number | undefined;
|
|
790
803
|
}>;
|
|
@@ -793,6 +806,7 @@ export declare const apiCollateralizedDebtPositionSchema: z.ZodObject<z.objectUt
|
|
|
793
806
|
lending: boolean;
|
|
794
807
|
collateral: boolean;
|
|
795
808
|
debt: boolean;
|
|
809
|
+
totalApy?: string | undefined;
|
|
796
810
|
apy?: string | undefined;
|
|
797
811
|
group?: number | undefined;
|
|
798
812
|
};
|
|
@@ -805,6 +819,7 @@ export declare const apiCollateralizedDebtPositionSchema: z.ZodObject<z.objectUt
|
|
|
805
819
|
lending: boolean;
|
|
806
820
|
collateral: boolean;
|
|
807
821
|
debt: boolean;
|
|
822
|
+
totalApy?: string | undefined;
|
|
808
823
|
apy?: string | undefined;
|
|
809
824
|
group?: number | undefined;
|
|
810
825
|
};
|
|
@@ -821,6 +836,7 @@ export declare const apiCollateralizedDebtPositionsSchema: z.ZodArray<z.ZodObjec
|
|
|
821
836
|
}, {
|
|
822
837
|
data: z.ZodObject<{
|
|
823
838
|
apy: z.ZodOptional<z.ZodString>;
|
|
839
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
824
840
|
group: z.ZodOptional<z.ZodNumber>;
|
|
825
841
|
collateral: z.ZodBoolean;
|
|
826
842
|
debt: z.ZodBoolean;
|
|
@@ -829,12 +845,14 @@ export declare const apiCollateralizedDebtPositionsSchema: z.ZodArray<z.ZodObjec
|
|
|
829
845
|
lending: boolean;
|
|
830
846
|
collateral: boolean;
|
|
831
847
|
debt: boolean;
|
|
848
|
+
totalApy?: string | undefined;
|
|
832
849
|
apy?: string | undefined;
|
|
833
850
|
group?: number | undefined;
|
|
834
851
|
}, {
|
|
835
852
|
lending: boolean;
|
|
836
853
|
collateral: boolean;
|
|
837
854
|
debt: boolean;
|
|
855
|
+
totalApy?: string | undefined;
|
|
838
856
|
apy?: string | undefined;
|
|
839
857
|
group?: number | undefined;
|
|
840
858
|
}>;
|
|
@@ -843,6 +861,7 @@ export declare const apiCollateralizedDebtPositionsSchema: z.ZodArray<z.ZodObjec
|
|
|
843
861
|
lending: boolean;
|
|
844
862
|
collateral: boolean;
|
|
845
863
|
debt: boolean;
|
|
864
|
+
totalApy?: string | undefined;
|
|
846
865
|
apy?: string | undefined;
|
|
847
866
|
group?: number | undefined;
|
|
848
867
|
};
|
|
@@ -855,6 +874,7 @@ export declare const apiCollateralizedDebtPositionsSchema: z.ZodArray<z.ZodObjec
|
|
|
855
874
|
lending: boolean;
|
|
856
875
|
collateral: boolean;
|
|
857
876
|
debt: boolean;
|
|
877
|
+
totalApy?: string | undefined;
|
|
858
878
|
apy?: string | undefined;
|
|
859
879
|
group?: number | undefined;
|
|
860
880
|
};
|
|
@@ -961,6 +981,7 @@ export declare const apiStrkDelegatedStakingSchema: z.ZodObject<z.objectUtil.ext
|
|
|
961
981
|
withdrawableAfter: number;
|
|
962
982
|
}>>;
|
|
963
983
|
apy: z.ZodOptional<z.ZodString>;
|
|
984
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
964
985
|
}, "strip", z.ZodTypeAny, {
|
|
965
986
|
stakerInfo: {
|
|
966
987
|
address: `0x${string}`;
|
|
@@ -969,6 +990,7 @@ export declare const apiStrkDelegatedStakingSchema: z.ZodObject<z.objectUtil.ext
|
|
|
969
990
|
};
|
|
970
991
|
accruedRewards: string;
|
|
971
992
|
stakedAmount: string;
|
|
993
|
+
totalApy?: string | undefined;
|
|
972
994
|
apy?: string | undefined;
|
|
973
995
|
pendingWithdrawal?: {
|
|
974
996
|
amount: string;
|
|
@@ -982,6 +1004,7 @@ export declare const apiStrkDelegatedStakingSchema: z.ZodObject<z.objectUtil.ext
|
|
|
982
1004
|
};
|
|
983
1005
|
accruedRewards: string;
|
|
984
1006
|
stakedAmount: string;
|
|
1007
|
+
totalApy?: string | undefined;
|
|
985
1008
|
apy?: string | undefined;
|
|
986
1009
|
pendingWithdrawal?: {
|
|
987
1010
|
amount: string;
|
|
@@ -997,6 +1020,7 @@ export declare const apiStrkDelegatedStakingSchema: z.ZodObject<z.objectUtil.ext
|
|
|
997
1020
|
};
|
|
998
1021
|
accruedRewards: string;
|
|
999
1022
|
stakedAmount: string;
|
|
1023
|
+
totalApy?: string | undefined;
|
|
1000
1024
|
apy?: string | undefined;
|
|
1001
1025
|
pendingWithdrawal?: {
|
|
1002
1026
|
amount: string;
|
|
@@ -1016,6 +1040,7 @@ export declare const apiStrkDelegatedStakingSchema: z.ZodObject<z.objectUtil.ext
|
|
|
1016
1040
|
};
|
|
1017
1041
|
accruedRewards: string;
|
|
1018
1042
|
stakedAmount: string;
|
|
1043
|
+
totalApy?: string | undefined;
|
|
1019
1044
|
apy?: string | undefined;
|
|
1020
1045
|
pendingWithdrawal?: {
|
|
1021
1046
|
amount: string;
|
|
@@ -1061,6 +1086,7 @@ export declare const apiStrkDelegatedStakingPositionsSchema: z.ZodArray<z.ZodObj
|
|
|
1061
1086
|
withdrawableAfter: number;
|
|
1062
1087
|
}>>;
|
|
1063
1088
|
apy: z.ZodOptional<z.ZodString>;
|
|
1089
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
1064
1090
|
}, "strip", z.ZodTypeAny, {
|
|
1065
1091
|
stakerInfo: {
|
|
1066
1092
|
address: `0x${string}`;
|
|
@@ -1069,6 +1095,7 @@ export declare const apiStrkDelegatedStakingPositionsSchema: z.ZodArray<z.ZodObj
|
|
|
1069
1095
|
};
|
|
1070
1096
|
accruedRewards: string;
|
|
1071
1097
|
stakedAmount: string;
|
|
1098
|
+
totalApy?: string | undefined;
|
|
1072
1099
|
apy?: string | undefined;
|
|
1073
1100
|
pendingWithdrawal?: {
|
|
1074
1101
|
amount: string;
|
|
@@ -1082,6 +1109,7 @@ export declare const apiStrkDelegatedStakingPositionsSchema: z.ZodArray<z.ZodObj
|
|
|
1082
1109
|
};
|
|
1083
1110
|
accruedRewards: string;
|
|
1084
1111
|
stakedAmount: string;
|
|
1112
|
+
totalApy?: string | undefined;
|
|
1085
1113
|
apy?: string | undefined;
|
|
1086
1114
|
pendingWithdrawal?: {
|
|
1087
1115
|
amount: string;
|
|
@@ -1097,6 +1125,7 @@ export declare const apiStrkDelegatedStakingPositionsSchema: z.ZodArray<z.ZodObj
|
|
|
1097
1125
|
};
|
|
1098
1126
|
accruedRewards: string;
|
|
1099
1127
|
stakedAmount: string;
|
|
1128
|
+
totalApy?: string | undefined;
|
|
1100
1129
|
apy?: string | undefined;
|
|
1101
1130
|
pendingWithdrawal?: {
|
|
1102
1131
|
amount: string;
|
|
@@ -1116,6 +1145,7 @@ export declare const apiStrkDelegatedStakingPositionsSchema: z.ZodArray<z.ZodObj
|
|
|
1116
1145
|
};
|
|
1117
1146
|
accruedRewards: string;
|
|
1118
1147
|
stakedAmount: string;
|
|
1148
|
+
totalApy?: string | undefined;
|
|
1119
1149
|
apy?: string | undefined;
|
|
1120
1150
|
pendingWithdrawal?: {
|
|
1121
1151
|
amount: string;
|
|
@@ -1280,6 +1310,7 @@ export declare const apiDefiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[
|
|
|
1280
1310
|
}, {
|
|
1281
1311
|
data: z.ZodObject<{
|
|
1282
1312
|
apy: z.ZodOptional<z.ZodString>;
|
|
1313
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
1283
1314
|
group: z.ZodOptional<z.ZodNumber>;
|
|
1284
1315
|
collateral: z.ZodBoolean;
|
|
1285
1316
|
debt: z.ZodBoolean;
|
|
@@ -1288,12 +1319,14 @@ export declare const apiDefiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[
|
|
|
1288
1319
|
lending: boolean;
|
|
1289
1320
|
collateral: boolean;
|
|
1290
1321
|
debt: boolean;
|
|
1322
|
+
totalApy?: string | undefined;
|
|
1291
1323
|
apy?: string | undefined;
|
|
1292
1324
|
group?: number | undefined;
|
|
1293
1325
|
}, {
|
|
1294
1326
|
lending: boolean;
|
|
1295
1327
|
collateral: boolean;
|
|
1296
1328
|
debt: boolean;
|
|
1329
|
+
totalApy?: string | undefined;
|
|
1297
1330
|
apy?: string | undefined;
|
|
1298
1331
|
group?: number | undefined;
|
|
1299
1332
|
}>;
|
|
@@ -1302,6 +1335,7 @@ export declare const apiDefiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[
|
|
|
1302
1335
|
lending: boolean;
|
|
1303
1336
|
collateral: boolean;
|
|
1304
1337
|
debt: boolean;
|
|
1338
|
+
totalApy?: string | undefined;
|
|
1305
1339
|
apy?: string | undefined;
|
|
1306
1340
|
group?: number | undefined;
|
|
1307
1341
|
};
|
|
@@ -1314,6 +1348,7 @@ export declare const apiDefiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[
|
|
|
1314
1348
|
lending: boolean;
|
|
1315
1349
|
collateral: boolean;
|
|
1316
1350
|
debt: boolean;
|
|
1351
|
+
totalApy?: string | undefined;
|
|
1317
1352
|
apy?: string | undefined;
|
|
1318
1353
|
group?: number | undefined;
|
|
1319
1354
|
};
|
|
@@ -1360,15 +1395,19 @@ export declare const apiDefiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[
|
|
|
1360
1395
|
}, {
|
|
1361
1396
|
data: z.ZodObject<{
|
|
1362
1397
|
apy: z.ZodString;
|
|
1398
|
+
totalApy: z.ZodString;
|
|
1363
1399
|
}, "strip", z.ZodTypeAny, {
|
|
1400
|
+
totalApy: string;
|
|
1364
1401
|
apy: string;
|
|
1365
1402
|
}, {
|
|
1403
|
+
totalApy: string;
|
|
1366
1404
|
apy: string;
|
|
1367
1405
|
}>;
|
|
1368
1406
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
1369
1407
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
1370
1408
|
}>, "strip", z.ZodTypeAny, {
|
|
1371
1409
|
data: {
|
|
1410
|
+
totalApy: string;
|
|
1372
1411
|
apy: string;
|
|
1373
1412
|
};
|
|
1374
1413
|
id: string;
|
|
@@ -1377,6 +1416,7 @@ export declare const apiDefiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[
|
|
|
1377
1416
|
investmentId?: string | undefined;
|
|
1378
1417
|
}, {
|
|
1379
1418
|
data: {
|
|
1419
|
+
totalApy: string;
|
|
1380
1420
|
apy: string;
|
|
1381
1421
|
};
|
|
1382
1422
|
id: string;
|
|
@@ -1417,6 +1457,7 @@ export declare const apiDefiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[
|
|
|
1417
1457
|
withdrawableAfter: number;
|
|
1418
1458
|
}>>;
|
|
1419
1459
|
apy: z.ZodOptional<z.ZodString>;
|
|
1460
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
1420
1461
|
}, "strip", z.ZodTypeAny, {
|
|
1421
1462
|
stakerInfo: {
|
|
1422
1463
|
address: `0x${string}`;
|
|
@@ -1425,6 +1466,7 @@ export declare const apiDefiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[
|
|
|
1425
1466
|
};
|
|
1426
1467
|
accruedRewards: string;
|
|
1427
1468
|
stakedAmount: string;
|
|
1469
|
+
totalApy?: string | undefined;
|
|
1428
1470
|
apy?: string | undefined;
|
|
1429
1471
|
pendingWithdrawal?: {
|
|
1430
1472
|
amount: string;
|
|
@@ -1438,6 +1480,7 @@ export declare const apiDefiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[
|
|
|
1438
1480
|
};
|
|
1439
1481
|
accruedRewards: string;
|
|
1440
1482
|
stakedAmount: string;
|
|
1483
|
+
totalApy?: string | undefined;
|
|
1441
1484
|
apy?: string | undefined;
|
|
1442
1485
|
pendingWithdrawal?: {
|
|
1443
1486
|
amount: string;
|
|
@@ -1453,6 +1496,7 @@ export declare const apiDefiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[
|
|
|
1453
1496
|
};
|
|
1454
1497
|
accruedRewards: string;
|
|
1455
1498
|
stakedAmount: string;
|
|
1499
|
+
totalApy?: string | undefined;
|
|
1456
1500
|
apy?: string | undefined;
|
|
1457
1501
|
pendingWithdrawal?: {
|
|
1458
1502
|
amount: string;
|
|
@@ -1472,6 +1516,7 @@ export declare const apiDefiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[
|
|
|
1472
1516
|
};
|
|
1473
1517
|
accruedRewards: string;
|
|
1474
1518
|
stakedAmount: string;
|
|
1519
|
+
totalApy?: string | undefined;
|
|
1475
1520
|
apy?: string | undefined;
|
|
1476
1521
|
pendingWithdrawal?: {
|
|
1477
1522
|
amount: string;
|
|
@@ -1637,6 +1682,7 @@ export declare const apiDefiDecompositionProducts: z.ZodArray<z.ZodUnion<[z.ZodU
|
|
|
1637
1682
|
}, {
|
|
1638
1683
|
data: z.ZodObject<{
|
|
1639
1684
|
apy: z.ZodOptional<z.ZodString>;
|
|
1685
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
1640
1686
|
group: z.ZodOptional<z.ZodNumber>;
|
|
1641
1687
|
collateral: z.ZodBoolean;
|
|
1642
1688
|
debt: z.ZodBoolean;
|
|
@@ -1645,12 +1691,14 @@ export declare const apiDefiDecompositionProducts: z.ZodArray<z.ZodUnion<[z.ZodU
|
|
|
1645
1691
|
lending: boolean;
|
|
1646
1692
|
collateral: boolean;
|
|
1647
1693
|
debt: boolean;
|
|
1694
|
+
totalApy?: string | undefined;
|
|
1648
1695
|
apy?: string | undefined;
|
|
1649
1696
|
group?: number | undefined;
|
|
1650
1697
|
}, {
|
|
1651
1698
|
lending: boolean;
|
|
1652
1699
|
collateral: boolean;
|
|
1653
1700
|
debt: boolean;
|
|
1701
|
+
totalApy?: string | undefined;
|
|
1654
1702
|
apy?: string | undefined;
|
|
1655
1703
|
group?: number | undefined;
|
|
1656
1704
|
}>;
|
|
@@ -1659,6 +1707,7 @@ export declare const apiDefiDecompositionProducts: z.ZodArray<z.ZodUnion<[z.ZodU
|
|
|
1659
1707
|
lending: boolean;
|
|
1660
1708
|
collateral: boolean;
|
|
1661
1709
|
debt: boolean;
|
|
1710
|
+
totalApy?: string | undefined;
|
|
1662
1711
|
apy?: string | undefined;
|
|
1663
1712
|
group?: number | undefined;
|
|
1664
1713
|
};
|
|
@@ -1671,6 +1720,7 @@ export declare const apiDefiDecompositionProducts: z.ZodArray<z.ZodUnion<[z.ZodU
|
|
|
1671
1720
|
lending: boolean;
|
|
1672
1721
|
collateral: boolean;
|
|
1673
1722
|
debt: boolean;
|
|
1723
|
+
totalApy?: string | undefined;
|
|
1674
1724
|
apy?: string | undefined;
|
|
1675
1725
|
group?: number | undefined;
|
|
1676
1726
|
};
|
|
@@ -1717,15 +1767,19 @@ export declare const apiDefiDecompositionProducts: z.ZodArray<z.ZodUnion<[z.ZodU
|
|
|
1717
1767
|
}, {
|
|
1718
1768
|
data: z.ZodObject<{
|
|
1719
1769
|
apy: z.ZodString;
|
|
1770
|
+
totalApy: z.ZodString;
|
|
1720
1771
|
}, "strip", z.ZodTypeAny, {
|
|
1772
|
+
totalApy: string;
|
|
1721
1773
|
apy: string;
|
|
1722
1774
|
}, {
|
|
1775
|
+
totalApy: string;
|
|
1723
1776
|
apy: string;
|
|
1724
1777
|
}>;
|
|
1725
1778
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
1726
1779
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
1727
1780
|
}>, "strip", z.ZodTypeAny, {
|
|
1728
1781
|
data: {
|
|
1782
|
+
totalApy: string;
|
|
1729
1783
|
apy: string;
|
|
1730
1784
|
};
|
|
1731
1785
|
id: string;
|
|
@@ -1734,6 +1788,7 @@ export declare const apiDefiDecompositionProducts: z.ZodArray<z.ZodUnion<[z.ZodU
|
|
|
1734
1788
|
investmentId?: string | undefined;
|
|
1735
1789
|
}, {
|
|
1736
1790
|
data: {
|
|
1791
|
+
totalApy: string;
|
|
1737
1792
|
apy: string;
|
|
1738
1793
|
};
|
|
1739
1794
|
id: string;
|
|
@@ -1774,6 +1829,7 @@ export declare const apiDefiDecompositionProducts: z.ZodArray<z.ZodUnion<[z.ZodU
|
|
|
1774
1829
|
withdrawableAfter: number;
|
|
1775
1830
|
}>>;
|
|
1776
1831
|
apy: z.ZodOptional<z.ZodString>;
|
|
1832
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
1777
1833
|
}, "strip", z.ZodTypeAny, {
|
|
1778
1834
|
stakerInfo: {
|
|
1779
1835
|
address: `0x${string}`;
|
|
@@ -1782,6 +1838,7 @@ export declare const apiDefiDecompositionProducts: z.ZodArray<z.ZodUnion<[z.ZodU
|
|
|
1782
1838
|
};
|
|
1783
1839
|
accruedRewards: string;
|
|
1784
1840
|
stakedAmount: string;
|
|
1841
|
+
totalApy?: string | undefined;
|
|
1785
1842
|
apy?: string | undefined;
|
|
1786
1843
|
pendingWithdrawal?: {
|
|
1787
1844
|
amount: string;
|
|
@@ -1795,6 +1852,7 @@ export declare const apiDefiDecompositionProducts: z.ZodArray<z.ZodUnion<[z.ZodU
|
|
|
1795
1852
|
};
|
|
1796
1853
|
accruedRewards: string;
|
|
1797
1854
|
stakedAmount: string;
|
|
1855
|
+
totalApy?: string | undefined;
|
|
1798
1856
|
apy?: string | undefined;
|
|
1799
1857
|
pendingWithdrawal?: {
|
|
1800
1858
|
amount: string;
|
|
@@ -1810,6 +1868,7 @@ export declare const apiDefiDecompositionProducts: z.ZodArray<z.ZodUnion<[z.ZodU
|
|
|
1810
1868
|
};
|
|
1811
1869
|
accruedRewards: string;
|
|
1812
1870
|
stakedAmount: string;
|
|
1871
|
+
totalApy?: string | undefined;
|
|
1813
1872
|
apy?: string | undefined;
|
|
1814
1873
|
pendingWithdrawal?: {
|
|
1815
1874
|
amount: string;
|
|
@@ -1829,6 +1888,7 @@ export declare const apiDefiDecompositionProducts: z.ZodArray<z.ZodUnion<[z.ZodU
|
|
|
1829
1888
|
};
|
|
1830
1889
|
accruedRewards: string;
|
|
1831
1890
|
stakedAmount: string;
|
|
1891
|
+
totalApy?: string | undefined;
|
|
1832
1892
|
apy?: string | undefined;
|
|
1833
1893
|
pendingWithdrawal?: {
|
|
1834
1894
|
amount: string;
|
|
@@ -2008,6 +2068,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2008
2068
|
}, {
|
|
2009
2069
|
data: z.ZodObject<{
|
|
2010
2070
|
apy: z.ZodOptional<z.ZodString>;
|
|
2071
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
2011
2072
|
group: z.ZodOptional<z.ZodNumber>;
|
|
2012
2073
|
collateral: z.ZodBoolean;
|
|
2013
2074
|
debt: z.ZodBoolean;
|
|
@@ -2016,12 +2077,14 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2016
2077
|
lending: boolean;
|
|
2017
2078
|
collateral: boolean;
|
|
2018
2079
|
debt: boolean;
|
|
2080
|
+
totalApy?: string | undefined;
|
|
2019
2081
|
apy?: string | undefined;
|
|
2020
2082
|
group?: number | undefined;
|
|
2021
2083
|
}, {
|
|
2022
2084
|
lending: boolean;
|
|
2023
2085
|
collateral: boolean;
|
|
2024
2086
|
debt: boolean;
|
|
2087
|
+
totalApy?: string | undefined;
|
|
2025
2088
|
apy?: string | undefined;
|
|
2026
2089
|
group?: number | undefined;
|
|
2027
2090
|
}>;
|
|
@@ -2030,6 +2093,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2030
2093
|
lending: boolean;
|
|
2031
2094
|
collateral: boolean;
|
|
2032
2095
|
debt: boolean;
|
|
2096
|
+
totalApy?: string | undefined;
|
|
2033
2097
|
apy?: string | undefined;
|
|
2034
2098
|
group?: number | undefined;
|
|
2035
2099
|
};
|
|
@@ -2042,6 +2106,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2042
2106
|
lending: boolean;
|
|
2043
2107
|
collateral: boolean;
|
|
2044
2108
|
debt: boolean;
|
|
2109
|
+
totalApy?: string | undefined;
|
|
2045
2110
|
apy?: string | undefined;
|
|
2046
2111
|
group?: number | undefined;
|
|
2047
2112
|
};
|
|
@@ -2088,15 +2153,19 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2088
2153
|
}, {
|
|
2089
2154
|
data: z.ZodObject<{
|
|
2090
2155
|
apy: z.ZodString;
|
|
2156
|
+
totalApy: z.ZodString;
|
|
2091
2157
|
}, "strip", z.ZodTypeAny, {
|
|
2158
|
+
totalApy: string;
|
|
2092
2159
|
apy: string;
|
|
2093
2160
|
}, {
|
|
2161
|
+
totalApy: string;
|
|
2094
2162
|
apy: string;
|
|
2095
2163
|
}>;
|
|
2096
2164
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
2097
2165
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
2098
2166
|
}>, "strip", z.ZodTypeAny, {
|
|
2099
2167
|
data: {
|
|
2168
|
+
totalApy: string;
|
|
2100
2169
|
apy: string;
|
|
2101
2170
|
};
|
|
2102
2171
|
id: string;
|
|
@@ -2105,6 +2174,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2105
2174
|
investmentId?: string | undefined;
|
|
2106
2175
|
}, {
|
|
2107
2176
|
data: {
|
|
2177
|
+
totalApy: string;
|
|
2108
2178
|
apy: string;
|
|
2109
2179
|
};
|
|
2110
2180
|
id: string;
|
|
@@ -2145,6 +2215,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2145
2215
|
withdrawableAfter: number;
|
|
2146
2216
|
}>>;
|
|
2147
2217
|
apy: z.ZodOptional<z.ZodString>;
|
|
2218
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
2148
2219
|
}, "strip", z.ZodTypeAny, {
|
|
2149
2220
|
stakerInfo: {
|
|
2150
2221
|
address: `0x${string}`;
|
|
@@ -2153,6 +2224,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2153
2224
|
};
|
|
2154
2225
|
accruedRewards: string;
|
|
2155
2226
|
stakedAmount: string;
|
|
2227
|
+
totalApy?: string | undefined;
|
|
2156
2228
|
apy?: string | undefined;
|
|
2157
2229
|
pendingWithdrawal?: {
|
|
2158
2230
|
amount: string;
|
|
@@ -2166,6 +2238,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2166
2238
|
};
|
|
2167
2239
|
accruedRewards: string;
|
|
2168
2240
|
stakedAmount: string;
|
|
2241
|
+
totalApy?: string | undefined;
|
|
2169
2242
|
apy?: string | undefined;
|
|
2170
2243
|
pendingWithdrawal?: {
|
|
2171
2244
|
amount: string;
|
|
@@ -2181,6 +2254,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2181
2254
|
};
|
|
2182
2255
|
accruedRewards: string;
|
|
2183
2256
|
stakedAmount: string;
|
|
2257
|
+
totalApy?: string | undefined;
|
|
2184
2258
|
apy?: string | undefined;
|
|
2185
2259
|
pendingWithdrawal?: {
|
|
2186
2260
|
amount: string;
|
|
@@ -2200,6 +2274,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2200
2274
|
};
|
|
2201
2275
|
accruedRewards: string;
|
|
2202
2276
|
stakedAmount: string;
|
|
2277
|
+
totalApy?: string | undefined;
|
|
2203
2278
|
apy?: string | undefined;
|
|
2204
2279
|
pendingWithdrawal?: {
|
|
2205
2280
|
amount: string;
|
|
@@ -2379,6 +2454,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2379
2454
|
}, {
|
|
2380
2455
|
data: z.ZodObject<{
|
|
2381
2456
|
apy: z.ZodOptional<z.ZodString>;
|
|
2457
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
2382
2458
|
group: z.ZodOptional<z.ZodNumber>;
|
|
2383
2459
|
collateral: z.ZodBoolean;
|
|
2384
2460
|
debt: z.ZodBoolean;
|
|
@@ -2387,12 +2463,14 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2387
2463
|
lending: boolean;
|
|
2388
2464
|
collateral: boolean;
|
|
2389
2465
|
debt: boolean;
|
|
2466
|
+
totalApy?: string | undefined;
|
|
2390
2467
|
apy?: string | undefined;
|
|
2391
2468
|
group?: number | undefined;
|
|
2392
2469
|
}, {
|
|
2393
2470
|
lending: boolean;
|
|
2394
2471
|
collateral: boolean;
|
|
2395
2472
|
debt: boolean;
|
|
2473
|
+
totalApy?: string | undefined;
|
|
2396
2474
|
apy?: string | undefined;
|
|
2397
2475
|
group?: number | undefined;
|
|
2398
2476
|
}>;
|
|
@@ -2401,6 +2479,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2401
2479
|
lending: boolean;
|
|
2402
2480
|
collateral: boolean;
|
|
2403
2481
|
debt: boolean;
|
|
2482
|
+
totalApy?: string | undefined;
|
|
2404
2483
|
apy?: string | undefined;
|
|
2405
2484
|
group?: number | undefined;
|
|
2406
2485
|
};
|
|
@@ -2413,6 +2492,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2413
2492
|
lending: boolean;
|
|
2414
2493
|
collateral: boolean;
|
|
2415
2494
|
debt: boolean;
|
|
2495
|
+
totalApy?: string | undefined;
|
|
2416
2496
|
apy?: string | undefined;
|
|
2417
2497
|
group?: number | undefined;
|
|
2418
2498
|
};
|
|
@@ -2459,15 +2539,19 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2459
2539
|
}, {
|
|
2460
2540
|
data: z.ZodObject<{
|
|
2461
2541
|
apy: z.ZodString;
|
|
2542
|
+
totalApy: z.ZodString;
|
|
2462
2543
|
}, "strip", z.ZodTypeAny, {
|
|
2544
|
+
totalApy: string;
|
|
2463
2545
|
apy: string;
|
|
2464
2546
|
}, {
|
|
2547
|
+
totalApy: string;
|
|
2465
2548
|
apy: string;
|
|
2466
2549
|
}>;
|
|
2467
2550
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
2468
2551
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
2469
2552
|
}>, "strip", z.ZodTypeAny, {
|
|
2470
2553
|
data: {
|
|
2554
|
+
totalApy: string;
|
|
2471
2555
|
apy: string;
|
|
2472
2556
|
};
|
|
2473
2557
|
id: string;
|
|
@@ -2476,6 +2560,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2476
2560
|
investmentId?: string | undefined;
|
|
2477
2561
|
}, {
|
|
2478
2562
|
data: {
|
|
2563
|
+
totalApy: string;
|
|
2479
2564
|
apy: string;
|
|
2480
2565
|
};
|
|
2481
2566
|
id: string;
|
|
@@ -2516,6 +2601,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2516
2601
|
withdrawableAfter: number;
|
|
2517
2602
|
}>>;
|
|
2518
2603
|
apy: z.ZodOptional<z.ZodString>;
|
|
2604
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
2519
2605
|
}, "strip", z.ZodTypeAny, {
|
|
2520
2606
|
stakerInfo: {
|
|
2521
2607
|
address: `0x${string}`;
|
|
@@ -2524,6 +2610,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2524
2610
|
};
|
|
2525
2611
|
accruedRewards: string;
|
|
2526
2612
|
stakedAmount: string;
|
|
2613
|
+
totalApy?: string | undefined;
|
|
2527
2614
|
apy?: string | undefined;
|
|
2528
2615
|
pendingWithdrawal?: {
|
|
2529
2616
|
amount: string;
|
|
@@ -2537,6 +2624,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2537
2624
|
};
|
|
2538
2625
|
accruedRewards: string;
|
|
2539
2626
|
stakedAmount: string;
|
|
2627
|
+
totalApy?: string | undefined;
|
|
2540
2628
|
apy?: string | undefined;
|
|
2541
2629
|
pendingWithdrawal?: {
|
|
2542
2630
|
amount: string;
|
|
@@ -2552,6 +2640,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2552
2640
|
};
|
|
2553
2641
|
accruedRewards: string;
|
|
2554
2642
|
stakedAmount: string;
|
|
2643
|
+
totalApy?: string | undefined;
|
|
2555
2644
|
apy?: string | undefined;
|
|
2556
2645
|
pendingWithdrawal?: {
|
|
2557
2646
|
amount: string;
|
|
@@ -2571,6 +2660,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2571
2660
|
};
|
|
2572
2661
|
accruedRewards: string;
|
|
2573
2662
|
stakedAmount: string;
|
|
2663
|
+
totalApy?: string | undefined;
|
|
2574
2664
|
apy?: string | undefined;
|
|
2575
2665
|
pendingWithdrawal?: {
|
|
2576
2666
|
amount: string;
|
|
@@ -2750,6 +2840,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2750
2840
|
}, {
|
|
2751
2841
|
data: z.ZodObject<{
|
|
2752
2842
|
apy: z.ZodOptional<z.ZodString>;
|
|
2843
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
2753
2844
|
group: z.ZodOptional<z.ZodNumber>;
|
|
2754
2845
|
collateral: z.ZodBoolean;
|
|
2755
2846
|
debt: z.ZodBoolean;
|
|
@@ -2758,12 +2849,14 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2758
2849
|
lending: boolean;
|
|
2759
2850
|
collateral: boolean;
|
|
2760
2851
|
debt: boolean;
|
|
2852
|
+
totalApy?: string | undefined;
|
|
2761
2853
|
apy?: string | undefined;
|
|
2762
2854
|
group?: number | undefined;
|
|
2763
2855
|
}, {
|
|
2764
2856
|
lending: boolean;
|
|
2765
2857
|
collateral: boolean;
|
|
2766
2858
|
debt: boolean;
|
|
2859
|
+
totalApy?: string | undefined;
|
|
2767
2860
|
apy?: string | undefined;
|
|
2768
2861
|
group?: number | undefined;
|
|
2769
2862
|
}>;
|
|
@@ -2772,6 +2865,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2772
2865
|
lending: boolean;
|
|
2773
2866
|
collateral: boolean;
|
|
2774
2867
|
debt: boolean;
|
|
2868
|
+
totalApy?: string | undefined;
|
|
2775
2869
|
apy?: string | undefined;
|
|
2776
2870
|
group?: number | undefined;
|
|
2777
2871
|
};
|
|
@@ -2784,6 +2878,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2784
2878
|
lending: boolean;
|
|
2785
2879
|
collateral: boolean;
|
|
2786
2880
|
debt: boolean;
|
|
2881
|
+
totalApy?: string | undefined;
|
|
2787
2882
|
apy?: string | undefined;
|
|
2788
2883
|
group?: number | undefined;
|
|
2789
2884
|
};
|
|
@@ -2830,15 +2925,19 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2830
2925
|
}, {
|
|
2831
2926
|
data: z.ZodObject<{
|
|
2832
2927
|
apy: z.ZodString;
|
|
2928
|
+
totalApy: z.ZodString;
|
|
2833
2929
|
}, "strip", z.ZodTypeAny, {
|
|
2930
|
+
totalApy: string;
|
|
2834
2931
|
apy: string;
|
|
2835
2932
|
}, {
|
|
2933
|
+
totalApy: string;
|
|
2836
2934
|
apy: string;
|
|
2837
2935
|
}>;
|
|
2838
2936
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
2839
2937
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
2840
2938
|
}>, "strip", z.ZodTypeAny, {
|
|
2841
2939
|
data: {
|
|
2940
|
+
totalApy: string;
|
|
2842
2941
|
apy: string;
|
|
2843
2942
|
};
|
|
2844
2943
|
id: string;
|
|
@@ -2847,6 +2946,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2847
2946
|
investmentId?: string | undefined;
|
|
2848
2947
|
}, {
|
|
2849
2948
|
data: {
|
|
2949
|
+
totalApy: string;
|
|
2850
2950
|
apy: string;
|
|
2851
2951
|
};
|
|
2852
2952
|
id: string;
|
|
@@ -2887,6 +2987,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2887
2987
|
withdrawableAfter: number;
|
|
2888
2988
|
}>>;
|
|
2889
2989
|
apy: z.ZodOptional<z.ZodString>;
|
|
2990
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
2890
2991
|
}, "strip", z.ZodTypeAny, {
|
|
2891
2992
|
stakerInfo: {
|
|
2892
2993
|
address: `0x${string}`;
|
|
@@ -2895,6 +2996,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2895
2996
|
};
|
|
2896
2997
|
accruedRewards: string;
|
|
2897
2998
|
stakedAmount: string;
|
|
2999
|
+
totalApy?: string | undefined;
|
|
2898
3000
|
apy?: string | undefined;
|
|
2899
3001
|
pendingWithdrawal?: {
|
|
2900
3002
|
amount: string;
|
|
@@ -2908,6 +3010,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2908
3010
|
};
|
|
2909
3011
|
accruedRewards: string;
|
|
2910
3012
|
stakedAmount: string;
|
|
3013
|
+
totalApy?: string | undefined;
|
|
2911
3014
|
apy?: string | undefined;
|
|
2912
3015
|
pendingWithdrawal?: {
|
|
2913
3016
|
amount: string;
|
|
@@ -2923,6 +3026,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2923
3026
|
};
|
|
2924
3027
|
accruedRewards: string;
|
|
2925
3028
|
stakedAmount: string;
|
|
3029
|
+
totalApy?: string | undefined;
|
|
2926
3030
|
apy?: string | undefined;
|
|
2927
3031
|
pendingWithdrawal?: {
|
|
2928
3032
|
amount: string;
|
|
@@ -2942,6 +3046,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2942
3046
|
};
|
|
2943
3047
|
accruedRewards: string;
|
|
2944
3048
|
stakedAmount: string;
|
|
3049
|
+
totalApy?: string | undefined;
|
|
2945
3050
|
apy?: string | undefined;
|
|
2946
3051
|
pendingWithdrawal?: {
|
|
2947
3052
|
amount: string;
|
|
@@ -3121,6 +3226,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3121
3226
|
}, {
|
|
3122
3227
|
data: z.ZodObject<{
|
|
3123
3228
|
apy: z.ZodOptional<z.ZodString>;
|
|
3229
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
3124
3230
|
group: z.ZodOptional<z.ZodNumber>;
|
|
3125
3231
|
collateral: z.ZodBoolean;
|
|
3126
3232
|
debt: z.ZodBoolean;
|
|
@@ -3129,12 +3235,14 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3129
3235
|
lending: boolean;
|
|
3130
3236
|
collateral: boolean;
|
|
3131
3237
|
debt: boolean;
|
|
3238
|
+
totalApy?: string | undefined;
|
|
3132
3239
|
apy?: string | undefined;
|
|
3133
3240
|
group?: number | undefined;
|
|
3134
3241
|
}, {
|
|
3135
3242
|
lending: boolean;
|
|
3136
3243
|
collateral: boolean;
|
|
3137
3244
|
debt: boolean;
|
|
3245
|
+
totalApy?: string | undefined;
|
|
3138
3246
|
apy?: string | undefined;
|
|
3139
3247
|
group?: number | undefined;
|
|
3140
3248
|
}>;
|
|
@@ -3143,6 +3251,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3143
3251
|
lending: boolean;
|
|
3144
3252
|
collateral: boolean;
|
|
3145
3253
|
debt: boolean;
|
|
3254
|
+
totalApy?: string | undefined;
|
|
3146
3255
|
apy?: string | undefined;
|
|
3147
3256
|
group?: number | undefined;
|
|
3148
3257
|
};
|
|
@@ -3155,6 +3264,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3155
3264
|
lending: boolean;
|
|
3156
3265
|
collateral: boolean;
|
|
3157
3266
|
debt: boolean;
|
|
3267
|
+
totalApy?: string | undefined;
|
|
3158
3268
|
apy?: string | undefined;
|
|
3159
3269
|
group?: number | undefined;
|
|
3160
3270
|
};
|
|
@@ -3201,15 +3311,19 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3201
3311
|
}, {
|
|
3202
3312
|
data: z.ZodObject<{
|
|
3203
3313
|
apy: z.ZodString;
|
|
3314
|
+
totalApy: z.ZodString;
|
|
3204
3315
|
}, "strip", z.ZodTypeAny, {
|
|
3316
|
+
totalApy: string;
|
|
3205
3317
|
apy: string;
|
|
3206
3318
|
}, {
|
|
3319
|
+
totalApy: string;
|
|
3207
3320
|
apy: string;
|
|
3208
3321
|
}>;
|
|
3209
3322
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
3210
3323
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
3211
3324
|
}>, "strip", z.ZodTypeAny, {
|
|
3212
3325
|
data: {
|
|
3326
|
+
totalApy: string;
|
|
3213
3327
|
apy: string;
|
|
3214
3328
|
};
|
|
3215
3329
|
id: string;
|
|
@@ -3218,6 +3332,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3218
3332
|
investmentId?: string | undefined;
|
|
3219
3333
|
}, {
|
|
3220
3334
|
data: {
|
|
3335
|
+
totalApy: string;
|
|
3221
3336
|
apy: string;
|
|
3222
3337
|
};
|
|
3223
3338
|
id: string;
|
|
@@ -3258,6 +3373,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3258
3373
|
withdrawableAfter: number;
|
|
3259
3374
|
}>>;
|
|
3260
3375
|
apy: z.ZodOptional<z.ZodString>;
|
|
3376
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
3261
3377
|
}, "strip", z.ZodTypeAny, {
|
|
3262
3378
|
stakerInfo: {
|
|
3263
3379
|
address: `0x${string}`;
|
|
@@ -3266,6 +3382,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3266
3382
|
};
|
|
3267
3383
|
accruedRewards: string;
|
|
3268
3384
|
stakedAmount: string;
|
|
3385
|
+
totalApy?: string | undefined;
|
|
3269
3386
|
apy?: string | undefined;
|
|
3270
3387
|
pendingWithdrawal?: {
|
|
3271
3388
|
amount: string;
|
|
@@ -3279,6 +3396,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3279
3396
|
};
|
|
3280
3397
|
accruedRewards: string;
|
|
3281
3398
|
stakedAmount: string;
|
|
3399
|
+
totalApy?: string | undefined;
|
|
3282
3400
|
apy?: string | undefined;
|
|
3283
3401
|
pendingWithdrawal?: {
|
|
3284
3402
|
amount: string;
|
|
@@ -3294,6 +3412,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3294
3412
|
};
|
|
3295
3413
|
accruedRewards: string;
|
|
3296
3414
|
stakedAmount: string;
|
|
3415
|
+
totalApy?: string | undefined;
|
|
3297
3416
|
apy?: string | undefined;
|
|
3298
3417
|
pendingWithdrawal?: {
|
|
3299
3418
|
amount: string;
|
|
@@ -3313,6 +3432,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3313
3432
|
};
|
|
3314
3433
|
accruedRewards: string;
|
|
3315
3434
|
stakedAmount: string;
|
|
3435
|
+
totalApy?: string | undefined;
|
|
3316
3436
|
apy?: string | undefined;
|
|
3317
3437
|
pendingWithdrawal?: {
|
|
3318
3438
|
amount: string;
|
|
@@ -3492,6 +3612,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3492
3612
|
}, {
|
|
3493
3613
|
data: z.ZodObject<{
|
|
3494
3614
|
apy: z.ZodOptional<z.ZodString>;
|
|
3615
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
3495
3616
|
group: z.ZodOptional<z.ZodNumber>;
|
|
3496
3617
|
collateral: z.ZodBoolean;
|
|
3497
3618
|
debt: z.ZodBoolean;
|
|
@@ -3500,12 +3621,14 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3500
3621
|
lending: boolean;
|
|
3501
3622
|
collateral: boolean;
|
|
3502
3623
|
debt: boolean;
|
|
3624
|
+
totalApy?: string | undefined;
|
|
3503
3625
|
apy?: string | undefined;
|
|
3504
3626
|
group?: number | undefined;
|
|
3505
3627
|
}, {
|
|
3506
3628
|
lending: boolean;
|
|
3507
3629
|
collateral: boolean;
|
|
3508
3630
|
debt: boolean;
|
|
3631
|
+
totalApy?: string | undefined;
|
|
3509
3632
|
apy?: string | undefined;
|
|
3510
3633
|
group?: number | undefined;
|
|
3511
3634
|
}>;
|
|
@@ -3514,6 +3637,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3514
3637
|
lending: boolean;
|
|
3515
3638
|
collateral: boolean;
|
|
3516
3639
|
debt: boolean;
|
|
3640
|
+
totalApy?: string | undefined;
|
|
3517
3641
|
apy?: string | undefined;
|
|
3518
3642
|
group?: number | undefined;
|
|
3519
3643
|
};
|
|
@@ -3526,6 +3650,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3526
3650
|
lending: boolean;
|
|
3527
3651
|
collateral: boolean;
|
|
3528
3652
|
debt: boolean;
|
|
3653
|
+
totalApy?: string | undefined;
|
|
3529
3654
|
apy?: string | undefined;
|
|
3530
3655
|
group?: number | undefined;
|
|
3531
3656
|
};
|
|
@@ -3572,15 +3697,19 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3572
3697
|
}, {
|
|
3573
3698
|
data: z.ZodObject<{
|
|
3574
3699
|
apy: z.ZodString;
|
|
3700
|
+
totalApy: z.ZodString;
|
|
3575
3701
|
}, "strip", z.ZodTypeAny, {
|
|
3702
|
+
totalApy: string;
|
|
3576
3703
|
apy: string;
|
|
3577
3704
|
}, {
|
|
3705
|
+
totalApy: string;
|
|
3578
3706
|
apy: string;
|
|
3579
3707
|
}>;
|
|
3580
3708
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
3581
3709
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
3582
3710
|
}>, "strip", z.ZodTypeAny, {
|
|
3583
3711
|
data: {
|
|
3712
|
+
totalApy: string;
|
|
3584
3713
|
apy: string;
|
|
3585
3714
|
};
|
|
3586
3715
|
id: string;
|
|
@@ -3589,6 +3718,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3589
3718
|
investmentId?: string | undefined;
|
|
3590
3719
|
}, {
|
|
3591
3720
|
data: {
|
|
3721
|
+
totalApy: string;
|
|
3592
3722
|
apy: string;
|
|
3593
3723
|
};
|
|
3594
3724
|
id: string;
|
|
@@ -3629,6 +3759,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3629
3759
|
withdrawableAfter: number;
|
|
3630
3760
|
}>>;
|
|
3631
3761
|
apy: z.ZodOptional<z.ZodString>;
|
|
3762
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
3632
3763
|
}, "strip", z.ZodTypeAny, {
|
|
3633
3764
|
stakerInfo: {
|
|
3634
3765
|
address: `0x${string}`;
|
|
@@ -3637,6 +3768,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3637
3768
|
};
|
|
3638
3769
|
accruedRewards: string;
|
|
3639
3770
|
stakedAmount: string;
|
|
3771
|
+
totalApy?: string | undefined;
|
|
3640
3772
|
apy?: string | undefined;
|
|
3641
3773
|
pendingWithdrawal?: {
|
|
3642
3774
|
amount: string;
|
|
@@ -3650,6 +3782,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3650
3782
|
};
|
|
3651
3783
|
accruedRewards: string;
|
|
3652
3784
|
stakedAmount: string;
|
|
3785
|
+
totalApy?: string | undefined;
|
|
3653
3786
|
apy?: string | undefined;
|
|
3654
3787
|
pendingWithdrawal?: {
|
|
3655
3788
|
amount: string;
|
|
@@ -3665,6 +3798,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3665
3798
|
};
|
|
3666
3799
|
accruedRewards: string;
|
|
3667
3800
|
stakedAmount: string;
|
|
3801
|
+
totalApy?: string | undefined;
|
|
3668
3802
|
apy?: string | undefined;
|
|
3669
3803
|
pendingWithdrawal?: {
|
|
3670
3804
|
amount: string;
|
|
@@ -3684,6 +3818,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3684
3818
|
};
|
|
3685
3819
|
accruedRewards: string;
|
|
3686
3820
|
stakedAmount: string;
|
|
3821
|
+
totalApy?: string | undefined;
|
|
3687
3822
|
apy?: string | undefined;
|
|
3688
3823
|
pendingWithdrawal?: {
|
|
3689
3824
|
amount: string;
|
|
@@ -3864,6 +3999,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3864
3999
|
}, {
|
|
3865
4000
|
data: z.ZodObject<{
|
|
3866
4001
|
apy: z.ZodOptional<z.ZodString>;
|
|
4002
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
3867
4003
|
group: z.ZodOptional<z.ZodNumber>;
|
|
3868
4004
|
collateral: z.ZodBoolean;
|
|
3869
4005
|
debt: z.ZodBoolean;
|
|
@@ -3872,12 +4008,14 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3872
4008
|
lending: boolean;
|
|
3873
4009
|
collateral: boolean;
|
|
3874
4010
|
debt: boolean;
|
|
4011
|
+
totalApy?: string | undefined;
|
|
3875
4012
|
apy?: string | undefined;
|
|
3876
4013
|
group?: number | undefined;
|
|
3877
4014
|
}, {
|
|
3878
4015
|
lending: boolean;
|
|
3879
4016
|
collateral: boolean;
|
|
3880
4017
|
debt: boolean;
|
|
4018
|
+
totalApy?: string | undefined;
|
|
3881
4019
|
apy?: string | undefined;
|
|
3882
4020
|
group?: number | undefined;
|
|
3883
4021
|
}>;
|
|
@@ -3886,6 +4024,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3886
4024
|
lending: boolean;
|
|
3887
4025
|
collateral: boolean;
|
|
3888
4026
|
debt: boolean;
|
|
4027
|
+
totalApy?: string | undefined;
|
|
3889
4028
|
apy?: string | undefined;
|
|
3890
4029
|
group?: number | undefined;
|
|
3891
4030
|
};
|
|
@@ -3898,6 +4037,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3898
4037
|
lending: boolean;
|
|
3899
4038
|
collateral: boolean;
|
|
3900
4039
|
debt: boolean;
|
|
4040
|
+
totalApy?: string | undefined;
|
|
3901
4041
|
apy?: string | undefined;
|
|
3902
4042
|
group?: number | undefined;
|
|
3903
4043
|
};
|
|
@@ -3944,15 +4084,19 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3944
4084
|
}, {
|
|
3945
4085
|
data: z.ZodObject<{
|
|
3946
4086
|
apy: z.ZodString;
|
|
4087
|
+
totalApy: z.ZodString;
|
|
3947
4088
|
}, "strip", z.ZodTypeAny, {
|
|
4089
|
+
totalApy: string;
|
|
3948
4090
|
apy: string;
|
|
3949
4091
|
}, {
|
|
4092
|
+
totalApy: string;
|
|
3950
4093
|
apy: string;
|
|
3951
4094
|
}>;
|
|
3952
4095
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
3953
4096
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
3954
4097
|
}>, "strip", z.ZodTypeAny, {
|
|
3955
4098
|
data: {
|
|
4099
|
+
totalApy: string;
|
|
3956
4100
|
apy: string;
|
|
3957
4101
|
};
|
|
3958
4102
|
id: string;
|
|
@@ -3961,6 +4105,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3961
4105
|
investmentId?: string | undefined;
|
|
3962
4106
|
}, {
|
|
3963
4107
|
data: {
|
|
4108
|
+
totalApy: string;
|
|
3964
4109
|
apy: string;
|
|
3965
4110
|
};
|
|
3966
4111
|
id: string;
|
|
@@ -4001,6 +4146,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4001
4146
|
withdrawableAfter: number;
|
|
4002
4147
|
}>>;
|
|
4003
4148
|
apy: z.ZodOptional<z.ZodString>;
|
|
4149
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
4004
4150
|
}, "strip", z.ZodTypeAny, {
|
|
4005
4151
|
stakerInfo: {
|
|
4006
4152
|
address: `0x${string}`;
|
|
@@ -4009,6 +4155,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4009
4155
|
};
|
|
4010
4156
|
accruedRewards: string;
|
|
4011
4157
|
stakedAmount: string;
|
|
4158
|
+
totalApy?: string | undefined;
|
|
4012
4159
|
apy?: string | undefined;
|
|
4013
4160
|
pendingWithdrawal?: {
|
|
4014
4161
|
amount: string;
|
|
@@ -4022,6 +4169,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4022
4169
|
};
|
|
4023
4170
|
accruedRewards: string;
|
|
4024
4171
|
stakedAmount: string;
|
|
4172
|
+
totalApy?: string | undefined;
|
|
4025
4173
|
apy?: string | undefined;
|
|
4026
4174
|
pendingWithdrawal?: {
|
|
4027
4175
|
amount: string;
|
|
@@ -4037,6 +4185,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4037
4185
|
};
|
|
4038
4186
|
accruedRewards: string;
|
|
4039
4187
|
stakedAmount: string;
|
|
4188
|
+
totalApy?: string | undefined;
|
|
4040
4189
|
apy?: string | undefined;
|
|
4041
4190
|
pendingWithdrawal?: {
|
|
4042
4191
|
amount: string;
|
|
@@ -4056,6 +4205,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4056
4205
|
};
|
|
4057
4206
|
accruedRewards: string;
|
|
4058
4207
|
stakedAmount: string;
|
|
4208
|
+
totalApy?: string | undefined;
|
|
4059
4209
|
apy?: string | undefined;
|
|
4060
4210
|
pendingWithdrawal?: {
|
|
4061
4211
|
amount: string;
|
|
@@ -4235,6 +4385,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4235
4385
|
}, {
|
|
4236
4386
|
data: z.ZodObject<{
|
|
4237
4387
|
apy: z.ZodOptional<z.ZodString>;
|
|
4388
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
4238
4389
|
group: z.ZodOptional<z.ZodNumber>;
|
|
4239
4390
|
collateral: z.ZodBoolean;
|
|
4240
4391
|
debt: z.ZodBoolean;
|
|
@@ -4243,12 +4394,14 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4243
4394
|
lending: boolean;
|
|
4244
4395
|
collateral: boolean;
|
|
4245
4396
|
debt: boolean;
|
|
4397
|
+
totalApy?: string | undefined;
|
|
4246
4398
|
apy?: string | undefined;
|
|
4247
4399
|
group?: number | undefined;
|
|
4248
4400
|
}, {
|
|
4249
4401
|
lending: boolean;
|
|
4250
4402
|
collateral: boolean;
|
|
4251
4403
|
debt: boolean;
|
|
4404
|
+
totalApy?: string | undefined;
|
|
4252
4405
|
apy?: string | undefined;
|
|
4253
4406
|
group?: number | undefined;
|
|
4254
4407
|
}>;
|
|
@@ -4257,6 +4410,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4257
4410
|
lending: boolean;
|
|
4258
4411
|
collateral: boolean;
|
|
4259
4412
|
debt: boolean;
|
|
4413
|
+
totalApy?: string | undefined;
|
|
4260
4414
|
apy?: string | undefined;
|
|
4261
4415
|
group?: number | undefined;
|
|
4262
4416
|
};
|
|
@@ -4269,6 +4423,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4269
4423
|
lending: boolean;
|
|
4270
4424
|
collateral: boolean;
|
|
4271
4425
|
debt: boolean;
|
|
4426
|
+
totalApy?: string | undefined;
|
|
4272
4427
|
apy?: string | undefined;
|
|
4273
4428
|
group?: number | undefined;
|
|
4274
4429
|
};
|
|
@@ -4315,15 +4470,19 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4315
4470
|
}, {
|
|
4316
4471
|
data: z.ZodObject<{
|
|
4317
4472
|
apy: z.ZodString;
|
|
4473
|
+
totalApy: z.ZodString;
|
|
4318
4474
|
}, "strip", z.ZodTypeAny, {
|
|
4475
|
+
totalApy: string;
|
|
4319
4476
|
apy: string;
|
|
4320
4477
|
}, {
|
|
4478
|
+
totalApy: string;
|
|
4321
4479
|
apy: string;
|
|
4322
4480
|
}>;
|
|
4323
4481
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
4324
4482
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
4325
4483
|
}>, "strip", z.ZodTypeAny, {
|
|
4326
4484
|
data: {
|
|
4485
|
+
totalApy: string;
|
|
4327
4486
|
apy: string;
|
|
4328
4487
|
};
|
|
4329
4488
|
id: string;
|
|
@@ -4332,6 +4491,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4332
4491
|
investmentId?: string | undefined;
|
|
4333
4492
|
}, {
|
|
4334
4493
|
data: {
|
|
4494
|
+
totalApy: string;
|
|
4335
4495
|
apy: string;
|
|
4336
4496
|
};
|
|
4337
4497
|
id: string;
|
|
@@ -4372,6 +4532,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4372
4532
|
withdrawableAfter: number;
|
|
4373
4533
|
}>>;
|
|
4374
4534
|
apy: z.ZodOptional<z.ZodString>;
|
|
4535
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
4375
4536
|
}, "strip", z.ZodTypeAny, {
|
|
4376
4537
|
stakerInfo: {
|
|
4377
4538
|
address: `0x${string}`;
|
|
@@ -4380,6 +4541,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4380
4541
|
};
|
|
4381
4542
|
accruedRewards: string;
|
|
4382
4543
|
stakedAmount: string;
|
|
4544
|
+
totalApy?: string | undefined;
|
|
4383
4545
|
apy?: string | undefined;
|
|
4384
4546
|
pendingWithdrawal?: {
|
|
4385
4547
|
amount: string;
|
|
@@ -4393,6 +4555,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4393
4555
|
};
|
|
4394
4556
|
accruedRewards: string;
|
|
4395
4557
|
stakedAmount: string;
|
|
4558
|
+
totalApy?: string | undefined;
|
|
4396
4559
|
apy?: string | undefined;
|
|
4397
4560
|
pendingWithdrawal?: {
|
|
4398
4561
|
amount: string;
|
|
@@ -4408,6 +4571,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4408
4571
|
};
|
|
4409
4572
|
accruedRewards: string;
|
|
4410
4573
|
stakedAmount: string;
|
|
4574
|
+
totalApy?: string | undefined;
|
|
4411
4575
|
apy?: string | undefined;
|
|
4412
4576
|
pendingWithdrawal?: {
|
|
4413
4577
|
amount: string;
|
|
@@ -4427,6 +4591,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4427
4591
|
};
|
|
4428
4592
|
accruedRewards: string;
|
|
4429
4593
|
stakedAmount: string;
|
|
4594
|
+
totalApy?: string | undefined;
|
|
4430
4595
|
apy?: string | undefined;
|
|
4431
4596
|
pendingWithdrawal?: {
|
|
4432
4597
|
amount: string;
|
|
@@ -4606,6 +4771,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4606
4771
|
}, {
|
|
4607
4772
|
data: z.ZodObject<{
|
|
4608
4773
|
apy: z.ZodOptional<z.ZodString>;
|
|
4774
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
4609
4775
|
group: z.ZodOptional<z.ZodNumber>;
|
|
4610
4776
|
collateral: z.ZodBoolean;
|
|
4611
4777
|
debt: z.ZodBoolean;
|
|
@@ -4614,12 +4780,14 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4614
4780
|
lending: boolean;
|
|
4615
4781
|
collateral: boolean;
|
|
4616
4782
|
debt: boolean;
|
|
4783
|
+
totalApy?: string | undefined;
|
|
4617
4784
|
apy?: string | undefined;
|
|
4618
4785
|
group?: number | undefined;
|
|
4619
4786
|
}, {
|
|
4620
4787
|
lending: boolean;
|
|
4621
4788
|
collateral: boolean;
|
|
4622
4789
|
debt: boolean;
|
|
4790
|
+
totalApy?: string | undefined;
|
|
4623
4791
|
apy?: string | undefined;
|
|
4624
4792
|
group?: number | undefined;
|
|
4625
4793
|
}>;
|
|
@@ -4628,6 +4796,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4628
4796
|
lending: boolean;
|
|
4629
4797
|
collateral: boolean;
|
|
4630
4798
|
debt: boolean;
|
|
4799
|
+
totalApy?: string | undefined;
|
|
4631
4800
|
apy?: string | undefined;
|
|
4632
4801
|
group?: number | undefined;
|
|
4633
4802
|
};
|
|
@@ -4640,6 +4809,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4640
4809
|
lending: boolean;
|
|
4641
4810
|
collateral: boolean;
|
|
4642
4811
|
debt: boolean;
|
|
4812
|
+
totalApy?: string | undefined;
|
|
4643
4813
|
apy?: string | undefined;
|
|
4644
4814
|
group?: number | undefined;
|
|
4645
4815
|
};
|
|
@@ -4686,15 +4856,19 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4686
4856
|
}, {
|
|
4687
4857
|
data: z.ZodObject<{
|
|
4688
4858
|
apy: z.ZodString;
|
|
4859
|
+
totalApy: z.ZodString;
|
|
4689
4860
|
}, "strip", z.ZodTypeAny, {
|
|
4861
|
+
totalApy: string;
|
|
4690
4862
|
apy: string;
|
|
4691
4863
|
}, {
|
|
4864
|
+
totalApy: string;
|
|
4692
4865
|
apy: string;
|
|
4693
4866
|
}>;
|
|
4694
4867
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
4695
4868
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
4696
4869
|
}>, "strip", z.ZodTypeAny, {
|
|
4697
4870
|
data: {
|
|
4871
|
+
totalApy: string;
|
|
4698
4872
|
apy: string;
|
|
4699
4873
|
};
|
|
4700
4874
|
id: string;
|
|
@@ -4703,6 +4877,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4703
4877
|
investmentId?: string | undefined;
|
|
4704
4878
|
}, {
|
|
4705
4879
|
data: {
|
|
4880
|
+
totalApy: string;
|
|
4706
4881
|
apy: string;
|
|
4707
4882
|
};
|
|
4708
4883
|
id: string;
|
|
@@ -4743,6 +4918,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4743
4918
|
withdrawableAfter: number;
|
|
4744
4919
|
}>>;
|
|
4745
4920
|
apy: z.ZodOptional<z.ZodString>;
|
|
4921
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
4746
4922
|
}, "strip", z.ZodTypeAny, {
|
|
4747
4923
|
stakerInfo: {
|
|
4748
4924
|
address: `0x${string}`;
|
|
@@ -4751,6 +4927,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4751
4927
|
};
|
|
4752
4928
|
accruedRewards: string;
|
|
4753
4929
|
stakedAmount: string;
|
|
4930
|
+
totalApy?: string | undefined;
|
|
4754
4931
|
apy?: string | undefined;
|
|
4755
4932
|
pendingWithdrawal?: {
|
|
4756
4933
|
amount: string;
|
|
@@ -4764,6 +4941,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4764
4941
|
};
|
|
4765
4942
|
accruedRewards: string;
|
|
4766
4943
|
stakedAmount: string;
|
|
4944
|
+
totalApy?: string | undefined;
|
|
4767
4945
|
apy?: string | undefined;
|
|
4768
4946
|
pendingWithdrawal?: {
|
|
4769
4947
|
amount: string;
|
|
@@ -4779,6 +4957,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4779
4957
|
};
|
|
4780
4958
|
accruedRewards: string;
|
|
4781
4959
|
stakedAmount: string;
|
|
4960
|
+
totalApy?: string | undefined;
|
|
4782
4961
|
apy?: string | undefined;
|
|
4783
4962
|
pendingWithdrawal?: {
|
|
4784
4963
|
amount: string;
|
|
@@ -4798,6 +4977,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4798
4977
|
};
|
|
4799
4978
|
accruedRewards: string;
|
|
4800
4979
|
stakedAmount: string;
|
|
4980
|
+
totalApy?: string | undefined;
|
|
4801
4981
|
apy?: string | undefined;
|
|
4802
4982
|
pendingWithdrawal?: {
|
|
4803
4983
|
amount: string;
|
|
@@ -4977,6 +5157,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4977
5157
|
}, {
|
|
4978
5158
|
data: z.ZodObject<{
|
|
4979
5159
|
apy: z.ZodOptional<z.ZodString>;
|
|
5160
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
4980
5161
|
group: z.ZodOptional<z.ZodNumber>;
|
|
4981
5162
|
collateral: z.ZodBoolean;
|
|
4982
5163
|
debt: z.ZodBoolean;
|
|
@@ -4985,12 +5166,14 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4985
5166
|
lending: boolean;
|
|
4986
5167
|
collateral: boolean;
|
|
4987
5168
|
debt: boolean;
|
|
5169
|
+
totalApy?: string | undefined;
|
|
4988
5170
|
apy?: string | undefined;
|
|
4989
5171
|
group?: number | undefined;
|
|
4990
5172
|
}, {
|
|
4991
5173
|
lending: boolean;
|
|
4992
5174
|
collateral: boolean;
|
|
4993
5175
|
debt: boolean;
|
|
5176
|
+
totalApy?: string | undefined;
|
|
4994
5177
|
apy?: string | undefined;
|
|
4995
5178
|
group?: number | undefined;
|
|
4996
5179
|
}>;
|
|
@@ -4999,6 +5182,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4999
5182
|
lending: boolean;
|
|
5000
5183
|
collateral: boolean;
|
|
5001
5184
|
debt: boolean;
|
|
5185
|
+
totalApy?: string | undefined;
|
|
5002
5186
|
apy?: string | undefined;
|
|
5003
5187
|
group?: number | undefined;
|
|
5004
5188
|
};
|
|
@@ -5011,6 +5195,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5011
5195
|
lending: boolean;
|
|
5012
5196
|
collateral: boolean;
|
|
5013
5197
|
debt: boolean;
|
|
5198
|
+
totalApy?: string | undefined;
|
|
5014
5199
|
apy?: string | undefined;
|
|
5015
5200
|
group?: number | undefined;
|
|
5016
5201
|
};
|
|
@@ -5057,15 +5242,19 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5057
5242
|
}, {
|
|
5058
5243
|
data: z.ZodObject<{
|
|
5059
5244
|
apy: z.ZodString;
|
|
5245
|
+
totalApy: z.ZodString;
|
|
5060
5246
|
}, "strip", z.ZodTypeAny, {
|
|
5247
|
+
totalApy: string;
|
|
5061
5248
|
apy: string;
|
|
5062
5249
|
}, {
|
|
5250
|
+
totalApy: string;
|
|
5063
5251
|
apy: string;
|
|
5064
5252
|
}>;
|
|
5065
5253
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
5066
5254
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
5067
5255
|
}>, "strip", z.ZodTypeAny, {
|
|
5068
5256
|
data: {
|
|
5257
|
+
totalApy: string;
|
|
5069
5258
|
apy: string;
|
|
5070
5259
|
};
|
|
5071
5260
|
id: string;
|
|
@@ -5074,6 +5263,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5074
5263
|
investmentId?: string | undefined;
|
|
5075
5264
|
}, {
|
|
5076
5265
|
data: {
|
|
5266
|
+
totalApy: string;
|
|
5077
5267
|
apy: string;
|
|
5078
5268
|
};
|
|
5079
5269
|
id: string;
|
|
@@ -5114,6 +5304,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5114
5304
|
withdrawableAfter: number;
|
|
5115
5305
|
}>>;
|
|
5116
5306
|
apy: z.ZodOptional<z.ZodString>;
|
|
5307
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
5117
5308
|
}, "strip", z.ZodTypeAny, {
|
|
5118
5309
|
stakerInfo: {
|
|
5119
5310
|
address: `0x${string}`;
|
|
@@ -5122,6 +5313,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5122
5313
|
};
|
|
5123
5314
|
accruedRewards: string;
|
|
5124
5315
|
stakedAmount: string;
|
|
5316
|
+
totalApy?: string | undefined;
|
|
5125
5317
|
apy?: string | undefined;
|
|
5126
5318
|
pendingWithdrawal?: {
|
|
5127
5319
|
amount: string;
|
|
@@ -5135,6 +5327,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5135
5327
|
};
|
|
5136
5328
|
accruedRewards: string;
|
|
5137
5329
|
stakedAmount: string;
|
|
5330
|
+
totalApy?: string | undefined;
|
|
5138
5331
|
apy?: string | undefined;
|
|
5139
5332
|
pendingWithdrawal?: {
|
|
5140
5333
|
amount: string;
|
|
@@ -5150,6 +5343,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5150
5343
|
};
|
|
5151
5344
|
accruedRewards: string;
|
|
5152
5345
|
stakedAmount: string;
|
|
5346
|
+
totalApy?: string | undefined;
|
|
5153
5347
|
apy?: string | undefined;
|
|
5154
5348
|
pendingWithdrawal?: {
|
|
5155
5349
|
amount: string;
|
|
@@ -5169,6 +5363,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5169
5363
|
};
|
|
5170
5364
|
accruedRewards: string;
|
|
5171
5365
|
stakedAmount: string;
|
|
5366
|
+
totalApy?: string | undefined;
|
|
5172
5367
|
apy?: string | undefined;
|
|
5173
5368
|
pendingWithdrawal?: {
|
|
5174
5369
|
amount: string;
|
|
@@ -5348,6 +5543,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5348
5543
|
}, {
|
|
5349
5544
|
data: z.ZodObject<{
|
|
5350
5545
|
apy: z.ZodOptional<z.ZodString>;
|
|
5546
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
5351
5547
|
group: z.ZodOptional<z.ZodNumber>;
|
|
5352
5548
|
collateral: z.ZodBoolean;
|
|
5353
5549
|
debt: z.ZodBoolean;
|
|
@@ -5356,12 +5552,14 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5356
5552
|
lending: boolean;
|
|
5357
5553
|
collateral: boolean;
|
|
5358
5554
|
debt: boolean;
|
|
5555
|
+
totalApy?: string | undefined;
|
|
5359
5556
|
apy?: string | undefined;
|
|
5360
5557
|
group?: number | undefined;
|
|
5361
5558
|
}, {
|
|
5362
5559
|
lending: boolean;
|
|
5363
5560
|
collateral: boolean;
|
|
5364
5561
|
debt: boolean;
|
|
5562
|
+
totalApy?: string | undefined;
|
|
5365
5563
|
apy?: string | undefined;
|
|
5366
5564
|
group?: number | undefined;
|
|
5367
5565
|
}>;
|
|
@@ -5370,6 +5568,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5370
5568
|
lending: boolean;
|
|
5371
5569
|
collateral: boolean;
|
|
5372
5570
|
debt: boolean;
|
|
5571
|
+
totalApy?: string | undefined;
|
|
5373
5572
|
apy?: string | undefined;
|
|
5374
5573
|
group?: number | undefined;
|
|
5375
5574
|
};
|
|
@@ -5382,6 +5581,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5382
5581
|
lending: boolean;
|
|
5383
5582
|
collateral: boolean;
|
|
5384
5583
|
debt: boolean;
|
|
5584
|
+
totalApy?: string | undefined;
|
|
5385
5585
|
apy?: string | undefined;
|
|
5386
5586
|
group?: number | undefined;
|
|
5387
5587
|
};
|
|
@@ -5428,15 +5628,19 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5428
5628
|
}, {
|
|
5429
5629
|
data: z.ZodObject<{
|
|
5430
5630
|
apy: z.ZodString;
|
|
5631
|
+
totalApy: z.ZodString;
|
|
5431
5632
|
}, "strip", z.ZodTypeAny, {
|
|
5633
|
+
totalApy: string;
|
|
5432
5634
|
apy: string;
|
|
5433
5635
|
}, {
|
|
5636
|
+
totalApy: string;
|
|
5434
5637
|
apy: string;
|
|
5435
5638
|
}>;
|
|
5436
5639
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
5437
5640
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
5438
5641
|
}>, "strip", z.ZodTypeAny, {
|
|
5439
5642
|
data: {
|
|
5643
|
+
totalApy: string;
|
|
5440
5644
|
apy: string;
|
|
5441
5645
|
};
|
|
5442
5646
|
id: string;
|
|
@@ -5445,6 +5649,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5445
5649
|
investmentId?: string | undefined;
|
|
5446
5650
|
}, {
|
|
5447
5651
|
data: {
|
|
5652
|
+
totalApy: string;
|
|
5448
5653
|
apy: string;
|
|
5449
5654
|
};
|
|
5450
5655
|
id: string;
|
|
@@ -5485,6 +5690,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5485
5690
|
withdrawableAfter: number;
|
|
5486
5691
|
}>>;
|
|
5487
5692
|
apy: z.ZodOptional<z.ZodString>;
|
|
5693
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
5488
5694
|
}, "strip", z.ZodTypeAny, {
|
|
5489
5695
|
stakerInfo: {
|
|
5490
5696
|
address: `0x${string}`;
|
|
@@ -5493,6 +5699,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5493
5699
|
};
|
|
5494
5700
|
accruedRewards: string;
|
|
5495
5701
|
stakedAmount: string;
|
|
5702
|
+
totalApy?: string | undefined;
|
|
5496
5703
|
apy?: string | undefined;
|
|
5497
5704
|
pendingWithdrawal?: {
|
|
5498
5705
|
amount: string;
|
|
@@ -5506,6 +5713,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5506
5713
|
};
|
|
5507
5714
|
accruedRewards: string;
|
|
5508
5715
|
stakedAmount: string;
|
|
5716
|
+
totalApy?: string | undefined;
|
|
5509
5717
|
apy?: string | undefined;
|
|
5510
5718
|
pendingWithdrawal?: {
|
|
5511
5719
|
amount: string;
|
|
@@ -5521,6 +5729,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5521
5729
|
};
|
|
5522
5730
|
accruedRewards: string;
|
|
5523
5731
|
stakedAmount: string;
|
|
5732
|
+
totalApy?: string | undefined;
|
|
5524
5733
|
apy?: string | undefined;
|
|
5525
5734
|
pendingWithdrawal?: {
|
|
5526
5735
|
amount: string;
|
|
@@ -5540,6 +5749,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5540
5749
|
};
|
|
5541
5750
|
accruedRewards: string;
|
|
5542
5751
|
stakedAmount: string;
|
|
5752
|
+
totalApy?: string | undefined;
|
|
5543
5753
|
apy?: string | undefined;
|
|
5544
5754
|
pendingWithdrawal?: {
|
|
5545
5755
|
amount: string;
|
|
@@ -5723,6 +5933,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5723
5933
|
}, {
|
|
5724
5934
|
data: z.ZodObject<{
|
|
5725
5935
|
apy: z.ZodOptional<z.ZodString>;
|
|
5936
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
5726
5937
|
group: z.ZodOptional<z.ZodNumber>;
|
|
5727
5938
|
collateral: z.ZodBoolean;
|
|
5728
5939
|
debt: z.ZodBoolean;
|
|
@@ -5731,12 +5942,14 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5731
5942
|
lending: boolean;
|
|
5732
5943
|
collateral: boolean;
|
|
5733
5944
|
debt: boolean;
|
|
5945
|
+
totalApy?: string | undefined;
|
|
5734
5946
|
apy?: string | undefined;
|
|
5735
5947
|
group?: number | undefined;
|
|
5736
5948
|
}, {
|
|
5737
5949
|
lending: boolean;
|
|
5738
5950
|
collateral: boolean;
|
|
5739
5951
|
debt: boolean;
|
|
5952
|
+
totalApy?: string | undefined;
|
|
5740
5953
|
apy?: string | undefined;
|
|
5741
5954
|
group?: number | undefined;
|
|
5742
5955
|
}>;
|
|
@@ -5745,6 +5958,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5745
5958
|
lending: boolean;
|
|
5746
5959
|
collateral: boolean;
|
|
5747
5960
|
debt: boolean;
|
|
5961
|
+
totalApy?: string | undefined;
|
|
5748
5962
|
apy?: string | undefined;
|
|
5749
5963
|
group?: number | undefined;
|
|
5750
5964
|
};
|
|
@@ -5757,6 +5971,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5757
5971
|
lending: boolean;
|
|
5758
5972
|
collateral: boolean;
|
|
5759
5973
|
debt: boolean;
|
|
5974
|
+
totalApy?: string | undefined;
|
|
5760
5975
|
apy?: string | undefined;
|
|
5761
5976
|
group?: number | undefined;
|
|
5762
5977
|
};
|
|
@@ -5803,15 +6018,19 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5803
6018
|
}, {
|
|
5804
6019
|
data: z.ZodObject<{
|
|
5805
6020
|
apy: z.ZodString;
|
|
6021
|
+
totalApy: z.ZodString;
|
|
5806
6022
|
}, "strip", z.ZodTypeAny, {
|
|
6023
|
+
totalApy: string;
|
|
5807
6024
|
apy: string;
|
|
5808
6025
|
}, {
|
|
6026
|
+
totalApy: string;
|
|
5809
6027
|
apy: string;
|
|
5810
6028
|
}>;
|
|
5811
6029
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
5812
6030
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
5813
6031
|
}>, "strip", z.ZodTypeAny, {
|
|
5814
6032
|
data: {
|
|
6033
|
+
totalApy: string;
|
|
5815
6034
|
apy: string;
|
|
5816
6035
|
};
|
|
5817
6036
|
id: string;
|
|
@@ -5820,6 +6039,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5820
6039
|
investmentId?: string | undefined;
|
|
5821
6040
|
}, {
|
|
5822
6041
|
data: {
|
|
6042
|
+
totalApy: string;
|
|
5823
6043
|
apy: string;
|
|
5824
6044
|
};
|
|
5825
6045
|
id: string;
|
|
@@ -5860,6 +6080,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5860
6080
|
withdrawableAfter: number;
|
|
5861
6081
|
}>>;
|
|
5862
6082
|
apy: z.ZodOptional<z.ZodString>;
|
|
6083
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
5863
6084
|
}, "strip", z.ZodTypeAny, {
|
|
5864
6085
|
stakerInfo: {
|
|
5865
6086
|
address: `0x${string}`;
|
|
@@ -5868,6 +6089,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5868
6089
|
};
|
|
5869
6090
|
accruedRewards: string;
|
|
5870
6091
|
stakedAmount: string;
|
|
6092
|
+
totalApy?: string | undefined;
|
|
5871
6093
|
apy?: string | undefined;
|
|
5872
6094
|
pendingWithdrawal?: {
|
|
5873
6095
|
amount: string;
|
|
@@ -5881,6 +6103,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5881
6103
|
};
|
|
5882
6104
|
accruedRewards: string;
|
|
5883
6105
|
stakedAmount: string;
|
|
6106
|
+
totalApy?: string | undefined;
|
|
5884
6107
|
apy?: string | undefined;
|
|
5885
6108
|
pendingWithdrawal?: {
|
|
5886
6109
|
amount: string;
|
|
@@ -5896,6 +6119,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5896
6119
|
};
|
|
5897
6120
|
accruedRewards: string;
|
|
5898
6121
|
stakedAmount: string;
|
|
6122
|
+
totalApy?: string | undefined;
|
|
5899
6123
|
apy?: string | undefined;
|
|
5900
6124
|
pendingWithdrawal?: {
|
|
5901
6125
|
amount: string;
|
|
@@ -5915,6 +6139,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5915
6139
|
};
|
|
5916
6140
|
accruedRewards: string;
|
|
5917
6141
|
stakedAmount: string;
|
|
6142
|
+
totalApy?: string | undefined;
|
|
5918
6143
|
apy?: string | undefined;
|
|
5919
6144
|
pendingWithdrawal?: {
|
|
5920
6145
|
amount: string;
|
|
@@ -6094,6 +6319,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6094
6319
|
}, {
|
|
6095
6320
|
data: z.ZodObject<{
|
|
6096
6321
|
apy: z.ZodOptional<z.ZodString>;
|
|
6322
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
6097
6323
|
group: z.ZodOptional<z.ZodNumber>;
|
|
6098
6324
|
collateral: z.ZodBoolean;
|
|
6099
6325
|
debt: z.ZodBoolean;
|
|
@@ -6102,12 +6328,14 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6102
6328
|
lending: boolean;
|
|
6103
6329
|
collateral: boolean;
|
|
6104
6330
|
debt: boolean;
|
|
6331
|
+
totalApy?: string | undefined;
|
|
6105
6332
|
apy?: string | undefined;
|
|
6106
6333
|
group?: number | undefined;
|
|
6107
6334
|
}, {
|
|
6108
6335
|
lending: boolean;
|
|
6109
6336
|
collateral: boolean;
|
|
6110
6337
|
debt: boolean;
|
|
6338
|
+
totalApy?: string | undefined;
|
|
6111
6339
|
apy?: string | undefined;
|
|
6112
6340
|
group?: number | undefined;
|
|
6113
6341
|
}>;
|
|
@@ -6116,6 +6344,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6116
6344
|
lending: boolean;
|
|
6117
6345
|
collateral: boolean;
|
|
6118
6346
|
debt: boolean;
|
|
6347
|
+
totalApy?: string | undefined;
|
|
6119
6348
|
apy?: string | undefined;
|
|
6120
6349
|
group?: number | undefined;
|
|
6121
6350
|
};
|
|
@@ -6128,6 +6357,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6128
6357
|
lending: boolean;
|
|
6129
6358
|
collateral: boolean;
|
|
6130
6359
|
debt: boolean;
|
|
6360
|
+
totalApy?: string | undefined;
|
|
6131
6361
|
apy?: string | undefined;
|
|
6132
6362
|
group?: number | undefined;
|
|
6133
6363
|
};
|
|
@@ -6174,15 +6404,19 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6174
6404
|
}, {
|
|
6175
6405
|
data: z.ZodObject<{
|
|
6176
6406
|
apy: z.ZodString;
|
|
6407
|
+
totalApy: z.ZodString;
|
|
6177
6408
|
}, "strip", z.ZodTypeAny, {
|
|
6409
|
+
totalApy: string;
|
|
6178
6410
|
apy: string;
|
|
6179
6411
|
}, {
|
|
6412
|
+
totalApy: string;
|
|
6180
6413
|
apy: string;
|
|
6181
6414
|
}>;
|
|
6182
6415
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
6183
6416
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
6184
6417
|
}>, "strip", z.ZodTypeAny, {
|
|
6185
6418
|
data: {
|
|
6419
|
+
totalApy: string;
|
|
6186
6420
|
apy: string;
|
|
6187
6421
|
};
|
|
6188
6422
|
id: string;
|
|
@@ -6191,6 +6425,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6191
6425
|
investmentId?: string | undefined;
|
|
6192
6426
|
}, {
|
|
6193
6427
|
data: {
|
|
6428
|
+
totalApy: string;
|
|
6194
6429
|
apy: string;
|
|
6195
6430
|
};
|
|
6196
6431
|
id: string;
|
|
@@ -6231,6 +6466,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6231
6466
|
withdrawableAfter: number;
|
|
6232
6467
|
}>>;
|
|
6233
6468
|
apy: z.ZodOptional<z.ZodString>;
|
|
6469
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
6234
6470
|
}, "strip", z.ZodTypeAny, {
|
|
6235
6471
|
stakerInfo: {
|
|
6236
6472
|
address: `0x${string}`;
|
|
@@ -6239,6 +6475,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6239
6475
|
};
|
|
6240
6476
|
accruedRewards: string;
|
|
6241
6477
|
stakedAmount: string;
|
|
6478
|
+
totalApy?: string | undefined;
|
|
6242
6479
|
apy?: string | undefined;
|
|
6243
6480
|
pendingWithdrawal?: {
|
|
6244
6481
|
amount: string;
|
|
@@ -6252,6 +6489,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6252
6489
|
};
|
|
6253
6490
|
accruedRewards: string;
|
|
6254
6491
|
stakedAmount: string;
|
|
6492
|
+
totalApy?: string | undefined;
|
|
6255
6493
|
apy?: string | undefined;
|
|
6256
6494
|
pendingWithdrawal?: {
|
|
6257
6495
|
amount: string;
|
|
@@ -6267,6 +6505,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6267
6505
|
};
|
|
6268
6506
|
accruedRewards: string;
|
|
6269
6507
|
stakedAmount: string;
|
|
6508
|
+
totalApy?: string | undefined;
|
|
6270
6509
|
apy?: string | undefined;
|
|
6271
6510
|
pendingWithdrawal?: {
|
|
6272
6511
|
amount: string;
|
|
@@ -6286,6 +6525,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6286
6525
|
};
|
|
6287
6526
|
accruedRewards: string;
|
|
6288
6527
|
stakedAmount: string;
|
|
6528
|
+
totalApy?: string | undefined;
|
|
6289
6529
|
apy?: string | undefined;
|
|
6290
6530
|
pendingWithdrawal?: {
|
|
6291
6531
|
amount: string;
|
|
@@ -6465,6 +6705,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6465
6705
|
}, {
|
|
6466
6706
|
data: z.ZodObject<{
|
|
6467
6707
|
apy: z.ZodOptional<z.ZodString>;
|
|
6708
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
6468
6709
|
group: z.ZodOptional<z.ZodNumber>;
|
|
6469
6710
|
collateral: z.ZodBoolean;
|
|
6470
6711
|
debt: z.ZodBoolean;
|
|
@@ -6473,12 +6714,14 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6473
6714
|
lending: boolean;
|
|
6474
6715
|
collateral: boolean;
|
|
6475
6716
|
debt: boolean;
|
|
6717
|
+
totalApy?: string | undefined;
|
|
6476
6718
|
apy?: string | undefined;
|
|
6477
6719
|
group?: number | undefined;
|
|
6478
6720
|
}, {
|
|
6479
6721
|
lending: boolean;
|
|
6480
6722
|
collateral: boolean;
|
|
6481
6723
|
debt: boolean;
|
|
6724
|
+
totalApy?: string | undefined;
|
|
6482
6725
|
apy?: string | undefined;
|
|
6483
6726
|
group?: number | undefined;
|
|
6484
6727
|
}>;
|
|
@@ -6487,6 +6730,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6487
6730
|
lending: boolean;
|
|
6488
6731
|
collateral: boolean;
|
|
6489
6732
|
debt: boolean;
|
|
6733
|
+
totalApy?: string | undefined;
|
|
6490
6734
|
apy?: string | undefined;
|
|
6491
6735
|
group?: number | undefined;
|
|
6492
6736
|
};
|
|
@@ -6499,6 +6743,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6499
6743
|
lending: boolean;
|
|
6500
6744
|
collateral: boolean;
|
|
6501
6745
|
debt: boolean;
|
|
6746
|
+
totalApy?: string | undefined;
|
|
6502
6747
|
apy?: string | undefined;
|
|
6503
6748
|
group?: number | undefined;
|
|
6504
6749
|
};
|
|
@@ -6545,15 +6790,19 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6545
6790
|
}, {
|
|
6546
6791
|
data: z.ZodObject<{
|
|
6547
6792
|
apy: z.ZodString;
|
|
6793
|
+
totalApy: z.ZodString;
|
|
6548
6794
|
}, "strip", z.ZodTypeAny, {
|
|
6795
|
+
totalApy: string;
|
|
6549
6796
|
apy: string;
|
|
6550
6797
|
}, {
|
|
6798
|
+
totalApy: string;
|
|
6551
6799
|
apy: string;
|
|
6552
6800
|
}>;
|
|
6553
6801
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
6554
6802
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
6555
6803
|
}>, "strip", z.ZodTypeAny, {
|
|
6556
6804
|
data: {
|
|
6805
|
+
totalApy: string;
|
|
6557
6806
|
apy: string;
|
|
6558
6807
|
};
|
|
6559
6808
|
id: string;
|
|
@@ -6562,6 +6811,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6562
6811
|
investmentId?: string | undefined;
|
|
6563
6812
|
}, {
|
|
6564
6813
|
data: {
|
|
6814
|
+
totalApy: string;
|
|
6565
6815
|
apy: string;
|
|
6566
6816
|
};
|
|
6567
6817
|
id: string;
|
|
@@ -6602,6 +6852,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6602
6852
|
withdrawableAfter: number;
|
|
6603
6853
|
}>>;
|
|
6604
6854
|
apy: z.ZodOptional<z.ZodString>;
|
|
6855
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
6605
6856
|
}, "strip", z.ZodTypeAny, {
|
|
6606
6857
|
stakerInfo: {
|
|
6607
6858
|
address: `0x${string}`;
|
|
@@ -6610,6 +6861,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6610
6861
|
};
|
|
6611
6862
|
accruedRewards: string;
|
|
6612
6863
|
stakedAmount: string;
|
|
6864
|
+
totalApy?: string | undefined;
|
|
6613
6865
|
apy?: string | undefined;
|
|
6614
6866
|
pendingWithdrawal?: {
|
|
6615
6867
|
amount: string;
|
|
@@ -6623,6 +6875,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6623
6875
|
};
|
|
6624
6876
|
accruedRewards: string;
|
|
6625
6877
|
stakedAmount: string;
|
|
6878
|
+
totalApy?: string | undefined;
|
|
6626
6879
|
apy?: string | undefined;
|
|
6627
6880
|
pendingWithdrawal?: {
|
|
6628
6881
|
amount: string;
|
|
@@ -6638,6 +6891,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6638
6891
|
};
|
|
6639
6892
|
accruedRewards: string;
|
|
6640
6893
|
stakedAmount: string;
|
|
6894
|
+
totalApy?: string | undefined;
|
|
6641
6895
|
apy?: string | undefined;
|
|
6642
6896
|
pendingWithdrawal?: {
|
|
6643
6897
|
amount: string;
|
|
@@ -6657,6 +6911,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6657
6911
|
};
|
|
6658
6912
|
accruedRewards: string;
|
|
6659
6913
|
stakedAmount: string;
|
|
6914
|
+
totalApy?: string | undefined;
|
|
6660
6915
|
apy?: string | undefined;
|
|
6661
6916
|
pendingWithdrawal?: {
|
|
6662
6917
|
amount: string;
|
|
@@ -6836,6 +7091,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6836
7091
|
}, {
|
|
6837
7092
|
data: z.ZodObject<{
|
|
6838
7093
|
apy: z.ZodOptional<z.ZodString>;
|
|
7094
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
6839
7095
|
group: z.ZodOptional<z.ZodNumber>;
|
|
6840
7096
|
collateral: z.ZodBoolean;
|
|
6841
7097
|
debt: z.ZodBoolean;
|
|
@@ -6844,12 +7100,14 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6844
7100
|
lending: boolean;
|
|
6845
7101
|
collateral: boolean;
|
|
6846
7102
|
debt: boolean;
|
|
7103
|
+
totalApy?: string | undefined;
|
|
6847
7104
|
apy?: string | undefined;
|
|
6848
7105
|
group?: number | undefined;
|
|
6849
7106
|
}, {
|
|
6850
7107
|
lending: boolean;
|
|
6851
7108
|
collateral: boolean;
|
|
6852
7109
|
debt: boolean;
|
|
7110
|
+
totalApy?: string | undefined;
|
|
6853
7111
|
apy?: string | undefined;
|
|
6854
7112
|
group?: number | undefined;
|
|
6855
7113
|
}>;
|
|
@@ -6858,6 +7116,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6858
7116
|
lending: boolean;
|
|
6859
7117
|
collateral: boolean;
|
|
6860
7118
|
debt: boolean;
|
|
7119
|
+
totalApy?: string | undefined;
|
|
6861
7120
|
apy?: string | undefined;
|
|
6862
7121
|
group?: number | undefined;
|
|
6863
7122
|
};
|
|
@@ -6870,6 +7129,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6870
7129
|
lending: boolean;
|
|
6871
7130
|
collateral: boolean;
|
|
6872
7131
|
debt: boolean;
|
|
7132
|
+
totalApy?: string | undefined;
|
|
6873
7133
|
apy?: string | undefined;
|
|
6874
7134
|
group?: number | undefined;
|
|
6875
7135
|
};
|
|
@@ -6916,15 +7176,19 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6916
7176
|
}, {
|
|
6917
7177
|
data: z.ZodObject<{
|
|
6918
7178
|
apy: z.ZodString;
|
|
7179
|
+
totalApy: z.ZodString;
|
|
6919
7180
|
}, "strip", z.ZodTypeAny, {
|
|
7181
|
+
totalApy: string;
|
|
6920
7182
|
apy: string;
|
|
6921
7183
|
}, {
|
|
7184
|
+
totalApy: string;
|
|
6922
7185
|
apy: string;
|
|
6923
7186
|
}>;
|
|
6924
7187
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
6925
7188
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
6926
7189
|
}>, "strip", z.ZodTypeAny, {
|
|
6927
7190
|
data: {
|
|
7191
|
+
totalApy: string;
|
|
6928
7192
|
apy: string;
|
|
6929
7193
|
};
|
|
6930
7194
|
id: string;
|
|
@@ -6933,6 +7197,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6933
7197
|
investmentId?: string | undefined;
|
|
6934
7198
|
}, {
|
|
6935
7199
|
data: {
|
|
7200
|
+
totalApy: string;
|
|
6936
7201
|
apy: string;
|
|
6937
7202
|
};
|
|
6938
7203
|
id: string;
|
|
@@ -6973,6 +7238,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6973
7238
|
withdrawableAfter: number;
|
|
6974
7239
|
}>>;
|
|
6975
7240
|
apy: z.ZodOptional<z.ZodString>;
|
|
7241
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
6976
7242
|
}, "strip", z.ZodTypeAny, {
|
|
6977
7243
|
stakerInfo: {
|
|
6978
7244
|
address: `0x${string}`;
|
|
@@ -6981,6 +7247,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6981
7247
|
};
|
|
6982
7248
|
accruedRewards: string;
|
|
6983
7249
|
stakedAmount: string;
|
|
7250
|
+
totalApy?: string | undefined;
|
|
6984
7251
|
apy?: string | undefined;
|
|
6985
7252
|
pendingWithdrawal?: {
|
|
6986
7253
|
amount: string;
|
|
@@ -6994,6 +7261,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6994
7261
|
};
|
|
6995
7262
|
accruedRewards: string;
|
|
6996
7263
|
stakedAmount: string;
|
|
7264
|
+
totalApy?: string | undefined;
|
|
6997
7265
|
apy?: string | undefined;
|
|
6998
7266
|
pendingWithdrawal?: {
|
|
6999
7267
|
amount: string;
|
|
@@ -7009,6 +7277,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7009
7277
|
};
|
|
7010
7278
|
accruedRewards: string;
|
|
7011
7279
|
stakedAmount: string;
|
|
7280
|
+
totalApy?: string | undefined;
|
|
7012
7281
|
apy?: string | undefined;
|
|
7013
7282
|
pendingWithdrawal?: {
|
|
7014
7283
|
amount: string;
|
|
@@ -7028,6 +7297,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7028
7297
|
};
|
|
7029
7298
|
accruedRewards: string;
|
|
7030
7299
|
stakedAmount: string;
|
|
7300
|
+
totalApy?: string | undefined;
|
|
7031
7301
|
apy?: string | undefined;
|
|
7032
7302
|
pendingWithdrawal?: {
|
|
7033
7303
|
amount: string;
|
|
@@ -7207,6 +7477,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7207
7477
|
}, {
|
|
7208
7478
|
data: z.ZodObject<{
|
|
7209
7479
|
apy: z.ZodOptional<z.ZodString>;
|
|
7480
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
7210
7481
|
group: z.ZodOptional<z.ZodNumber>;
|
|
7211
7482
|
collateral: z.ZodBoolean;
|
|
7212
7483
|
debt: z.ZodBoolean;
|
|
@@ -7215,12 +7486,14 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7215
7486
|
lending: boolean;
|
|
7216
7487
|
collateral: boolean;
|
|
7217
7488
|
debt: boolean;
|
|
7489
|
+
totalApy?: string | undefined;
|
|
7218
7490
|
apy?: string | undefined;
|
|
7219
7491
|
group?: number | undefined;
|
|
7220
7492
|
}, {
|
|
7221
7493
|
lending: boolean;
|
|
7222
7494
|
collateral: boolean;
|
|
7223
7495
|
debt: boolean;
|
|
7496
|
+
totalApy?: string | undefined;
|
|
7224
7497
|
apy?: string | undefined;
|
|
7225
7498
|
group?: number | undefined;
|
|
7226
7499
|
}>;
|
|
@@ -7229,6 +7502,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7229
7502
|
lending: boolean;
|
|
7230
7503
|
collateral: boolean;
|
|
7231
7504
|
debt: boolean;
|
|
7505
|
+
totalApy?: string | undefined;
|
|
7232
7506
|
apy?: string | undefined;
|
|
7233
7507
|
group?: number | undefined;
|
|
7234
7508
|
};
|
|
@@ -7241,6 +7515,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7241
7515
|
lending: boolean;
|
|
7242
7516
|
collateral: boolean;
|
|
7243
7517
|
debt: boolean;
|
|
7518
|
+
totalApy?: string | undefined;
|
|
7244
7519
|
apy?: string | undefined;
|
|
7245
7520
|
group?: number | undefined;
|
|
7246
7521
|
};
|
|
@@ -7287,15 +7562,19 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7287
7562
|
}, {
|
|
7288
7563
|
data: z.ZodObject<{
|
|
7289
7564
|
apy: z.ZodString;
|
|
7565
|
+
totalApy: z.ZodString;
|
|
7290
7566
|
}, "strip", z.ZodTypeAny, {
|
|
7567
|
+
totalApy: string;
|
|
7291
7568
|
apy: string;
|
|
7292
7569
|
}, {
|
|
7570
|
+
totalApy: string;
|
|
7293
7571
|
apy: string;
|
|
7294
7572
|
}>;
|
|
7295
7573
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
7296
7574
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
7297
7575
|
}>, "strip", z.ZodTypeAny, {
|
|
7298
7576
|
data: {
|
|
7577
|
+
totalApy: string;
|
|
7299
7578
|
apy: string;
|
|
7300
7579
|
};
|
|
7301
7580
|
id: string;
|
|
@@ -7304,6 +7583,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7304
7583
|
investmentId?: string | undefined;
|
|
7305
7584
|
}, {
|
|
7306
7585
|
data: {
|
|
7586
|
+
totalApy: string;
|
|
7307
7587
|
apy: string;
|
|
7308
7588
|
};
|
|
7309
7589
|
id: string;
|
|
@@ -7344,6 +7624,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7344
7624
|
withdrawableAfter: number;
|
|
7345
7625
|
}>>;
|
|
7346
7626
|
apy: z.ZodOptional<z.ZodString>;
|
|
7627
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
7347
7628
|
}, "strip", z.ZodTypeAny, {
|
|
7348
7629
|
stakerInfo: {
|
|
7349
7630
|
address: `0x${string}`;
|
|
@@ -7352,6 +7633,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7352
7633
|
};
|
|
7353
7634
|
accruedRewards: string;
|
|
7354
7635
|
stakedAmount: string;
|
|
7636
|
+
totalApy?: string | undefined;
|
|
7355
7637
|
apy?: string | undefined;
|
|
7356
7638
|
pendingWithdrawal?: {
|
|
7357
7639
|
amount: string;
|
|
@@ -7365,6 +7647,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7365
7647
|
};
|
|
7366
7648
|
accruedRewards: string;
|
|
7367
7649
|
stakedAmount: string;
|
|
7650
|
+
totalApy?: string | undefined;
|
|
7368
7651
|
apy?: string | undefined;
|
|
7369
7652
|
pendingWithdrawal?: {
|
|
7370
7653
|
amount: string;
|
|
@@ -7380,6 +7663,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7380
7663
|
};
|
|
7381
7664
|
accruedRewards: string;
|
|
7382
7665
|
stakedAmount: string;
|
|
7666
|
+
totalApy?: string | undefined;
|
|
7383
7667
|
apy?: string | undefined;
|
|
7384
7668
|
pendingWithdrawal?: {
|
|
7385
7669
|
amount: string;
|
|
@@ -7399,6 +7683,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7399
7683
|
};
|
|
7400
7684
|
accruedRewards: string;
|
|
7401
7685
|
stakedAmount: string;
|
|
7686
|
+
totalApy?: string | undefined;
|
|
7402
7687
|
apy?: string | undefined;
|
|
7403
7688
|
pendingWithdrawal?: {
|
|
7404
7689
|
amount: string;
|
|
@@ -7579,6 +7864,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7579
7864
|
}, {
|
|
7580
7865
|
data: z.ZodObject<{
|
|
7581
7866
|
apy: z.ZodOptional<z.ZodString>;
|
|
7867
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
7582
7868
|
group: z.ZodOptional<z.ZodNumber>;
|
|
7583
7869
|
collateral: z.ZodBoolean;
|
|
7584
7870
|
debt: z.ZodBoolean;
|
|
@@ -7587,12 +7873,14 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7587
7873
|
lending: boolean;
|
|
7588
7874
|
collateral: boolean;
|
|
7589
7875
|
debt: boolean;
|
|
7876
|
+
totalApy?: string | undefined;
|
|
7590
7877
|
apy?: string | undefined;
|
|
7591
7878
|
group?: number | undefined;
|
|
7592
7879
|
}, {
|
|
7593
7880
|
lending: boolean;
|
|
7594
7881
|
collateral: boolean;
|
|
7595
7882
|
debt: boolean;
|
|
7883
|
+
totalApy?: string | undefined;
|
|
7596
7884
|
apy?: string | undefined;
|
|
7597
7885
|
group?: number | undefined;
|
|
7598
7886
|
}>;
|
|
@@ -7601,6 +7889,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7601
7889
|
lending: boolean;
|
|
7602
7890
|
collateral: boolean;
|
|
7603
7891
|
debt: boolean;
|
|
7892
|
+
totalApy?: string | undefined;
|
|
7604
7893
|
apy?: string | undefined;
|
|
7605
7894
|
group?: number | undefined;
|
|
7606
7895
|
};
|
|
@@ -7613,6 +7902,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7613
7902
|
lending: boolean;
|
|
7614
7903
|
collateral: boolean;
|
|
7615
7904
|
debt: boolean;
|
|
7905
|
+
totalApy?: string | undefined;
|
|
7616
7906
|
apy?: string | undefined;
|
|
7617
7907
|
group?: number | undefined;
|
|
7618
7908
|
};
|
|
@@ -7659,15 +7949,19 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7659
7949
|
}, {
|
|
7660
7950
|
data: z.ZodObject<{
|
|
7661
7951
|
apy: z.ZodString;
|
|
7952
|
+
totalApy: z.ZodString;
|
|
7662
7953
|
}, "strip", z.ZodTypeAny, {
|
|
7954
|
+
totalApy: string;
|
|
7663
7955
|
apy: string;
|
|
7664
7956
|
}, {
|
|
7957
|
+
totalApy: string;
|
|
7665
7958
|
apy: string;
|
|
7666
7959
|
}>;
|
|
7667
7960
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
7668
7961
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
7669
7962
|
}>, "strip", z.ZodTypeAny, {
|
|
7670
7963
|
data: {
|
|
7964
|
+
totalApy: string;
|
|
7671
7965
|
apy: string;
|
|
7672
7966
|
};
|
|
7673
7967
|
id: string;
|
|
@@ -7676,6 +7970,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7676
7970
|
investmentId?: string | undefined;
|
|
7677
7971
|
}, {
|
|
7678
7972
|
data: {
|
|
7973
|
+
totalApy: string;
|
|
7679
7974
|
apy: string;
|
|
7680
7975
|
};
|
|
7681
7976
|
id: string;
|
|
@@ -7716,6 +8011,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7716
8011
|
withdrawableAfter: number;
|
|
7717
8012
|
}>>;
|
|
7718
8013
|
apy: z.ZodOptional<z.ZodString>;
|
|
8014
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
7719
8015
|
}, "strip", z.ZodTypeAny, {
|
|
7720
8016
|
stakerInfo: {
|
|
7721
8017
|
address: `0x${string}`;
|
|
@@ -7724,6 +8020,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7724
8020
|
};
|
|
7725
8021
|
accruedRewards: string;
|
|
7726
8022
|
stakedAmount: string;
|
|
8023
|
+
totalApy?: string | undefined;
|
|
7727
8024
|
apy?: string | undefined;
|
|
7728
8025
|
pendingWithdrawal?: {
|
|
7729
8026
|
amount: string;
|
|
@@ -7737,6 +8034,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7737
8034
|
};
|
|
7738
8035
|
accruedRewards: string;
|
|
7739
8036
|
stakedAmount: string;
|
|
8037
|
+
totalApy?: string | undefined;
|
|
7740
8038
|
apy?: string | undefined;
|
|
7741
8039
|
pendingWithdrawal?: {
|
|
7742
8040
|
amount: string;
|
|
@@ -7752,6 +8050,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7752
8050
|
};
|
|
7753
8051
|
accruedRewards: string;
|
|
7754
8052
|
stakedAmount: string;
|
|
8053
|
+
totalApy?: string | undefined;
|
|
7755
8054
|
apy?: string | undefined;
|
|
7756
8055
|
pendingWithdrawal?: {
|
|
7757
8056
|
amount: string;
|
|
@@ -7771,6 +8070,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7771
8070
|
};
|
|
7772
8071
|
accruedRewards: string;
|
|
7773
8072
|
stakedAmount: string;
|
|
8073
|
+
totalApy?: string | undefined;
|
|
7774
8074
|
apy?: string | undefined;
|
|
7775
8075
|
pendingWithdrawal?: {
|
|
7776
8076
|
amount: string;
|
|
@@ -7950,6 +8250,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7950
8250
|
}, {
|
|
7951
8251
|
data: z.ZodObject<{
|
|
7952
8252
|
apy: z.ZodOptional<z.ZodString>;
|
|
8253
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
7953
8254
|
group: z.ZodOptional<z.ZodNumber>;
|
|
7954
8255
|
collateral: z.ZodBoolean;
|
|
7955
8256
|
debt: z.ZodBoolean;
|
|
@@ -7958,12 +8259,14 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7958
8259
|
lending: boolean;
|
|
7959
8260
|
collateral: boolean;
|
|
7960
8261
|
debt: boolean;
|
|
8262
|
+
totalApy?: string | undefined;
|
|
7961
8263
|
apy?: string | undefined;
|
|
7962
8264
|
group?: number | undefined;
|
|
7963
8265
|
}, {
|
|
7964
8266
|
lending: boolean;
|
|
7965
8267
|
collateral: boolean;
|
|
7966
8268
|
debt: boolean;
|
|
8269
|
+
totalApy?: string | undefined;
|
|
7967
8270
|
apy?: string | undefined;
|
|
7968
8271
|
group?: number | undefined;
|
|
7969
8272
|
}>;
|
|
@@ -7972,6 +8275,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7972
8275
|
lending: boolean;
|
|
7973
8276
|
collateral: boolean;
|
|
7974
8277
|
debt: boolean;
|
|
8278
|
+
totalApy?: string | undefined;
|
|
7975
8279
|
apy?: string | undefined;
|
|
7976
8280
|
group?: number | undefined;
|
|
7977
8281
|
};
|
|
@@ -7984,6 +8288,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7984
8288
|
lending: boolean;
|
|
7985
8289
|
collateral: boolean;
|
|
7986
8290
|
debt: boolean;
|
|
8291
|
+
totalApy?: string | undefined;
|
|
7987
8292
|
apy?: string | undefined;
|
|
7988
8293
|
group?: number | undefined;
|
|
7989
8294
|
};
|
|
@@ -8030,15 +8335,19 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8030
8335
|
}, {
|
|
8031
8336
|
data: z.ZodObject<{
|
|
8032
8337
|
apy: z.ZodString;
|
|
8338
|
+
totalApy: z.ZodString;
|
|
8033
8339
|
}, "strip", z.ZodTypeAny, {
|
|
8340
|
+
totalApy: string;
|
|
8034
8341
|
apy: string;
|
|
8035
8342
|
}, {
|
|
8343
|
+
totalApy: string;
|
|
8036
8344
|
apy: string;
|
|
8037
8345
|
}>;
|
|
8038
8346
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
8039
8347
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
8040
8348
|
}>, "strip", z.ZodTypeAny, {
|
|
8041
8349
|
data: {
|
|
8350
|
+
totalApy: string;
|
|
8042
8351
|
apy: string;
|
|
8043
8352
|
};
|
|
8044
8353
|
id: string;
|
|
@@ -8047,6 +8356,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8047
8356
|
investmentId?: string | undefined;
|
|
8048
8357
|
}, {
|
|
8049
8358
|
data: {
|
|
8359
|
+
totalApy: string;
|
|
8050
8360
|
apy: string;
|
|
8051
8361
|
};
|
|
8052
8362
|
id: string;
|
|
@@ -8087,6 +8397,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8087
8397
|
withdrawableAfter: number;
|
|
8088
8398
|
}>>;
|
|
8089
8399
|
apy: z.ZodOptional<z.ZodString>;
|
|
8400
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
8090
8401
|
}, "strip", z.ZodTypeAny, {
|
|
8091
8402
|
stakerInfo: {
|
|
8092
8403
|
address: `0x${string}`;
|
|
@@ -8095,6 +8406,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8095
8406
|
};
|
|
8096
8407
|
accruedRewards: string;
|
|
8097
8408
|
stakedAmount: string;
|
|
8409
|
+
totalApy?: string | undefined;
|
|
8098
8410
|
apy?: string | undefined;
|
|
8099
8411
|
pendingWithdrawal?: {
|
|
8100
8412
|
amount: string;
|
|
@@ -8108,6 +8420,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8108
8420
|
};
|
|
8109
8421
|
accruedRewards: string;
|
|
8110
8422
|
stakedAmount: string;
|
|
8423
|
+
totalApy?: string | undefined;
|
|
8111
8424
|
apy?: string | undefined;
|
|
8112
8425
|
pendingWithdrawal?: {
|
|
8113
8426
|
amount: string;
|
|
@@ -8123,6 +8436,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8123
8436
|
};
|
|
8124
8437
|
accruedRewards: string;
|
|
8125
8438
|
stakedAmount: string;
|
|
8439
|
+
totalApy?: string | undefined;
|
|
8126
8440
|
apy?: string | undefined;
|
|
8127
8441
|
pendingWithdrawal?: {
|
|
8128
8442
|
amount: string;
|
|
@@ -8142,6 +8456,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8142
8456
|
};
|
|
8143
8457
|
accruedRewards: string;
|
|
8144
8458
|
stakedAmount: string;
|
|
8459
|
+
totalApy?: string | undefined;
|
|
8145
8460
|
apy?: string | undefined;
|
|
8146
8461
|
pendingWithdrawal?: {
|
|
8147
8462
|
amount: string;
|
|
@@ -8321,6 +8636,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8321
8636
|
}, {
|
|
8322
8637
|
data: z.ZodObject<{
|
|
8323
8638
|
apy: z.ZodOptional<z.ZodString>;
|
|
8639
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
8324
8640
|
group: z.ZodOptional<z.ZodNumber>;
|
|
8325
8641
|
collateral: z.ZodBoolean;
|
|
8326
8642
|
debt: z.ZodBoolean;
|
|
@@ -8329,12 +8645,14 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8329
8645
|
lending: boolean;
|
|
8330
8646
|
collateral: boolean;
|
|
8331
8647
|
debt: boolean;
|
|
8648
|
+
totalApy?: string | undefined;
|
|
8332
8649
|
apy?: string | undefined;
|
|
8333
8650
|
group?: number | undefined;
|
|
8334
8651
|
}, {
|
|
8335
8652
|
lending: boolean;
|
|
8336
8653
|
collateral: boolean;
|
|
8337
8654
|
debt: boolean;
|
|
8655
|
+
totalApy?: string | undefined;
|
|
8338
8656
|
apy?: string | undefined;
|
|
8339
8657
|
group?: number | undefined;
|
|
8340
8658
|
}>;
|
|
@@ -8343,6 +8661,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8343
8661
|
lending: boolean;
|
|
8344
8662
|
collateral: boolean;
|
|
8345
8663
|
debt: boolean;
|
|
8664
|
+
totalApy?: string | undefined;
|
|
8346
8665
|
apy?: string | undefined;
|
|
8347
8666
|
group?: number | undefined;
|
|
8348
8667
|
};
|
|
@@ -8355,6 +8674,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8355
8674
|
lending: boolean;
|
|
8356
8675
|
collateral: boolean;
|
|
8357
8676
|
debt: boolean;
|
|
8677
|
+
totalApy?: string | undefined;
|
|
8358
8678
|
apy?: string | undefined;
|
|
8359
8679
|
group?: number | undefined;
|
|
8360
8680
|
};
|
|
@@ -8401,15 +8721,19 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8401
8721
|
}, {
|
|
8402
8722
|
data: z.ZodObject<{
|
|
8403
8723
|
apy: z.ZodString;
|
|
8724
|
+
totalApy: z.ZodString;
|
|
8404
8725
|
}, "strip", z.ZodTypeAny, {
|
|
8726
|
+
totalApy: string;
|
|
8405
8727
|
apy: string;
|
|
8406
8728
|
}, {
|
|
8729
|
+
totalApy: string;
|
|
8407
8730
|
apy: string;
|
|
8408
8731
|
}>;
|
|
8409
8732
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
8410
8733
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
8411
8734
|
}>, "strip", z.ZodTypeAny, {
|
|
8412
8735
|
data: {
|
|
8736
|
+
totalApy: string;
|
|
8413
8737
|
apy: string;
|
|
8414
8738
|
};
|
|
8415
8739
|
id: string;
|
|
@@ -8418,6 +8742,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8418
8742
|
investmentId?: string | undefined;
|
|
8419
8743
|
}, {
|
|
8420
8744
|
data: {
|
|
8745
|
+
totalApy: string;
|
|
8421
8746
|
apy: string;
|
|
8422
8747
|
};
|
|
8423
8748
|
id: string;
|
|
@@ -8458,6 +8783,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8458
8783
|
withdrawableAfter: number;
|
|
8459
8784
|
}>>;
|
|
8460
8785
|
apy: z.ZodOptional<z.ZodString>;
|
|
8786
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
8461
8787
|
}, "strip", z.ZodTypeAny, {
|
|
8462
8788
|
stakerInfo: {
|
|
8463
8789
|
address: `0x${string}`;
|
|
@@ -8466,6 +8792,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8466
8792
|
};
|
|
8467
8793
|
accruedRewards: string;
|
|
8468
8794
|
stakedAmount: string;
|
|
8795
|
+
totalApy?: string | undefined;
|
|
8469
8796
|
apy?: string | undefined;
|
|
8470
8797
|
pendingWithdrawal?: {
|
|
8471
8798
|
amount: string;
|
|
@@ -8479,6 +8806,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8479
8806
|
};
|
|
8480
8807
|
accruedRewards: string;
|
|
8481
8808
|
stakedAmount: string;
|
|
8809
|
+
totalApy?: string | undefined;
|
|
8482
8810
|
apy?: string | undefined;
|
|
8483
8811
|
pendingWithdrawal?: {
|
|
8484
8812
|
amount: string;
|
|
@@ -8494,6 +8822,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8494
8822
|
};
|
|
8495
8823
|
accruedRewards: string;
|
|
8496
8824
|
stakedAmount: string;
|
|
8825
|
+
totalApy?: string | undefined;
|
|
8497
8826
|
apy?: string | undefined;
|
|
8498
8827
|
pendingWithdrawal?: {
|
|
8499
8828
|
amount: string;
|
|
@@ -8513,6 +8842,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8513
8842
|
};
|
|
8514
8843
|
accruedRewards: string;
|
|
8515
8844
|
stakedAmount: string;
|
|
8845
|
+
totalApy?: string | undefined;
|
|
8516
8846
|
apy?: string | undefined;
|
|
8517
8847
|
pendingWithdrawal?: {
|
|
8518
8848
|
amount: string;
|
|
@@ -8692,6 +9022,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8692
9022
|
}, {
|
|
8693
9023
|
data: z.ZodObject<{
|
|
8694
9024
|
apy: z.ZodOptional<z.ZodString>;
|
|
9025
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
8695
9026
|
group: z.ZodOptional<z.ZodNumber>;
|
|
8696
9027
|
collateral: z.ZodBoolean;
|
|
8697
9028
|
debt: z.ZodBoolean;
|
|
@@ -8700,12 +9031,14 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8700
9031
|
lending: boolean;
|
|
8701
9032
|
collateral: boolean;
|
|
8702
9033
|
debt: boolean;
|
|
9034
|
+
totalApy?: string | undefined;
|
|
8703
9035
|
apy?: string | undefined;
|
|
8704
9036
|
group?: number | undefined;
|
|
8705
9037
|
}, {
|
|
8706
9038
|
lending: boolean;
|
|
8707
9039
|
collateral: boolean;
|
|
8708
9040
|
debt: boolean;
|
|
9041
|
+
totalApy?: string | undefined;
|
|
8709
9042
|
apy?: string | undefined;
|
|
8710
9043
|
group?: number | undefined;
|
|
8711
9044
|
}>;
|
|
@@ -8714,6 +9047,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8714
9047
|
lending: boolean;
|
|
8715
9048
|
collateral: boolean;
|
|
8716
9049
|
debt: boolean;
|
|
9050
|
+
totalApy?: string | undefined;
|
|
8717
9051
|
apy?: string | undefined;
|
|
8718
9052
|
group?: number | undefined;
|
|
8719
9053
|
};
|
|
@@ -8726,6 +9060,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8726
9060
|
lending: boolean;
|
|
8727
9061
|
collateral: boolean;
|
|
8728
9062
|
debt: boolean;
|
|
9063
|
+
totalApy?: string | undefined;
|
|
8729
9064
|
apy?: string | undefined;
|
|
8730
9065
|
group?: number | undefined;
|
|
8731
9066
|
};
|
|
@@ -8772,15 +9107,19 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8772
9107
|
}, {
|
|
8773
9108
|
data: z.ZodObject<{
|
|
8774
9109
|
apy: z.ZodString;
|
|
9110
|
+
totalApy: z.ZodString;
|
|
8775
9111
|
}, "strip", z.ZodTypeAny, {
|
|
9112
|
+
totalApy: string;
|
|
8776
9113
|
apy: string;
|
|
8777
9114
|
}, {
|
|
9115
|
+
totalApy: string;
|
|
8778
9116
|
apy: string;
|
|
8779
9117
|
}>;
|
|
8780
9118
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
8781
9119
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
8782
9120
|
}>, "strip", z.ZodTypeAny, {
|
|
8783
9121
|
data: {
|
|
9122
|
+
totalApy: string;
|
|
8784
9123
|
apy: string;
|
|
8785
9124
|
};
|
|
8786
9125
|
id: string;
|
|
@@ -8789,6 +9128,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8789
9128
|
investmentId?: string | undefined;
|
|
8790
9129
|
}, {
|
|
8791
9130
|
data: {
|
|
9131
|
+
totalApy: string;
|
|
8792
9132
|
apy: string;
|
|
8793
9133
|
};
|
|
8794
9134
|
id: string;
|
|
@@ -8829,6 +9169,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8829
9169
|
withdrawableAfter: number;
|
|
8830
9170
|
}>>;
|
|
8831
9171
|
apy: z.ZodOptional<z.ZodString>;
|
|
9172
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
8832
9173
|
}, "strip", z.ZodTypeAny, {
|
|
8833
9174
|
stakerInfo: {
|
|
8834
9175
|
address: `0x${string}`;
|
|
@@ -8837,6 +9178,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8837
9178
|
};
|
|
8838
9179
|
accruedRewards: string;
|
|
8839
9180
|
stakedAmount: string;
|
|
9181
|
+
totalApy?: string | undefined;
|
|
8840
9182
|
apy?: string | undefined;
|
|
8841
9183
|
pendingWithdrawal?: {
|
|
8842
9184
|
amount: string;
|
|
@@ -8850,6 +9192,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8850
9192
|
};
|
|
8851
9193
|
accruedRewards: string;
|
|
8852
9194
|
stakedAmount: string;
|
|
9195
|
+
totalApy?: string | undefined;
|
|
8853
9196
|
apy?: string | undefined;
|
|
8854
9197
|
pendingWithdrawal?: {
|
|
8855
9198
|
amount: string;
|
|
@@ -8865,6 +9208,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8865
9208
|
};
|
|
8866
9209
|
accruedRewards: string;
|
|
8867
9210
|
stakedAmount: string;
|
|
9211
|
+
totalApy?: string | undefined;
|
|
8868
9212
|
apy?: string | undefined;
|
|
8869
9213
|
pendingWithdrawal?: {
|
|
8870
9214
|
amount: string;
|
|
@@ -8884,6 +9228,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8884
9228
|
};
|
|
8885
9229
|
accruedRewards: string;
|
|
8886
9230
|
stakedAmount: string;
|
|
9231
|
+
totalApy?: string | undefined;
|
|
8887
9232
|
apy?: string | undefined;
|
|
8888
9233
|
pendingWithdrawal?: {
|
|
8889
9234
|
amount: string;
|
|
@@ -9063,6 +9408,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9063
9408
|
}, {
|
|
9064
9409
|
data: z.ZodObject<{
|
|
9065
9410
|
apy: z.ZodOptional<z.ZodString>;
|
|
9411
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
9066
9412
|
group: z.ZodOptional<z.ZodNumber>;
|
|
9067
9413
|
collateral: z.ZodBoolean;
|
|
9068
9414
|
debt: z.ZodBoolean;
|
|
@@ -9071,12 +9417,14 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9071
9417
|
lending: boolean;
|
|
9072
9418
|
collateral: boolean;
|
|
9073
9419
|
debt: boolean;
|
|
9420
|
+
totalApy?: string | undefined;
|
|
9074
9421
|
apy?: string | undefined;
|
|
9075
9422
|
group?: number | undefined;
|
|
9076
9423
|
}, {
|
|
9077
9424
|
lending: boolean;
|
|
9078
9425
|
collateral: boolean;
|
|
9079
9426
|
debt: boolean;
|
|
9427
|
+
totalApy?: string | undefined;
|
|
9080
9428
|
apy?: string | undefined;
|
|
9081
9429
|
group?: number | undefined;
|
|
9082
9430
|
}>;
|
|
@@ -9085,6 +9433,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9085
9433
|
lending: boolean;
|
|
9086
9434
|
collateral: boolean;
|
|
9087
9435
|
debt: boolean;
|
|
9436
|
+
totalApy?: string | undefined;
|
|
9088
9437
|
apy?: string | undefined;
|
|
9089
9438
|
group?: number | undefined;
|
|
9090
9439
|
};
|
|
@@ -9097,6 +9446,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9097
9446
|
lending: boolean;
|
|
9098
9447
|
collateral: boolean;
|
|
9099
9448
|
debt: boolean;
|
|
9449
|
+
totalApy?: string | undefined;
|
|
9100
9450
|
apy?: string | undefined;
|
|
9101
9451
|
group?: number | undefined;
|
|
9102
9452
|
};
|
|
@@ -9143,15 +9493,19 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9143
9493
|
}, {
|
|
9144
9494
|
data: z.ZodObject<{
|
|
9145
9495
|
apy: z.ZodString;
|
|
9496
|
+
totalApy: z.ZodString;
|
|
9146
9497
|
}, "strip", z.ZodTypeAny, {
|
|
9498
|
+
totalApy: string;
|
|
9147
9499
|
apy: string;
|
|
9148
9500
|
}, {
|
|
9501
|
+
totalApy: string;
|
|
9149
9502
|
apy: string;
|
|
9150
9503
|
}>;
|
|
9151
9504
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
9152
9505
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
9153
9506
|
}>, "strip", z.ZodTypeAny, {
|
|
9154
9507
|
data: {
|
|
9508
|
+
totalApy: string;
|
|
9155
9509
|
apy: string;
|
|
9156
9510
|
};
|
|
9157
9511
|
id: string;
|
|
@@ -9160,6 +9514,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9160
9514
|
investmentId?: string | undefined;
|
|
9161
9515
|
}, {
|
|
9162
9516
|
data: {
|
|
9517
|
+
totalApy: string;
|
|
9163
9518
|
apy: string;
|
|
9164
9519
|
};
|
|
9165
9520
|
id: string;
|
|
@@ -9200,6 +9555,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9200
9555
|
withdrawableAfter: number;
|
|
9201
9556
|
}>>;
|
|
9202
9557
|
apy: z.ZodOptional<z.ZodString>;
|
|
9558
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
9203
9559
|
}, "strip", z.ZodTypeAny, {
|
|
9204
9560
|
stakerInfo: {
|
|
9205
9561
|
address: `0x${string}`;
|
|
@@ -9208,6 +9564,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9208
9564
|
};
|
|
9209
9565
|
accruedRewards: string;
|
|
9210
9566
|
stakedAmount: string;
|
|
9567
|
+
totalApy?: string | undefined;
|
|
9211
9568
|
apy?: string | undefined;
|
|
9212
9569
|
pendingWithdrawal?: {
|
|
9213
9570
|
amount: string;
|
|
@@ -9221,6 +9578,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9221
9578
|
};
|
|
9222
9579
|
accruedRewards: string;
|
|
9223
9580
|
stakedAmount: string;
|
|
9581
|
+
totalApy?: string | undefined;
|
|
9224
9582
|
apy?: string | undefined;
|
|
9225
9583
|
pendingWithdrawal?: {
|
|
9226
9584
|
amount: string;
|
|
@@ -9236,6 +9594,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9236
9594
|
};
|
|
9237
9595
|
accruedRewards: string;
|
|
9238
9596
|
stakedAmount: string;
|
|
9597
|
+
totalApy?: string | undefined;
|
|
9239
9598
|
apy?: string | undefined;
|
|
9240
9599
|
pendingWithdrawal?: {
|
|
9241
9600
|
amount: string;
|
|
@@ -9255,6 +9614,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9255
9614
|
};
|
|
9256
9615
|
accruedRewards: string;
|
|
9257
9616
|
stakedAmount: string;
|
|
9617
|
+
totalApy?: string | undefined;
|
|
9258
9618
|
apy?: string | undefined;
|
|
9259
9619
|
pendingWithdrawal?: {
|
|
9260
9620
|
amount: string;
|
|
@@ -9438,6 +9798,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9438
9798
|
}, {
|
|
9439
9799
|
data: z.ZodObject<{
|
|
9440
9800
|
apy: z.ZodOptional<z.ZodString>;
|
|
9801
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
9441
9802
|
group: z.ZodOptional<z.ZodNumber>;
|
|
9442
9803
|
collateral: z.ZodBoolean;
|
|
9443
9804
|
debt: z.ZodBoolean;
|
|
@@ -9446,12 +9807,14 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9446
9807
|
lending: boolean;
|
|
9447
9808
|
collateral: boolean;
|
|
9448
9809
|
debt: boolean;
|
|
9810
|
+
totalApy?: string | undefined;
|
|
9449
9811
|
apy?: string | undefined;
|
|
9450
9812
|
group?: number | undefined;
|
|
9451
9813
|
}, {
|
|
9452
9814
|
lending: boolean;
|
|
9453
9815
|
collateral: boolean;
|
|
9454
9816
|
debt: boolean;
|
|
9817
|
+
totalApy?: string | undefined;
|
|
9455
9818
|
apy?: string | undefined;
|
|
9456
9819
|
group?: number | undefined;
|
|
9457
9820
|
}>;
|
|
@@ -9460,6 +9823,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9460
9823
|
lending: boolean;
|
|
9461
9824
|
collateral: boolean;
|
|
9462
9825
|
debt: boolean;
|
|
9826
|
+
totalApy?: string | undefined;
|
|
9463
9827
|
apy?: string | undefined;
|
|
9464
9828
|
group?: number | undefined;
|
|
9465
9829
|
};
|
|
@@ -9472,6 +9836,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9472
9836
|
lending: boolean;
|
|
9473
9837
|
collateral: boolean;
|
|
9474
9838
|
debt: boolean;
|
|
9839
|
+
totalApy?: string | undefined;
|
|
9475
9840
|
apy?: string | undefined;
|
|
9476
9841
|
group?: number | undefined;
|
|
9477
9842
|
};
|
|
@@ -9518,15 +9883,19 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9518
9883
|
}, {
|
|
9519
9884
|
data: z.ZodObject<{
|
|
9520
9885
|
apy: z.ZodString;
|
|
9886
|
+
totalApy: z.ZodString;
|
|
9521
9887
|
}, "strip", z.ZodTypeAny, {
|
|
9888
|
+
totalApy: string;
|
|
9522
9889
|
apy: string;
|
|
9523
9890
|
}, {
|
|
9891
|
+
totalApy: string;
|
|
9524
9892
|
apy: string;
|
|
9525
9893
|
}>;
|
|
9526
9894
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
9527
9895
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
9528
9896
|
}>, "strip", z.ZodTypeAny, {
|
|
9529
9897
|
data: {
|
|
9898
|
+
totalApy: string;
|
|
9530
9899
|
apy: string;
|
|
9531
9900
|
};
|
|
9532
9901
|
id: string;
|
|
@@ -9535,6 +9904,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9535
9904
|
investmentId?: string | undefined;
|
|
9536
9905
|
}, {
|
|
9537
9906
|
data: {
|
|
9907
|
+
totalApy: string;
|
|
9538
9908
|
apy: string;
|
|
9539
9909
|
};
|
|
9540
9910
|
id: string;
|
|
@@ -9575,6 +9945,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9575
9945
|
withdrawableAfter: number;
|
|
9576
9946
|
}>>;
|
|
9577
9947
|
apy: z.ZodOptional<z.ZodString>;
|
|
9948
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
9578
9949
|
}, "strip", z.ZodTypeAny, {
|
|
9579
9950
|
stakerInfo: {
|
|
9580
9951
|
address: `0x${string}`;
|
|
@@ -9583,6 +9954,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9583
9954
|
};
|
|
9584
9955
|
accruedRewards: string;
|
|
9585
9956
|
stakedAmount: string;
|
|
9957
|
+
totalApy?: string | undefined;
|
|
9586
9958
|
apy?: string | undefined;
|
|
9587
9959
|
pendingWithdrawal?: {
|
|
9588
9960
|
amount: string;
|
|
@@ -9596,6 +9968,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9596
9968
|
};
|
|
9597
9969
|
accruedRewards: string;
|
|
9598
9970
|
stakedAmount: string;
|
|
9971
|
+
totalApy?: string | undefined;
|
|
9599
9972
|
apy?: string | undefined;
|
|
9600
9973
|
pendingWithdrawal?: {
|
|
9601
9974
|
amount: string;
|
|
@@ -9611,6 +9984,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9611
9984
|
};
|
|
9612
9985
|
accruedRewards: string;
|
|
9613
9986
|
stakedAmount: string;
|
|
9987
|
+
totalApy?: string | undefined;
|
|
9614
9988
|
apy?: string | undefined;
|
|
9615
9989
|
pendingWithdrawal?: {
|
|
9616
9990
|
amount: string;
|
|
@@ -9630,6 +10004,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9630
10004
|
};
|
|
9631
10005
|
accruedRewards: string;
|
|
9632
10006
|
stakedAmount: string;
|
|
10007
|
+
totalApy?: string | undefined;
|
|
9633
10008
|
apy?: string | undefined;
|
|
9634
10009
|
pendingWithdrawal?: {
|
|
9635
10010
|
amount: string;
|
|
@@ -9812,6 +10187,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9812
10187
|
}, {
|
|
9813
10188
|
data: z.ZodObject<{
|
|
9814
10189
|
apy: z.ZodOptional<z.ZodString>;
|
|
10190
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
9815
10191
|
group: z.ZodOptional<z.ZodNumber>;
|
|
9816
10192
|
collateral: z.ZodBoolean;
|
|
9817
10193
|
debt: z.ZodBoolean;
|
|
@@ -9820,12 +10196,14 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9820
10196
|
lending: boolean;
|
|
9821
10197
|
collateral: boolean;
|
|
9822
10198
|
debt: boolean;
|
|
10199
|
+
totalApy?: string | undefined;
|
|
9823
10200
|
apy?: string | undefined;
|
|
9824
10201
|
group?: number | undefined;
|
|
9825
10202
|
}, {
|
|
9826
10203
|
lending: boolean;
|
|
9827
10204
|
collateral: boolean;
|
|
9828
10205
|
debt: boolean;
|
|
10206
|
+
totalApy?: string | undefined;
|
|
9829
10207
|
apy?: string | undefined;
|
|
9830
10208
|
group?: number | undefined;
|
|
9831
10209
|
}>;
|
|
@@ -9834,6 +10212,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9834
10212
|
lending: boolean;
|
|
9835
10213
|
collateral: boolean;
|
|
9836
10214
|
debt: boolean;
|
|
10215
|
+
totalApy?: string | undefined;
|
|
9837
10216
|
apy?: string | undefined;
|
|
9838
10217
|
group?: number | undefined;
|
|
9839
10218
|
};
|
|
@@ -9846,6 +10225,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9846
10225
|
lending: boolean;
|
|
9847
10226
|
collateral: boolean;
|
|
9848
10227
|
debt: boolean;
|
|
10228
|
+
totalApy?: string | undefined;
|
|
9849
10229
|
apy?: string | undefined;
|
|
9850
10230
|
group?: number | undefined;
|
|
9851
10231
|
};
|
|
@@ -9892,15 +10272,19 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9892
10272
|
}, {
|
|
9893
10273
|
data: z.ZodObject<{
|
|
9894
10274
|
apy: z.ZodString;
|
|
10275
|
+
totalApy: z.ZodString;
|
|
9895
10276
|
}, "strip", z.ZodTypeAny, {
|
|
10277
|
+
totalApy: string;
|
|
9896
10278
|
apy: string;
|
|
9897
10279
|
}, {
|
|
10280
|
+
totalApy: string;
|
|
9898
10281
|
apy: string;
|
|
9899
10282
|
}>;
|
|
9900
10283
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
9901
10284
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
9902
10285
|
}>, "strip", z.ZodTypeAny, {
|
|
9903
10286
|
data: {
|
|
10287
|
+
totalApy: string;
|
|
9904
10288
|
apy: string;
|
|
9905
10289
|
};
|
|
9906
10290
|
id: string;
|
|
@@ -9909,6 +10293,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9909
10293
|
investmentId?: string | undefined;
|
|
9910
10294
|
}, {
|
|
9911
10295
|
data: {
|
|
10296
|
+
totalApy: string;
|
|
9912
10297
|
apy: string;
|
|
9913
10298
|
};
|
|
9914
10299
|
id: string;
|
|
@@ -9949,6 +10334,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9949
10334
|
withdrawableAfter: number;
|
|
9950
10335
|
}>>;
|
|
9951
10336
|
apy: z.ZodOptional<z.ZodString>;
|
|
10337
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
9952
10338
|
}, "strip", z.ZodTypeAny, {
|
|
9953
10339
|
stakerInfo: {
|
|
9954
10340
|
address: `0x${string}`;
|
|
@@ -9957,6 +10343,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9957
10343
|
};
|
|
9958
10344
|
accruedRewards: string;
|
|
9959
10345
|
stakedAmount: string;
|
|
10346
|
+
totalApy?: string | undefined;
|
|
9960
10347
|
apy?: string | undefined;
|
|
9961
10348
|
pendingWithdrawal?: {
|
|
9962
10349
|
amount: string;
|
|
@@ -9970,6 +10357,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9970
10357
|
};
|
|
9971
10358
|
accruedRewards: string;
|
|
9972
10359
|
stakedAmount: string;
|
|
10360
|
+
totalApy?: string | undefined;
|
|
9973
10361
|
apy?: string | undefined;
|
|
9974
10362
|
pendingWithdrawal?: {
|
|
9975
10363
|
amount: string;
|
|
@@ -9985,6 +10373,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9985
10373
|
};
|
|
9986
10374
|
accruedRewards: string;
|
|
9987
10375
|
stakedAmount: string;
|
|
10376
|
+
totalApy?: string | undefined;
|
|
9988
10377
|
apy?: string | undefined;
|
|
9989
10378
|
pendingWithdrawal?: {
|
|
9990
10379
|
amount: string;
|
|
@@ -10004,6 +10393,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
10004
10393
|
};
|
|
10005
10394
|
accruedRewards: string;
|
|
10006
10395
|
stakedAmount: string;
|
|
10396
|
+
totalApy?: string | undefined;
|
|
10007
10397
|
apy?: string | undefined;
|
|
10008
10398
|
pendingWithdrawal?: {
|
|
10009
10399
|
amount: string;
|
|
@@ -10188,6 +10578,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10188
10578
|
}, {
|
|
10189
10579
|
data: z.ZodObject<{
|
|
10190
10580
|
apy: z.ZodOptional<z.ZodString>;
|
|
10581
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
10191
10582
|
group: z.ZodOptional<z.ZodNumber>;
|
|
10192
10583
|
collateral: z.ZodBoolean;
|
|
10193
10584
|
debt: z.ZodBoolean;
|
|
@@ -10196,12 +10587,14 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10196
10587
|
lending: boolean;
|
|
10197
10588
|
collateral: boolean;
|
|
10198
10589
|
debt: boolean;
|
|
10590
|
+
totalApy?: string | undefined;
|
|
10199
10591
|
apy?: string | undefined;
|
|
10200
10592
|
group?: number | undefined;
|
|
10201
10593
|
}, {
|
|
10202
10594
|
lending: boolean;
|
|
10203
10595
|
collateral: boolean;
|
|
10204
10596
|
debt: boolean;
|
|
10597
|
+
totalApy?: string | undefined;
|
|
10205
10598
|
apy?: string | undefined;
|
|
10206
10599
|
group?: number | undefined;
|
|
10207
10600
|
}>;
|
|
@@ -10210,6 +10603,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10210
10603
|
lending: boolean;
|
|
10211
10604
|
collateral: boolean;
|
|
10212
10605
|
debt: boolean;
|
|
10606
|
+
totalApy?: string | undefined;
|
|
10213
10607
|
apy?: string | undefined;
|
|
10214
10608
|
group?: number | undefined;
|
|
10215
10609
|
};
|
|
@@ -10222,6 +10616,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10222
10616
|
lending: boolean;
|
|
10223
10617
|
collateral: boolean;
|
|
10224
10618
|
debt: boolean;
|
|
10619
|
+
totalApy?: string | undefined;
|
|
10225
10620
|
apy?: string | undefined;
|
|
10226
10621
|
group?: number | undefined;
|
|
10227
10622
|
};
|
|
@@ -10268,15 +10663,19 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10268
10663
|
}, {
|
|
10269
10664
|
data: z.ZodObject<{
|
|
10270
10665
|
apy: z.ZodString;
|
|
10666
|
+
totalApy: z.ZodString;
|
|
10271
10667
|
}, "strip", z.ZodTypeAny, {
|
|
10668
|
+
totalApy: string;
|
|
10272
10669
|
apy: string;
|
|
10273
10670
|
}, {
|
|
10671
|
+
totalApy: string;
|
|
10274
10672
|
apy: string;
|
|
10275
10673
|
}>;
|
|
10276
10674
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
10277
10675
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
10278
10676
|
}>, "strip", z.ZodTypeAny, {
|
|
10279
10677
|
data: {
|
|
10678
|
+
totalApy: string;
|
|
10280
10679
|
apy: string;
|
|
10281
10680
|
};
|
|
10282
10681
|
id: string;
|
|
@@ -10285,6 +10684,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10285
10684
|
investmentId?: string | undefined;
|
|
10286
10685
|
}, {
|
|
10287
10686
|
data: {
|
|
10687
|
+
totalApy: string;
|
|
10288
10688
|
apy: string;
|
|
10289
10689
|
};
|
|
10290
10690
|
id: string;
|
|
@@ -10325,6 +10725,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10325
10725
|
withdrawableAfter: number;
|
|
10326
10726
|
}>>;
|
|
10327
10727
|
apy: z.ZodOptional<z.ZodString>;
|
|
10728
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
10328
10729
|
}, "strip", z.ZodTypeAny, {
|
|
10329
10730
|
stakerInfo: {
|
|
10330
10731
|
address: `0x${string}`;
|
|
@@ -10333,6 +10734,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10333
10734
|
};
|
|
10334
10735
|
accruedRewards: string;
|
|
10335
10736
|
stakedAmount: string;
|
|
10737
|
+
totalApy?: string | undefined;
|
|
10336
10738
|
apy?: string | undefined;
|
|
10337
10739
|
pendingWithdrawal?: {
|
|
10338
10740
|
amount: string;
|
|
@@ -10346,6 +10748,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10346
10748
|
};
|
|
10347
10749
|
accruedRewards: string;
|
|
10348
10750
|
stakedAmount: string;
|
|
10751
|
+
totalApy?: string | undefined;
|
|
10349
10752
|
apy?: string | undefined;
|
|
10350
10753
|
pendingWithdrawal?: {
|
|
10351
10754
|
amount: string;
|
|
@@ -10361,6 +10764,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10361
10764
|
};
|
|
10362
10765
|
accruedRewards: string;
|
|
10363
10766
|
stakedAmount: string;
|
|
10767
|
+
totalApy?: string | undefined;
|
|
10364
10768
|
apy?: string | undefined;
|
|
10365
10769
|
pendingWithdrawal?: {
|
|
10366
10770
|
amount: string;
|
|
@@ -10380,6 +10784,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10380
10784
|
};
|
|
10381
10785
|
accruedRewards: string;
|
|
10382
10786
|
stakedAmount: string;
|
|
10787
|
+
totalApy?: string | undefined;
|
|
10383
10788
|
apy?: string | undefined;
|
|
10384
10789
|
pendingWithdrawal?: {
|
|
10385
10790
|
amount: string;
|
|
@@ -10559,6 +10964,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10559
10964
|
}, {
|
|
10560
10965
|
data: z.ZodObject<{
|
|
10561
10966
|
apy: z.ZodOptional<z.ZodString>;
|
|
10967
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
10562
10968
|
group: z.ZodOptional<z.ZodNumber>;
|
|
10563
10969
|
collateral: z.ZodBoolean;
|
|
10564
10970
|
debt: z.ZodBoolean;
|
|
@@ -10567,12 +10973,14 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10567
10973
|
lending: boolean;
|
|
10568
10974
|
collateral: boolean;
|
|
10569
10975
|
debt: boolean;
|
|
10976
|
+
totalApy?: string | undefined;
|
|
10570
10977
|
apy?: string | undefined;
|
|
10571
10978
|
group?: number | undefined;
|
|
10572
10979
|
}, {
|
|
10573
10980
|
lending: boolean;
|
|
10574
10981
|
collateral: boolean;
|
|
10575
10982
|
debt: boolean;
|
|
10983
|
+
totalApy?: string | undefined;
|
|
10576
10984
|
apy?: string | undefined;
|
|
10577
10985
|
group?: number | undefined;
|
|
10578
10986
|
}>;
|
|
@@ -10581,6 +10989,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10581
10989
|
lending: boolean;
|
|
10582
10990
|
collateral: boolean;
|
|
10583
10991
|
debt: boolean;
|
|
10992
|
+
totalApy?: string | undefined;
|
|
10584
10993
|
apy?: string | undefined;
|
|
10585
10994
|
group?: number | undefined;
|
|
10586
10995
|
};
|
|
@@ -10593,6 +11002,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10593
11002
|
lending: boolean;
|
|
10594
11003
|
collateral: boolean;
|
|
10595
11004
|
debt: boolean;
|
|
11005
|
+
totalApy?: string | undefined;
|
|
10596
11006
|
apy?: string | undefined;
|
|
10597
11007
|
group?: number | undefined;
|
|
10598
11008
|
};
|
|
@@ -10639,15 +11049,19 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10639
11049
|
}, {
|
|
10640
11050
|
data: z.ZodObject<{
|
|
10641
11051
|
apy: z.ZodString;
|
|
11052
|
+
totalApy: z.ZodString;
|
|
10642
11053
|
}, "strip", z.ZodTypeAny, {
|
|
11054
|
+
totalApy: string;
|
|
10643
11055
|
apy: string;
|
|
10644
11056
|
}, {
|
|
11057
|
+
totalApy: string;
|
|
10645
11058
|
apy: string;
|
|
10646
11059
|
}>;
|
|
10647
11060
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
10648
11061
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
10649
11062
|
}>, "strip", z.ZodTypeAny, {
|
|
10650
11063
|
data: {
|
|
11064
|
+
totalApy: string;
|
|
10651
11065
|
apy: string;
|
|
10652
11066
|
};
|
|
10653
11067
|
id: string;
|
|
@@ -10656,6 +11070,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10656
11070
|
investmentId?: string | undefined;
|
|
10657
11071
|
}, {
|
|
10658
11072
|
data: {
|
|
11073
|
+
totalApy: string;
|
|
10659
11074
|
apy: string;
|
|
10660
11075
|
};
|
|
10661
11076
|
id: string;
|
|
@@ -10696,6 +11111,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10696
11111
|
withdrawableAfter: number;
|
|
10697
11112
|
}>>;
|
|
10698
11113
|
apy: z.ZodOptional<z.ZodString>;
|
|
11114
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
10699
11115
|
}, "strip", z.ZodTypeAny, {
|
|
10700
11116
|
stakerInfo: {
|
|
10701
11117
|
address: `0x${string}`;
|
|
@@ -10704,6 +11120,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10704
11120
|
};
|
|
10705
11121
|
accruedRewards: string;
|
|
10706
11122
|
stakedAmount: string;
|
|
11123
|
+
totalApy?: string | undefined;
|
|
10707
11124
|
apy?: string | undefined;
|
|
10708
11125
|
pendingWithdrawal?: {
|
|
10709
11126
|
amount: string;
|
|
@@ -10717,6 +11134,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10717
11134
|
};
|
|
10718
11135
|
accruedRewards: string;
|
|
10719
11136
|
stakedAmount: string;
|
|
11137
|
+
totalApy?: string | undefined;
|
|
10720
11138
|
apy?: string | undefined;
|
|
10721
11139
|
pendingWithdrawal?: {
|
|
10722
11140
|
amount: string;
|
|
@@ -10732,6 +11150,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10732
11150
|
};
|
|
10733
11151
|
accruedRewards: string;
|
|
10734
11152
|
stakedAmount: string;
|
|
11153
|
+
totalApy?: string | undefined;
|
|
10735
11154
|
apy?: string | undefined;
|
|
10736
11155
|
pendingWithdrawal?: {
|
|
10737
11156
|
amount: string;
|
|
@@ -10751,6 +11170,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10751
11170
|
};
|
|
10752
11171
|
accruedRewards: string;
|
|
10753
11172
|
stakedAmount: string;
|
|
11173
|
+
totalApy?: string | undefined;
|
|
10754
11174
|
apy?: string | undefined;
|
|
10755
11175
|
pendingWithdrawal?: {
|
|
10756
11176
|
amount: string;
|
|
@@ -10930,6 +11350,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10930
11350
|
}, {
|
|
10931
11351
|
data: z.ZodObject<{
|
|
10932
11352
|
apy: z.ZodOptional<z.ZodString>;
|
|
11353
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
10933
11354
|
group: z.ZodOptional<z.ZodNumber>;
|
|
10934
11355
|
collateral: z.ZodBoolean;
|
|
10935
11356
|
debt: z.ZodBoolean;
|
|
@@ -10938,12 +11359,14 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10938
11359
|
lending: boolean;
|
|
10939
11360
|
collateral: boolean;
|
|
10940
11361
|
debt: boolean;
|
|
11362
|
+
totalApy?: string | undefined;
|
|
10941
11363
|
apy?: string | undefined;
|
|
10942
11364
|
group?: number | undefined;
|
|
10943
11365
|
}, {
|
|
10944
11366
|
lending: boolean;
|
|
10945
11367
|
collateral: boolean;
|
|
10946
11368
|
debt: boolean;
|
|
11369
|
+
totalApy?: string | undefined;
|
|
10947
11370
|
apy?: string | undefined;
|
|
10948
11371
|
group?: number | undefined;
|
|
10949
11372
|
}>;
|
|
@@ -10952,6 +11375,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10952
11375
|
lending: boolean;
|
|
10953
11376
|
collateral: boolean;
|
|
10954
11377
|
debt: boolean;
|
|
11378
|
+
totalApy?: string | undefined;
|
|
10955
11379
|
apy?: string | undefined;
|
|
10956
11380
|
group?: number | undefined;
|
|
10957
11381
|
};
|
|
@@ -10964,6 +11388,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10964
11388
|
lending: boolean;
|
|
10965
11389
|
collateral: boolean;
|
|
10966
11390
|
debt: boolean;
|
|
11391
|
+
totalApy?: string | undefined;
|
|
10967
11392
|
apy?: string | undefined;
|
|
10968
11393
|
group?: number | undefined;
|
|
10969
11394
|
};
|
|
@@ -11010,15 +11435,19 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11010
11435
|
}, {
|
|
11011
11436
|
data: z.ZodObject<{
|
|
11012
11437
|
apy: z.ZodString;
|
|
11438
|
+
totalApy: z.ZodString;
|
|
11013
11439
|
}, "strip", z.ZodTypeAny, {
|
|
11440
|
+
totalApy: string;
|
|
11014
11441
|
apy: string;
|
|
11015
11442
|
}, {
|
|
11443
|
+
totalApy: string;
|
|
11016
11444
|
apy: string;
|
|
11017
11445
|
}>;
|
|
11018
11446
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
11019
11447
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
11020
11448
|
}>, "strip", z.ZodTypeAny, {
|
|
11021
11449
|
data: {
|
|
11450
|
+
totalApy: string;
|
|
11022
11451
|
apy: string;
|
|
11023
11452
|
};
|
|
11024
11453
|
id: string;
|
|
@@ -11027,6 +11456,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11027
11456
|
investmentId?: string | undefined;
|
|
11028
11457
|
}, {
|
|
11029
11458
|
data: {
|
|
11459
|
+
totalApy: string;
|
|
11030
11460
|
apy: string;
|
|
11031
11461
|
};
|
|
11032
11462
|
id: string;
|
|
@@ -11067,6 +11497,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11067
11497
|
withdrawableAfter: number;
|
|
11068
11498
|
}>>;
|
|
11069
11499
|
apy: z.ZodOptional<z.ZodString>;
|
|
11500
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
11070
11501
|
}, "strip", z.ZodTypeAny, {
|
|
11071
11502
|
stakerInfo: {
|
|
11072
11503
|
address: `0x${string}`;
|
|
@@ -11075,6 +11506,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11075
11506
|
};
|
|
11076
11507
|
accruedRewards: string;
|
|
11077
11508
|
stakedAmount: string;
|
|
11509
|
+
totalApy?: string | undefined;
|
|
11078
11510
|
apy?: string | undefined;
|
|
11079
11511
|
pendingWithdrawal?: {
|
|
11080
11512
|
amount: string;
|
|
@@ -11088,6 +11520,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11088
11520
|
};
|
|
11089
11521
|
accruedRewards: string;
|
|
11090
11522
|
stakedAmount: string;
|
|
11523
|
+
totalApy?: string | undefined;
|
|
11091
11524
|
apy?: string | undefined;
|
|
11092
11525
|
pendingWithdrawal?: {
|
|
11093
11526
|
amount: string;
|
|
@@ -11103,6 +11536,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11103
11536
|
};
|
|
11104
11537
|
accruedRewards: string;
|
|
11105
11538
|
stakedAmount: string;
|
|
11539
|
+
totalApy?: string | undefined;
|
|
11106
11540
|
apy?: string | undefined;
|
|
11107
11541
|
pendingWithdrawal?: {
|
|
11108
11542
|
amount: string;
|
|
@@ -11122,6 +11556,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11122
11556
|
};
|
|
11123
11557
|
accruedRewards: string;
|
|
11124
11558
|
stakedAmount: string;
|
|
11559
|
+
totalApy?: string | undefined;
|
|
11125
11560
|
apy?: string | undefined;
|
|
11126
11561
|
pendingWithdrawal?: {
|
|
11127
11562
|
amount: string;
|
|
@@ -11301,6 +11736,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11301
11736
|
}, {
|
|
11302
11737
|
data: z.ZodObject<{
|
|
11303
11738
|
apy: z.ZodOptional<z.ZodString>;
|
|
11739
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
11304
11740
|
group: z.ZodOptional<z.ZodNumber>;
|
|
11305
11741
|
collateral: z.ZodBoolean;
|
|
11306
11742
|
debt: z.ZodBoolean;
|
|
@@ -11309,12 +11745,14 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11309
11745
|
lending: boolean;
|
|
11310
11746
|
collateral: boolean;
|
|
11311
11747
|
debt: boolean;
|
|
11748
|
+
totalApy?: string | undefined;
|
|
11312
11749
|
apy?: string | undefined;
|
|
11313
11750
|
group?: number | undefined;
|
|
11314
11751
|
}, {
|
|
11315
11752
|
lending: boolean;
|
|
11316
11753
|
collateral: boolean;
|
|
11317
11754
|
debt: boolean;
|
|
11755
|
+
totalApy?: string | undefined;
|
|
11318
11756
|
apy?: string | undefined;
|
|
11319
11757
|
group?: number | undefined;
|
|
11320
11758
|
}>;
|
|
@@ -11323,6 +11761,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11323
11761
|
lending: boolean;
|
|
11324
11762
|
collateral: boolean;
|
|
11325
11763
|
debt: boolean;
|
|
11764
|
+
totalApy?: string | undefined;
|
|
11326
11765
|
apy?: string | undefined;
|
|
11327
11766
|
group?: number | undefined;
|
|
11328
11767
|
};
|
|
@@ -11335,6 +11774,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11335
11774
|
lending: boolean;
|
|
11336
11775
|
collateral: boolean;
|
|
11337
11776
|
debt: boolean;
|
|
11777
|
+
totalApy?: string | undefined;
|
|
11338
11778
|
apy?: string | undefined;
|
|
11339
11779
|
group?: number | undefined;
|
|
11340
11780
|
};
|
|
@@ -11381,15 +11821,19 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11381
11821
|
}, {
|
|
11382
11822
|
data: z.ZodObject<{
|
|
11383
11823
|
apy: z.ZodString;
|
|
11824
|
+
totalApy: z.ZodString;
|
|
11384
11825
|
}, "strip", z.ZodTypeAny, {
|
|
11826
|
+
totalApy: string;
|
|
11385
11827
|
apy: string;
|
|
11386
11828
|
}, {
|
|
11829
|
+
totalApy: string;
|
|
11387
11830
|
apy: string;
|
|
11388
11831
|
}>;
|
|
11389
11832
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
11390
11833
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
11391
11834
|
}>, "strip", z.ZodTypeAny, {
|
|
11392
11835
|
data: {
|
|
11836
|
+
totalApy: string;
|
|
11393
11837
|
apy: string;
|
|
11394
11838
|
};
|
|
11395
11839
|
id: string;
|
|
@@ -11398,6 +11842,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11398
11842
|
investmentId?: string | undefined;
|
|
11399
11843
|
}, {
|
|
11400
11844
|
data: {
|
|
11845
|
+
totalApy: string;
|
|
11401
11846
|
apy: string;
|
|
11402
11847
|
};
|
|
11403
11848
|
id: string;
|
|
@@ -11438,6 +11883,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11438
11883
|
withdrawableAfter: number;
|
|
11439
11884
|
}>>;
|
|
11440
11885
|
apy: z.ZodOptional<z.ZodString>;
|
|
11886
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
11441
11887
|
}, "strip", z.ZodTypeAny, {
|
|
11442
11888
|
stakerInfo: {
|
|
11443
11889
|
address: `0x${string}`;
|
|
@@ -11446,6 +11892,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11446
11892
|
};
|
|
11447
11893
|
accruedRewards: string;
|
|
11448
11894
|
stakedAmount: string;
|
|
11895
|
+
totalApy?: string | undefined;
|
|
11449
11896
|
apy?: string | undefined;
|
|
11450
11897
|
pendingWithdrawal?: {
|
|
11451
11898
|
amount: string;
|
|
@@ -11459,6 +11906,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11459
11906
|
};
|
|
11460
11907
|
accruedRewards: string;
|
|
11461
11908
|
stakedAmount: string;
|
|
11909
|
+
totalApy?: string | undefined;
|
|
11462
11910
|
apy?: string | undefined;
|
|
11463
11911
|
pendingWithdrawal?: {
|
|
11464
11912
|
amount: string;
|
|
@@ -11474,6 +11922,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11474
11922
|
};
|
|
11475
11923
|
accruedRewards: string;
|
|
11476
11924
|
stakedAmount: string;
|
|
11925
|
+
totalApy?: string | undefined;
|
|
11477
11926
|
apy?: string | undefined;
|
|
11478
11927
|
pendingWithdrawal?: {
|
|
11479
11928
|
amount: string;
|
|
@@ -11493,6 +11942,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11493
11942
|
};
|
|
11494
11943
|
accruedRewards: string;
|
|
11495
11944
|
stakedAmount: string;
|
|
11945
|
+
totalApy?: string | undefined;
|
|
11496
11946
|
apy?: string | undefined;
|
|
11497
11947
|
pendingWithdrawal?: {
|
|
11498
11948
|
amount: string;
|
|
@@ -11672,6 +12122,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11672
12122
|
}, {
|
|
11673
12123
|
data: z.ZodObject<{
|
|
11674
12124
|
apy: z.ZodOptional<z.ZodString>;
|
|
12125
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
11675
12126
|
group: z.ZodOptional<z.ZodNumber>;
|
|
11676
12127
|
collateral: z.ZodBoolean;
|
|
11677
12128
|
debt: z.ZodBoolean;
|
|
@@ -11680,12 +12131,14 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11680
12131
|
lending: boolean;
|
|
11681
12132
|
collateral: boolean;
|
|
11682
12133
|
debt: boolean;
|
|
12134
|
+
totalApy?: string | undefined;
|
|
11683
12135
|
apy?: string | undefined;
|
|
11684
12136
|
group?: number | undefined;
|
|
11685
12137
|
}, {
|
|
11686
12138
|
lending: boolean;
|
|
11687
12139
|
collateral: boolean;
|
|
11688
12140
|
debt: boolean;
|
|
12141
|
+
totalApy?: string | undefined;
|
|
11689
12142
|
apy?: string | undefined;
|
|
11690
12143
|
group?: number | undefined;
|
|
11691
12144
|
}>;
|
|
@@ -11694,6 +12147,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11694
12147
|
lending: boolean;
|
|
11695
12148
|
collateral: boolean;
|
|
11696
12149
|
debt: boolean;
|
|
12150
|
+
totalApy?: string | undefined;
|
|
11697
12151
|
apy?: string | undefined;
|
|
11698
12152
|
group?: number | undefined;
|
|
11699
12153
|
};
|
|
@@ -11706,6 +12160,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11706
12160
|
lending: boolean;
|
|
11707
12161
|
collateral: boolean;
|
|
11708
12162
|
debt: boolean;
|
|
12163
|
+
totalApy?: string | undefined;
|
|
11709
12164
|
apy?: string | undefined;
|
|
11710
12165
|
group?: number | undefined;
|
|
11711
12166
|
};
|
|
@@ -11752,15 +12207,19 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11752
12207
|
}, {
|
|
11753
12208
|
data: z.ZodObject<{
|
|
11754
12209
|
apy: z.ZodString;
|
|
12210
|
+
totalApy: z.ZodString;
|
|
11755
12211
|
}, "strip", z.ZodTypeAny, {
|
|
12212
|
+
totalApy: string;
|
|
11756
12213
|
apy: string;
|
|
11757
12214
|
}, {
|
|
12215
|
+
totalApy: string;
|
|
11758
12216
|
apy: string;
|
|
11759
12217
|
}>;
|
|
11760
12218
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
11761
12219
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
11762
12220
|
}>, "strip", z.ZodTypeAny, {
|
|
11763
12221
|
data: {
|
|
12222
|
+
totalApy: string;
|
|
11764
12223
|
apy: string;
|
|
11765
12224
|
};
|
|
11766
12225
|
id: string;
|
|
@@ -11769,6 +12228,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11769
12228
|
investmentId?: string | undefined;
|
|
11770
12229
|
}, {
|
|
11771
12230
|
data: {
|
|
12231
|
+
totalApy: string;
|
|
11772
12232
|
apy: string;
|
|
11773
12233
|
};
|
|
11774
12234
|
id: string;
|
|
@@ -11809,6 +12269,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11809
12269
|
withdrawableAfter: number;
|
|
11810
12270
|
}>>;
|
|
11811
12271
|
apy: z.ZodOptional<z.ZodString>;
|
|
12272
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
11812
12273
|
}, "strip", z.ZodTypeAny, {
|
|
11813
12274
|
stakerInfo: {
|
|
11814
12275
|
address: `0x${string}`;
|
|
@@ -11817,6 +12278,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11817
12278
|
};
|
|
11818
12279
|
accruedRewards: string;
|
|
11819
12280
|
stakedAmount: string;
|
|
12281
|
+
totalApy?: string | undefined;
|
|
11820
12282
|
apy?: string | undefined;
|
|
11821
12283
|
pendingWithdrawal?: {
|
|
11822
12284
|
amount: string;
|
|
@@ -11830,6 +12292,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11830
12292
|
};
|
|
11831
12293
|
accruedRewards: string;
|
|
11832
12294
|
stakedAmount: string;
|
|
12295
|
+
totalApy?: string | undefined;
|
|
11833
12296
|
apy?: string | undefined;
|
|
11834
12297
|
pendingWithdrawal?: {
|
|
11835
12298
|
amount: string;
|
|
@@ -11845,6 +12308,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11845
12308
|
};
|
|
11846
12309
|
accruedRewards: string;
|
|
11847
12310
|
stakedAmount: string;
|
|
12311
|
+
totalApy?: string | undefined;
|
|
11848
12312
|
apy?: string | undefined;
|
|
11849
12313
|
pendingWithdrawal?: {
|
|
11850
12314
|
amount: string;
|
|
@@ -11864,6 +12328,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11864
12328
|
};
|
|
11865
12329
|
accruedRewards: string;
|
|
11866
12330
|
stakedAmount: string;
|
|
12331
|
+
totalApy?: string | undefined;
|
|
11867
12332
|
apy?: string | undefined;
|
|
11868
12333
|
pendingWithdrawal?: {
|
|
11869
12334
|
amount: string;
|
|
@@ -12044,6 +12509,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12044
12509
|
}, {
|
|
12045
12510
|
data: z.ZodObject<{
|
|
12046
12511
|
apy: z.ZodOptional<z.ZodString>;
|
|
12512
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
12047
12513
|
group: z.ZodOptional<z.ZodNumber>;
|
|
12048
12514
|
collateral: z.ZodBoolean;
|
|
12049
12515
|
debt: z.ZodBoolean;
|
|
@@ -12052,12 +12518,14 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12052
12518
|
lending: boolean;
|
|
12053
12519
|
collateral: boolean;
|
|
12054
12520
|
debt: boolean;
|
|
12521
|
+
totalApy?: string | undefined;
|
|
12055
12522
|
apy?: string | undefined;
|
|
12056
12523
|
group?: number | undefined;
|
|
12057
12524
|
}, {
|
|
12058
12525
|
lending: boolean;
|
|
12059
12526
|
collateral: boolean;
|
|
12060
12527
|
debt: boolean;
|
|
12528
|
+
totalApy?: string | undefined;
|
|
12061
12529
|
apy?: string | undefined;
|
|
12062
12530
|
group?: number | undefined;
|
|
12063
12531
|
}>;
|
|
@@ -12066,6 +12534,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12066
12534
|
lending: boolean;
|
|
12067
12535
|
collateral: boolean;
|
|
12068
12536
|
debt: boolean;
|
|
12537
|
+
totalApy?: string | undefined;
|
|
12069
12538
|
apy?: string | undefined;
|
|
12070
12539
|
group?: number | undefined;
|
|
12071
12540
|
};
|
|
@@ -12078,6 +12547,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12078
12547
|
lending: boolean;
|
|
12079
12548
|
collateral: boolean;
|
|
12080
12549
|
debt: boolean;
|
|
12550
|
+
totalApy?: string | undefined;
|
|
12081
12551
|
apy?: string | undefined;
|
|
12082
12552
|
group?: number | undefined;
|
|
12083
12553
|
};
|
|
@@ -12124,15 +12594,19 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12124
12594
|
}, {
|
|
12125
12595
|
data: z.ZodObject<{
|
|
12126
12596
|
apy: z.ZodString;
|
|
12597
|
+
totalApy: z.ZodString;
|
|
12127
12598
|
}, "strip", z.ZodTypeAny, {
|
|
12599
|
+
totalApy: string;
|
|
12128
12600
|
apy: string;
|
|
12129
12601
|
}, {
|
|
12602
|
+
totalApy: string;
|
|
12130
12603
|
apy: string;
|
|
12131
12604
|
}>;
|
|
12132
12605
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
12133
12606
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
12134
12607
|
}>, "strip", z.ZodTypeAny, {
|
|
12135
12608
|
data: {
|
|
12609
|
+
totalApy: string;
|
|
12136
12610
|
apy: string;
|
|
12137
12611
|
};
|
|
12138
12612
|
id: string;
|
|
@@ -12141,6 +12615,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12141
12615
|
investmentId?: string | undefined;
|
|
12142
12616
|
}, {
|
|
12143
12617
|
data: {
|
|
12618
|
+
totalApy: string;
|
|
12144
12619
|
apy: string;
|
|
12145
12620
|
};
|
|
12146
12621
|
id: string;
|
|
@@ -12181,6 +12656,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12181
12656
|
withdrawableAfter: number;
|
|
12182
12657
|
}>>;
|
|
12183
12658
|
apy: z.ZodOptional<z.ZodString>;
|
|
12659
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
12184
12660
|
}, "strip", z.ZodTypeAny, {
|
|
12185
12661
|
stakerInfo: {
|
|
12186
12662
|
address: `0x${string}`;
|
|
@@ -12189,6 +12665,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12189
12665
|
};
|
|
12190
12666
|
accruedRewards: string;
|
|
12191
12667
|
stakedAmount: string;
|
|
12668
|
+
totalApy?: string | undefined;
|
|
12192
12669
|
apy?: string | undefined;
|
|
12193
12670
|
pendingWithdrawal?: {
|
|
12194
12671
|
amount: string;
|
|
@@ -12202,6 +12679,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12202
12679
|
};
|
|
12203
12680
|
accruedRewards: string;
|
|
12204
12681
|
stakedAmount: string;
|
|
12682
|
+
totalApy?: string | undefined;
|
|
12205
12683
|
apy?: string | undefined;
|
|
12206
12684
|
pendingWithdrawal?: {
|
|
12207
12685
|
amount: string;
|
|
@@ -12217,6 +12695,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12217
12695
|
};
|
|
12218
12696
|
accruedRewards: string;
|
|
12219
12697
|
stakedAmount: string;
|
|
12698
|
+
totalApy?: string | undefined;
|
|
12220
12699
|
apy?: string | undefined;
|
|
12221
12700
|
pendingWithdrawal?: {
|
|
12222
12701
|
amount: string;
|
|
@@ -12236,6 +12715,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12236
12715
|
};
|
|
12237
12716
|
accruedRewards: string;
|
|
12238
12717
|
stakedAmount: string;
|
|
12718
|
+
totalApy?: string | undefined;
|
|
12239
12719
|
apy?: string | undefined;
|
|
12240
12720
|
pendingWithdrawal?: {
|
|
12241
12721
|
amount: string;
|
|
@@ -12415,6 +12895,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12415
12895
|
}, {
|
|
12416
12896
|
data: z.ZodObject<{
|
|
12417
12897
|
apy: z.ZodOptional<z.ZodString>;
|
|
12898
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
12418
12899
|
group: z.ZodOptional<z.ZodNumber>;
|
|
12419
12900
|
collateral: z.ZodBoolean;
|
|
12420
12901
|
debt: z.ZodBoolean;
|
|
@@ -12423,12 +12904,14 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12423
12904
|
lending: boolean;
|
|
12424
12905
|
collateral: boolean;
|
|
12425
12906
|
debt: boolean;
|
|
12907
|
+
totalApy?: string | undefined;
|
|
12426
12908
|
apy?: string | undefined;
|
|
12427
12909
|
group?: number | undefined;
|
|
12428
12910
|
}, {
|
|
12429
12911
|
lending: boolean;
|
|
12430
12912
|
collateral: boolean;
|
|
12431
12913
|
debt: boolean;
|
|
12914
|
+
totalApy?: string | undefined;
|
|
12432
12915
|
apy?: string | undefined;
|
|
12433
12916
|
group?: number | undefined;
|
|
12434
12917
|
}>;
|
|
@@ -12437,6 +12920,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12437
12920
|
lending: boolean;
|
|
12438
12921
|
collateral: boolean;
|
|
12439
12922
|
debt: boolean;
|
|
12923
|
+
totalApy?: string | undefined;
|
|
12440
12924
|
apy?: string | undefined;
|
|
12441
12925
|
group?: number | undefined;
|
|
12442
12926
|
};
|
|
@@ -12449,6 +12933,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12449
12933
|
lending: boolean;
|
|
12450
12934
|
collateral: boolean;
|
|
12451
12935
|
debt: boolean;
|
|
12936
|
+
totalApy?: string | undefined;
|
|
12452
12937
|
apy?: string | undefined;
|
|
12453
12938
|
group?: number | undefined;
|
|
12454
12939
|
};
|
|
@@ -12495,15 +12980,19 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12495
12980
|
}, {
|
|
12496
12981
|
data: z.ZodObject<{
|
|
12497
12982
|
apy: z.ZodString;
|
|
12983
|
+
totalApy: z.ZodString;
|
|
12498
12984
|
}, "strip", z.ZodTypeAny, {
|
|
12985
|
+
totalApy: string;
|
|
12499
12986
|
apy: string;
|
|
12500
12987
|
}, {
|
|
12988
|
+
totalApy: string;
|
|
12501
12989
|
apy: string;
|
|
12502
12990
|
}>;
|
|
12503
12991
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
12504
12992
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
12505
12993
|
}>, "strip", z.ZodTypeAny, {
|
|
12506
12994
|
data: {
|
|
12995
|
+
totalApy: string;
|
|
12507
12996
|
apy: string;
|
|
12508
12997
|
};
|
|
12509
12998
|
id: string;
|
|
@@ -12512,6 +13001,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12512
13001
|
investmentId?: string | undefined;
|
|
12513
13002
|
}, {
|
|
12514
13003
|
data: {
|
|
13004
|
+
totalApy: string;
|
|
12515
13005
|
apy: string;
|
|
12516
13006
|
};
|
|
12517
13007
|
id: string;
|
|
@@ -12552,6 +13042,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12552
13042
|
withdrawableAfter: number;
|
|
12553
13043
|
}>>;
|
|
12554
13044
|
apy: z.ZodOptional<z.ZodString>;
|
|
13045
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
12555
13046
|
}, "strip", z.ZodTypeAny, {
|
|
12556
13047
|
stakerInfo: {
|
|
12557
13048
|
address: `0x${string}`;
|
|
@@ -12560,6 +13051,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12560
13051
|
};
|
|
12561
13052
|
accruedRewards: string;
|
|
12562
13053
|
stakedAmount: string;
|
|
13054
|
+
totalApy?: string | undefined;
|
|
12563
13055
|
apy?: string | undefined;
|
|
12564
13056
|
pendingWithdrawal?: {
|
|
12565
13057
|
amount: string;
|
|
@@ -12573,6 +13065,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12573
13065
|
};
|
|
12574
13066
|
accruedRewards: string;
|
|
12575
13067
|
stakedAmount: string;
|
|
13068
|
+
totalApy?: string | undefined;
|
|
12576
13069
|
apy?: string | undefined;
|
|
12577
13070
|
pendingWithdrawal?: {
|
|
12578
13071
|
amount: string;
|
|
@@ -12588,6 +13081,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12588
13081
|
};
|
|
12589
13082
|
accruedRewards: string;
|
|
12590
13083
|
stakedAmount: string;
|
|
13084
|
+
totalApy?: string | undefined;
|
|
12591
13085
|
apy?: string | undefined;
|
|
12592
13086
|
pendingWithdrawal?: {
|
|
12593
13087
|
amount: string;
|
|
@@ -12607,6 +13101,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12607
13101
|
};
|
|
12608
13102
|
accruedRewards: string;
|
|
12609
13103
|
stakedAmount: string;
|
|
13104
|
+
totalApy?: string | undefined;
|
|
12610
13105
|
apy?: string | undefined;
|
|
12611
13106
|
pendingWithdrawal?: {
|
|
12612
13107
|
amount: string;
|
|
@@ -12786,6 +13281,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12786
13281
|
}, {
|
|
12787
13282
|
data: z.ZodObject<{
|
|
12788
13283
|
apy: z.ZodOptional<z.ZodString>;
|
|
13284
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
12789
13285
|
group: z.ZodOptional<z.ZodNumber>;
|
|
12790
13286
|
collateral: z.ZodBoolean;
|
|
12791
13287
|
debt: z.ZodBoolean;
|
|
@@ -12794,12 +13290,14 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12794
13290
|
lending: boolean;
|
|
12795
13291
|
collateral: boolean;
|
|
12796
13292
|
debt: boolean;
|
|
13293
|
+
totalApy?: string | undefined;
|
|
12797
13294
|
apy?: string | undefined;
|
|
12798
13295
|
group?: number | undefined;
|
|
12799
13296
|
}, {
|
|
12800
13297
|
lending: boolean;
|
|
12801
13298
|
collateral: boolean;
|
|
12802
13299
|
debt: boolean;
|
|
13300
|
+
totalApy?: string | undefined;
|
|
12803
13301
|
apy?: string | undefined;
|
|
12804
13302
|
group?: number | undefined;
|
|
12805
13303
|
}>;
|
|
@@ -12808,6 +13306,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12808
13306
|
lending: boolean;
|
|
12809
13307
|
collateral: boolean;
|
|
12810
13308
|
debt: boolean;
|
|
13309
|
+
totalApy?: string | undefined;
|
|
12811
13310
|
apy?: string | undefined;
|
|
12812
13311
|
group?: number | undefined;
|
|
12813
13312
|
};
|
|
@@ -12820,6 +13319,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12820
13319
|
lending: boolean;
|
|
12821
13320
|
collateral: boolean;
|
|
12822
13321
|
debt: boolean;
|
|
13322
|
+
totalApy?: string | undefined;
|
|
12823
13323
|
apy?: string | undefined;
|
|
12824
13324
|
group?: number | undefined;
|
|
12825
13325
|
};
|
|
@@ -12866,15 +13366,19 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12866
13366
|
}, {
|
|
12867
13367
|
data: z.ZodObject<{
|
|
12868
13368
|
apy: z.ZodString;
|
|
13369
|
+
totalApy: z.ZodString;
|
|
12869
13370
|
}, "strip", z.ZodTypeAny, {
|
|
13371
|
+
totalApy: string;
|
|
12870
13372
|
apy: string;
|
|
12871
13373
|
}, {
|
|
13374
|
+
totalApy: string;
|
|
12872
13375
|
apy: string;
|
|
12873
13376
|
}>;
|
|
12874
13377
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
12875
13378
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
12876
13379
|
}>, "strip", z.ZodTypeAny, {
|
|
12877
13380
|
data: {
|
|
13381
|
+
totalApy: string;
|
|
12878
13382
|
apy: string;
|
|
12879
13383
|
};
|
|
12880
13384
|
id: string;
|
|
@@ -12883,6 +13387,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12883
13387
|
investmentId?: string | undefined;
|
|
12884
13388
|
}, {
|
|
12885
13389
|
data: {
|
|
13390
|
+
totalApy: string;
|
|
12886
13391
|
apy: string;
|
|
12887
13392
|
};
|
|
12888
13393
|
id: string;
|
|
@@ -12923,6 +13428,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12923
13428
|
withdrawableAfter: number;
|
|
12924
13429
|
}>>;
|
|
12925
13430
|
apy: z.ZodOptional<z.ZodString>;
|
|
13431
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
12926
13432
|
}, "strip", z.ZodTypeAny, {
|
|
12927
13433
|
stakerInfo: {
|
|
12928
13434
|
address: `0x${string}`;
|
|
@@ -12931,6 +13437,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12931
13437
|
};
|
|
12932
13438
|
accruedRewards: string;
|
|
12933
13439
|
stakedAmount: string;
|
|
13440
|
+
totalApy?: string | undefined;
|
|
12934
13441
|
apy?: string | undefined;
|
|
12935
13442
|
pendingWithdrawal?: {
|
|
12936
13443
|
amount: string;
|
|
@@ -12944,6 +13451,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12944
13451
|
};
|
|
12945
13452
|
accruedRewards: string;
|
|
12946
13453
|
stakedAmount: string;
|
|
13454
|
+
totalApy?: string | undefined;
|
|
12947
13455
|
apy?: string | undefined;
|
|
12948
13456
|
pendingWithdrawal?: {
|
|
12949
13457
|
amount: string;
|
|
@@ -12959,6 +13467,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12959
13467
|
};
|
|
12960
13468
|
accruedRewards: string;
|
|
12961
13469
|
stakedAmount: string;
|
|
13470
|
+
totalApy?: string | undefined;
|
|
12962
13471
|
apy?: string | undefined;
|
|
12963
13472
|
pendingWithdrawal?: {
|
|
12964
13473
|
amount: string;
|
|
@@ -12978,6 +13487,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12978
13487
|
};
|
|
12979
13488
|
accruedRewards: string;
|
|
12980
13489
|
stakedAmount: string;
|
|
13490
|
+
totalApy?: string | undefined;
|
|
12981
13491
|
apy?: string | undefined;
|
|
12982
13492
|
pendingWithdrawal?: {
|
|
12983
13493
|
amount: string;
|
|
@@ -13157,6 +13667,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13157
13667
|
}, {
|
|
13158
13668
|
data: z.ZodObject<{
|
|
13159
13669
|
apy: z.ZodOptional<z.ZodString>;
|
|
13670
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
13160
13671
|
group: z.ZodOptional<z.ZodNumber>;
|
|
13161
13672
|
collateral: z.ZodBoolean;
|
|
13162
13673
|
debt: z.ZodBoolean;
|
|
@@ -13165,12 +13676,14 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13165
13676
|
lending: boolean;
|
|
13166
13677
|
collateral: boolean;
|
|
13167
13678
|
debt: boolean;
|
|
13679
|
+
totalApy?: string | undefined;
|
|
13168
13680
|
apy?: string | undefined;
|
|
13169
13681
|
group?: number | undefined;
|
|
13170
13682
|
}, {
|
|
13171
13683
|
lending: boolean;
|
|
13172
13684
|
collateral: boolean;
|
|
13173
13685
|
debt: boolean;
|
|
13686
|
+
totalApy?: string | undefined;
|
|
13174
13687
|
apy?: string | undefined;
|
|
13175
13688
|
group?: number | undefined;
|
|
13176
13689
|
}>;
|
|
@@ -13179,6 +13692,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13179
13692
|
lending: boolean;
|
|
13180
13693
|
collateral: boolean;
|
|
13181
13694
|
debt: boolean;
|
|
13695
|
+
totalApy?: string | undefined;
|
|
13182
13696
|
apy?: string | undefined;
|
|
13183
13697
|
group?: number | undefined;
|
|
13184
13698
|
};
|
|
@@ -13191,6 +13705,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13191
13705
|
lending: boolean;
|
|
13192
13706
|
collateral: boolean;
|
|
13193
13707
|
debt: boolean;
|
|
13708
|
+
totalApy?: string | undefined;
|
|
13194
13709
|
apy?: string | undefined;
|
|
13195
13710
|
group?: number | undefined;
|
|
13196
13711
|
};
|
|
@@ -13237,15 +13752,19 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13237
13752
|
}, {
|
|
13238
13753
|
data: z.ZodObject<{
|
|
13239
13754
|
apy: z.ZodString;
|
|
13755
|
+
totalApy: z.ZodString;
|
|
13240
13756
|
}, "strip", z.ZodTypeAny, {
|
|
13757
|
+
totalApy: string;
|
|
13241
13758
|
apy: string;
|
|
13242
13759
|
}, {
|
|
13760
|
+
totalApy: string;
|
|
13243
13761
|
apy: string;
|
|
13244
13762
|
}>;
|
|
13245
13763
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
13246
13764
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
13247
13765
|
}>, "strip", z.ZodTypeAny, {
|
|
13248
13766
|
data: {
|
|
13767
|
+
totalApy: string;
|
|
13249
13768
|
apy: string;
|
|
13250
13769
|
};
|
|
13251
13770
|
id: string;
|
|
@@ -13254,6 +13773,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13254
13773
|
investmentId?: string | undefined;
|
|
13255
13774
|
}, {
|
|
13256
13775
|
data: {
|
|
13776
|
+
totalApy: string;
|
|
13257
13777
|
apy: string;
|
|
13258
13778
|
};
|
|
13259
13779
|
id: string;
|
|
@@ -13294,6 +13814,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13294
13814
|
withdrawableAfter: number;
|
|
13295
13815
|
}>>;
|
|
13296
13816
|
apy: z.ZodOptional<z.ZodString>;
|
|
13817
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
13297
13818
|
}, "strip", z.ZodTypeAny, {
|
|
13298
13819
|
stakerInfo: {
|
|
13299
13820
|
address: `0x${string}`;
|
|
@@ -13302,6 +13823,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13302
13823
|
};
|
|
13303
13824
|
accruedRewards: string;
|
|
13304
13825
|
stakedAmount: string;
|
|
13826
|
+
totalApy?: string | undefined;
|
|
13305
13827
|
apy?: string | undefined;
|
|
13306
13828
|
pendingWithdrawal?: {
|
|
13307
13829
|
amount: string;
|
|
@@ -13315,6 +13837,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13315
13837
|
};
|
|
13316
13838
|
accruedRewards: string;
|
|
13317
13839
|
stakedAmount: string;
|
|
13840
|
+
totalApy?: string | undefined;
|
|
13318
13841
|
apy?: string | undefined;
|
|
13319
13842
|
pendingWithdrawal?: {
|
|
13320
13843
|
amount: string;
|
|
@@ -13330,6 +13853,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13330
13853
|
};
|
|
13331
13854
|
accruedRewards: string;
|
|
13332
13855
|
stakedAmount: string;
|
|
13856
|
+
totalApy?: string | undefined;
|
|
13333
13857
|
apy?: string | undefined;
|
|
13334
13858
|
pendingWithdrawal?: {
|
|
13335
13859
|
amount: string;
|
|
@@ -13349,6 +13873,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13349
13873
|
};
|
|
13350
13874
|
accruedRewards: string;
|
|
13351
13875
|
stakedAmount: string;
|
|
13876
|
+
totalApy?: string | undefined;
|
|
13352
13877
|
apy?: string | undefined;
|
|
13353
13878
|
pendingWithdrawal?: {
|
|
13354
13879
|
amount: string;
|
|
@@ -13528,6 +14053,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13528
14053
|
}, {
|
|
13529
14054
|
data: z.ZodObject<{
|
|
13530
14055
|
apy: z.ZodOptional<z.ZodString>;
|
|
14056
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
13531
14057
|
group: z.ZodOptional<z.ZodNumber>;
|
|
13532
14058
|
collateral: z.ZodBoolean;
|
|
13533
14059
|
debt: z.ZodBoolean;
|
|
@@ -13536,12 +14062,14 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13536
14062
|
lending: boolean;
|
|
13537
14063
|
collateral: boolean;
|
|
13538
14064
|
debt: boolean;
|
|
14065
|
+
totalApy?: string | undefined;
|
|
13539
14066
|
apy?: string | undefined;
|
|
13540
14067
|
group?: number | undefined;
|
|
13541
14068
|
}, {
|
|
13542
14069
|
lending: boolean;
|
|
13543
14070
|
collateral: boolean;
|
|
13544
14071
|
debt: boolean;
|
|
14072
|
+
totalApy?: string | undefined;
|
|
13545
14073
|
apy?: string | undefined;
|
|
13546
14074
|
group?: number | undefined;
|
|
13547
14075
|
}>;
|
|
@@ -13550,6 +14078,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13550
14078
|
lending: boolean;
|
|
13551
14079
|
collateral: boolean;
|
|
13552
14080
|
debt: boolean;
|
|
14081
|
+
totalApy?: string | undefined;
|
|
13553
14082
|
apy?: string | undefined;
|
|
13554
14083
|
group?: number | undefined;
|
|
13555
14084
|
};
|
|
@@ -13562,6 +14091,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13562
14091
|
lending: boolean;
|
|
13563
14092
|
collateral: boolean;
|
|
13564
14093
|
debt: boolean;
|
|
14094
|
+
totalApy?: string | undefined;
|
|
13565
14095
|
apy?: string | undefined;
|
|
13566
14096
|
group?: number | undefined;
|
|
13567
14097
|
};
|
|
@@ -13608,15 +14138,19 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13608
14138
|
}, {
|
|
13609
14139
|
data: z.ZodObject<{
|
|
13610
14140
|
apy: z.ZodString;
|
|
14141
|
+
totalApy: z.ZodString;
|
|
13611
14142
|
}, "strip", z.ZodTypeAny, {
|
|
14143
|
+
totalApy: string;
|
|
13612
14144
|
apy: string;
|
|
13613
14145
|
}, {
|
|
14146
|
+
totalApy: string;
|
|
13614
14147
|
apy: string;
|
|
13615
14148
|
}>;
|
|
13616
14149
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
13617
14150
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
13618
14151
|
}>, "strip", z.ZodTypeAny, {
|
|
13619
14152
|
data: {
|
|
14153
|
+
totalApy: string;
|
|
13620
14154
|
apy: string;
|
|
13621
14155
|
};
|
|
13622
14156
|
id: string;
|
|
@@ -13625,6 +14159,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13625
14159
|
investmentId?: string | undefined;
|
|
13626
14160
|
}, {
|
|
13627
14161
|
data: {
|
|
14162
|
+
totalApy: string;
|
|
13628
14163
|
apy: string;
|
|
13629
14164
|
};
|
|
13630
14165
|
id: string;
|
|
@@ -13665,6 +14200,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13665
14200
|
withdrawableAfter: number;
|
|
13666
14201
|
}>>;
|
|
13667
14202
|
apy: z.ZodOptional<z.ZodString>;
|
|
14203
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
13668
14204
|
}, "strip", z.ZodTypeAny, {
|
|
13669
14205
|
stakerInfo: {
|
|
13670
14206
|
address: `0x${string}`;
|
|
@@ -13673,6 +14209,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13673
14209
|
};
|
|
13674
14210
|
accruedRewards: string;
|
|
13675
14211
|
stakedAmount: string;
|
|
14212
|
+
totalApy?: string | undefined;
|
|
13676
14213
|
apy?: string | undefined;
|
|
13677
14214
|
pendingWithdrawal?: {
|
|
13678
14215
|
amount: string;
|
|
@@ -13686,6 +14223,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13686
14223
|
};
|
|
13687
14224
|
accruedRewards: string;
|
|
13688
14225
|
stakedAmount: string;
|
|
14226
|
+
totalApy?: string | undefined;
|
|
13689
14227
|
apy?: string | undefined;
|
|
13690
14228
|
pendingWithdrawal?: {
|
|
13691
14229
|
amount: string;
|
|
@@ -13701,6 +14239,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13701
14239
|
};
|
|
13702
14240
|
accruedRewards: string;
|
|
13703
14241
|
stakedAmount: string;
|
|
14242
|
+
totalApy?: string | undefined;
|
|
13704
14243
|
apy?: string | undefined;
|
|
13705
14244
|
pendingWithdrawal?: {
|
|
13706
14245
|
amount: string;
|
|
@@ -13720,6 +14259,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13720
14259
|
};
|
|
13721
14260
|
accruedRewards: string;
|
|
13722
14261
|
stakedAmount: string;
|
|
14262
|
+
totalApy?: string | undefined;
|
|
13723
14263
|
apy?: string | undefined;
|
|
13724
14264
|
pendingWithdrawal?: {
|
|
13725
14265
|
amount: string;
|
|
@@ -13903,6 +14443,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13903
14443
|
}, {
|
|
13904
14444
|
data: z.ZodObject<{
|
|
13905
14445
|
apy: z.ZodOptional<z.ZodString>;
|
|
14446
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
13906
14447
|
group: z.ZodOptional<z.ZodNumber>;
|
|
13907
14448
|
collateral: z.ZodBoolean;
|
|
13908
14449
|
debt: z.ZodBoolean;
|
|
@@ -13911,12 +14452,14 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13911
14452
|
lending: boolean;
|
|
13912
14453
|
collateral: boolean;
|
|
13913
14454
|
debt: boolean;
|
|
14455
|
+
totalApy?: string | undefined;
|
|
13914
14456
|
apy?: string | undefined;
|
|
13915
14457
|
group?: number | undefined;
|
|
13916
14458
|
}, {
|
|
13917
14459
|
lending: boolean;
|
|
13918
14460
|
collateral: boolean;
|
|
13919
14461
|
debt: boolean;
|
|
14462
|
+
totalApy?: string | undefined;
|
|
13920
14463
|
apy?: string | undefined;
|
|
13921
14464
|
group?: number | undefined;
|
|
13922
14465
|
}>;
|
|
@@ -13925,6 +14468,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13925
14468
|
lending: boolean;
|
|
13926
14469
|
collateral: boolean;
|
|
13927
14470
|
debt: boolean;
|
|
14471
|
+
totalApy?: string | undefined;
|
|
13928
14472
|
apy?: string | undefined;
|
|
13929
14473
|
group?: number | undefined;
|
|
13930
14474
|
};
|
|
@@ -13937,6 +14481,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13937
14481
|
lending: boolean;
|
|
13938
14482
|
collateral: boolean;
|
|
13939
14483
|
debt: boolean;
|
|
14484
|
+
totalApy?: string | undefined;
|
|
13940
14485
|
apy?: string | undefined;
|
|
13941
14486
|
group?: number | undefined;
|
|
13942
14487
|
};
|
|
@@ -13983,15 +14528,19 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13983
14528
|
}, {
|
|
13984
14529
|
data: z.ZodObject<{
|
|
13985
14530
|
apy: z.ZodString;
|
|
14531
|
+
totalApy: z.ZodString;
|
|
13986
14532
|
}, "strip", z.ZodTypeAny, {
|
|
14533
|
+
totalApy: string;
|
|
13987
14534
|
apy: string;
|
|
13988
14535
|
}, {
|
|
14536
|
+
totalApy: string;
|
|
13989
14537
|
apy: string;
|
|
13990
14538
|
}>;
|
|
13991
14539
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
13992
14540
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
13993
14541
|
}>, "strip", z.ZodTypeAny, {
|
|
13994
14542
|
data: {
|
|
14543
|
+
totalApy: string;
|
|
13995
14544
|
apy: string;
|
|
13996
14545
|
};
|
|
13997
14546
|
id: string;
|
|
@@ -14000,6 +14549,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14000
14549
|
investmentId?: string | undefined;
|
|
14001
14550
|
}, {
|
|
14002
14551
|
data: {
|
|
14552
|
+
totalApy: string;
|
|
14003
14553
|
apy: string;
|
|
14004
14554
|
};
|
|
14005
14555
|
id: string;
|
|
@@ -14040,6 +14590,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14040
14590
|
withdrawableAfter: number;
|
|
14041
14591
|
}>>;
|
|
14042
14592
|
apy: z.ZodOptional<z.ZodString>;
|
|
14593
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
14043
14594
|
}, "strip", z.ZodTypeAny, {
|
|
14044
14595
|
stakerInfo: {
|
|
14045
14596
|
address: `0x${string}`;
|
|
@@ -14048,6 +14599,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14048
14599
|
};
|
|
14049
14600
|
accruedRewards: string;
|
|
14050
14601
|
stakedAmount: string;
|
|
14602
|
+
totalApy?: string | undefined;
|
|
14051
14603
|
apy?: string | undefined;
|
|
14052
14604
|
pendingWithdrawal?: {
|
|
14053
14605
|
amount: string;
|
|
@@ -14061,6 +14613,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14061
14613
|
};
|
|
14062
14614
|
accruedRewards: string;
|
|
14063
14615
|
stakedAmount: string;
|
|
14616
|
+
totalApy?: string | undefined;
|
|
14064
14617
|
apy?: string | undefined;
|
|
14065
14618
|
pendingWithdrawal?: {
|
|
14066
14619
|
amount: string;
|
|
@@ -14076,6 +14629,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14076
14629
|
};
|
|
14077
14630
|
accruedRewards: string;
|
|
14078
14631
|
stakedAmount: string;
|
|
14632
|
+
totalApy?: string | undefined;
|
|
14079
14633
|
apy?: string | undefined;
|
|
14080
14634
|
pendingWithdrawal?: {
|
|
14081
14635
|
amount: string;
|
|
@@ -14095,6 +14649,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14095
14649
|
};
|
|
14096
14650
|
accruedRewards: string;
|
|
14097
14651
|
stakedAmount: string;
|
|
14652
|
+
totalApy?: string | undefined;
|
|
14098
14653
|
apy?: string | undefined;
|
|
14099
14654
|
pendingWithdrawal?: {
|
|
14100
14655
|
amount: string;
|
|
@@ -14277,6 +14832,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14277
14832
|
}, {
|
|
14278
14833
|
data: z.ZodObject<{
|
|
14279
14834
|
apy: z.ZodOptional<z.ZodString>;
|
|
14835
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
14280
14836
|
group: z.ZodOptional<z.ZodNumber>;
|
|
14281
14837
|
collateral: z.ZodBoolean;
|
|
14282
14838
|
debt: z.ZodBoolean;
|
|
@@ -14285,12 +14841,14 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14285
14841
|
lending: boolean;
|
|
14286
14842
|
collateral: boolean;
|
|
14287
14843
|
debt: boolean;
|
|
14844
|
+
totalApy?: string | undefined;
|
|
14288
14845
|
apy?: string | undefined;
|
|
14289
14846
|
group?: number | undefined;
|
|
14290
14847
|
}, {
|
|
14291
14848
|
lending: boolean;
|
|
14292
14849
|
collateral: boolean;
|
|
14293
14850
|
debt: boolean;
|
|
14851
|
+
totalApy?: string | undefined;
|
|
14294
14852
|
apy?: string | undefined;
|
|
14295
14853
|
group?: number | undefined;
|
|
14296
14854
|
}>;
|
|
@@ -14299,6 +14857,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14299
14857
|
lending: boolean;
|
|
14300
14858
|
collateral: boolean;
|
|
14301
14859
|
debt: boolean;
|
|
14860
|
+
totalApy?: string | undefined;
|
|
14302
14861
|
apy?: string | undefined;
|
|
14303
14862
|
group?: number | undefined;
|
|
14304
14863
|
};
|
|
@@ -14311,6 +14870,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14311
14870
|
lending: boolean;
|
|
14312
14871
|
collateral: boolean;
|
|
14313
14872
|
debt: boolean;
|
|
14873
|
+
totalApy?: string | undefined;
|
|
14314
14874
|
apy?: string | undefined;
|
|
14315
14875
|
group?: number | undefined;
|
|
14316
14876
|
};
|
|
@@ -14357,15 +14917,19 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14357
14917
|
}, {
|
|
14358
14918
|
data: z.ZodObject<{
|
|
14359
14919
|
apy: z.ZodString;
|
|
14920
|
+
totalApy: z.ZodString;
|
|
14360
14921
|
}, "strip", z.ZodTypeAny, {
|
|
14922
|
+
totalApy: string;
|
|
14361
14923
|
apy: string;
|
|
14362
14924
|
}, {
|
|
14925
|
+
totalApy: string;
|
|
14363
14926
|
apy: string;
|
|
14364
14927
|
}>;
|
|
14365
14928
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
14366
14929
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
14367
14930
|
}>, "strip", z.ZodTypeAny, {
|
|
14368
14931
|
data: {
|
|
14932
|
+
totalApy: string;
|
|
14369
14933
|
apy: string;
|
|
14370
14934
|
};
|
|
14371
14935
|
id: string;
|
|
@@ -14374,6 +14938,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14374
14938
|
investmentId?: string | undefined;
|
|
14375
14939
|
}, {
|
|
14376
14940
|
data: {
|
|
14941
|
+
totalApy: string;
|
|
14377
14942
|
apy: string;
|
|
14378
14943
|
};
|
|
14379
14944
|
id: string;
|
|
@@ -14414,6 +14979,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14414
14979
|
withdrawableAfter: number;
|
|
14415
14980
|
}>>;
|
|
14416
14981
|
apy: z.ZodOptional<z.ZodString>;
|
|
14982
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
14417
14983
|
}, "strip", z.ZodTypeAny, {
|
|
14418
14984
|
stakerInfo: {
|
|
14419
14985
|
address: `0x${string}`;
|
|
@@ -14422,6 +14988,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14422
14988
|
};
|
|
14423
14989
|
accruedRewards: string;
|
|
14424
14990
|
stakedAmount: string;
|
|
14991
|
+
totalApy?: string | undefined;
|
|
14425
14992
|
apy?: string | undefined;
|
|
14426
14993
|
pendingWithdrawal?: {
|
|
14427
14994
|
amount: string;
|
|
@@ -14435,6 +15002,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14435
15002
|
};
|
|
14436
15003
|
accruedRewards: string;
|
|
14437
15004
|
stakedAmount: string;
|
|
15005
|
+
totalApy?: string | undefined;
|
|
14438
15006
|
apy?: string | undefined;
|
|
14439
15007
|
pendingWithdrawal?: {
|
|
14440
15008
|
amount: string;
|
|
@@ -14450,6 +15018,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14450
15018
|
};
|
|
14451
15019
|
accruedRewards: string;
|
|
14452
15020
|
stakedAmount: string;
|
|
15021
|
+
totalApy?: string | undefined;
|
|
14453
15022
|
apy?: string | undefined;
|
|
14454
15023
|
pendingWithdrawal?: {
|
|
14455
15024
|
amount: string;
|
|
@@ -14469,6 +15038,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14469
15038
|
};
|
|
14470
15039
|
accruedRewards: string;
|
|
14471
15040
|
stakedAmount: string;
|
|
15041
|
+
totalApy?: string | undefined;
|
|
14472
15042
|
apy?: string | undefined;
|
|
14473
15043
|
pendingWithdrawal?: {
|
|
14474
15044
|
amount: string;
|
|
@@ -14653,6 +15223,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14653
15223
|
}, {
|
|
14654
15224
|
data: z.ZodObject<{
|
|
14655
15225
|
apy: z.ZodOptional<z.ZodString>;
|
|
15226
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
14656
15227
|
group: z.ZodOptional<z.ZodNumber>;
|
|
14657
15228
|
collateral: z.ZodBoolean;
|
|
14658
15229
|
debt: z.ZodBoolean;
|
|
@@ -14661,12 +15232,14 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14661
15232
|
lending: boolean;
|
|
14662
15233
|
collateral: boolean;
|
|
14663
15234
|
debt: boolean;
|
|
15235
|
+
totalApy?: string | undefined;
|
|
14664
15236
|
apy?: string | undefined;
|
|
14665
15237
|
group?: number | undefined;
|
|
14666
15238
|
}, {
|
|
14667
15239
|
lending: boolean;
|
|
14668
15240
|
collateral: boolean;
|
|
14669
15241
|
debt: boolean;
|
|
15242
|
+
totalApy?: string | undefined;
|
|
14670
15243
|
apy?: string | undefined;
|
|
14671
15244
|
group?: number | undefined;
|
|
14672
15245
|
}>;
|
|
@@ -14675,6 +15248,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14675
15248
|
lending: boolean;
|
|
14676
15249
|
collateral: boolean;
|
|
14677
15250
|
debt: boolean;
|
|
15251
|
+
totalApy?: string | undefined;
|
|
14678
15252
|
apy?: string | undefined;
|
|
14679
15253
|
group?: number | undefined;
|
|
14680
15254
|
};
|
|
@@ -14687,6 +15261,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14687
15261
|
lending: boolean;
|
|
14688
15262
|
collateral: boolean;
|
|
14689
15263
|
debt: boolean;
|
|
15264
|
+
totalApy?: string | undefined;
|
|
14690
15265
|
apy?: string | undefined;
|
|
14691
15266
|
group?: number | undefined;
|
|
14692
15267
|
};
|
|
@@ -14733,15 +15308,19 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14733
15308
|
}, {
|
|
14734
15309
|
data: z.ZodObject<{
|
|
14735
15310
|
apy: z.ZodString;
|
|
15311
|
+
totalApy: z.ZodString;
|
|
14736
15312
|
}, "strip", z.ZodTypeAny, {
|
|
15313
|
+
totalApy: string;
|
|
14737
15314
|
apy: string;
|
|
14738
15315
|
}, {
|
|
15316
|
+
totalApy: string;
|
|
14739
15317
|
apy: string;
|
|
14740
15318
|
}>;
|
|
14741
15319
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
14742
15320
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
14743
15321
|
}>, "strip", z.ZodTypeAny, {
|
|
14744
15322
|
data: {
|
|
15323
|
+
totalApy: string;
|
|
14745
15324
|
apy: string;
|
|
14746
15325
|
};
|
|
14747
15326
|
id: string;
|
|
@@ -14750,6 +15329,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14750
15329
|
investmentId?: string | undefined;
|
|
14751
15330
|
}, {
|
|
14752
15331
|
data: {
|
|
15332
|
+
totalApy: string;
|
|
14753
15333
|
apy: string;
|
|
14754
15334
|
};
|
|
14755
15335
|
id: string;
|
|
@@ -14790,6 +15370,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14790
15370
|
withdrawableAfter: number;
|
|
14791
15371
|
}>>;
|
|
14792
15372
|
apy: z.ZodOptional<z.ZodString>;
|
|
15373
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
14793
15374
|
}, "strip", z.ZodTypeAny, {
|
|
14794
15375
|
stakerInfo: {
|
|
14795
15376
|
address: `0x${string}`;
|
|
@@ -14798,6 +15379,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14798
15379
|
};
|
|
14799
15380
|
accruedRewards: string;
|
|
14800
15381
|
stakedAmount: string;
|
|
15382
|
+
totalApy?: string | undefined;
|
|
14801
15383
|
apy?: string | undefined;
|
|
14802
15384
|
pendingWithdrawal?: {
|
|
14803
15385
|
amount: string;
|
|
@@ -14811,6 +15393,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14811
15393
|
};
|
|
14812
15394
|
accruedRewards: string;
|
|
14813
15395
|
stakedAmount: string;
|
|
15396
|
+
totalApy?: string | undefined;
|
|
14814
15397
|
apy?: string | undefined;
|
|
14815
15398
|
pendingWithdrawal?: {
|
|
14816
15399
|
amount: string;
|
|
@@ -14826,6 +15409,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14826
15409
|
};
|
|
14827
15410
|
accruedRewards: string;
|
|
14828
15411
|
stakedAmount: string;
|
|
15412
|
+
totalApy?: string | undefined;
|
|
14829
15413
|
apy?: string | undefined;
|
|
14830
15414
|
pendingWithdrawal?: {
|
|
14831
15415
|
amount: string;
|
|
@@ -14845,6 +15429,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14845
15429
|
};
|
|
14846
15430
|
accruedRewards: string;
|
|
14847
15431
|
stakedAmount: string;
|
|
15432
|
+
totalApy?: string | undefined;
|
|
14848
15433
|
apy?: string | undefined;
|
|
14849
15434
|
pendingWithdrawal?: {
|
|
14850
15435
|
amount: string;
|
|
@@ -15029,6 +15614,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
15029
15614
|
}, {
|
|
15030
15615
|
data: z.ZodObject<{
|
|
15031
15616
|
apy: z.ZodOptional<z.ZodString>;
|
|
15617
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
15032
15618
|
group: z.ZodOptional<z.ZodNumber>;
|
|
15033
15619
|
collateral: z.ZodBoolean;
|
|
15034
15620
|
debt: z.ZodBoolean;
|
|
@@ -15037,12 +15623,14 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
15037
15623
|
lending: boolean;
|
|
15038
15624
|
collateral: boolean;
|
|
15039
15625
|
debt: boolean;
|
|
15626
|
+
totalApy?: string | undefined;
|
|
15040
15627
|
apy?: string | undefined;
|
|
15041
15628
|
group?: number | undefined;
|
|
15042
15629
|
}, {
|
|
15043
15630
|
lending: boolean;
|
|
15044
15631
|
collateral: boolean;
|
|
15045
15632
|
debt: boolean;
|
|
15633
|
+
totalApy?: string | undefined;
|
|
15046
15634
|
apy?: string | undefined;
|
|
15047
15635
|
group?: number | undefined;
|
|
15048
15636
|
}>;
|
|
@@ -15051,6 +15639,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
15051
15639
|
lending: boolean;
|
|
15052
15640
|
collateral: boolean;
|
|
15053
15641
|
debt: boolean;
|
|
15642
|
+
totalApy?: string | undefined;
|
|
15054
15643
|
apy?: string | undefined;
|
|
15055
15644
|
group?: number | undefined;
|
|
15056
15645
|
};
|
|
@@ -15063,6 +15652,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
15063
15652
|
lending: boolean;
|
|
15064
15653
|
collateral: boolean;
|
|
15065
15654
|
debt: boolean;
|
|
15655
|
+
totalApy?: string | undefined;
|
|
15066
15656
|
apy?: string | undefined;
|
|
15067
15657
|
group?: number | undefined;
|
|
15068
15658
|
};
|
|
@@ -15109,15 +15699,19 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
15109
15699
|
}, {
|
|
15110
15700
|
data: z.ZodObject<{
|
|
15111
15701
|
apy: z.ZodString;
|
|
15702
|
+
totalApy: z.ZodString;
|
|
15112
15703
|
}, "strip", z.ZodTypeAny, {
|
|
15704
|
+
totalApy: string;
|
|
15113
15705
|
apy: string;
|
|
15114
15706
|
}, {
|
|
15707
|
+
totalApy: string;
|
|
15115
15708
|
apy: string;
|
|
15116
15709
|
}>;
|
|
15117
15710
|
investmentId: z.ZodOptional<z.ZodString>;
|
|
15118
15711
|
totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
15119
15712
|
}>, "strip", z.ZodTypeAny, {
|
|
15120
15713
|
data: {
|
|
15714
|
+
totalApy: string;
|
|
15121
15715
|
apy: string;
|
|
15122
15716
|
};
|
|
15123
15717
|
id: string;
|
|
@@ -15126,6 +15720,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
15126
15720
|
investmentId?: string | undefined;
|
|
15127
15721
|
}, {
|
|
15128
15722
|
data: {
|
|
15723
|
+
totalApy: string;
|
|
15129
15724
|
apy: string;
|
|
15130
15725
|
};
|
|
15131
15726
|
id: string;
|
|
@@ -15166,6 +15761,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
15166
15761
|
withdrawableAfter: number;
|
|
15167
15762
|
}>>;
|
|
15168
15763
|
apy: z.ZodOptional<z.ZodString>;
|
|
15764
|
+
totalApy: z.ZodOptional<z.ZodString>;
|
|
15169
15765
|
}, "strip", z.ZodTypeAny, {
|
|
15170
15766
|
stakerInfo: {
|
|
15171
15767
|
address: `0x${string}`;
|
|
@@ -15174,6 +15770,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
15174
15770
|
};
|
|
15175
15771
|
accruedRewards: string;
|
|
15176
15772
|
stakedAmount: string;
|
|
15773
|
+
totalApy?: string | undefined;
|
|
15177
15774
|
apy?: string | undefined;
|
|
15178
15775
|
pendingWithdrawal?: {
|
|
15179
15776
|
amount: string;
|
|
@@ -15187,6 +15784,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
15187
15784
|
};
|
|
15188
15785
|
accruedRewards: string;
|
|
15189
15786
|
stakedAmount: string;
|
|
15787
|
+
totalApy?: string | undefined;
|
|
15190
15788
|
apy?: string | undefined;
|
|
15191
15789
|
pendingWithdrawal?: {
|
|
15192
15790
|
amount: string;
|
|
@@ -15202,6 +15800,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
15202
15800
|
};
|
|
15203
15801
|
accruedRewards: string;
|
|
15204
15802
|
stakedAmount: string;
|
|
15803
|
+
totalApy?: string | undefined;
|
|
15205
15804
|
apy?: string | undefined;
|
|
15206
15805
|
pendingWithdrawal?: {
|
|
15207
15806
|
amount: string;
|
|
@@ -15221,6 +15820,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
15221
15820
|
};
|
|
15222
15821
|
accruedRewards: string;
|
|
15223
15822
|
stakedAmount: string;
|
|
15823
|
+
totalApy?: string | undefined;
|
|
15224
15824
|
apy?: string | undefined;
|
|
15225
15825
|
pendingWithdrawal?: {
|
|
15226
15826
|
amount: string;
|