@argent/x-shared 1.44.2 → 1.44.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +1 -1
- package/dist/index.js +24 -24
- package/dist/src/features/simulation/activity/schema.cjs +1 -1
- package/dist/src/features/simulation/activity/schema.d.ts +78 -78
- package/dist/src/features/simulation/activity/schema.js +10 -10
- package/dist/src/features/swap/services/implementation.cjs +1 -1
- package/dist/src/features/swap/services/implementation.js +11 -11
- package/dist/src/staking/schema.cjs +1 -1
- package/dist/src/staking/schema.d.ts +19 -19
- package/dist/src/staking/schema.js +4 -4
- package/dist/src/tokens/service/implementation.d.ts +5 -5
- package/dist/src/tokens/service/types/backend.model.cjs +1 -1
- package/dist/src/tokens/service/types/backend.model.d.ts +200 -200
- package/dist/src/tokens/service/types/backend.model.js +7 -7
- package/package.json +1 -1
|
@@ -935,7 +935,7 @@ export declare const apiStrkDelegatedStakingSchema: z.ZodObject<z.objectUtil.ext
|
|
|
935
935
|
}, {
|
|
936
936
|
investmentId: z.ZodString;
|
|
937
937
|
data: z.ZodObject<{
|
|
938
|
-
|
|
938
|
+
stakerInfo: z.ZodObject<{
|
|
939
939
|
name: z.ZodOptional<z.ZodString>;
|
|
940
940
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
941
941
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -962,7 +962,7 @@ export declare const apiStrkDelegatedStakingSchema: z.ZodObject<z.objectUtil.ext
|
|
|
962
962
|
}>>;
|
|
963
963
|
apy: z.ZodOptional<z.ZodString>;
|
|
964
964
|
}, "strip", z.ZodTypeAny, {
|
|
965
|
-
|
|
965
|
+
stakerInfo: {
|
|
966
966
|
address: `0x${string}`;
|
|
967
967
|
name?: string | undefined;
|
|
968
968
|
iconUrl?: string | undefined;
|
|
@@ -975,7 +975,7 @@ export declare const apiStrkDelegatedStakingSchema: z.ZodObject<z.objectUtil.ext
|
|
|
975
975
|
withdrawableAfter: number;
|
|
976
976
|
} | undefined;
|
|
977
977
|
}, {
|
|
978
|
-
|
|
978
|
+
stakerInfo: {
|
|
979
979
|
address: string;
|
|
980
980
|
name?: string | undefined;
|
|
981
981
|
iconUrl?: string | undefined;
|
|
@@ -990,7 +990,7 @@ export declare const apiStrkDelegatedStakingSchema: z.ZodObject<z.objectUtil.ext
|
|
|
990
990
|
}>;
|
|
991
991
|
}>, "strip", z.ZodTypeAny, {
|
|
992
992
|
data: {
|
|
993
|
-
|
|
993
|
+
stakerInfo: {
|
|
994
994
|
address: `0x${string}`;
|
|
995
995
|
name?: string | undefined;
|
|
996
996
|
iconUrl?: string | undefined;
|
|
@@ -1009,7 +1009,7 @@ export declare const apiStrkDelegatedStakingSchema: z.ZodObject<z.objectUtil.ext
|
|
|
1009
1009
|
tokenAddress?: `0x${string}` | undefined;
|
|
1010
1010
|
}, {
|
|
1011
1011
|
data: {
|
|
1012
|
-
|
|
1012
|
+
stakerInfo: {
|
|
1013
1013
|
address: string;
|
|
1014
1014
|
name?: string | undefined;
|
|
1015
1015
|
iconUrl?: string | undefined;
|
|
@@ -1035,7 +1035,7 @@ export declare const apiStrkDelegatedStakingPositionsSchema: z.ZodArray<z.ZodObj
|
|
|
1035
1035
|
}, {
|
|
1036
1036
|
investmentId: z.ZodString;
|
|
1037
1037
|
data: z.ZodObject<{
|
|
1038
|
-
|
|
1038
|
+
stakerInfo: z.ZodObject<{
|
|
1039
1039
|
name: z.ZodOptional<z.ZodString>;
|
|
1040
1040
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
1041
1041
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -1062,7 +1062,7 @@ export declare const apiStrkDelegatedStakingPositionsSchema: z.ZodArray<z.ZodObj
|
|
|
1062
1062
|
}>>;
|
|
1063
1063
|
apy: z.ZodOptional<z.ZodString>;
|
|
1064
1064
|
}, "strip", z.ZodTypeAny, {
|
|
1065
|
-
|
|
1065
|
+
stakerInfo: {
|
|
1066
1066
|
address: `0x${string}`;
|
|
1067
1067
|
name?: string | undefined;
|
|
1068
1068
|
iconUrl?: string | undefined;
|
|
@@ -1075,7 +1075,7 @@ export declare const apiStrkDelegatedStakingPositionsSchema: z.ZodArray<z.ZodObj
|
|
|
1075
1075
|
withdrawableAfter: number;
|
|
1076
1076
|
} | undefined;
|
|
1077
1077
|
}, {
|
|
1078
|
-
|
|
1078
|
+
stakerInfo: {
|
|
1079
1079
|
address: string;
|
|
1080
1080
|
name?: string | undefined;
|
|
1081
1081
|
iconUrl?: string | undefined;
|
|
@@ -1090,7 +1090,7 @@ export declare const apiStrkDelegatedStakingPositionsSchema: z.ZodArray<z.ZodObj
|
|
|
1090
1090
|
}>;
|
|
1091
1091
|
}>, "strip", z.ZodTypeAny, {
|
|
1092
1092
|
data: {
|
|
1093
|
-
|
|
1093
|
+
stakerInfo: {
|
|
1094
1094
|
address: `0x${string}`;
|
|
1095
1095
|
name?: string | undefined;
|
|
1096
1096
|
iconUrl?: string | undefined;
|
|
@@ -1109,7 +1109,7 @@ export declare const apiStrkDelegatedStakingPositionsSchema: z.ZodArray<z.ZodObj
|
|
|
1109
1109
|
tokenAddress?: `0x${string}` | undefined;
|
|
1110
1110
|
}, {
|
|
1111
1111
|
data: {
|
|
1112
|
-
|
|
1112
|
+
stakerInfo: {
|
|
1113
1113
|
address: string;
|
|
1114
1114
|
name?: string | undefined;
|
|
1115
1115
|
iconUrl?: string | undefined;
|
|
@@ -1391,7 +1391,7 @@ export declare const apiDefiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[
|
|
|
1391
1391
|
}, {
|
|
1392
1392
|
investmentId: z.ZodString;
|
|
1393
1393
|
data: z.ZodObject<{
|
|
1394
|
-
|
|
1394
|
+
stakerInfo: z.ZodObject<{
|
|
1395
1395
|
name: z.ZodOptional<z.ZodString>;
|
|
1396
1396
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
1397
1397
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -1418,7 +1418,7 @@ export declare const apiDefiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[
|
|
|
1418
1418
|
}>>;
|
|
1419
1419
|
apy: z.ZodOptional<z.ZodString>;
|
|
1420
1420
|
}, "strip", z.ZodTypeAny, {
|
|
1421
|
-
|
|
1421
|
+
stakerInfo: {
|
|
1422
1422
|
address: `0x${string}`;
|
|
1423
1423
|
name?: string | undefined;
|
|
1424
1424
|
iconUrl?: string | undefined;
|
|
@@ -1431,7 +1431,7 @@ export declare const apiDefiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[
|
|
|
1431
1431
|
withdrawableAfter: number;
|
|
1432
1432
|
} | undefined;
|
|
1433
1433
|
}, {
|
|
1434
|
-
|
|
1434
|
+
stakerInfo: {
|
|
1435
1435
|
address: string;
|
|
1436
1436
|
name?: string | undefined;
|
|
1437
1437
|
iconUrl?: string | undefined;
|
|
@@ -1446,7 +1446,7 @@ export declare const apiDefiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[
|
|
|
1446
1446
|
}>;
|
|
1447
1447
|
}>, "strip", z.ZodTypeAny, {
|
|
1448
1448
|
data: {
|
|
1449
|
-
|
|
1449
|
+
stakerInfo: {
|
|
1450
1450
|
address: `0x${string}`;
|
|
1451
1451
|
name?: string | undefined;
|
|
1452
1452
|
iconUrl?: string | undefined;
|
|
@@ -1465,7 +1465,7 @@ export declare const apiDefiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[
|
|
|
1465
1465
|
tokenAddress?: `0x${string}` | undefined;
|
|
1466
1466
|
}, {
|
|
1467
1467
|
data: {
|
|
1468
|
-
|
|
1468
|
+
stakerInfo: {
|
|
1469
1469
|
address: string;
|
|
1470
1470
|
name?: string | undefined;
|
|
1471
1471
|
iconUrl?: string | undefined;
|
|
@@ -1748,7 +1748,7 @@ export declare const apiDefiDecompositionProducts: z.ZodArray<z.ZodUnion<[z.ZodU
|
|
|
1748
1748
|
}, {
|
|
1749
1749
|
investmentId: z.ZodString;
|
|
1750
1750
|
data: z.ZodObject<{
|
|
1751
|
-
|
|
1751
|
+
stakerInfo: z.ZodObject<{
|
|
1752
1752
|
name: z.ZodOptional<z.ZodString>;
|
|
1753
1753
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
1754
1754
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -1775,7 +1775,7 @@ export declare const apiDefiDecompositionProducts: z.ZodArray<z.ZodUnion<[z.ZodU
|
|
|
1775
1775
|
}>>;
|
|
1776
1776
|
apy: z.ZodOptional<z.ZodString>;
|
|
1777
1777
|
}, "strip", z.ZodTypeAny, {
|
|
1778
|
-
|
|
1778
|
+
stakerInfo: {
|
|
1779
1779
|
address: `0x${string}`;
|
|
1780
1780
|
name?: string | undefined;
|
|
1781
1781
|
iconUrl?: string | undefined;
|
|
@@ -1788,7 +1788,7 @@ export declare const apiDefiDecompositionProducts: z.ZodArray<z.ZodUnion<[z.ZodU
|
|
|
1788
1788
|
withdrawableAfter: number;
|
|
1789
1789
|
} | undefined;
|
|
1790
1790
|
}, {
|
|
1791
|
-
|
|
1791
|
+
stakerInfo: {
|
|
1792
1792
|
address: string;
|
|
1793
1793
|
name?: string | undefined;
|
|
1794
1794
|
iconUrl?: string | undefined;
|
|
@@ -1803,7 +1803,7 @@ export declare const apiDefiDecompositionProducts: z.ZodArray<z.ZodUnion<[z.ZodU
|
|
|
1803
1803
|
}>;
|
|
1804
1804
|
}>, "strip", z.ZodTypeAny, {
|
|
1805
1805
|
data: {
|
|
1806
|
-
|
|
1806
|
+
stakerInfo: {
|
|
1807
1807
|
address: `0x${string}`;
|
|
1808
1808
|
name?: string | undefined;
|
|
1809
1809
|
iconUrl?: string | undefined;
|
|
@@ -1822,7 +1822,7 @@ export declare const apiDefiDecompositionProducts: z.ZodArray<z.ZodUnion<[z.ZodU
|
|
|
1822
1822
|
tokenAddress?: `0x${string}` | undefined;
|
|
1823
1823
|
}, {
|
|
1824
1824
|
data: {
|
|
1825
|
-
|
|
1825
|
+
stakerInfo: {
|
|
1826
1826
|
address: string;
|
|
1827
1827
|
name?: string | undefined;
|
|
1828
1828
|
iconUrl?: string | undefined;
|
|
@@ -2119,7 +2119,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2119
2119
|
}, {
|
|
2120
2120
|
investmentId: z.ZodString;
|
|
2121
2121
|
data: z.ZodObject<{
|
|
2122
|
-
|
|
2122
|
+
stakerInfo: z.ZodObject<{
|
|
2123
2123
|
name: z.ZodOptional<z.ZodString>;
|
|
2124
2124
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
2125
2125
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -2146,7 +2146,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2146
2146
|
}>>;
|
|
2147
2147
|
apy: z.ZodOptional<z.ZodString>;
|
|
2148
2148
|
}, "strip", z.ZodTypeAny, {
|
|
2149
|
-
|
|
2149
|
+
stakerInfo: {
|
|
2150
2150
|
address: `0x${string}`;
|
|
2151
2151
|
name?: string | undefined;
|
|
2152
2152
|
iconUrl?: string | undefined;
|
|
@@ -2159,7 +2159,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2159
2159
|
withdrawableAfter: number;
|
|
2160
2160
|
} | undefined;
|
|
2161
2161
|
}, {
|
|
2162
|
-
|
|
2162
|
+
stakerInfo: {
|
|
2163
2163
|
address: string;
|
|
2164
2164
|
name?: string | undefined;
|
|
2165
2165
|
iconUrl?: string | undefined;
|
|
@@ -2174,7 +2174,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2174
2174
|
}>;
|
|
2175
2175
|
}>, "strip", z.ZodTypeAny, {
|
|
2176
2176
|
data: {
|
|
2177
|
-
|
|
2177
|
+
stakerInfo: {
|
|
2178
2178
|
address: `0x${string}`;
|
|
2179
2179
|
name?: string | undefined;
|
|
2180
2180
|
iconUrl?: string | undefined;
|
|
@@ -2193,7 +2193,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2193
2193
|
tokenAddress?: `0x${string}` | undefined;
|
|
2194
2194
|
}, {
|
|
2195
2195
|
data: {
|
|
2196
|
-
|
|
2196
|
+
stakerInfo: {
|
|
2197
2197
|
address: string;
|
|
2198
2198
|
name?: string | undefined;
|
|
2199
2199
|
iconUrl?: string | undefined;
|
|
@@ -2490,7 +2490,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2490
2490
|
}, {
|
|
2491
2491
|
investmentId: z.ZodString;
|
|
2492
2492
|
data: z.ZodObject<{
|
|
2493
|
-
|
|
2493
|
+
stakerInfo: z.ZodObject<{
|
|
2494
2494
|
name: z.ZodOptional<z.ZodString>;
|
|
2495
2495
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
2496
2496
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -2517,7 +2517,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2517
2517
|
}>>;
|
|
2518
2518
|
apy: z.ZodOptional<z.ZodString>;
|
|
2519
2519
|
}, "strip", z.ZodTypeAny, {
|
|
2520
|
-
|
|
2520
|
+
stakerInfo: {
|
|
2521
2521
|
address: `0x${string}`;
|
|
2522
2522
|
name?: string | undefined;
|
|
2523
2523
|
iconUrl?: string | undefined;
|
|
@@ -2530,7 +2530,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2530
2530
|
withdrawableAfter: number;
|
|
2531
2531
|
} | undefined;
|
|
2532
2532
|
}, {
|
|
2533
|
-
|
|
2533
|
+
stakerInfo: {
|
|
2534
2534
|
address: string;
|
|
2535
2535
|
name?: string | undefined;
|
|
2536
2536
|
iconUrl?: string | undefined;
|
|
@@ -2545,7 +2545,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2545
2545
|
}>;
|
|
2546
2546
|
}>, "strip", z.ZodTypeAny, {
|
|
2547
2547
|
data: {
|
|
2548
|
-
|
|
2548
|
+
stakerInfo: {
|
|
2549
2549
|
address: `0x${string}`;
|
|
2550
2550
|
name?: string | undefined;
|
|
2551
2551
|
iconUrl?: string | undefined;
|
|
@@ -2564,7 +2564,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2564
2564
|
tokenAddress?: `0x${string}` | undefined;
|
|
2565
2565
|
}, {
|
|
2566
2566
|
data: {
|
|
2567
|
-
|
|
2567
|
+
stakerInfo: {
|
|
2568
2568
|
address: string;
|
|
2569
2569
|
name?: string | undefined;
|
|
2570
2570
|
iconUrl?: string | undefined;
|
|
@@ -2861,7 +2861,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2861
2861
|
}, {
|
|
2862
2862
|
investmentId: z.ZodString;
|
|
2863
2863
|
data: z.ZodObject<{
|
|
2864
|
-
|
|
2864
|
+
stakerInfo: z.ZodObject<{
|
|
2865
2865
|
name: z.ZodOptional<z.ZodString>;
|
|
2866
2866
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
2867
2867
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -2888,7 +2888,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2888
2888
|
}>>;
|
|
2889
2889
|
apy: z.ZodOptional<z.ZodString>;
|
|
2890
2890
|
}, "strip", z.ZodTypeAny, {
|
|
2891
|
-
|
|
2891
|
+
stakerInfo: {
|
|
2892
2892
|
address: `0x${string}`;
|
|
2893
2893
|
name?: string | undefined;
|
|
2894
2894
|
iconUrl?: string | undefined;
|
|
@@ -2901,7 +2901,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2901
2901
|
withdrawableAfter: number;
|
|
2902
2902
|
} | undefined;
|
|
2903
2903
|
}, {
|
|
2904
|
-
|
|
2904
|
+
stakerInfo: {
|
|
2905
2905
|
address: string;
|
|
2906
2906
|
name?: string | undefined;
|
|
2907
2907
|
iconUrl?: string | undefined;
|
|
@@ -2916,7 +2916,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2916
2916
|
}>;
|
|
2917
2917
|
}>, "strip", z.ZodTypeAny, {
|
|
2918
2918
|
data: {
|
|
2919
|
-
|
|
2919
|
+
stakerInfo: {
|
|
2920
2920
|
address: `0x${string}`;
|
|
2921
2921
|
name?: string | undefined;
|
|
2922
2922
|
iconUrl?: string | undefined;
|
|
@@ -2935,7 +2935,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
2935
2935
|
tokenAddress?: `0x${string}` | undefined;
|
|
2936
2936
|
}, {
|
|
2937
2937
|
data: {
|
|
2938
|
-
|
|
2938
|
+
stakerInfo: {
|
|
2939
2939
|
address: string;
|
|
2940
2940
|
name?: string | undefined;
|
|
2941
2941
|
iconUrl?: string | undefined;
|
|
@@ -3232,7 +3232,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3232
3232
|
}, {
|
|
3233
3233
|
investmentId: z.ZodString;
|
|
3234
3234
|
data: z.ZodObject<{
|
|
3235
|
-
|
|
3235
|
+
stakerInfo: z.ZodObject<{
|
|
3236
3236
|
name: z.ZodOptional<z.ZodString>;
|
|
3237
3237
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
3238
3238
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -3259,7 +3259,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3259
3259
|
}>>;
|
|
3260
3260
|
apy: z.ZodOptional<z.ZodString>;
|
|
3261
3261
|
}, "strip", z.ZodTypeAny, {
|
|
3262
|
-
|
|
3262
|
+
stakerInfo: {
|
|
3263
3263
|
address: `0x${string}`;
|
|
3264
3264
|
name?: string | undefined;
|
|
3265
3265
|
iconUrl?: string | undefined;
|
|
@@ -3272,7 +3272,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3272
3272
|
withdrawableAfter: number;
|
|
3273
3273
|
} | undefined;
|
|
3274
3274
|
}, {
|
|
3275
|
-
|
|
3275
|
+
stakerInfo: {
|
|
3276
3276
|
address: string;
|
|
3277
3277
|
name?: string | undefined;
|
|
3278
3278
|
iconUrl?: string | undefined;
|
|
@@ -3287,7 +3287,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3287
3287
|
}>;
|
|
3288
3288
|
}>, "strip", z.ZodTypeAny, {
|
|
3289
3289
|
data: {
|
|
3290
|
-
|
|
3290
|
+
stakerInfo: {
|
|
3291
3291
|
address: `0x${string}`;
|
|
3292
3292
|
name?: string | undefined;
|
|
3293
3293
|
iconUrl?: string | undefined;
|
|
@@ -3306,7 +3306,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3306
3306
|
tokenAddress?: `0x${string}` | undefined;
|
|
3307
3307
|
}, {
|
|
3308
3308
|
data: {
|
|
3309
|
-
|
|
3309
|
+
stakerInfo: {
|
|
3310
3310
|
address: string;
|
|
3311
3311
|
name?: string | undefined;
|
|
3312
3312
|
iconUrl?: string | undefined;
|
|
@@ -3603,7 +3603,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3603
3603
|
}, {
|
|
3604
3604
|
investmentId: z.ZodString;
|
|
3605
3605
|
data: z.ZodObject<{
|
|
3606
|
-
|
|
3606
|
+
stakerInfo: z.ZodObject<{
|
|
3607
3607
|
name: z.ZodOptional<z.ZodString>;
|
|
3608
3608
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
3609
3609
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -3630,7 +3630,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3630
3630
|
}>>;
|
|
3631
3631
|
apy: z.ZodOptional<z.ZodString>;
|
|
3632
3632
|
}, "strip", z.ZodTypeAny, {
|
|
3633
|
-
|
|
3633
|
+
stakerInfo: {
|
|
3634
3634
|
address: `0x${string}`;
|
|
3635
3635
|
name?: string | undefined;
|
|
3636
3636
|
iconUrl?: string | undefined;
|
|
@@ -3643,7 +3643,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3643
3643
|
withdrawableAfter: number;
|
|
3644
3644
|
} | undefined;
|
|
3645
3645
|
}, {
|
|
3646
|
-
|
|
3646
|
+
stakerInfo: {
|
|
3647
3647
|
address: string;
|
|
3648
3648
|
name?: string | undefined;
|
|
3649
3649
|
iconUrl?: string | undefined;
|
|
@@ -3658,7 +3658,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3658
3658
|
}>;
|
|
3659
3659
|
}>, "strip", z.ZodTypeAny, {
|
|
3660
3660
|
data: {
|
|
3661
|
-
|
|
3661
|
+
stakerInfo: {
|
|
3662
3662
|
address: `0x${string}`;
|
|
3663
3663
|
name?: string | undefined;
|
|
3664
3664
|
iconUrl?: string | undefined;
|
|
@@ -3677,7 +3677,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3677
3677
|
tokenAddress?: `0x${string}` | undefined;
|
|
3678
3678
|
}, {
|
|
3679
3679
|
data: {
|
|
3680
|
-
|
|
3680
|
+
stakerInfo: {
|
|
3681
3681
|
address: string;
|
|
3682
3682
|
name?: string | undefined;
|
|
3683
3683
|
iconUrl?: string | undefined;
|
|
@@ -3975,7 +3975,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
3975
3975
|
}, {
|
|
3976
3976
|
investmentId: z.ZodString;
|
|
3977
3977
|
data: z.ZodObject<{
|
|
3978
|
-
|
|
3978
|
+
stakerInfo: z.ZodObject<{
|
|
3979
3979
|
name: z.ZodOptional<z.ZodString>;
|
|
3980
3980
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
3981
3981
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -4002,7 +4002,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4002
4002
|
}>>;
|
|
4003
4003
|
apy: z.ZodOptional<z.ZodString>;
|
|
4004
4004
|
}, "strip", z.ZodTypeAny, {
|
|
4005
|
-
|
|
4005
|
+
stakerInfo: {
|
|
4006
4006
|
address: `0x${string}`;
|
|
4007
4007
|
name?: string | undefined;
|
|
4008
4008
|
iconUrl?: string | undefined;
|
|
@@ -4015,7 +4015,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4015
4015
|
withdrawableAfter: number;
|
|
4016
4016
|
} | undefined;
|
|
4017
4017
|
}, {
|
|
4018
|
-
|
|
4018
|
+
stakerInfo: {
|
|
4019
4019
|
address: string;
|
|
4020
4020
|
name?: string | undefined;
|
|
4021
4021
|
iconUrl?: string | undefined;
|
|
@@ -4030,7 +4030,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4030
4030
|
}>;
|
|
4031
4031
|
}>, "strip", z.ZodTypeAny, {
|
|
4032
4032
|
data: {
|
|
4033
|
-
|
|
4033
|
+
stakerInfo: {
|
|
4034
4034
|
address: `0x${string}`;
|
|
4035
4035
|
name?: string | undefined;
|
|
4036
4036
|
iconUrl?: string | undefined;
|
|
@@ -4049,7 +4049,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4049
4049
|
tokenAddress?: `0x${string}` | undefined;
|
|
4050
4050
|
}, {
|
|
4051
4051
|
data: {
|
|
4052
|
-
|
|
4052
|
+
stakerInfo: {
|
|
4053
4053
|
address: string;
|
|
4054
4054
|
name?: string | undefined;
|
|
4055
4055
|
iconUrl?: string | undefined;
|
|
@@ -4346,7 +4346,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4346
4346
|
}, {
|
|
4347
4347
|
investmentId: z.ZodString;
|
|
4348
4348
|
data: z.ZodObject<{
|
|
4349
|
-
|
|
4349
|
+
stakerInfo: z.ZodObject<{
|
|
4350
4350
|
name: z.ZodOptional<z.ZodString>;
|
|
4351
4351
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
4352
4352
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -4373,7 +4373,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4373
4373
|
}>>;
|
|
4374
4374
|
apy: z.ZodOptional<z.ZodString>;
|
|
4375
4375
|
}, "strip", z.ZodTypeAny, {
|
|
4376
|
-
|
|
4376
|
+
stakerInfo: {
|
|
4377
4377
|
address: `0x${string}`;
|
|
4378
4378
|
name?: string | undefined;
|
|
4379
4379
|
iconUrl?: string | undefined;
|
|
@@ -4386,7 +4386,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4386
4386
|
withdrawableAfter: number;
|
|
4387
4387
|
} | undefined;
|
|
4388
4388
|
}, {
|
|
4389
|
-
|
|
4389
|
+
stakerInfo: {
|
|
4390
4390
|
address: string;
|
|
4391
4391
|
name?: string | undefined;
|
|
4392
4392
|
iconUrl?: string | undefined;
|
|
@@ -4401,7 +4401,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4401
4401
|
}>;
|
|
4402
4402
|
}>, "strip", z.ZodTypeAny, {
|
|
4403
4403
|
data: {
|
|
4404
|
-
|
|
4404
|
+
stakerInfo: {
|
|
4405
4405
|
address: `0x${string}`;
|
|
4406
4406
|
name?: string | undefined;
|
|
4407
4407
|
iconUrl?: string | undefined;
|
|
@@ -4420,7 +4420,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4420
4420
|
tokenAddress?: `0x${string}` | undefined;
|
|
4421
4421
|
}, {
|
|
4422
4422
|
data: {
|
|
4423
|
-
|
|
4423
|
+
stakerInfo: {
|
|
4424
4424
|
address: string;
|
|
4425
4425
|
name?: string | undefined;
|
|
4426
4426
|
iconUrl?: string | undefined;
|
|
@@ -4717,7 +4717,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4717
4717
|
}, {
|
|
4718
4718
|
investmentId: z.ZodString;
|
|
4719
4719
|
data: z.ZodObject<{
|
|
4720
|
-
|
|
4720
|
+
stakerInfo: z.ZodObject<{
|
|
4721
4721
|
name: z.ZodOptional<z.ZodString>;
|
|
4722
4722
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
4723
4723
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -4744,7 +4744,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4744
4744
|
}>>;
|
|
4745
4745
|
apy: z.ZodOptional<z.ZodString>;
|
|
4746
4746
|
}, "strip", z.ZodTypeAny, {
|
|
4747
|
-
|
|
4747
|
+
stakerInfo: {
|
|
4748
4748
|
address: `0x${string}`;
|
|
4749
4749
|
name?: string | undefined;
|
|
4750
4750
|
iconUrl?: string | undefined;
|
|
@@ -4757,7 +4757,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4757
4757
|
withdrawableAfter: number;
|
|
4758
4758
|
} | undefined;
|
|
4759
4759
|
}, {
|
|
4760
|
-
|
|
4760
|
+
stakerInfo: {
|
|
4761
4761
|
address: string;
|
|
4762
4762
|
name?: string | undefined;
|
|
4763
4763
|
iconUrl?: string | undefined;
|
|
@@ -4772,7 +4772,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4772
4772
|
}>;
|
|
4773
4773
|
}>, "strip", z.ZodTypeAny, {
|
|
4774
4774
|
data: {
|
|
4775
|
-
|
|
4775
|
+
stakerInfo: {
|
|
4776
4776
|
address: `0x${string}`;
|
|
4777
4777
|
name?: string | undefined;
|
|
4778
4778
|
iconUrl?: string | undefined;
|
|
@@ -4791,7 +4791,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
4791
4791
|
tokenAddress?: `0x${string}` | undefined;
|
|
4792
4792
|
}, {
|
|
4793
4793
|
data: {
|
|
4794
|
-
|
|
4794
|
+
stakerInfo: {
|
|
4795
4795
|
address: string;
|
|
4796
4796
|
name?: string | undefined;
|
|
4797
4797
|
iconUrl?: string | undefined;
|
|
@@ -5088,7 +5088,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5088
5088
|
}, {
|
|
5089
5089
|
investmentId: z.ZodString;
|
|
5090
5090
|
data: z.ZodObject<{
|
|
5091
|
-
|
|
5091
|
+
stakerInfo: z.ZodObject<{
|
|
5092
5092
|
name: z.ZodOptional<z.ZodString>;
|
|
5093
5093
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
5094
5094
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -5115,7 +5115,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5115
5115
|
}>>;
|
|
5116
5116
|
apy: z.ZodOptional<z.ZodString>;
|
|
5117
5117
|
}, "strip", z.ZodTypeAny, {
|
|
5118
|
-
|
|
5118
|
+
stakerInfo: {
|
|
5119
5119
|
address: `0x${string}`;
|
|
5120
5120
|
name?: string | undefined;
|
|
5121
5121
|
iconUrl?: string | undefined;
|
|
@@ -5128,7 +5128,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5128
5128
|
withdrawableAfter: number;
|
|
5129
5129
|
} | undefined;
|
|
5130
5130
|
}, {
|
|
5131
|
-
|
|
5131
|
+
stakerInfo: {
|
|
5132
5132
|
address: string;
|
|
5133
5133
|
name?: string | undefined;
|
|
5134
5134
|
iconUrl?: string | undefined;
|
|
@@ -5143,7 +5143,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5143
5143
|
}>;
|
|
5144
5144
|
}>, "strip", z.ZodTypeAny, {
|
|
5145
5145
|
data: {
|
|
5146
|
-
|
|
5146
|
+
stakerInfo: {
|
|
5147
5147
|
address: `0x${string}`;
|
|
5148
5148
|
name?: string | undefined;
|
|
5149
5149
|
iconUrl?: string | undefined;
|
|
@@ -5162,7 +5162,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5162
5162
|
tokenAddress?: `0x${string}` | undefined;
|
|
5163
5163
|
}, {
|
|
5164
5164
|
data: {
|
|
5165
|
-
|
|
5165
|
+
stakerInfo: {
|
|
5166
5166
|
address: string;
|
|
5167
5167
|
name?: string | undefined;
|
|
5168
5168
|
iconUrl?: string | undefined;
|
|
@@ -5459,7 +5459,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5459
5459
|
}, {
|
|
5460
5460
|
investmentId: z.ZodString;
|
|
5461
5461
|
data: z.ZodObject<{
|
|
5462
|
-
|
|
5462
|
+
stakerInfo: z.ZodObject<{
|
|
5463
5463
|
name: z.ZodOptional<z.ZodString>;
|
|
5464
5464
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
5465
5465
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -5486,7 +5486,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5486
5486
|
}>>;
|
|
5487
5487
|
apy: z.ZodOptional<z.ZodString>;
|
|
5488
5488
|
}, "strip", z.ZodTypeAny, {
|
|
5489
|
-
|
|
5489
|
+
stakerInfo: {
|
|
5490
5490
|
address: `0x${string}`;
|
|
5491
5491
|
name?: string | undefined;
|
|
5492
5492
|
iconUrl?: string | undefined;
|
|
@@ -5499,7 +5499,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5499
5499
|
withdrawableAfter: number;
|
|
5500
5500
|
} | undefined;
|
|
5501
5501
|
}, {
|
|
5502
|
-
|
|
5502
|
+
stakerInfo: {
|
|
5503
5503
|
address: string;
|
|
5504
5504
|
name?: string | undefined;
|
|
5505
5505
|
iconUrl?: string | undefined;
|
|
@@ -5514,7 +5514,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5514
5514
|
}>;
|
|
5515
5515
|
}>, "strip", z.ZodTypeAny, {
|
|
5516
5516
|
data: {
|
|
5517
|
-
|
|
5517
|
+
stakerInfo: {
|
|
5518
5518
|
address: `0x${string}`;
|
|
5519
5519
|
name?: string | undefined;
|
|
5520
5520
|
iconUrl?: string | undefined;
|
|
@@ -5533,7 +5533,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
|
|
|
5533
5533
|
tokenAddress?: `0x${string}` | undefined;
|
|
5534
5534
|
}, {
|
|
5535
5535
|
data: {
|
|
5536
|
-
|
|
5536
|
+
stakerInfo: {
|
|
5537
5537
|
address: string;
|
|
5538
5538
|
name?: string | undefined;
|
|
5539
5539
|
iconUrl?: string | undefined;
|
|
@@ -5834,7 +5834,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5834
5834
|
}, {
|
|
5835
5835
|
investmentId: z.ZodString;
|
|
5836
5836
|
data: z.ZodObject<{
|
|
5837
|
-
|
|
5837
|
+
stakerInfo: z.ZodObject<{
|
|
5838
5838
|
name: z.ZodOptional<z.ZodString>;
|
|
5839
5839
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
5840
5840
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -5861,7 +5861,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5861
5861
|
}>>;
|
|
5862
5862
|
apy: z.ZodOptional<z.ZodString>;
|
|
5863
5863
|
}, "strip", z.ZodTypeAny, {
|
|
5864
|
-
|
|
5864
|
+
stakerInfo: {
|
|
5865
5865
|
address: `0x${string}`;
|
|
5866
5866
|
name?: string | undefined;
|
|
5867
5867
|
iconUrl?: string | undefined;
|
|
@@ -5874,7 +5874,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5874
5874
|
withdrawableAfter: number;
|
|
5875
5875
|
} | undefined;
|
|
5876
5876
|
}, {
|
|
5877
|
-
|
|
5877
|
+
stakerInfo: {
|
|
5878
5878
|
address: string;
|
|
5879
5879
|
name?: string | undefined;
|
|
5880
5880
|
iconUrl?: string | undefined;
|
|
@@ -5889,7 +5889,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5889
5889
|
}>;
|
|
5890
5890
|
}>, "strip", z.ZodTypeAny, {
|
|
5891
5891
|
data: {
|
|
5892
|
-
|
|
5892
|
+
stakerInfo: {
|
|
5893
5893
|
address: `0x${string}`;
|
|
5894
5894
|
name?: string | undefined;
|
|
5895
5895
|
iconUrl?: string | undefined;
|
|
@@ -5908,7 +5908,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
5908
5908
|
tokenAddress?: `0x${string}` | undefined;
|
|
5909
5909
|
}, {
|
|
5910
5910
|
data: {
|
|
5911
|
-
|
|
5911
|
+
stakerInfo: {
|
|
5912
5912
|
address: string;
|
|
5913
5913
|
name?: string | undefined;
|
|
5914
5914
|
iconUrl?: string | undefined;
|
|
@@ -6205,7 +6205,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6205
6205
|
}, {
|
|
6206
6206
|
investmentId: z.ZodString;
|
|
6207
6207
|
data: z.ZodObject<{
|
|
6208
|
-
|
|
6208
|
+
stakerInfo: z.ZodObject<{
|
|
6209
6209
|
name: z.ZodOptional<z.ZodString>;
|
|
6210
6210
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
6211
6211
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -6232,7 +6232,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6232
6232
|
}>>;
|
|
6233
6233
|
apy: z.ZodOptional<z.ZodString>;
|
|
6234
6234
|
}, "strip", z.ZodTypeAny, {
|
|
6235
|
-
|
|
6235
|
+
stakerInfo: {
|
|
6236
6236
|
address: `0x${string}`;
|
|
6237
6237
|
name?: string | undefined;
|
|
6238
6238
|
iconUrl?: string | undefined;
|
|
@@ -6245,7 +6245,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6245
6245
|
withdrawableAfter: number;
|
|
6246
6246
|
} | undefined;
|
|
6247
6247
|
}, {
|
|
6248
|
-
|
|
6248
|
+
stakerInfo: {
|
|
6249
6249
|
address: string;
|
|
6250
6250
|
name?: string | undefined;
|
|
6251
6251
|
iconUrl?: string | undefined;
|
|
@@ -6260,7 +6260,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6260
6260
|
}>;
|
|
6261
6261
|
}>, "strip", z.ZodTypeAny, {
|
|
6262
6262
|
data: {
|
|
6263
|
-
|
|
6263
|
+
stakerInfo: {
|
|
6264
6264
|
address: `0x${string}`;
|
|
6265
6265
|
name?: string | undefined;
|
|
6266
6266
|
iconUrl?: string | undefined;
|
|
@@ -6279,7 +6279,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6279
6279
|
tokenAddress?: `0x${string}` | undefined;
|
|
6280
6280
|
}, {
|
|
6281
6281
|
data: {
|
|
6282
|
-
|
|
6282
|
+
stakerInfo: {
|
|
6283
6283
|
address: string;
|
|
6284
6284
|
name?: string | undefined;
|
|
6285
6285
|
iconUrl?: string | undefined;
|
|
@@ -6576,7 +6576,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6576
6576
|
}, {
|
|
6577
6577
|
investmentId: z.ZodString;
|
|
6578
6578
|
data: z.ZodObject<{
|
|
6579
|
-
|
|
6579
|
+
stakerInfo: z.ZodObject<{
|
|
6580
6580
|
name: z.ZodOptional<z.ZodString>;
|
|
6581
6581
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
6582
6582
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -6603,7 +6603,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6603
6603
|
}>>;
|
|
6604
6604
|
apy: z.ZodOptional<z.ZodString>;
|
|
6605
6605
|
}, "strip", z.ZodTypeAny, {
|
|
6606
|
-
|
|
6606
|
+
stakerInfo: {
|
|
6607
6607
|
address: `0x${string}`;
|
|
6608
6608
|
name?: string | undefined;
|
|
6609
6609
|
iconUrl?: string | undefined;
|
|
@@ -6616,7 +6616,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6616
6616
|
withdrawableAfter: number;
|
|
6617
6617
|
} | undefined;
|
|
6618
6618
|
}, {
|
|
6619
|
-
|
|
6619
|
+
stakerInfo: {
|
|
6620
6620
|
address: string;
|
|
6621
6621
|
name?: string | undefined;
|
|
6622
6622
|
iconUrl?: string | undefined;
|
|
@@ -6631,7 +6631,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6631
6631
|
}>;
|
|
6632
6632
|
}>, "strip", z.ZodTypeAny, {
|
|
6633
6633
|
data: {
|
|
6634
|
-
|
|
6634
|
+
stakerInfo: {
|
|
6635
6635
|
address: `0x${string}`;
|
|
6636
6636
|
name?: string | undefined;
|
|
6637
6637
|
iconUrl?: string | undefined;
|
|
@@ -6650,7 +6650,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6650
6650
|
tokenAddress?: `0x${string}` | undefined;
|
|
6651
6651
|
}, {
|
|
6652
6652
|
data: {
|
|
6653
|
-
|
|
6653
|
+
stakerInfo: {
|
|
6654
6654
|
address: string;
|
|
6655
6655
|
name?: string | undefined;
|
|
6656
6656
|
iconUrl?: string | undefined;
|
|
@@ -6947,7 +6947,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6947
6947
|
}, {
|
|
6948
6948
|
investmentId: z.ZodString;
|
|
6949
6949
|
data: z.ZodObject<{
|
|
6950
|
-
|
|
6950
|
+
stakerInfo: z.ZodObject<{
|
|
6951
6951
|
name: z.ZodOptional<z.ZodString>;
|
|
6952
6952
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
6953
6953
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -6974,7 +6974,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6974
6974
|
}>>;
|
|
6975
6975
|
apy: z.ZodOptional<z.ZodString>;
|
|
6976
6976
|
}, "strip", z.ZodTypeAny, {
|
|
6977
|
-
|
|
6977
|
+
stakerInfo: {
|
|
6978
6978
|
address: `0x${string}`;
|
|
6979
6979
|
name?: string | undefined;
|
|
6980
6980
|
iconUrl?: string | undefined;
|
|
@@ -6987,7 +6987,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
6987
6987
|
withdrawableAfter: number;
|
|
6988
6988
|
} | undefined;
|
|
6989
6989
|
}, {
|
|
6990
|
-
|
|
6990
|
+
stakerInfo: {
|
|
6991
6991
|
address: string;
|
|
6992
6992
|
name?: string | undefined;
|
|
6993
6993
|
iconUrl?: string | undefined;
|
|
@@ -7002,7 +7002,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7002
7002
|
}>;
|
|
7003
7003
|
}>, "strip", z.ZodTypeAny, {
|
|
7004
7004
|
data: {
|
|
7005
|
-
|
|
7005
|
+
stakerInfo: {
|
|
7006
7006
|
address: `0x${string}`;
|
|
7007
7007
|
name?: string | undefined;
|
|
7008
7008
|
iconUrl?: string | undefined;
|
|
@@ -7021,7 +7021,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7021
7021
|
tokenAddress?: `0x${string}` | undefined;
|
|
7022
7022
|
}, {
|
|
7023
7023
|
data: {
|
|
7024
|
-
|
|
7024
|
+
stakerInfo: {
|
|
7025
7025
|
address: string;
|
|
7026
7026
|
name?: string | undefined;
|
|
7027
7027
|
iconUrl?: string | undefined;
|
|
@@ -7318,7 +7318,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7318
7318
|
}, {
|
|
7319
7319
|
investmentId: z.ZodString;
|
|
7320
7320
|
data: z.ZodObject<{
|
|
7321
|
-
|
|
7321
|
+
stakerInfo: z.ZodObject<{
|
|
7322
7322
|
name: z.ZodOptional<z.ZodString>;
|
|
7323
7323
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
7324
7324
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -7345,7 +7345,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7345
7345
|
}>>;
|
|
7346
7346
|
apy: z.ZodOptional<z.ZodString>;
|
|
7347
7347
|
}, "strip", z.ZodTypeAny, {
|
|
7348
|
-
|
|
7348
|
+
stakerInfo: {
|
|
7349
7349
|
address: `0x${string}`;
|
|
7350
7350
|
name?: string | undefined;
|
|
7351
7351
|
iconUrl?: string | undefined;
|
|
@@ -7358,7 +7358,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7358
7358
|
withdrawableAfter: number;
|
|
7359
7359
|
} | undefined;
|
|
7360
7360
|
}, {
|
|
7361
|
-
|
|
7361
|
+
stakerInfo: {
|
|
7362
7362
|
address: string;
|
|
7363
7363
|
name?: string | undefined;
|
|
7364
7364
|
iconUrl?: string | undefined;
|
|
@@ -7373,7 +7373,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7373
7373
|
}>;
|
|
7374
7374
|
}>, "strip", z.ZodTypeAny, {
|
|
7375
7375
|
data: {
|
|
7376
|
-
|
|
7376
|
+
stakerInfo: {
|
|
7377
7377
|
address: `0x${string}`;
|
|
7378
7378
|
name?: string | undefined;
|
|
7379
7379
|
iconUrl?: string | undefined;
|
|
@@ -7392,7 +7392,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7392
7392
|
tokenAddress?: `0x${string}` | undefined;
|
|
7393
7393
|
}, {
|
|
7394
7394
|
data: {
|
|
7395
|
-
|
|
7395
|
+
stakerInfo: {
|
|
7396
7396
|
address: string;
|
|
7397
7397
|
name?: string | undefined;
|
|
7398
7398
|
iconUrl?: string | undefined;
|
|
@@ -7690,7 +7690,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7690
7690
|
}, {
|
|
7691
7691
|
investmentId: z.ZodString;
|
|
7692
7692
|
data: z.ZodObject<{
|
|
7693
|
-
|
|
7693
|
+
stakerInfo: z.ZodObject<{
|
|
7694
7694
|
name: z.ZodOptional<z.ZodString>;
|
|
7695
7695
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
7696
7696
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -7717,7 +7717,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7717
7717
|
}>>;
|
|
7718
7718
|
apy: z.ZodOptional<z.ZodString>;
|
|
7719
7719
|
}, "strip", z.ZodTypeAny, {
|
|
7720
|
-
|
|
7720
|
+
stakerInfo: {
|
|
7721
7721
|
address: `0x${string}`;
|
|
7722
7722
|
name?: string | undefined;
|
|
7723
7723
|
iconUrl?: string | undefined;
|
|
@@ -7730,7 +7730,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7730
7730
|
withdrawableAfter: number;
|
|
7731
7731
|
} | undefined;
|
|
7732
7732
|
}, {
|
|
7733
|
-
|
|
7733
|
+
stakerInfo: {
|
|
7734
7734
|
address: string;
|
|
7735
7735
|
name?: string | undefined;
|
|
7736
7736
|
iconUrl?: string | undefined;
|
|
@@ -7745,7 +7745,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7745
7745
|
}>;
|
|
7746
7746
|
}>, "strip", z.ZodTypeAny, {
|
|
7747
7747
|
data: {
|
|
7748
|
-
|
|
7748
|
+
stakerInfo: {
|
|
7749
7749
|
address: `0x${string}`;
|
|
7750
7750
|
name?: string | undefined;
|
|
7751
7751
|
iconUrl?: string | undefined;
|
|
@@ -7764,7 +7764,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
7764
7764
|
tokenAddress?: `0x${string}` | undefined;
|
|
7765
7765
|
}, {
|
|
7766
7766
|
data: {
|
|
7767
|
-
|
|
7767
|
+
stakerInfo: {
|
|
7768
7768
|
address: string;
|
|
7769
7769
|
name?: string | undefined;
|
|
7770
7770
|
iconUrl?: string | undefined;
|
|
@@ -8061,7 +8061,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8061
8061
|
}, {
|
|
8062
8062
|
investmentId: z.ZodString;
|
|
8063
8063
|
data: z.ZodObject<{
|
|
8064
|
-
|
|
8064
|
+
stakerInfo: z.ZodObject<{
|
|
8065
8065
|
name: z.ZodOptional<z.ZodString>;
|
|
8066
8066
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
8067
8067
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -8088,7 +8088,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8088
8088
|
}>>;
|
|
8089
8089
|
apy: z.ZodOptional<z.ZodString>;
|
|
8090
8090
|
}, "strip", z.ZodTypeAny, {
|
|
8091
|
-
|
|
8091
|
+
stakerInfo: {
|
|
8092
8092
|
address: `0x${string}`;
|
|
8093
8093
|
name?: string | undefined;
|
|
8094
8094
|
iconUrl?: string | undefined;
|
|
@@ -8101,7 +8101,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8101
8101
|
withdrawableAfter: number;
|
|
8102
8102
|
} | undefined;
|
|
8103
8103
|
}, {
|
|
8104
|
-
|
|
8104
|
+
stakerInfo: {
|
|
8105
8105
|
address: string;
|
|
8106
8106
|
name?: string | undefined;
|
|
8107
8107
|
iconUrl?: string | undefined;
|
|
@@ -8116,7 +8116,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8116
8116
|
}>;
|
|
8117
8117
|
}>, "strip", z.ZodTypeAny, {
|
|
8118
8118
|
data: {
|
|
8119
|
-
|
|
8119
|
+
stakerInfo: {
|
|
8120
8120
|
address: `0x${string}`;
|
|
8121
8121
|
name?: string | undefined;
|
|
8122
8122
|
iconUrl?: string | undefined;
|
|
@@ -8135,7 +8135,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8135
8135
|
tokenAddress?: `0x${string}` | undefined;
|
|
8136
8136
|
}, {
|
|
8137
8137
|
data: {
|
|
8138
|
-
|
|
8138
|
+
stakerInfo: {
|
|
8139
8139
|
address: string;
|
|
8140
8140
|
name?: string | undefined;
|
|
8141
8141
|
iconUrl?: string | undefined;
|
|
@@ -8432,7 +8432,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8432
8432
|
}, {
|
|
8433
8433
|
investmentId: z.ZodString;
|
|
8434
8434
|
data: z.ZodObject<{
|
|
8435
|
-
|
|
8435
|
+
stakerInfo: z.ZodObject<{
|
|
8436
8436
|
name: z.ZodOptional<z.ZodString>;
|
|
8437
8437
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
8438
8438
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -8459,7 +8459,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8459
8459
|
}>>;
|
|
8460
8460
|
apy: z.ZodOptional<z.ZodString>;
|
|
8461
8461
|
}, "strip", z.ZodTypeAny, {
|
|
8462
|
-
|
|
8462
|
+
stakerInfo: {
|
|
8463
8463
|
address: `0x${string}`;
|
|
8464
8464
|
name?: string | undefined;
|
|
8465
8465
|
iconUrl?: string | undefined;
|
|
@@ -8472,7 +8472,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8472
8472
|
withdrawableAfter: number;
|
|
8473
8473
|
} | undefined;
|
|
8474
8474
|
}, {
|
|
8475
|
-
|
|
8475
|
+
stakerInfo: {
|
|
8476
8476
|
address: string;
|
|
8477
8477
|
name?: string | undefined;
|
|
8478
8478
|
iconUrl?: string | undefined;
|
|
@@ -8487,7 +8487,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8487
8487
|
}>;
|
|
8488
8488
|
}>, "strip", z.ZodTypeAny, {
|
|
8489
8489
|
data: {
|
|
8490
|
-
|
|
8490
|
+
stakerInfo: {
|
|
8491
8491
|
address: `0x${string}`;
|
|
8492
8492
|
name?: string | undefined;
|
|
8493
8493
|
iconUrl?: string | undefined;
|
|
@@ -8506,7 +8506,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8506
8506
|
tokenAddress?: `0x${string}` | undefined;
|
|
8507
8507
|
}, {
|
|
8508
8508
|
data: {
|
|
8509
|
-
|
|
8509
|
+
stakerInfo: {
|
|
8510
8510
|
address: string;
|
|
8511
8511
|
name?: string | undefined;
|
|
8512
8512
|
iconUrl?: string | undefined;
|
|
@@ -8803,7 +8803,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8803
8803
|
}, {
|
|
8804
8804
|
investmentId: z.ZodString;
|
|
8805
8805
|
data: z.ZodObject<{
|
|
8806
|
-
|
|
8806
|
+
stakerInfo: z.ZodObject<{
|
|
8807
8807
|
name: z.ZodOptional<z.ZodString>;
|
|
8808
8808
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
8809
8809
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -8830,7 +8830,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8830
8830
|
}>>;
|
|
8831
8831
|
apy: z.ZodOptional<z.ZodString>;
|
|
8832
8832
|
}, "strip", z.ZodTypeAny, {
|
|
8833
|
-
|
|
8833
|
+
stakerInfo: {
|
|
8834
8834
|
address: `0x${string}`;
|
|
8835
8835
|
name?: string | undefined;
|
|
8836
8836
|
iconUrl?: string | undefined;
|
|
@@ -8843,7 +8843,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8843
8843
|
withdrawableAfter: number;
|
|
8844
8844
|
} | undefined;
|
|
8845
8845
|
}, {
|
|
8846
|
-
|
|
8846
|
+
stakerInfo: {
|
|
8847
8847
|
address: string;
|
|
8848
8848
|
name?: string | undefined;
|
|
8849
8849
|
iconUrl?: string | undefined;
|
|
@@ -8858,7 +8858,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8858
8858
|
}>;
|
|
8859
8859
|
}>, "strip", z.ZodTypeAny, {
|
|
8860
8860
|
data: {
|
|
8861
|
-
|
|
8861
|
+
stakerInfo: {
|
|
8862
8862
|
address: `0x${string}`;
|
|
8863
8863
|
name?: string | undefined;
|
|
8864
8864
|
iconUrl?: string | undefined;
|
|
@@ -8877,7 +8877,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
8877
8877
|
tokenAddress?: `0x${string}` | undefined;
|
|
8878
8878
|
}, {
|
|
8879
8879
|
data: {
|
|
8880
|
-
|
|
8880
|
+
stakerInfo: {
|
|
8881
8881
|
address: string;
|
|
8882
8882
|
name?: string | undefined;
|
|
8883
8883
|
iconUrl?: string | undefined;
|
|
@@ -9174,7 +9174,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9174
9174
|
}, {
|
|
9175
9175
|
investmentId: z.ZodString;
|
|
9176
9176
|
data: z.ZodObject<{
|
|
9177
|
-
|
|
9177
|
+
stakerInfo: z.ZodObject<{
|
|
9178
9178
|
name: z.ZodOptional<z.ZodString>;
|
|
9179
9179
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
9180
9180
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -9201,7 +9201,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9201
9201
|
}>>;
|
|
9202
9202
|
apy: z.ZodOptional<z.ZodString>;
|
|
9203
9203
|
}, "strip", z.ZodTypeAny, {
|
|
9204
|
-
|
|
9204
|
+
stakerInfo: {
|
|
9205
9205
|
address: `0x${string}`;
|
|
9206
9206
|
name?: string | undefined;
|
|
9207
9207
|
iconUrl?: string | undefined;
|
|
@@ -9214,7 +9214,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9214
9214
|
withdrawableAfter: number;
|
|
9215
9215
|
} | undefined;
|
|
9216
9216
|
}, {
|
|
9217
|
-
|
|
9217
|
+
stakerInfo: {
|
|
9218
9218
|
address: string;
|
|
9219
9219
|
name?: string | undefined;
|
|
9220
9220
|
iconUrl?: string | undefined;
|
|
@@ -9229,7 +9229,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9229
9229
|
}>;
|
|
9230
9230
|
}>, "strip", z.ZodTypeAny, {
|
|
9231
9231
|
data: {
|
|
9232
|
-
|
|
9232
|
+
stakerInfo: {
|
|
9233
9233
|
address: `0x${string}`;
|
|
9234
9234
|
name?: string | undefined;
|
|
9235
9235
|
iconUrl?: string | undefined;
|
|
@@ -9248,7 +9248,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9248
9248
|
tokenAddress?: `0x${string}` | undefined;
|
|
9249
9249
|
}, {
|
|
9250
9250
|
data: {
|
|
9251
|
-
|
|
9251
|
+
stakerInfo: {
|
|
9252
9252
|
address: string;
|
|
9253
9253
|
name?: string | undefined;
|
|
9254
9254
|
iconUrl?: string | undefined;
|
|
@@ -9549,7 +9549,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9549
9549
|
}, {
|
|
9550
9550
|
investmentId: z.ZodString;
|
|
9551
9551
|
data: z.ZodObject<{
|
|
9552
|
-
|
|
9552
|
+
stakerInfo: z.ZodObject<{
|
|
9553
9553
|
name: z.ZodOptional<z.ZodString>;
|
|
9554
9554
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
9555
9555
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -9576,7 +9576,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9576
9576
|
}>>;
|
|
9577
9577
|
apy: z.ZodOptional<z.ZodString>;
|
|
9578
9578
|
}, "strip", z.ZodTypeAny, {
|
|
9579
|
-
|
|
9579
|
+
stakerInfo: {
|
|
9580
9580
|
address: `0x${string}`;
|
|
9581
9581
|
name?: string | undefined;
|
|
9582
9582
|
iconUrl?: string | undefined;
|
|
@@ -9589,7 +9589,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9589
9589
|
withdrawableAfter: number;
|
|
9590
9590
|
} | undefined;
|
|
9591
9591
|
}, {
|
|
9592
|
-
|
|
9592
|
+
stakerInfo: {
|
|
9593
9593
|
address: string;
|
|
9594
9594
|
name?: string | undefined;
|
|
9595
9595
|
iconUrl?: string | undefined;
|
|
@@ -9604,7 +9604,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9604
9604
|
}>;
|
|
9605
9605
|
}>, "strip", z.ZodTypeAny, {
|
|
9606
9606
|
data: {
|
|
9607
|
-
|
|
9607
|
+
stakerInfo: {
|
|
9608
9608
|
address: `0x${string}`;
|
|
9609
9609
|
name?: string | undefined;
|
|
9610
9610
|
iconUrl?: string | undefined;
|
|
@@ -9623,7 +9623,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9623
9623
|
tokenAddress?: `0x${string}` | undefined;
|
|
9624
9624
|
}, {
|
|
9625
9625
|
data: {
|
|
9626
|
-
|
|
9626
|
+
stakerInfo: {
|
|
9627
9627
|
address: string;
|
|
9628
9628
|
name?: string | undefined;
|
|
9629
9629
|
iconUrl?: string | undefined;
|
|
@@ -9923,7 +9923,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9923
9923
|
}, {
|
|
9924
9924
|
investmentId: z.ZodString;
|
|
9925
9925
|
data: z.ZodObject<{
|
|
9926
|
-
|
|
9926
|
+
stakerInfo: z.ZodObject<{
|
|
9927
9927
|
name: z.ZodOptional<z.ZodString>;
|
|
9928
9928
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
9929
9929
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -9950,7 +9950,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9950
9950
|
}>>;
|
|
9951
9951
|
apy: z.ZodOptional<z.ZodString>;
|
|
9952
9952
|
}, "strip", z.ZodTypeAny, {
|
|
9953
|
-
|
|
9953
|
+
stakerInfo: {
|
|
9954
9954
|
address: `0x${string}`;
|
|
9955
9955
|
name?: string | undefined;
|
|
9956
9956
|
iconUrl?: string | undefined;
|
|
@@ -9963,7 +9963,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9963
9963
|
withdrawableAfter: number;
|
|
9964
9964
|
} | undefined;
|
|
9965
9965
|
}, {
|
|
9966
|
-
|
|
9966
|
+
stakerInfo: {
|
|
9967
9967
|
address: string;
|
|
9968
9968
|
name?: string | undefined;
|
|
9969
9969
|
iconUrl?: string | undefined;
|
|
@@ -9978,7 +9978,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9978
9978
|
}>;
|
|
9979
9979
|
}>, "strip", z.ZodTypeAny, {
|
|
9980
9980
|
data: {
|
|
9981
|
-
|
|
9981
|
+
stakerInfo: {
|
|
9982
9982
|
address: `0x${string}`;
|
|
9983
9983
|
name?: string | undefined;
|
|
9984
9984
|
iconUrl?: string | undefined;
|
|
@@ -9997,7 +9997,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
|
|
|
9997
9997
|
tokenAddress?: `0x${string}` | undefined;
|
|
9998
9998
|
}, {
|
|
9999
9999
|
data: {
|
|
10000
|
-
|
|
10000
|
+
stakerInfo: {
|
|
10001
10001
|
address: string;
|
|
10002
10002
|
name?: string | undefined;
|
|
10003
10003
|
iconUrl?: string | undefined;
|
|
@@ -10299,7 +10299,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10299
10299
|
}, {
|
|
10300
10300
|
investmentId: z.ZodString;
|
|
10301
10301
|
data: z.ZodObject<{
|
|
10302
|
-
|
|
10302
|
+
stakerInfo: z.ZodObject<{
|
|
10303
10303
|
name: z.ZodOptional<z.ZodString>;
|
|
10304
10304
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
10305
10305
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -10326,7 +10326,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10326
10326
|
}>>;
|
|
10327
10327
|
apy: z.ZodOptional<z.ZodString>;
|
|
10328
10328
|
}, "strip", z.ZodTypeAny, {
|
|
10329
|
-
|
|
10329
|
+
stakerInfo: {
|
|
10330
10330
|
address: `0x${string}`;
|
|
10331
10331
|
name?: string | undefined;
|
|
10332
10332
|
iconUrl?: string | undefined;
|
|
@@ -10339,7 +10339,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10339
10339
|
withdrawableAfter: number;
|
|
10340
10340
|
} | undefined;
|
|
10341
10341
|
}, {
|
|
10342
|
-
|
|
10342
|
+
stakerInfo: {
|
|
10343
10343
|
address: string;
|
|
10344
10344
|
name?: string | undefined;
|
|
10345
10345
|
iconUrl?: string | undefined;
|
|
@@ -10354,7 +10354,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10354
10354
|
}>;
|
|
10355
10355
|
}>, "strip", z.ZodTypeAny, {
|
|
10356
10356
|
data: {
|
|
10357
|
-
|
|
10357
|
+
stakerInfo: {
|
|
10358
10358
|
address: `0x${string}`;
|
|
10359
10359
|
name?: string | undefined;
|
|
10360
10360
|
iconUrl?: string | undefined;
|
|
@@ -10373,7 +10373,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10373
10373
|
tokenAddress?: `0x${string}` | undefined;
|
|
10374
10374
|
}, {
|
|
10375
10375
|
data: {
|
|
10376
|
-
|
|
10376
|
+
stakerInfo: {
|
|
10377
10377
|
address: string;
|
|
10378
10378
|
name?: string | undefined;
|
|
10379
10379
|
iconUrl?: string | undefined;
|
|
@@ -10670,7 +10670,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10670
10670
|
}, {
|
|
10671
10671
|
investmentId: z.ZodString;
|
|
10672
10672
|
data: z.ZodObject<{
|
|
10673
|
-
|
|
10673
|
+
stakerInfo: z.ZodObject<{
|
|
10674
10674
|
name: z.ZodOptional<z.ZodString>;
|
|
10675
10675
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
10676
10676
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -10697,7 +10697,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10697
10697
|
}>>;
|
|
10698
10698
|
apy: z.ZodOptional<z.ZodString>;
|
|
10699
10699
|
}, "strip", z.ZodTypeAny, {
|
|
10700
|
-
|
|
10700
|
+
stakerInfo: {
|
|
10701
10701
|
address: `0x${string}`;
|
|
10702
10702
|
name?: string | undefined;
|
|
10703
10703
|
iconUrl?: string | undefined;
|
|
@@ -10710,7 +10710,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10710
10710
|
withdrawableAfter: number;
|
|
10711
10711
|
} | undefined;
|
|
10712
10712
|
}, {
|
|
10713
|
-
|
|
10713
|
+
stakerInfo: {
|
|
10714
10714
|
address: string;
|
|
10715
10715
|
name?: string | undefined;
|
|
10716
10716
|
iconUrl?: string | undefined;
|
|
@@ -10725,7 +10725,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10725
10725
|
}>;
|
|
10726
10726
|
}>, "strip", z.ZodTypeAny, {
|
|
10727
10727
|
data: {
|
|
10728
|
-
|
|
10728
|
+
stakerInfo: {
|
|
10729
10729
|
address: `0x${string}`;
|
|
10730
10730
|
name?: string | undefined;
|
|
10731
10731
|
iconUrl?: string | undefined;
|
|
@@ -10744,7 +10744,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
10744
10744
|
tokenAddress?: `0x${string}` | undefined;
|
|
10745
10745
|
}, {
|
|
10746
10746
|
data: {
|
|
10747
|
-
|
|
10747
|
+
stakerInfo: {
|
|
10748
10748
|
address: string;
|
|
10749
10749
|
name?: string | undefined;
|
|
10750
10750
|
iconUrl?: string | undefined;
|
|
@@ -11041,7 +11041,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11041
11041
|
}, {
|
|
11042
11042
|
investmentId: z.ZodString;
|
|
11043
11043
|
data: z.ZodObject<{
|
|
11044
|
-
|
|
11044
|
+
stakerInfo: z.ZodObject<{
|
|
11045
11045
|
name: z.ZodOptional<z.ZodString>;
|
|
11046
11046
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
11047
11047
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -11068,7 +11068,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11068
11068
|
}>>;
|
|
11069
11069
|
apy: z.ZodOptional<z.ZodString>;
|
|
11070
11070
|
}, "strip", z.ZodTypeAny, {
|
|
11071
|
-
|
|
11071
|
+
stakerInfo: {
|
|
11072
11072
|
address: `0x${string}`;
|
|
11073
11073
|
name?: string | undefined;
|
|
11074
11074
|
iconUrl?: string | undefined;
|
|
@@ -11081,7 +11081,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11081
11081
|
withdrawableAfter: number;
|
|
11082
11082
|
} | undefined;
|
|
11083
11083
|
}, {
|
|
11084
|
-
|
|
11084
|
+
stakerInfo: {
|
|
11085
11085
|
address: string;
|
|
11086
11086
|
name?: string | undefined;
|
|
11087
11087
|
iconUrl?: string | undefined;
|
|
@@ -11096,7 +11096,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11096
11096
|
}>;
|
|
11097
11097
|
}>, "strip", z.ZodTypeAny, {
|
|
11098
11098
|
data: {
|
|
11099
|
-
|
|
11099
|
+
stakerInfo: {
|
|
11100
11100
|
address: `0x${string}`;
|
|
11101
11101
|
name?: string | undefined;
|
|
11102
11102
|
iconUrl?: string | undefined;
|
|
@@ -11115,7 +11115,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11115
11115
|
tokenAddress?: `0x${string}` | undefined;
|
|
11116
11116
|
}, {
|
|
11117
11117
|
data: {
|
|
11118
|
-
|
|
11118
|
+
stakerInfo: {
|
|
11119
11119
|
address: string;
|
|
11120
11120
|
name?: string | undefined;
|
|
11121
11121
|
iconUrl?: string | undefined;
|
|
@@ -11412,7 +11412,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11412
11412
|
}, {
|
|
11413
11413
|
investmentId: z.ZodString;
|
|
11414
11414
|
data: z.ZodObject<{
|
|
11415
|
-
|
|
11415
|
+
stakerInfo: z.ZodObject<{
|
|
11416
11416
|
name: z.ZodOptional<z.ZodString>;
|
|
11417
11417
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
11418
11418
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -11439,7 +11439,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11439
11439
|
}>>;
|
|
11440
11440
|
apy: z.ZodOptional<z.ZodString>;
|
|
11441
11441
|
}, "strip", z.ZodTypeAny, {
|
|
11442
|
-
|
|
11442
|
+
stakerInfo: {
|
|
11443
11443
|
address: `0x${string}`;
|
|
11444
11444
|
name?: string | undefined;
|
|
11445
11445
|
iconUrl?: string | undefined;
|
|
@@ -11452,7 +11452,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11452
11452
|
withdrawableAfter: number;
|
|
11453
11453
|
} | undefined;
|
|
11454
11454
|
}, {
|
|
11455
|
-
|
|
11455
|
+
stakerInfo: {
|
|
11456
11456
|
address: string;
|
|
11457
11457
|
name?: string | undefined;
|
|
11458
11458
|
iconUrl?: string | undefined;
|
|
@@ -11467,7 +11467,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11467
11467
|
}>;
|
|
11468
11468
|
}>, "strip", z.ZodTypeAny, {
|
|
11469
11469
|
data: {
|
|
11470
|
-
|
|
11470
|
+
stakerInfo: {
|
|
11471
11471
|
address: `0x${string}`;
|
|
11472
11472
|
name?: string | undefined;
|
|
11473
11473
|
iconUrl?: string | undefined;
|
|
@@ -11486,7 +11486,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11486
11486
|
tokenAddress?: `0x${string}` | undefined;
|
|
11487
11487
|
}, {
|
|
11488
11488
|
data: {
|
|
11489
|
-
|
|
11489
|
+
stakerInfo: {
|
|
11490
11490
|
address: string;
|
|
11491
11491
|
name?: string | undefined;
|
|
11492
11492
|
iconUrl?: string | undefined;
|
|
@@ -11783,7 +11783,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11783
11783
|
}, {
|
|
11784
11784
|
investmentId: z.ZodString;
|
|
11785
11785
|
data: z.ZodObject<{
|
|
11786
|
-
|
|
11786
|
+
stakerInfo: z.ZodObject<{
|
|
11787
11787
|
name: z.ZodOptional<z.ZodString>;
|
|
11788
11788
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
11789
11789
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -11810,7 +11810,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11810
11810
|
}>>;
|
|
11811
11811
|
apy: z.ZodOptional<z.ZodString>;
|
|
11812
11812
|
}, "strip", z.ZodTypeAny, {
|
|
11813
|
-
|
|
11813
|
+
stakerInfo: {
|
|
11814
11814
|
address: `0x${string}`;
|
|
11815
11815
|
name?: string | undefined;
|
|
11816
11816
|
iconUrl?: string | undefined;
|
|
@@ -11823,7 +11823,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11823
11823
|
withdrawableAfter: number;
|
|
11824
11824
|
} | undefined;
|
|
11825
11825
|
}, {
|
|
11826
|
-
|
|
11826
|
+
stakerInfo: {
|
|
11827
11827
|
address: string;
|
|
11828
11828
|
name?: string | undefined;
|
|
11829
11829
|
iconUrl?: string | undefined;
|
|
@@ -11838,7 +11838,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11838
11838
|
}>;
|
|
11839
11839
|
}>, "strip", z.ZodTypeAny, {
|
|
11840
11840
|
data: {
|
|
11841
|
-
|
|
11841
|
+
stakerInfo: {
|
|
11842
11842
|
address: `0x${string}`;
|
|
11843
11843
|
name?: string | undefined;
|
|
11844
11844
|
iconUrl?: string | undefined;
|
|
@@ -11857,7 +11857,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
11857
11857
|
tokenAddress?: `0x${string}` | undefined;
|
|
11858
11858
|
}, {
|
|
11859
11859
|
data: {
|
|
11860
|
-
|
|
11860
|
+
stakerInfo: {
|
|
11861
11861
|
address: string;
|
|
11862
11862
|
name?: string | undefined;
|
|
11863
11863
|
iconUrl?: string | undefined;
|
|
@@ -12155,7 +12155,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12155
12155
|
}, {
|
|
12156
12156
|
investmentId: z.ZodString;
|
|
12157
12157
|
data: z.ZodObject<{
|
|
12158
|
-
|
|
12158
|
+
stakerInfo: z.ZodObject<{
|
|
12159
12159
|
name: z.ZodOptional<z.ZodString>;
|
|
12160
12160
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
12161
12161
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -12182,7 +12182,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12182
12182
|
}>>;
|
|
12183
12183
|
apy: z.ZodOptional<z.ZodString>;
|
|
12184
12184
|
}, "strip", z.ZodTypeAny, {
|
|
12185
|
-
|
|
12185
|
+
stakerInfo: {
|
|
12186
12186
|
address: `0x${string}`;
|
|
12187
12187
|
name?: string | undefined;
|
|
12188
12188
|
iconUrl?: string | undefined;
|
|
@@ -12195,7 +12195,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12195
12195
|
withdrawableAfter: number;
|
|
12196
12196
|
} | undefined;
|
|
12197
12197
|
}, {
|
|
12198
|
-
|
|
12198
|
+
stakerInfo: {
|
|
12199
12199
|
address: string;
|
|
12200
12200
|
name?: string | undefined;
|
|
12201
12201
|
iconUrl?: string | undefined;
|
|
@@ -12210,7 +12210,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12210
12210
|
}>;
|
|
12211
12211
|
}>, "strip", z.ZodTypeAny, {
|
|
12212
12212
|
data: {
|
|
12213
|
-
|
|
12213
|
+
stakerInfo: {
|
|
12214
12214
|
address: `0x${string}`;
|
|
12215
12215
|
name?: string | undefined;
|
|
12216
12216
|
iconUrl?: string | undefined;
|
|
@@ -12229,7 +12229,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12229
12229
|
tokenAddress?: `0x${string}` | undefined;
|
|
12230
12230
|
}, {
|
|
12231
12231
|
data: {
|
|
12232
|
-
|
|
12232
|
+
stakerInfo: {
|
|
12233
12233
|
address: string;
|
|
12234
12234
|
name?: string | undefined;
|
|
12235
12235
|
iconUrl?: string | undefined;
|
|
@@ -12526,7 +12526,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12526
12526
|
}, {
|
|
12527
12527
|
investmentId: z.ZodString;
|
|
12528
12528
|
data: z.ZodObject<{
|
|
12529
|
-
|
|
12529
|
+
stakerInfo: z.ZodObject<{
|
|
12530
12530
|
name: z.ZodOptional<z.ZodString>;
|
|
12531
12531
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
12532
12532
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -12553,7 +12553,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12553
12553
|
}>>;
|
|
12554
12554
|
apy: z.ZodOptional<z.ZodString>;
|
|
12555
12555
|
}, "strip", z.ZodTypeAny, {
|
|
12556
|
-
|
|
12556
|
+
stakerInfo: {
|
|
12557
12557
|
address: `0x${string}`;
|
|
12558
12558
|
name?: string | undefined;
|
|
12559
12559
|
iconUrl?: string | undefined;
|
|
@@ -12566,7 +12566,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12566
12566
|
withdrawableAfter: number;
|
|
12567
12567
|
} | undefined;
|
|
12568
12568
|
}, {
|
|
12569
|
-
|
|
12569
|
+
stakerInfo: {
|
|
12570
12570
|
address: string;
|
|
12571
12571
|
name?: string | undefined;
|
|
12572
12572
|
iconUrl?: string | undefined;
|
|
@@ -12581,7 +12581,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12581
12581
|
}>;
|
|
12582
12582
|
}>, "strip", z.ZodTypeAny, {
|
|
12583
12583
|
data: {
|
|
12584
|
-
|
|
12584
|
+
stakerInfo: {
|
|
12585
12585
|
address: `0x${string}`;
|
|
12586
12586
|
name?: string | undefined;
|
|
12587
12587
|
iconUrl?: string | undefined;
|
|
@@ -12600,7 +12600,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12600
12600
|
tokenAddress?: `0x${string}` | undefined;
|
|
12601
12601
|
}, {
|
|
12602
12602
|
data: {
|
|
12603
|
-
|
|
12603
|
+
stakerInfo: {
|
|
12604
12604
|
address: string;
|
|
12605
12605
|
name?: string | undefined;
|
|
12606
12606
|
iconUrl?: string | undefined;
|
|
@@ -12897,7 +12897,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12897
12897
|
}, {
|
|
12898
12898
|
investmentId: z.ZodString;
|
|
12899
12899
|
data: z.ZodObject<{
|
|
12900
|
-
|
|
12900
|
+
stakerInfo: z.ZodObject<{
|
|
12901
12901
|
name: z.ZodOptional<z.ZodString>;
|
|
12902
12902
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
12903
12903
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -12924,7 +12924,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12924
12924
|
}>>;
|
|
12925
12925
|
apy: z.ZodOptional<z.ZodString>;
|
|
12926
12926
|
}, "strip", z.ZodTypeAny, {
|
|
12927
|
-
|
|
12927
|
+
stakerInfo: {
|
|
12928
12928
|
address: `0x${string}`;
|
|
12929
12929
|
name?: string | undefined;
|
|
12930
12930
|
iconUrl?: string | undefined;
|
|
@@ -12937,7 +12937,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12937
12937
|
withdrawableAfter: number;
|
|
12938
12938
|
} | undefined;
|
|
12939
12939
|
}, {
|
|
12940
|
-
|
|
12940
|
+
stakerInfo: {
|
|
12941
12941
|
address: string;
|
|
12942
12942
|
name?: string | undefined;
|
|
12943
12943
|
iconUrl?: string | undefined;
|
|
@@ -12952,7 +12952,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12952
12952
|
}>;
|
|
12953
12953
|
}>, "strip", z.ZodTypeAny, {
|
|
12954
12954
|
data: {
|
|
12955
|
-
|
|
12955
|
+
stakerInfo: {
|
|
12956
12956
|
address: `0x${string}`;
|
|
12957
12957
|
name?: string | undefined;
|
|
12958
12958
|
iconUrl?: string | undefined;
|
|
@@ -12971,7 +12971,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
12971
12971
|
tokenAddress?: `0x${string}` | undefined;
|
|
12972
12972
|
}, {
|
|
12973
12973
|
data: {
|
|
12974
|
-
|
|
12974
|
+
stakerInfo: {
|
|
12975
12975
|
address: string;
|
|
12976
12976
|
name?: string | undefined;
|
|
12977
12977
|
iconUrl?: string | undefined;
|
|
@@ -13268,7 +13268,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13268
13268
|
}, {
|
|
13269
13269
|
investmentId: z.ZodString;
|
|
13270
13270
|
data: z.ZodObject<{
|
|
13271
|
-
|
|
13271
|
+
stakerInfo: z.ZodObject<{
|
|
13272
13272
|
name: z.ZodOptional<z.ZodString>;
|
|
13273
13273
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
13274
13274
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -13295,7 +13295,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13295
13295
|
}>>;
|
|
13296
13296
|
apy: z.ZodOptional<z.ZodString>;
|
|
13297
13297
|
}, "strip", z.ZodTypeAny, {
|
|
13298
|
-
|
|
13298
|
+
stakerInfo: {
|
|
13299
13299
|
address: `0x${string}`;
|
|
13300
13300
|
name?: string | undefined;
|
|
13301
13301
|
iconUrl?: string | undefined;
|
|
@@ -13308,7 +13308,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13308
13308
|
withdrawableAfter: number;
|
|
13309
13309
|
} | undefined;
|
|
13310
13310
|
}, {
|
|
13311
|
-
|
|
13311
|
+
stakerInfo: {
|
|
13312
13312
|
address: string;
|
|
13313
13313
|
name?: string | undefined;
|
|
13314
13314
|
iconUrl?: string | undefined;
|
|
@@ -13323,7 +13323,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13323
13323
|
}>;
|
|
13324
13324
|
}>, "strip", z.ZodTypeAny, {
|
|
13325
13325
|
data: {
|
|
13326
|
-
|
|
13326
|
+
stakerInfo: {
|
|
13327
13327
|
address: `0x${string}`;
|
|
13328
13328
|
name?: string | undefined;
|
|
13329
13329
|
iconUrl?: string | undefined;
|
|
@@ -13342,7 +13342,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13342
13342
|
tokenAddress?: `0x${string}` | undefined;
|
|
13343
13343
|
}, {
|
|
13344
13344
|
data: {
|
|
13345
|
-
|
|
13345
|
+
stakerInfo: {
|
|
13346
13346
|
address: string;
|
|
13347
13347
|
name?: string | undefined;
|
|
13348
13348
|
iconUrl?: string | undefined;
|
|
@@ -13639,7 +13639,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13639
13639
|
}, {
|
|
13640
13640
|
investmentId: z.ZodString;
|
|
13641
13641
|
data: z.ZodObject<{
|
|
13642
|
-
|
|
13642
|
+
stakerInfo: z.ZodObject<{
|
|
13643
13643
|
name: z.ZodOptional<z.ZodString>;
|
|
13644
13644
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
13645
13645
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -13666,7 +13666,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13666
13666
|
}>>;
|
|
13667
13667
|
apy: z.ZodOptional<z.ZodString>;
|
|
13668
13668
|
}, "strip", z.ZodTypeAny, {
|
|
13669
|
-
|
|
13669
|
+
stakerInfo: {
|
|
13670
13670
|
address: `0x${string}`;
|
|
13671
13671
|
name?: string | undefined;
|
|
13672
13672
|
iconUrl?: string | undefined;
|
|
@@ -13679,7 +13679,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13679
13679
|
withdrawableAfter: number;
|
|
13680
13680
|
} | undefined;
|
|
13681
13681
|
}, {
|
|
13682
|
-
|
|
13682
|
+
stakerInfo: {
|
|
13683
13683
|
address: string;
|
|
13684
13684
|
name?: string | undefined;
|
|
13685
13685
|
iconUrl?: string | undefined;
|
|
@@ -13694,7 +13694,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13694
13694
|
}>;
|
|
13695
13695
|
}>, "strip", z.ZodTypeAny, {
|
|
13696
13696
|
data: {
|
|
13697
|
-
|
|
13697
|
+
stakerInfo: {
|
|
13698
13698
|
address: `0x${string}`;
|
|
13699
13699
|
name?: string | undefined;
|
|
13700
13700
|
iconUrl?: string | undefined;
|
|
@@ -13713,7 +13713,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
13713
13713
|
tokenAddress?: `0x${string}` | undefined;
|
|
13714
13714
|
}, {
|
|
13715
13715
|
data: {
|
|
13716
|
-
|
|
13716
|
+
stakerInfo: {
|
|
13717
13717
|
address: string;
|
|
13718
13718
|
name?: string | undefined;
|
|
13719
13719
|
iconUrl?: string | undefined;
|
|
@@ -14014,7 +14014,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14014
14014
|
}, {
|
|
14015
14015
|
investmentId: z.ZodString;
|
|
14016
14016
|
data: z.ZodObject<{
|
|
14017
|
-
|
|
14017
|
+
stakerInfo: z.ZodObject<{
|
|
14018
14018
|
name: z.ZodOptional<z.ZodString>;
|
|
14019
14019
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
14020
14020
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -14041,7 +14041,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14041
14041
|
}>>;
|
|
14042
14042
|
apy: z.ZodOptional<z.ZodString>;
|
|
14043
14043
|
}, "strip", z.ZodTypeAny, {
|
|
14044
|
-
|
|
14044
|
+
stakerInfo: {
|
|
14045
14045
|
address: `0x${string}`;
|
|
14046
14046
|
name?: string | undefined;
|
|
14047
14047
|
iconUrl?: string | undefined;
|
|
@@ -14054,7 +14054,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14054
14054
|
withdrawableAfter: number;
|
|
14055
14055
|
} | undefined;
|
|
14056
14056
|
}, {
|
|
14057
|
-
|
|
14057
|
+
stakerInfo: {
|
|
14058
14058
|
address: string;
|
|
14059
14059
|
name?: string | undefined;
|
|
14060
14060
|
iconUrl?: string | undefined;
|
|
@@ -14069,7 +14069,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14069
14069
|
}>;
|
|
14070
14070
|
}>, "strip", z.ZodTypeAny, {
|
|
14071
14071
|
data: {
|
|
14072
|
-
|
|
14072
|
+
stakerInfo: {
|
|
14073
14073
|
address: `0x${string}`;
|
|
14074
14074
|
name?: string | undefined;
|
|
14075
14075
|
iconUrl?: string | undefined;
|
|
@@ -14088,7 +14088,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14088
14088
|
tokenAddress?: `0x${string}` | undefined;
|
|
14089
14089
|
}, {
|
|
14090
14090
|
data: {
|
|
14091
|
-
|
|
14091
|
+
stakerInfo: {
|
|
14092
14092
|
address: string;
|
|
14093
14093
|
name?: string | undefined;
|
|
14094
14094
|
iconUrl?: string | undefined;
|
|
@@ -14388,7 +14388,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14388
14388
|
}, {
|
|
14389
14389
|
investmentId: z.ZodString;
|
|
14390
14390
|
data: z.ZodObject<{
|
|
14391
|
-
|
|
14391
|
+
stakerInfo: z.ZodObject<{
|
|
14392
14392
|
name: z.ZodOptional<z.ZodString>;
|
|
14393
14393
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
14394
14394
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -14415,7 +14415,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14415
14415
|
}>>;
|
|
14416
14416
|
apy: z.ZodOptional<z.ZodString>;
|
|
14417
14417
|
}, "strip", z.ZodTypeAny, {
|
|
14418
|
-
|
|
14418
|
+
stakerInfo: {
|
|
14419
14419
|
address: `0x${string}`;
|
|
14420
14420
|
name?: string | undefined;
|
|
14421
14421
|
iconUrl?: string | undefined;
|
|
@@ -14428,7 +14428,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14428
14428
|
withdrawableAfter: number;
|
|
14429
14429
|
} | undefined;
|
|
14430
14430
|
}, {
|
|
14431
|
-
|
|
14431
|
+
stakerInfo: {
|
|
14432
14432
|
address: string;
|
|
14433
14433
|
name?: string | undefined;
|
|
14434
14434
|
iconUrl?: string | undefined;
|
|
@@ -14443,7 +14443,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14443
14443
|
}>;
|
|
14444
14444
|
}>, "strip", z.ZodTypeAny, {
|
|
14445
14445
|
data: {
|
|
14446
|
-
|
|
14446
|
+
stakerInfo: {
|
|
14447
14447
|
address: `0x${string}`;
|
|
14448
14448
|
name?: string | undefined;
|
|
14449
14449
|
iconUrl?: string | undefined;
|
|
@@ -14462,7 +14462,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14462
14462
|
tokenAddress?: `0x${string}` | undefined;
|
|
14463
14463
|
}, {
|
|
14464
14464
|
data: {
|
|
14465
|
-
|
|
14465
|
+
stakerInfo: {
|
|
14466
14466
|
address: string;
|
|
14467
14467
|
name?: string | undefined;
|
|
14468
14468
|
iconUrl?: string | undefined;
|
|
@@ -14764,7 +14764,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14764
14764
|
}, {
|
|
14765
14765
|
investmentId: z.ZodString;
|
|
14766
14766
|
data: z.ZodObject<{
|
|
14767
|
-
|
|
14767
|
+
stakerInfo: z.ZodObject<{
|
|
14768
14768
|
name: z.ZodOptional<z.ZodString>;
|
|
14769
14769
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
14770
14770
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -14791,7 +14791,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14791
14791
|
}>>;
|
|
14792
14792
|
apy: z.ZodOptional<z.ZodString>;
|
|
14793
14793
|
}, "strip", z.ZodTypeAny, {
|
|
14794
|
-
|
|
14794
|
+
stakerInfo: {
|
|
14795
14795
|
address: `0x${string}`;
|
|
14796
14796
|
name?: string | undefined;
|
|
14797
14797
|
iconUrl?: string | undefined;
|
|
@@ -14804,7 +14804,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14804
14804
|
withdrawableAfter: number;
|
|
14805
14805
|
} | undefined;
|
|
14806
14806
|
}, {
|
|
14807
|
-
|
|
14807
|
+
stakerInfo: {
|
|
14808
14808
|
address: string;
|
|
14809
14809
|
name?: string | undefined;
|
|
14810
14810
|
iconUrl?: string | undefined;
|
|
@@ -14819,7 +14819,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14819
14819
|
}>;
|
|
14820
14820
|
}>, "strip", z.ZodTypeAny, {
|
|
14821
14821
|
data: {
|
|
14822
|
-
|
|
14822
|
+
stakerInfo: {
|
|
14823
14823
|
address: `0x${string}`;
|
|
14824
14824
|
name?: string | undefined;
|
|
14825
14825
|
iconUrl?: string | undefined;
|
|
@@ -14838,7 +14838,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
14838
14838
|
tokenAddress?: `0x${string}` | undefined;
|
|
14839
14839
|
}, {
|
|
14840
14840
|
data: {
|
|
14841
|
-
|
|
14841
|
+
stakerInfo: {
|
|
14842
14842
|
address: string;
|
|
14843
14843
|
name?: string | undefined;
|
|
14844
14844
|
iconUrl?: string | undefined;
|
|
@@ -15140,7 +15140,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
15140
15140
|
}, {
|
|
15141
15141
|
investmentId: z.ZodString;
|
|
15142
15142
|
data: z.ZodObject<{
|
|
15143
|
-
|
|
15143
|
+
stakerInfo: z.ZodObject<{
|
|
15144
15144
|
name: z.ZodOptional<z.ZodString>;
|
|
15145
15145
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
15146
15146
|
address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
@@ -15167,7 +15167,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
15167
15167
|
}>>;
|
|
15168
15168
|
apy: z.ZodOptional<z.ZodString>;
|
|
15169
15169
|
}, "strip", z.ZodTypeAny, {
|
|
15170
|
-
|
|
15170
|
+
stakerInfo: {
|
|
15171
15171
|
address: `0x${string}`;
|
|
15172
15172
|
name?: string | undefined;
|
|
15173
15173
|
iconUrl?: string | undefined;
|
|
@@ -15180,7 +15180,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
15180
15180
|
withdrawableAfter: number;
|
|
15181
15181
|
} | undefined;
|
|
15182
15182
|
}, {
|
|
15183
|
-
|
|
15183
|
+
stakerInfo: {
|
|
15184
15184
|
address: string;
|
|
15185
15185
|
name?: string | undefined;
|
|
15186
15186
|
iconUrl?: string | undefined;
|
|
@@ -15195,7 +15195,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
15195
15195
|
}>;
|
|
15196
15196
|
}>, "strip", z.ZodTypeAny, {
|
|
15197
15197
|
data: {
|
|
15198
|
-
|
|
15198
|
+
stakerInfo: {
|
|
15199
15199
|
address: `0x${string}`;
|
|
15200
15200
|
name?: string | undefined;
|
|
15201
15201
|
iconUrl?: string | undefined;
|
|
@@ -15214,7 +15214,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
|
|
|
15214
15214
|
tokenAddress?: `0x${string}` | undefined;
|
|
15215
15215
|
}, {
|
|
15216
15216
|
data: {
|
|
15217
|
-
|
|
15217
|
+
stakerInfo: {
|
|
15218
15218
|
address: string;
|
|
15219
15219
|
name?: string | undefined;
|
|
15220
15220
|
iconUrl?: string | undefined;
|