@argent/x-shared 1.57.0 → 1.59.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/_virtual/numeral.cjs +1 -0
- package/dist/_virtual/numeral.js +7 -0
- package/dist/_virtual/numeral2.cjs +1 -0
- package/dist/_virtual/numeral2.js +4 -0
- package/dist/index.cjs +1 -1
- package/dist/index.js +289 -285
- package/dist/node_modules/.pnpm/numeral@2.0.6/node_modules/numeral/numeral.cjs +7 -0
- package/dist/node_modules/.pnpm/numeral@2.0.6/node_modules/numeral/numeral.js +424 -0
- package/dist/src/tokens/convertCurrencyValueToTokenAmount.cjs +1 -0
- package/dist/src/tokens/convertCurrencyValueToTokenAmount.d.ts +14 -0
- package/dist/src/tokens/convertCurrencyValueToTokenAmount.js +11 -0
- package/dist/src/tokens/index.d.ts +1 -0
- package/dist/src/tokens/service/types/defiPosition.model.cjs +1 -1
- package/dist/src/tokens/service/types/defiPosition.model.d.ts +290 -264
- package/dist/src/tokens/service/types/defiPosition.model.js +12 -11
- package/dist/src/tokens/service/types/webToken.model.d.ts +4 -4
- package/dist/src/utils/number/abbreviateNumber.cjs +1 -0
- package/dist/src/utils/number/abbreviateNumber.d.ts +13 -0
- package/dist/src/utils/number/abbreviateNumber.js +15 -0
- package/dist/src/utils/number/index.d.ts +1 -0
- package/dist/src/utils/number/prettifyNumber.cjs +1 -1
- package/dist/src/utils/number/prettifyNumber.d.ts +12 -6
- package/dist/src/utils/number/prettifyNumber.js +54 -30
- package/package.json +3 -1
|
@@ -40,13 +40,13 @@ declare const defiPositionTokenSchema: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
40
40
|
}>, "strip", z.ZodTypeAny, {
|
|
41
41
|
address: `0x${string}`;
|
|
42
42
|
networkId: string;
|
|
43
|
+
currencyValue: string;
|
|
43
44
|
principal: string;
|
|
44
45
|
accruedFees: string;
|
|
45
46
|
minPrice: string;
|
|
46
47
|
maxPrice: string;
|
|
47
48
|
currentPrice: string;
|
|
48
49
|
balance: string;
|
|
49
|
-
currencyValue: string;
|
|
50
50
|
symbol?: string | undefined;
|
|
51
51
|
name?: string | undefined;
|
|
52
52
|
decimals?: number | undefined;
|
|
@@ -63,13 +63,13 @@ declare const defiPositionTokenSchema: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
63
63
|
}, {
|
|
64
64
|
address: string;
|
|
65
65
|
networkId: string;
|
|
66
|
+
currencyValue: string;
|
|
66
67
|
principal: string;
|
|
67
68
|
accruedFees: string;
|
|
68
69
|
minPrice: string;
|
|
69
70
|
maxPrice: string;
|
|
70
71
|
currentPrice: string;
|
|
71
72
|
balance: string;
|
|
72
|
-
currencyValue: string;
|
|
73
73
|
symbol?: string | undefined;
|
|
74
74
|
name?: string | undefined;
|
|
75
75
|
decimals?: number | undefined;
|
|
@@ -134,13 +134,13 @@ export declare const concentratedLiquidityPositionSchema: z.ZodObject<z.objectUt
|
|
|
134
134
|
}>, "strip", z.ZodTypeAny, {
|
|
135
135
|
address: `0x${string}`;
|
|
136
136
|
networkId: string;
|
|
137
|
+
currencyValue: string;
|
|
137
138
|
principal: string;
|
|
138
139
|
accruedFees: string;
|
|
139
140
|
minPrice: string;
|
|
140
141
|
maxPrice: string;
|
|
141
142
|
currentPrice: string;
|
|
142
143
|
balance: string;
|
|
143
|
-
currencyValue: string;
|
|
144
144
|
symbol?: string | undefined;
|
|
145
145
|
name?: string | undefined;
|
|
146
146
|
decimals?: number | undefined;
|
|
@@ -157,13 +157,13 @@ export declare const concentratedLiquidityPositionSchema: z.ZodObject<z.objectUt
|
|
|
157
157
|
}, {
|
|
158
158
|
address: string;
|
|
159
159
|
networkId: string;
|
|
160
|
+
currencyValue: string;
|
|
160
161
|
principal: string;
|
|
161
162
|
accruedFees: string;
|
|
162
163
|
minPrice: string;
|
|
163
164
|
maxPrice: string;
|
|
164
165
|
currentPrice: string;
|
|
165
166
|
balance: string;
|
|
166
|
-
currencyValue: string;
|
|
167
167
|
symbol?: string | undefined;
|
|
168
168
|
name?: string | undefined;
|
|
169
169
|
decimals?: number | undefined;
|
|
@@ -219,13 +219,13 @@ export declare const concentratedLiquidityPositionSchema: z.ZodObject<z.objectUt
|
|
|
219
219
|
}>, "strip", z.ZodTypeAny, {
|
|
220
220
|
address: `0x${string}`;
|
|
221
221
|
networkId: string;
|
|
222
|
+
currencyValue: string;
|
|
222
223
|
principal: string;
|
|
223
224
|
accruedFees: string;
|
|
224
225
|
minPrice: string;
|
|
225
226
|
maxPrice: string;
|
|
226
227
|
currentPrice: string;
|
|
227
228
|
balance: string;
|
|
228
|
-
currencyValue: string;
|
|
229
229
|
symbol?: string | undefined;
|
|
230
230
|
name?: string | undefined;
|
|
231
231
|
decimals?: number | undefined;
|
|
@@ -242,13 +242,13 @@ export declare const concentratedLiquidityPositionSchema: z.ZodObject<z.objectUt
|
|
|
242
242
|
}, {
|
|
243
243
|
address: string;
|
|
244
244
|
networkId: string;
|
|
245
|
+
currencyValue: string;
|
|
245
246
|
principal: string;
|
|
246
247
|
accruedFees: string;
|
|
247
248
|
minPrice: string;
|
|
248
249
|
maxPrice: string;
|
|
249
250
|
currentPrice: string;
|
|
250
251
|
balance: string;
|
|
251
|
-
currencyValue: string;
|
|
252
252
|
symbol?: string | undefined;
|
|
253
253
|
name?: string | undefined;
|
|
254
254
|
decimals?: number | undefined;
|
|
@@ -264,17 +264,18 @@ export declare const concentratedLiquidityPositionSchema: z.ZodObject<z.objectUt
|
|
|
264
264
|
currencySymbol?: string | undefined;
|
|
265
265
|
}>;
|
|
266
266
|
}>, "strip", z.ZodTypeAny, {
|
|
267
|
+
currencyValue: string;
|
|
267
268
|
poolFeePercentage: string;
|
|
268
269
|
token0: {
|
|
269
270
|
address: `0x${string}`;
|
|
270
271
|
networkId: string;
|
|
272
|
+
currencyValue: string;
|
|
271
273
|
principal: string;
|
|
272
274
|
accruedFees: string;
|
|
273
275
|
minPrice: string;
|
|
274
276
|
maxPrice: string;
|
|
275
277
|
currentPrice: string;
|
|
276
278
|
balance: string;
|
|
277
|
-
currencyValue: string;
|
|
278
279
|
symbol?: string | undefined;
|
|
279
280
|
name?: string | undefined;
|
|
280
281
|
decimals?: number | undefined;
|
|
@@ -292,13 +293,13 @@ export declare const concentratedLiquidityPositionSchema: z.ZodObject<z.objectUt
|
|
|
292
293
|
token1: {
|
|
293
294
|
address: `0x${string}`;
|
|
294
295
|
networkId: string;
|
|
296
|
+
currencyValue: string;
|
|
295
297
|
principal: string;
|
|
296
298
|
accruedFees: string;
|
|
297
299
|
minPrice: string;
|
|
298
300
|
maxPrice: string;
|
|
299
301
|
currentPrice: string;
|
|
300
302
|
balance: string;
|
|
301
|
-
currencyValue: string;
|
|
302
303
|
symbol?: string | undefined;
|
|
303
304
|
name?: string | undefined;
|
|
304
305
|
decimals?: number | undefined;
|
|
@@ -313,7 +314,6 @@ export declare const concentratedLiquidityPositionSchema: z.ZodObject<z.objectUt
|
|
|
313
314
|
ccyDayChange?: string | undefined;
|
|
314
315
|
currencySymbol?: string | undefined;
|
|
315
316
|
};
|
|
316
|
-
currencyValue: string;
|
|
317
317
|
address?: `0x${string}` | undefined;
|
|
318
318
|
tokenId?: string | undefined;
|
|
319
319
|
tickSpacingPercentage?: string | undefined;
|
|
@@ -324,13 +324,13 @@ export declare const concentratedLiquidityPositionSchema: z.ZodObject<z.objectUt
|
|
|
324
324
|
token0: {
|
|
325
325
|
address: string;
|
|
326
326
|
networkId: string;
|
|
327
|
+
currencyValue: string;
|
|
327
328
|
principal: string;
|
|
328
329
|
accruedFees: string;
|
|
329
330
|
minPrice: string;
|
|
330
331
|
maxPrice: string;
|
|
331
332
|
currentPrice: string;
|
|
332
333
|
balance: string;
|
|
333
|
-
currencyValue: string;
|
|
334
334
|
symbol?: string | undefined;
|
|
335
335
|
name?: string | undefined;
|
|
336
336
|
decimals?: number | undefined;
|
|
@@ -348,13 +348,13 @@ export declare const concentratedLiquidityPositionSchema: z.ZodObject<z.objectUt
|
|
|
348
348
|
token1: {
|
|
349
349
|
address: string;
|
|
350
350
|
networkId: string;
|
|
351
|
+
currencyValue: string;
|
|
351
352
|
principal: string;
|
|
352
353
|
accruedFees: string;
|
|
353
354
|
minPrice: string;
|
|
354
355
|
maxPrice: string;
|
|
355
356
|
currentPrice: string;
|
|
356
357
|
balance: string;
|
|
357
|
-
currencyValue: string;
|
|
358
358
|
symbol?: string | undefined;
|
|
359
359
|
name?: string | undefined;
|
|
360
360
|
decimals?: number | undefined;
|
|
@@ -370,9 +370,9 @@ export declare const concentratedLiquidityPositionSchema: z.ZodObject<z.objectUt
|
|
|
370
370
|
currencySymbol?: string | undefined;
|
|
371
371
|
};
|
|
372
372
|
address?: string | undefined;
|
|
373
|
+
currencyValue?: string | undefined;
|
|
373
374
|
tokenId?: string | undefined;
|
|
374
375
|
tickSpacingPercentage?: string | undefined;
|
|
375
|
-
currencyValue?: string | undefined;
|
|
376
376
|
unitCurrencyValueToken0?: string | undefined;
|
|
377
377
|
unitCurrencyValueToken1?: string | undefined;
|
|
378
378
|
}>;
|
|
@@ -426,13 +426,13 @@ export declare const concentratedLiquidityPositionsSchema: z.ZodArray<z.ZodObjec
|
|
|
426
426
|
}>, "strip", z.ZodTypeAny, {
|
|
427
427
|
address: `0x${string}`;
|
|
428
428
|
networkId: string;
|
|
429
|
+
currencyValue: string;
|
|
429
430
|
principal: string;
|
|
430
431
|
accruedFees: string;
|
|
431
432
|
minPrice: string;
|
|
432
433
|
maxPrice: string;
|
|
433
434
|
currentPrice: string;
|
|
434
435
|
balance: string;
|
|
435
|
-
currencyValue: string;
|
|
436
436
|
symbol?: string | undefined;
|
|
437
437
|
name?: string | undefined;
|
|
438
438
|
decimals?: number | undefined;
|
|
@@ -449,13 +449,13 @@ export declare const concentratedLiquidityPositionsSchema: z.ZodArray<z.ZodObjec
|
|
|
449
449
|
}, {
|
|
450
450
|
address: string;
|
|
451
451
|
networkId: string;
|
|
452
|
+
currencyValue: string;
|
|
452
453
|
principal: string;
|
|
453
454
|
accruedFees: string;
|
|
454
455
|
minPrice: string;
|
|
455
456
|
maxPrice: string;
|
|
456
457
|
currentPrice: string;
|
|
457
458
|
balance: string;
|
|
458
|
-
currencyValue: string;
|
|
459
459
|
symbol?: string | undefined;
|
|
460
460
|
name?: string | undefined;
|
|
461
461
|
decimals?: number | undefined;
|
|
@@ -511,13 +511,13 @@ export declare const concentratedLiquidityPositionsSchema: z.ZodArray<z.ZodObjec
|
|
|
511
511
|
}>, "strip", z.ZodTypeAny, {
|
|
512
512
|
address: `0x${string}`;
|
|
513
513
|
networkId: string;
|
|
514
|
+
currencyValue: string;
|
|
514
515
|
principal: string;
|
|
515
516
|
accruedFees: string;
|
|
516
517
|
minPrice: string;
|
|
517
518
|
maxPrice: string;
|
|
518
519
|
currentPrice: string;
|
|
519
520
|
balance: string;
|
|
520
|
-
currencyValue: string;
|
|
521
521
|
symbol?: string | undefined;
|
|
522
522
|
name?: string | undefined;
|
|
523
523
|
decimals?: number | undefined;
|
|
@@ -534,13 +534,13 @@ export declare const concentratedLiquidityPositionsSchema: z.ZodArray<z.ZodObjec
|
|
|
534
534
|
}, {
|
|
535
535
|
address: string;
|
|
536
536
|
networkId: string;
|
|
537
|
+
currencyValue: string;
|
|
537
538
|
principal: string;
|
|
538
539
|
accruedFees: string;
|
|
539
540
|
minPrice: string;
|
|
540
541
|
maxPrice: string;
|
|
541
542
|
currentPrice: string;
|
|
542
543
|
balance: string;
|
|
543
|
-
currencyValue: string;
|
|
544
544
|
symbol?: string | undefined;
|
|
545
545
|
name?: string | undefined;
|
|
546
546
|
decimals?: number | undefined;
|
|
@@ -556,17 +556,18 @@ export declare const concentratedLiquidityPositionsSchema: z.ZodArray<z.ZodObjec
|
|
|
556
556
|
currencySymbol?: string | undefined;
|
|
557
557
|
}>;
|
|
558
558
|
}>, "strip", z.ZodTypeAny, {
|
|
559
|
+
currencyValue: string;
|
|
559
560
|
poolFeePercentage: string;
|
|
560
561
|
token0: {
|
|
561
562
|
address: `0x${string}`;
|
|
562
563
|
networkId: string;
|
|
564
|
+
currencyValue: string;
|
|
563
565
|
principal: string;
|
|
564
566
|
accruedFees: string;
|
|
565
567
|
minPrice: string;
|
|
566
568
|
maxPrice: string;
|
|
567
569
|
currentPrice: string;
|
|
568
570
|
balance: string;
|
|
569
|
-
currencyValue: string;
|
|
570
571
|
symbol?: string | undefined;
|
|
571
572
|
name?: string | undefined;
|
|
572
573
|
decimals?: number | undefined;
|
|
@@ -584,13 +585,13 @@ export declare const concentratedLiquidityPositionsSchema: z.ZodArray<z.ZodObjec
|
|
|
584
585
|
token1: {
|
|
585
586
|
address: `0x${string}`;
|
|
586
587
|
networkId: string;
|
|
588
|
+
currencyValue: string;
|
|
587
589
|
principal: string;
|
|
588
590
|
accruedFees: string;
|
|
589
591
|
minPrice: string;
|
|
590
592
|
maxPrice: string;
|
|
591
593
|
currentPrice: string;
|
|
592
594
|
balance: string;
|
|
593
|
-
currencyValue: string;
|
|
594
595
|
symbol?: string | undefined;
|
|
595
596
|
name?: string | undefined;
|
|
596
597
|
decimals?: number | undefined;
|
|
@@ -605,7 +606,6 @@ export declare const concentratedLiquidityPositionsSchema: z.ZodArray<z.ZodObjec
|
|
|
605
606
|
ccyDayChange?: string | undefined;
|
|
606
607
|
currencySymbol?: string | undefined;
|
|
607
608
|
};
|
|
608
|
-
currencyValue: string;
|
|
609
609
|
address?: `0x${string}` | undefined;
|
|
610
610
|
tokenId?: string | undefined;
|
|
611
611
|
tickSpacingPercentage?: string | undefined;
|
|
@@ -616,13 +616,13 @@ export declare const concentratedLiquidityPositionsSchema: z.ZodArray<z.ZodObjec
|
|
|
616
616
|
token0: {
|
|
617
617
|
address: string;
|
|
618
618
|
networkId: string;
|
|
619
|
+
currencyValue: string;
|
|
619
620
|
principal: string;
|
|
620
621
|
accruedFees: string;
|
|
621
622
|
minPrice: string;
|
|
622
623
|
maxPrice: string;
|
|
623
624
|
currentPrice: string;
|
|
624
625
|
balance: string;
|
|
625
|
-
currencyValue: string;
|
|
626
626
|
symbol?: string | undefined;
|
|
627
627
|
name?: string | undefined;
|
|
628
628
|
decimals?: number | undefined;
|
|
@@ -640,13 +640,13 @@ export declare const concentratedLiquidityPositionsSchema: z.ZodArray<z.ZodObjec
|
|
|
640
640
|
token1: {
|
|
641
641
|
address: string;
|
|
642
642
|
networkId: string;
|
|
643
|
+
currencyValue: string;
|
|
643
644
|
principal: string;
|
|
644
645
|
accruedFees: string;
|
|
645
646
|
minPrice: string;
|
|
646
647
|
maxPrice: string;
|
|
647
648
|
currentPrice: string;
|
|
648
649
|
balance: string;
|
|
649
|
-
currencyValue: string;
|
|
650
650
|
symbol?: string | undefined;
|
|
651
651
|
name?: string | undefined;
|
|
652
652
|
decimals?: number | undefined;
|
|
@@ -662,9 +662,9 @@ export declare const concentratedLiquidityPositionsSchema: z.ZodArray<z.ZodObjec
|
|
|
662
662
|
currencySymbol?: string | undefined;
|
|
663
663
|
};
|
|
664
664
|
address?: string | undefined;
|
|
665
|
+
currencyValue?: string | undefined;
|
|
665
666
|
tokenId?: string | undefined;
|
|
666
667
|
tickSpacingPercentage?: string | undefined;
|
|
667
|
-
currencyValue?: string | undefined;
|
|
668
668
|
unitCurrencyValueToken0?: string | undefined;
|
|
669
669
|
unitCurrencyValueToken1?: string | undefined;
|
|
670
670
|
}>, "many">;
|
|
@@ -808,8 +808,8 @@ export declare const collateralizedDebtPositionSchema: z.ZodObject<z.objectUtil.
|
|
|
808
808
|
}>, "strip", z.ZodTypeAny, {
|
|
809
809
|
address: `0x${string}`;
|
|
810
810
|
networkId: string;
|
|
811
|
-
balance: string;
|
|
812
811
|
currencyValue: string;
|
|
812
|
+
balance: string;
|
|
813
813
|
symbol?: string | undefined;
|
|
814
814
|
name?: string | undefined;
|
|
815
815
|
decimals?: number | undefined;
|
|
@@ -826,8 +826,8 @@ export declare const collateralizedDebtPositionSchema: z.ZodObject<z.objectUtil.
|
|
|
826
826
|
}, {
|
|
827
827
|
address: string;
|
|
828
828
|
networkId: string;
|
|
829
|
-
balance: string;
|
|
830
829
|
currencyValue: string;
|
|
830
|
+
balance: string;
|
|
831
831
|
symbol?: string | undefined;
|
|
832
832
|
name?: string | undefined;
|
|
833
833
|
decimals?: number | undefined;
|
|
@@ -846,10 +846,10 @@ export declare const collateralizedDebtPositionSchema: z.ZodObject<z.objectUtil.
|
|
|
846
846
|
accountAddressGroup: z.ZodOptional<z.ZodString>;
|
|
847
847
|
}>, "strip", z.ZodTypeAny, {
|
|
848
848
|
lending: boolean;
|
|
849
|
+
currencyValue: string;
|
|
849
850
|
totalBalances: Record<string, string>;
|
|
850
851
|
collateral: boolean;
|
|
851
852
|
debt: boolean;
|
|
852
|
-
currencyValue: string;
|
|
853
853
|
address?: `0x${string}` | undefined;
|
|
854
854
|
accountAddress?: `0x${string}` | undefined;
|
|
855
855
|
totalApy?: string | undefined;
|
|
@@ -883,8 +883,8 @@ export declare const collateralizedDebtPositionSchema: z.ZodObject<z.objectUtil.
|
|
|
883
883
|
token?: {
|
|
884
884
|
address: `0x${string}`;
|
|
885
885
|
networkId: string;
|
|
886
|
-
balance: string;
|
|
887
886
|
currencyValue: string;
|
|
887
|
+
balance: string;
|
|
888
888
|
symbol?: string | undefined;
|
|
889
889
|
name?: string | undefined;
|
|
890
890
|
decimals?: number | undefined;
|
|
@@ -909,9 +909,9 @@ export declare const collateralizedDebtPositionSchema: z.ZodObject<z.objectUtil.
|
|
|
909
909
|
accountAddress?: string | undefined;
|
|
910
910
|
totalApy?: string | undefined;
|
|
911
911
|
apy?: string | undefined;
|
|
912
|
+
currencyValue?: string | undefined;
|
|
912
913
|
unitCurrencyValue?: string | undefined;
|
|
913
914
|
group?: string | undefined;
|
|
914
|
-
currencyValue?: string | undefined;
|
|
915
915
|
positionToken?: {
|
|
916
916
|
symbol: string;
|
|
917
917
|
name: string;
|
|
@@ -939,8 +939,8 @@ export declare const collateralizedDebtPositionSchema: z.ZodObject<z.objectUtil.
|
|
|
939
939
|
token?: {
|
|
940
940
|
address: string;
|
|
941
941
|
networkId: string;
|
|
942
|
-
balance: string;
|
|
943
942
|
currencyValue: string;
|
|
943
|
+
balance: string;
|
|
944
944
|
symbol?: string | undefined;
|
|
945
945
|
name?: string | undefined;
|
|
946
946
|
decimals?: number | undefined;
|
|
@@ -1084,8 +1084,8 @@ export declare const collateralizedDebtPositionsSchema: z.ZodArray<z.ZodObject<z
|
|
|
1084
1084
|
}>, "strip", z.ZodTypeAny, {
|
|
1085
1085
|
address: `0x${string}`;
|
|
1086
1086
|
networkId: string;
|
|
1087
|
-
balance: string;
|
|
1088
1087
|
currencyValue: string;
|
|
1088
|
+
balance: string;
|
|
1089
1089
|
symbol?: string | undefined;
|
|
1090
1090
|
name?: string | undefined;
|
|
1091
1091
|
decimals?: number | undefined;
|
|
@@ -1102,8 +1102,8 @@ export declare const collateralizedDebtPositionsSchema: z.ZodArray<z.ZodObject<z
|
|
|
1102
1102
|
}, {
|
|
1103
1103
|
address: string;
|
|
1104
1104
|
networkId: string;
|
|
1105
|
-
balance: string;
|
|
1106
1105
|
currencyValue: string;
|
|
1106
|
+
balance: string;
|
|
1107
1107
|
symbol?: string | undefined;
|
|
1108
1108
|
name?: string | undefined;
|
|
1109
1109
|
decimals?: number | undefined;
|
|
@@ -1122,10 +1122,10 @@ export declare const collateralizedDebtPositionsSchema: z.ZodArray<z.ZodObject<z
|
|
|
1122
1122
|
accountAddressGroup: z.ZodOptional<z.ZodString>;
|
|
1123
1123
|
}>, "strip", z.ZodTypeAny, {
|
|
1124
1124
|
lending: boolean;
|
|
1125
|
+
currencyValue: string;
|
|
1125
1126
|
totalBalances: Record<string, string>;
|
|
1126
1127
|
collateral: boolean;
|
|
1127
1128
|
debt: boolean;
|
|
1128
|
-
currencyValue: string;
|
|
1129
1129
|
address?: `0x${string}` | undefined;
|
|
1130
1130
|
accountAddress?: `0x${string}` | undefined;
|
|
1131
1131
|
totalApy?: string | undefined;
|
|
@@ -1159,8 +1159,8 @@ export declare const collateralizedDebtPositionsSchema: z.ZodArray<z.ZodObject<z
|
|
|
1159
1159
|
token?: {
|
|
1160
1160
|
address: `0x${string}`;
|
|
1161
1161
|
networkId: string;
|
|
1162
|
-
balance: string;
|
|
1163
1162
|
currencyValue: string;
|
|
1163
|
+
balance: string;
|
|
1164
1164
|
symbol?: string | undefined;
|
|
1165
1165
|
name?: string | undefined;
|
|
1166
1166
|
decimals?: number | undefined;
|
|
@@ -1185,9 +1185,9 @@ export declare const collateralizedDebtPositionsSchema: z.ZodArray<z.ZodObject<z
|
|
|
1185
1185
|
accountAddress?: string | undefined;
|
|
1186
1186
|
totalApy?: string | undefined;
|
|
1187
1187
|
apy?: string | undefined;
|
|
1188
|
+
currencyValue?: string | undefined;
|
|
1188
1189
|
unitCurrencyValue?: string | undefined;
|
|
1189
1190
|
group?: string | undefined;
|
|
1190
|
-
currencyValue?: string | undefined;
|
|
1191
1191
|
positionToken?: {
|
|
1192
1192
|
symbol: string;
|
|
1193
1193
|
name: string;
|
|
@@ -1215,8 +1215,8 @@ export declare const collateralizedDebtPositionsSchema: z.ZodArray<z.ZodObject<z
|
|
|
1215
1215
|
token?: {
|
|
1216
1216
|
address: string;
|
|
1217
1217
|
networkId: string;
|
|
1218
|
-
balance: string;
|
|
1219
1218
|
currencyValue: string;
|
|
1219
|
+
balance: string;
|
|
1220
1220
|
symbol?: string | undefined;
|
|
1221
1221
|
name?: string | undefined;
|
|
1222
1222
|
decimals?: number | undefined;
|
|
@@ -1273,8 +1273,8 @@ export declare const delegatedTokensSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
1273
1273
|
}>, "strip", z.ZodTypeAny, {
|
|
1274
1274
|
address: `0x${string}`;
|
|
1275
1275
|
networkId: string;
|
|
1276
|
-
balance: string;
|
|
1277
1276
|
currencyValue: string;
|
|
1277
|
+
balance: string;
|
|
1278
1278
|
symbol?: string | undefined;
|
|
1279
1279
|
name?: string | undefined;
|
|
1280
1280
|
decimals?: number | undefined;
|
|
@@ -1291,8 +1291,8 @@ export declare const delegatedTokensSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
1291
1291
|
}, {
|
|
1292
1292
|
address: string;
|
|
1293
1293
|
networkId: string;
|
|
1294
|
-
balance: string;
|
|
1295
1294
|
currencyValue: string;
|
|
1295
|
+
balance: string;
|
|
1296
1296
|
symbol?: string | undefined;
|
|
1297
1297
|
name?: string | undefined;
|
|
1298
1298
|
decimals?: number | undefined;
|
|
@@ -1310,16 +1310,16 @@ export declare const delegatedTokensSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
1310
1310
|
balance: z.ZodString;
|
|
1311
1311
|
unitCurrencyValue: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1312
1312
|
}>, "strip", z.ZodTypeAny, {
|
|
1313
|
+
currencyValue: string;
|
|
1313
1314
|
unitCurrencyValue: string;
|
|
1314
1315
|
delegatingTo: `0x${string}`;
|
|
1315
1316
|
balance: string;
|
|
1316
|
-
currencyValue: string;
|
|
1317
1317
|
address?: `0x${string}` | undefined;
|
|
1318
1318
|
token?: {
|
|
1319
1319
|
address: `0x${string}`;
|
|
1320
1320
|
networkId: string;
|
|
1321
|
-
balance: string;
|
|
1322
1321
|
currencyValue: string;
|
|
1322
|
+
balance: string;
|
|
1323
1323
|
symbol?: string | undefined;
|
|
1324
1324
|
name?: string | undefined;
|
|
1325
1325
|
decimals?: number | undefined;
|
|
@@ -1338,13 +1338,13 @@ export declare const delegatedTokensSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
1338
1338
|
delegatingTo: string;
|
|
1339
1339
|
balance: string;
|
|
1340
1340
|
address?: string | undefined;
|
|
1341
|
-
unitCurrencyValue?: string | undefined;
|
|
1342
1341
|
currencyValue?: string | undefined;
|
|
1342
|
+
unitCurrencyValue?: string | undefined;
|
|
1343
1343
|
token?: {
|
|
1344
1344
|
address: string;
|
|
1345
1345
|
networkId: string;
|
|
1346
|
-
balance: string;
|
|
1347
1346
|
currencyValue: string;
|
|
1347
|
+
balance: string;
|
|
1348
1348
|
symbol?: string | undefined;
|
|
1349
1349
|
name?: string | undefined;
|
|
1350
1350
|
decimals?: number | undefined;
|
|
@@ -1400,8 +1400,8 @@ export declare const delegatedTokensArraySchema: z.ZodArray<z.ZodObject<z.object
|
|
|
1400
1400
|
}>, "strip", z.ZodTypeAny, {
|
|
1401
1401
|
address: `0x${string}`;
|
|
1402
1402
|
networkId: string;
|
|
1403
|
-
balance: string;
|
|
1404
1403
|
currencyValue: string;
|
|
1404
|
+
balance: string;
|
|
1405
1405
|
symbol?: string | undefined;
|
|
1406
1406
|
name?: string | undefined;
|
|
1407
1407
|
decimals?: number | undefined;
|
|
@@ -1418,8 +1418,8 @@ export declare const delegatedTokensArraySchema: z.ZodArray<z.ZodObject<z.object
|
|
|
1418
1418
|
}, {
|
|
1419
1419
|
address: string;
|
|
1420
1420
|
networkId: string;
|
|
1421
|
-
balance: string;
|
|
1422
1421
|
currencyValue: string;
|
|
1422
|
+
balance: string;
|
|
1423
1423
|
symbol?: string | undefined;
|
|
1424
1424
|
name?: string | undefined;
|
|
1425
1425
|
decimals?: number | undefined;
|
|
@@ -1437,16 +1437,16 @@ export declare const delegatedTokensArraySchema: z.ZodArray<z.ZodObject<z.object
|
|
|
1437
1437
|
balance: z.ZodString;
|
|
1438
1438
|
unitCurrencyValue: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1439
1439
|
}>, "strip", z.ZodTypeAny, {
|
|
1440
|
+
currencyValue: string;
|
|
1440
1441
|
unitCurrencyValue: string;
|
|
1441
1442
|
delegatingTo: `0x${string}`;
|
|
1442
1443
|
balance: string;
|
|
1443
|
-
currencyValue: string;
|
|
1444
1444
|
address?: `0x${string}` | undefined;
|
|
1445
1445
|
token?: {
|
|
1446
1446
|
address: `0x${string}`;
|
|
1447
1447
|
networkId: string;
|
|
1448
|
-
balance: string;
|
|
1449
1448
|
currencyValue: string;
|
|
1449
|
+
balance: string;
|
|
1450
1450
|
symbol?: string | undefined;
|
|
1451
1451
|
name?: string | undefined;
|
|
1452
1452
|
decimals?: number | undefined;
|
|
@@ -1465,13 +1465,13 @@ export declare const delegatedTokensArraySchema: z.ZodArray<z.ZodObject<z.object
|
|
|
1465
1465
|
delegatingTo: string;
|
|
1466
1466
|
balance: string;
|
|
1467
1467
|
address?: string | undefined;
|
|
1468
|
-
unitCurrencyValue?: string | undefined;
|
|
1469
1468
|
currencyValue?: string | undefined;
|
|
1469
|
+
unitCurrencyValue?: string | undefined;
|
|
1470
1470
|
token?: {
|
|
1471
1471
|
address: string;
|
|
1472
1472
|
networkId: string;
|
|
1473
|
-
balance: string;
|
|
1474
1473
|
currencyValue: string;
|
|
1474
|
+
balance: string;
|
|
1475
1475
|
symbol?: string | undefined;
|
|
1476
1476
|
name?: string | undefined;
|
|
1477
1477
|
decimals?: number | undefined;
|
|
@@ -1542,8 +1542,8 @@ export declare const stakingPositionSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
1542
1542
|
}>, "strip", z.ZodTypeAny, {
|
|
1543
1543
|
address: `0x${string}`;
|
|
1544
1544
|
networkId: string;
|
|
1545
|
-
balance: string;
|
|
1546
1545
|
currencyValue: string;
|
|
1546
|
+
balance: string;
|
|
1547
1547
|
symbol?: string | undefined;
|
|
1548
1548
|
name?: string | undefined;
|
|
1549
1549
|
decimals?: number | undefined;
|
|
@@ -1560,8 +1560,8 @@ export declare const stakingPositionSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
1560
1560
|
}, {
|
|
1561
1561
|
address: string;
|
|
1562
1562
|
networkId: string;
|
|
1563
|
-
balance: string;
|
|
1564
1563
|
currencyValue: string;
|
|
1564
|
+
balance: string;
|
|
1565
1565
|
symbol?: string | undefined;
|
|
1566
1566
|
name?: string | undefined;
|
|
1567
1567
|
decimals?: number | undefined;
|
|
@@ -1576,6 +1576,7 @@ export declare const stakingPositionSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
1576
1576
|
ccyDayChange?: string | undefined;
|
|
1577
1577
|
currencySymbol?: string | undefined;
|
|
1578
1578
|
}>;
|
|
1579
|
+
liquidTokenAddress: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
1579
1580
|
}>, "strip", z.ZodTypeAny, {
|
|
1580
1581
|
id: string;
|
|
1581
1582
|
totalApy: number;
|
|
@@ -1584,8 +1585,8 @@ export declare const stakingPositionSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
1584
1585
|
token: {
|
|
1585
1586
|
address: `0x${string}`;
|
|
1586
1587
|
networkId: string;
|
|
1587
|
-
balance: string;
|
|
1588
1588
|
currencyValue: string;
|
|
1589
|
+
balance: string;
|
|
1589
1590
|
symbol?: string | undefined;
|
|
1590
1591
|
name?: string | undefined;
|
|
1591
1592
|
decimals?: number | undefined;
|
|
@@ -1605,6 +1606,7 @@ export declare const stakingPositionSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
1605
1606
|
eth: string;
|
|
1606
1607
|
currency: string;
|
|
1607
1608
|
};
|
|
1609
|
+
liquidTokenAddress: `0x${string}`;
|
|
1608
1610
|
address?: `0x${string}` | undefined;
|
|
1609
1611
|
}, {
|
|
1610
1612
|
id: string;
|
|
@@ -1613,8 +1615,8 @@ export declare const stakingPositionSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
1613
1615
|
token: {
|
|
1614
1616
|
address: string;
|
|
1615
1617
|
networkId: string;
|
|
1616
|
-
balance: string;
|
|
1617
1618
|
currencyValue: string;
|
|
1619
|
+
balance: string;
|
|
1618
1620
|
symbol?: string | undefined;
|
|
1619
1621
|
name?: string | undefined;
|
|
1620
1622
|
decimals?: number | undefined;
|
|
@@ -1634,6 +1636,7 @@ export declare const stakingPositionSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
1634
1636
|
eth: string;
|
|
1635
1637
|
currency: string;
|
|
1636
1638
|
};
|
|
1639
|
+
liquidTokenAddress: string;
|
|
1637
1640
|
address?: string | undefined;
|
|
1638
1641
|
currencyValue?: string | undefined;
|
|
1639
1642
|
}>;
|
|
@@ -1692,8 +1695,8 @@ export declare const stakingPositionsSchema: z.ZodArray<z.ZodObject<z.objectUtil
|
|
|
1692
1695
|
}>, "strip", z.ZodTypeAny, {
|
|
1693
1696
|
address: `0x${string}`;
|
|
1694
1697
|
networkId: string;
|
|
1695
|
-
balance: string;
|
|
1696
1698
|
currencyValue: string;
|
|
1699
|
+
balance: string;
|
|
1697
1700
|
symbol?: string | undefined;
|
|
1698
1701
|
name?: string | undefined;
|
|
1699
1702
|
decimals?: number | undefined;
|
|
@@ -1710,8 +1713,8 @@ export declare const stakingPositionsSchema: z.ZodArray<z.ZodObject<z.objectUtil
|
|
|
1710
1713
|
}, {
|
|
1711
1714
|
address: string;
|
|
1712
1715
|
networkId: string;
|
|
1713
|
-
balance: string;
|
|
1714
1716
|
currencyValue: string;
|
|
1717
|
+
balance: string;
|
|
1715
1718
|
symbol?: string | undefined;
|
|
1716
1719
|
name?: string | undefined;
|
|
1717
1720
|
decimals?: number | undefined;
|
|
@@ -1726,6 +1729,7 @@ export declare const stakingPositionsSchema: z.ZodArray<z.ZodObject<z.objectUtil
|
|
|
1726
1729
|
ccyDayChange?: string | undefined;
|
|
1727
1730
|
currencySymbol?: string | undefined;
|
|
1728
1731
|
}>;
|
|
1732
|
+
liquidTokenAddress: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
1729
1733
|
}>, "strip", z.ZodTypeAny, {
|
|
1730
1734
|
id: string;
|
|
1731
1735
|
totalApy: number;
|
|
@@ -1734,8 +1738,8 @@ export declare const stakingPositionsSchema: z.ZodArray<z.ZodObject<z.objectUtil
|
|
|
1734
1738
|
token: {
|
|
1735
1739
|
address: `0x${string}`;
|
|
1736
1740
|
networkId: string;
|
|
1737
|
-
balance: string;
|
|
1738
1741
|
currencyValue: string;
|
|
1742
|
+
balance: string;
|
|
1739
1743
|
symbol?: string | undefined;
|
|
1740
1744
|
name?: string | undefined;
|
|
1741
1745
|
decimals?: number | undefined;
|
|
@@ -1755,6 +1759,7 @@ export declare const stakingPositionsSchema: z.ZodArray<z.ZodObject<z.objectUtil
|
|
|
1755
1759
|
eth: string;
|
|
1756
1760
|
currency: string;
|
|
1757
1761
|
};
|
|
1762
|
+
liquidTokenAddress: `0x${string}`;
|
|
1758
1763
|
address?: `0x${string}` | undefined;
|
|
1759
1764
|
}, {
|
|
1760
1765
|
id: string;
|
|
@@ -1763,8 +1768,8 @@ export declare const stakingPositionsSchema: z.ZodArray<z.ZodObject<z.objectUtil
|
|
|
1763
1768
|
token: {
|
|
1764
1769
|
address: string;
|
|
1765
1770
|
networkId: string;
|
|
1766
|
-
balance: string;
|
|
1767
1771
|
currencyValue: string;
|
|
1772
|
+
balance: string;
|
|
1768
1773
|
symbol?: string | undefined;
|
|
1769
1774
|
name?: string | undefined;
|
|
1770
1775
|
decimals?: number | undefined;
|
|
@@ -1784,6 +1789,7 @@ export declare const stakingPositionsSchema: z.ZodArray<z.ZodObject<z.objectUtil
|
|
|
1784
1789
|
eth: string;
|
|
1785
1790
|
currency: string;
|
|
1786
1791
|
};
|
|
1792
|
+
liquidTokenAddress: string;
|
|
1787
1793
|
address?: string | undefined;
|
|
1788
1794
|
currencyValue?: string | undefined;
|
|
1789
1795
|
}>, "many">;
|
|
@@ -1881,8 +1887,8 @@ export declare const strkDelegatedStakingPositionSchema: z.ZodObject<z.objectUti
|
|
|
1881
1887
|
}>, "strip", z.ZodTypeAny, {
|
|
1882
1888
|
address: `0x${string}`;
|
|
1883
1889
|
networkId: string;
|
|
1884
|
-
balance: string;
|
|
1885
1890
|
currencyValue: string;
|
|
1891
|
+
balance: string;
|
|
1886
1892
|
symbol?: string | undefined;
|
|
1887
1893
|
name?: string | undefined;
|
|
1888
1894
|
decimals?: number | undefined;
|
|
@@ -1899,8 +1905,8 @@ export declare const strkDelegatedStakingPositionSchema: z.ZodObject<z.objectUti
|
|
|
1899
1905
|
}, {
|
|
1900
1906
|
address: string;
|
|
1901
1907
|
networkId: string;
|
|
1902
|
-
balance: string;
|
|
1903
1908
|
currencyValue: string;
|
|
1909
|
+
balance: string;
|
|
1904
1910
|
symbol?: string | undefined;
|
|
1905
1911
|
name?: string | undefined;
|
|
1906
1912
|
decimals?: number | undefined;
|
|
@@ -1924,6 +1930,7 @@ export declare const strkDelegatedStakingPositionSchema: z.ZodObject<z.objectUti
|
|
|
1924
1930
|
name?: string | undefined;
|
|
1925
1931
|
iconUrl?: string | undefined;
|
|
1926
1932
|
};
|
|
1933
|
+
currencyValue: string;
|
|
1927
1934
|
accruedRewards: {
|
|
1928
1935
|
wei: string;
|
|
1929
1936
|
eth: string;
|
|
@@ -1934,12 +1941,11 @@ export declare const strkDelegatedStakingPositionSchema: z.ZodObject<z.objectUti
|
|
|
1934
1941
|
eth: string;
|
|
1935
1942
|
currency: string;
|
|
1936
1943
|
};
|
|
1937
|
-
currencyValue: string;
|
|
1938
1944
|
token: {
|
|
1939
1945
|
address: `0x${string}`;
|
|
1940
1946
|
networkId: string;
|
|
1941
|
-
balance: string;
|
|
1942
1947
|
currencyValue: string;
|
|
1948
|
+
balance: string;
|
|
1943
1949
|
symbol?: string | undefined;
|
|
1944
1950
|
name?: string | undefined;
|
|
1945
1951
|
decimals?: number | undefined;
|
|
@@ -1982,8 +1988,8 @@ export declare const strkDelegatedStakingPositionSchema: z.ZodObject<z.objectUti
|
|
|
1982
1988
|
token: {
|
|
1983
1989
|
address: string;
|
|
1984
1990
|
networkId: string;
|
|
1985
|
-
balance: string;
|
|
1986
1991
|
currencyValue: string;
|
|
1992
|
+
balance: string;
|
|
1987
1993
|
symbol?: string | undefined;
|
|
1988
1994
|
name?: string | undefined;
|
|
1989
1995
|
decimals?: number | undefined;
|
|
@@ -2100,8 +2106,8 @@ export declare const strkDelegatedStakingPositionArraySchema: z.ZodArray<z.ZodOb
|
|
|
2100
2106
|
}>, "strip", z.ZodTypeAny, {
|
|
2101
2107
|
address: `0x${string}`;
|
|
2102
2108
|
networkId: string;
|
|
2103
|
-
balance: string;
|
|
2104
2109
|
currencyValue: string;
|
|
2110
|
+
balance: string;
|
|
2105
2111
|
symbol?: string | undefined;
|
|
2106
2112
|
name?: string | undefined;
|
|
2107
2113
|
decimals?: number | undefined;
|
|
@@ -2118,8 +2124,8 @@ export declare const strkDelegatedStakingPositionArraySchema: z.ZodArray<z.ZodOb
|
|
|
2118
2124
|
}, {
|
|
2119
2125
|
address: string;
|
|
2120
2126
|
networkId: string;
|
|
2121
|
-
balance: string;
|
|
2122
2127
|
currencyValue: string;
|
|
2128
|
+
balance: string;
|
|
2123
2129
|
symbol?: string | undefined;
|
|
2124
2130
|
name?: string | undefined;
|
|
2125
2131
|
decimals?: number | undefined;
|
|
@@ -2143,6 +2149,7 @@ export declare const strkDelegatedStakingPositionArraySchema: z.ZodArray<z.ZodOb
|
|
|
2143
2149
|
name?: string | undefined;
|
|
2144
2150
|
iconUrl?: string | undefined;
|
|
2145
2151
|
};
|
|
2152
|
+
currencyValue: string;
|
|
2146
2153
|
accruedRewards: {
|
|
2147
2154
|
wei: string;
|
|
2148
2155
|
eth: string;
|
|
@@ -2153,12 +2160,11 @@ export declare const strkDelegatedStakingPositionArraySchema: z.ZodArray<z.ZodOb
|
|
|
2153
2160
|
eth: string;
|
|
2154
2161
|
currency: string;
|
|
2155
2162
|
};
|
|
2156
|
-
currencyValue: string;
|
|
2157
2163
|
token: {
|
|
2158
2164
|
address: `0x${string}`;
|
|
2159
2165
|
networkId: string;
|
|
2160
|
-
balance: string;
|
|
2161
2166
|
currencyValue: string;
|
|
2167
|
+
balance: string;
|
|
2162
2168
|
symbol?: string | undefined;
|
|
2163
2169
|
name?: string | undefined;
|
|
2164
2170
|
decimals?: number | undefined;
|
|
@@ -2201,8 +2207,8 @@ export declare const strkDelegatedStakingPositionArraySchema: z.ZodArray<z.ZodOb
|
|
|
2201
2207
|
token: {
|
|
2202
2208
|
address: string;
|
|
2203
2209
|
networkId: string;
|
|
2204
|
-
balance: string;
|
|
2205
2210
|
currencyValue: string;
|
|
2211
|
+
balance: string;
|
|
2206
2212
|
symbol?: string | undefined;
|
|
2207
2213
|
name?: string | undefined;
|
|
2208
2214
|
decimals?: number | undefined;
|
|
@@ -2275,13 +2281,13 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
2275
2281
|
}>, "strip", z.ZodTypeAny, {
|
|
2276
2282
|
address: `0x${string}`;
|
|
2277
2283
|
networkId: string;
|
|
2284
|
+
currencyValue: string;
|
|
2278
2285
|
principal: string;
|
|
2279
2286
|
accruedFees: string;
|
|
2280
2287
|
minPrice: string;
|
|
2281
2288
|
maxPrice: string;
|
|
2282
2289
|
currentPrice: string;
|
|
2283
2290
|
balance: string;
|
|
2284
|
-
currencyValue: string;
|
|
2285
2291
|
symbol?: string | undefined;
|
|
2286
2292
|
name?: string | undefined;
|
|
2287
2293
|
decimals?: number | undefined;
|
|
@@ -2298,13 +2304,13 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
2298
2304
|
}, {
|
|
2299
2305
|
address: string;
|
|
2300
2306
|
networkId: string;
|
|
2307
|
+
currencyValue: string;
|
|
2301
2308
|
principal: string;
|
|
2302
2309
|
accruedFees: string;
|
|
2303
2310
|
minPrice: string;
|
|
2304
2311
|
maxPrice: string;
|
|
2305
2312
|
currentPrice: string;
|
|
2306
2313
|
balance: string;
|
|
2307
|
-
currencyValue: string;
|
|
2308
2314
|
symbol?: string | undefined;
|
|
2309
2315
|
name?: string | undefined;
|
|
2310
2316
|
decimals?: number | undefined;
|
|
@@ -2360,13 +2366,13 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
2360
2366
|
}>, "strip", z.ZodTypeAny, {
|
|
2361
2367
|
address: `0x${string}`;
|
|
2362
2368
|
networkId: string;
|
|
2369
|
+
currencyValue: string;
|
|
2363
2370
|
principal: string;
|
|
2364
2371
|
accruedFees: string;
|
|
2365
2372
|
minPrice: string;
|
|
2366
2373
|
maxPrice: string;
|
|
2367
2374
|
currentPrice: string;
|
|
2368
2375
|
balance: string;
|
|
2369
|
-
currencyValue: string;
|
|
2370
2376
|
symbol?: string | undefined;
|
|
2371
2377
|
name?: string | undefined;
|
|
2372
2378
|
decimals?: number | undefined;
|
|
@@ -2383,13 +2389,13 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
2383
2389
|
}, {
|
|
2384
2390
|
address: string;
|
|
2385
2391
|
networkId: string;
|
|
2392
|
+
currencyValue: string;
|
|
2386
2393
|
principal: string;
|
|
2387
2394
|
accruedFees: string;
|
|
2388
2395
|
minPrice: string;
|
|
2389
2396
|
maxPrice: string;
|
|
2390
2397
|
currentPrice: string;
|
|
2391
2398
|
balance: string;
|
|
2392
|
-
currencyValue: string;
|
|
2393
2399
|
symbol?: string | undefined;
|
|
2394
2400
|
name?: string | undefined;
|
|
2395
2401
|
decimals?: number | undefined;
|
|
@@ -2405,17 +2411,18 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
2405
2411
|
currencySymbol?: string | undefined;
|
|
2406
2412
|
}>;
|
|
2407
2413
|
}>, "strip", z.ZodTypeAny, {
|
|
2414
|
+
currencyValue: string;
|
|
2408
2415
|
poolFeePercentage: string;
|
|
2409
2416
|
token0: {
|
|
2410
2417
|
address: `0x${string}`;
|
|
2411
2418
|
networkId: string;
|
|
2419
|
+
currencyValue: string;
|
|
2412
2420
|
principal: string;
|
|
2413
2421
|
accruedFees: string;
|
|
2414
2422
|
minPrice: string;
|
|
2415
2423
|
maxPrice: string;
|
|
2416
2424
|
currentPrice: string;
|
|
2417
2425
|
balance: string;
|
|
2418
|
-
currencyValue: string;
|
|
2419
2426
|
symbol?: string | undefined;
|
|
2420
2427
|
name?: string | undefined;
|
|
2421
2428
|
decimals?: number | undefined;
|
|
@@ -2433,13 +2440,13 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
2433
2440
|
token1: {
|
|
2434
2441
|
address: `0x${string}`;
|
|
2435
2442
|
networkId: string;
|
|
2443
|
+
currencyValue: string;
|
|
2436
2444
|
principal: string;
|
|
2437
2445
|
accruedFees: string;
|
|
2438
2446
|
minPrice: string;
|
|
2439
2447
|
maxPrice: string;
|
|
2440
2448
|
currentPrice: string;
|
|
2441
2449
|
balance: string;
|
|
2442
|
-
currencyValue: string;
|
|
2443
2450
|
symbol?: string | undefined;
|
|
2444
2451
|
name?: string | undefined;
|
|
2445
2452
|
decimals?: number | undefined;
|
|
@@ -2454,7 +2461,6 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
2454
2461
|
ccyDayChange?: string | undefined;
|
|
2455
2462
|
currencySymbol?: string | undefined;
|
|
2456
2463
|
};
|
|
2457
|
-
currencyValue: string;
|
|
2458
2464
|
address?: `0x${string}` | undefined;
|
|
2459
2465
|
tokenId?: string | undefined;
|
|
2460
2466
|
tickSpacingPercentage?: string | undefined;
|
|
@@ -2465,13 +2471,13 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
2465
2471
|
token0: {
|
|
2466
2472
|
address: string;
|
|
2467
2473
|
networkId: string;
|
|
2474
|
+
currencyValue: string;
|
|
2468
2475
|
principal: string;
|
|
2469
2476
|
accruedFees: string;
|
|
2470
2477
|
minPrice: string;
|
|
2471
2478
|
maxPrice: string;
|
|
2472
2479
|
currentPrice: string;
|
|
2473
2480
|
balance: string;
|
|
2474
|
-
currencyValue: string;
|
|
2475
2481
|
symbol?: string | undefined;
|
|
2476
2482
|
name?: string | undefined;
|
|
2477
2483
|
decimals?: number | undefined;
|
|
@@ -2489,13 +2495,13 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
2489
2495
|
token1: {
|
|
2490
2496
|
address: string;
|
|
2491
2497
|
networkId: string;
|
|
2498
|
+
currencyValue: string;
|
|
2492
2499
|
principal: string;
|
|
2493
2500
|
accruedFees: string;
|
|
2494
2501
|
minPrice: string;
|
|
2495
2502
|
maxPrice: string;
|
|
2496
2503
|
currentPrice: string;
|
|
2497
2504
|
balance: string;
|
|
2498
|
-
currencyValue: string;
|
|
2499
2505
|
symbol?: string | undefined;
|
|
2500
2506
|
name?: string | undefined;
|
|
2501
2507
|
decimals?: number | undefined;
|
|
@@ -2511,9 +2517,9 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
2511
2517
|
currencySymbol?: string | undefined;
|
|
2512
2518
|
};
|
|
2513
2519
|
address?: string | undefined;
|
|
2520
|
+
currencyValue?: string | undefined;
|
|
2514
2521
|
tokenId?: string | undefined;
|
|
2515
2522
|
tickSpacingPercentage?: string | undefined;
|
|
2516
|
-
currencyValue?: string | undefined;
|
|
2517
2523
|
unitCurrencyValueToken0?: string | undefined;
|
|
2518
2524
|
unitCurrencyValueToken1?: string | undefined;
|
|
2519
2525
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -2643,8 +2649,8 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
2643
2649
|
}>, "strip", z.ZodTypeAny, {
|
|
2644
2650
|
address: `0x${string}`;
|
|
2645
2651
|
networkId: string;
|
|
2646
|
-
balance: string;
|
|
2647
2652
|
currencyValue: string;
|
|
2653
|
+
balance: string;
|
|
2648
2654
|
symbol?: string | undefined;
|
|
2649
2655
|
name?: string | undefined;
|
|
2650
2656
|
decimals?: number | undefined;
|
|
@@ -2661,8 +2667,8 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
2661
2667
|
}, {
|
|
2662
2668
|
address: string;
|
|
2663
2669
|
networkId: string;
|
|
2664
|
-
balance: string;
|
|
2665
2670
|
currencyValue: string;
|
|
2671
|
+
balance: string;
|
|
2666
2672
|
symbol?: string | undefined;
|
|
2667
2673
|
name?: string | undefined;
|
|
2668
2674
|
decimals?: number | undefined;
|
|
@@ -2681,10 +2687,10 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
2681
2687
|
accountAddressGroup: z.ZodOptional<z.ZodString>;
|
|
2682
2688
|
}>, "strip", z.ZodTypeAny, {
|
|
2683
2689
|
lending: boolean;
|
|
2690
|
+
currencyValue: string;
|
|
2684
2691
|
totalBalances: Record<string, string>;
|
|
2685
2692
|
collateral: boolean;
|
|
2686
2693
|
debt: boolean;
|
|
2687
|
-
currencyValue: string;
|
|
2688
2694
|
address?: `0x${string}` | undefined;
|
|
2689
2695
|
accountAddress?: `0x${string}` | undefined;
|
|
2690
2696
|
totalApy?: string | undefined;
|
|
@@ -2718,8 +2724,8 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
2718
2724
|
token?: {
|
|
2719
2725
|
address: `0x${string}`;
|
|
2720
2726
|
networkId: string;
|
|
2721
|
-
balance: string;
|
|
2722
2727
|
currencyValue: string;
|
|
2728
|
+
balance: string;
|
|
2723
2729
|
symbol?: string | undefined;
|
|
2724
2730
|
name?: string | undefined;
|
|
2725
2731
|
decimals?: number | undefined;
|
|
@@ -2744,9 +2750,9 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
2744
2750
|
accountAddress?: string | undefined;
|
|
2745
2751
|
totalApy?: string | undefined;
|
|
2746
2752
|
apy?: string | undefined;
|
|
2753
|
+
currencyValue?: string | undefined;
|
|
2747
2754
|
unitCurrencyValue?: string | undefined;
|
|
2748
2755
|
group?: string | undefined;
|
|
2749
|
-
currencyValue?: string | undefined;
|
|
2750
2756
|
positionToken?: {
|
|
2751
2757
|
symbol: string;
|
|
2752
2758
|
name: string;
|
|
@@ -2774,8 +2780,8 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
2774
2780
|
token?: {
|
|
2775
2781
|
address: string;
|
|
2776
2782
|
networkId: string;
|
|
2777
|
-
balance: string;
|
|
2778
2783
|
currencyValue: string;
|
|
2784
|
+
balance: string;
|
|
2779
2785
|
symbol?: string | undefined;
|
|
2780
2786
|
name?: string | undefined;
|
|
2781
2787
|
decimals?: number | undefined;
|
|
@@ -2831,8 +2837,8 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
2831
2837
|
}>, "strip", z.ZodTypeAny, {
|
|
2832
2838
|
address: `0x${string}`;
|
|
2833
2839
|
networkId: string;
|
|
2834
|
-
balance: string;
|
|
2835
2840
|
currencyValue: string;
|
|
2841
|
+
balance: string;
|
|
2836
2842
|
symbol?: string | undefined;
|
|
2837
2843
|
name?: string | undefined;
|
|
2838
2844
|
decimals?: number | undefined;
|
|
@@ -2849,8 +2855,8 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
2849
2855
|
}, {
|
|
2850
2856
|
address: string;
|
|
2851
2857
|
networkId: string;
|
|
2852
|
-
balance: string;
|
|
2853
2858
|
currencyValue: string;
|
|
2859
|
+
balance: string;
|
|
2854
2860
|
symbol?: string | undefined;
|
|
2855
2861
|
name?: string | undefined;
|
|
2856
2862
|
decimals?: number | undefined;
|
|
@@ -2868,16 +2874,16 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
2868
2874
|
balance: z.ZodString;
|
|
2869
2875
|
unitCurrencyValue: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2870
2876
|
}>, "strip", z.ZodTypeAny, {
|
|
2877
|
+
currencyValue: string;
|
|
2871
2878
|
unitCurrencyValue: string;
|
|
2872
2879
|
delegatingTo: `0x${string}`;
|
|
2873
2880
|
balance: string;
|
|
2874
|
-
currencyValue: string;
|
|
2875
2881
|
address?: `0x${string}` | undefined;
|
|
2876
2882
|
token?: {
|
|
2877
2883
|
address: `0x${string}`;
|
|
2878
2884
|
networkId: string;
|
|
2879
|
-
balance: string;
|
|
2880
2885
|
currencyValue: string;
|
|
2886
|
+
balance: string;
|
|
2881
2887
|
symbol?: string | undefined;
|
|
2882
2888
|
name?: string | undefined;
|
|
2883
2889
|
decimals?: number | undefined;
|
|
@@ -2896,13 +2902,13 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
2896
2902
|
delegatingTo: string;
|
|
2897
2903
|
balance: string;
|
|
2898
2904
|
address?: string | undefined;
|
|
2899
|
-
unitCurrencyValue?: string | undefined;
|
|
2900
2905
|
currencyValue?: string | undefined;
|
|
2906
|
+
unitCurrencyValue?: string | undefined;
|
|
2901
2907
|
token?: {
|
|
2902
2908
|
address: string;
|
|
2903
2909
|
networkId: string;
|
|
2904
|
-
balance: string;
|
|
2905
2910
|
currencyValue: string;
|
|
2911
|
+
balance: string;
|
|
2906
2912
|
symbol?: string | undefined;
|
|
2907
2913
|
name?: string | undefined;
|
|
2908
2914
|
decimals?: number | undefined;
|
|
@@ -3011,8 +3017,8 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
3011
3017
|
}>, "strip", z.ZodTypeAny, {
|
|
3012
3018
|
address: `0x${string}`;
|
|
3013
3019
|
networkId: string;
|
|
3014
|
-
balance: string;
|
|
3015
3020
|
currencyValue: string;
|
|
3021
|
+
balance: string;
|
|
3016
3022
|
symbol?: string | undefined;
|
|
3017
3023
|
name?: string | undefined;
|
|
3018
3024
|
decimals?: number | undefined;
|
|
@@ -3029,8 +3035,8 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
3029
3035
|
}, {
|
|
3030
3036
|
address: string;
|
|
3031
3037
|
networkId: string;
|
|
3032
|
-
balance: string;
|
|
3033
3038
|
currencyValue: string;
|
|
3039
|
+
balance: string;
|
|
3034
3040
|
symbol?: string | undefined;
|
|
3035
3041
|
name?: string | undefined;
|
|
3036
3042
|
decimals?: number | undefined;
|
|
@@ -3054,6 +3060,7 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
3054
3060
|
name?: string | undefined;
|
|
3055
3061
|
iconUrl?: string | undefined;
|
|
3056
3062
|
};
|
|
3063
|
+
currencyValue: string;
|
|
3057
3064
|
accruedRewards: {
|
|
3058
3065
|
wei: string;
|
|
3059
3066
|
eth: string;
|
|
@@ -3064,12 +3071,11 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
3064
3071
|
eth: string;
|
|
3065
3072
|
currency: string;
|
|
3066
3073
|
};
|
|
3067
|
-
currencyValue: string;
|
|
3068
3074
|
token: {
|
|
3069
3075
|
address: `0x${string}`;
|
|
3070
3076
|
networkId: string;
|
|
3071
|
-
balance: string;
|
|
3072
3077
|
currencyValue: string;
|
|
3078
|
+
balance: string;
|
|
3073
3079
|
symbol?: string | undefined;
|
|
3074
3080
|
name?: string | undefined;
|
|
3075
3081
|
decimals?: number | undefined;
|
|
@@ -3112,8 +3118,8 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
3112
3118
|
token: {
|
|
3113
3119
|
address: string;
|
|
3114
3120
|
networkId: string;
|
|
3115
|
-
balance: string;
|
|
3116
3121
|
currencyValue: string;
|
|
3122
|
+
balance: string;
|
|
3117
3123
|
symbol?: string | undefined;
|
|
3118
3124
|
name?: string | undefined;
|
|
3119
3125
|
decimals?: number | undefined;
|
|
@@ -3190,8 +3196,8 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
3190
3196
|
}>, "strip", z.ZodTypeAny, {
|
|
3191
3197
|
address: `0x${string}`;
|
|
3192
3198
|
networkId: string;
|
|
3193
|
-
balance: string;
|
|
3194
3199
|
currencyValue: string;
|
|
3200
|
+
balance: string;
|
|
3195
3201
|
symbol?: string | undefined;
|
|
3196
3202
|
name?: string | undefined;
|
|
3197
3203
|
decimals?: number | undefined;
|
|
@@ -3208,8 +3214,8 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
3208
3214
|
}, {
|
|
3209
3215
|
address: string;
|
|
3210
3216
|
networkId: string;
|
|
3211
|
-
balance: string;
|
|
3212
3217
|
currencyValue: string;
|
|
3218
|
+
balance: string;
|
|
3213
3219
|
symbol?: string | undefined;
|
|
3214
3220
|
name?: string | undefined;
|
|
3215
3221
|
decimals?: number | undefined;
|
|
@@ -3224,6 +3230,7 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
3224
3230
|
ccyDayChange?: string | undefined;
|
|
3225
3231
|
currencySymbol?: string | undefined;
|
|
3226
3232
|
}>;
|
|
3233
|
+
liquidTokenAddress: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
3227
3234
|
}>, "strip", z.ZodTypeAny, {
|
|
3228
3235
|
id: string;
|
|
3229
3236
|
totalApy: number;
|
|
@@ -3232,8 +3239,8 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
3232
3239
|
token: {
|
|
3233
3240
|
address: `0x${string}`;
|
|
3234
3241
|
networkId: string;
|
|
3235
|
-
balance: string;
|
|
3236
3242
|
currencyValue: string;
|
|
3243
|
+
balance: string;
|
|
3237
3244
|
symbol?: string | undefined;
|
|
3238
3245
|
name?: string | undefined;
|
|
3239
3246
|
decimals?: number | undefined;
|
|
@@ -3253,6 +3260,7 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
3253
3260
|
eth: string;
|
|
3254
3261
|
currency: string;
|
|
3255
3262
|
};
|
|
3263
|
+
liquidTokenAddress: `0x${string}`;
|
|
3256
3264
|
address?: `0x${string}` | undefined;
|
|
3257
3265
|
}, {
|
|
3258
3266
|
id: string;
|
|
@@ -3261,8 +3269,8 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
3261
3269
|
token: {
|
|
3262
3270
|
address: string;
|
|
3263
3271
|
networkId: string;
|
|
3264
|
-
balance: string;
|
|
3265
3272
|
currencyValue: string;
|
|
3273
|
+
balance: string;
|
|
3266
3274
|
symbol?: string | undefined;
|
|
3267
3275
|
name?: string | undefined;
|
|
3268
3276
|
decimals?: number | undefined;
|
|
@@ -3282,6 +3290,7 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
3282
3290
|
eth: string;
|
|
3283
3291
|
currency: string;
|
|
3284
3292
|
};
|
|
3293
|
+
liquidTokenAddress: string;
|
|
3285
3294
|
address?: string | undefined;
|
|
3286
3295
|
currencyValue?: string | undefined;
|
|
3287
3296
|
}>]>;
|
|
@@ -3352,13 +3361,13 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
3352
3361
|
}>, "strip", z.ZodTypeAny, {
|
|
3353
3362
|
address: `0x${string}`;
|
|
3354
3363
|
networkId: string;
|
|
3364
|
+
currencyValue: string;
|
|
3355
3365
|
principal: string;
|
|
3356
3366
|
accruedFees: string;
|
|
3357
3367
|
minPrice: string;
|
|
3358
3368
|
maxPrice: string;
|
|
3359
3369
|
currentPrice: string;
|
|
3360
3370
|
balance: string;
|
|
3361
|
-
currencyValue: string;
|
|
3362
3371
|
symbol?: string | undefined;
|
|
3363
3372
|
name?: string | undefined;
|
|
3364
3373
|
decimals?: number | undefined;
|
|
@@ -3375,13 +3384,13 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
3375
3384
|
}, {
|
|
3376
3385
|
address: string;
|
|
3377
3386
|
networkId: string;
|
|
3387
|
+
currencyValue: string;
|
|
3378
3388
|
principal: string;
|
|
3379
3389
|
accruedFees: string;
|
|
3380
3390
|
minPrice: string;
|
|
3381
3391
|
maxPrice: string;
|
|
3382
3392
|
currentPrice: string;
|
|
3383
3393
|
balance: string;
|
|
3384
|
-
currencyValue: string;
|
|
3385
3394
|
symbol?: string | undefined;
|
|
3386
3395
|
name?: string | undefined;
|
|
3387
3396
|
decimals?: number | undefined;
|
|
@@ -3437,13 +3446,13 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
3437
3446
|
}>, "strip", z.ZodTypeAny, {
|
|
3438
3447
|
address: `0x${string}`;
|
|
3439
3448
|
networkId: string;
|
|
3449
|
+
currencyValue: string;
|
|
3440
3450
|
principal: string;
|
|
3441
3451
|
accruedFees: string;
|
|
3442
3452
|
minPrice: string;
|
|
3443
3453
|
maxPrice: string;
|
|
3444
3454
|
currentPrice: string;
|
|
3445
3455
|
balance: string;
|
|
3446
|
-
currencyValue: string;
|
|
3447
3456
|
symbol?: string | undefined;
|
|
3448
3457
|
name?: string | undefined;
|
|
3449
3458
|
decimals?: number | undefined;
|
|
@@ -3460,13 +3469,13 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
3460
3469
|
}, {
|
|
3461
3470
|
address: string;
|
|
3462
3471
|
networkId: string;
|
|
3472
|
+
currencyValue: string;
|
|
3463
3473
|
principal: string;
|
|
3464
3474
|
accruedFees: string;
|
|
3465
3475
|
minPrice: string;
|
|
3466
3476
|
maxPrice: string;
|
|
3467
3477
|
currentPrice: string;
|
|
3468
3478
|
balance: string;
|
|
3469
|
-
currencyValue: string;
|
|
3470
3479
|
symbol?: string | undefined;
|
|
3471
3480
|
name?: string | undefined;
|
|
3472
3481
|
decimals?: number | undefined;
|
|
@@ -3482,17 +3491,18 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
3482
3491
|
currencySymbol?: string | undefined;
|
|
3483
3492
|
}>;
|
|
3484
3493
|
}>, "strip", z.ZodTypeAny, {
|
|
3494
|
+
currencyValue: string;
|
|
3485
3495
|
poolFeePercentage: string;
|
|
3486
3496
|
token0: {
|
|
3487
3497
|
address: `0x${string}`;
|
|
3488
3498
|
networkId: string;
|
|
3499
|
+
currencyValue: string;
|
|
3489
3500
|
principal: string;
|
|
3490
3501
|
accruedFees: string;
|
|
3491
3502
|
minPrice: string;
|
|
3492
3503
|
maxPrice: string;
|
|
3493
3504
|
currentPrice: string;
|
|
3494
3505
|
balance: string;
|
|
3495
|
-
currencyValue: string;
|
|
3496
3506
|
symbol?: string | undefined;
|
|
3497
3507
|
name?: string | undefined;
|
|
3498
3508
|
decimals?: number | undefined;
|
|
@@ -3510,13 +3520,13 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
3510
3520
|
token1: {
|
|
3511
3521
|
address: `0x${string}`;
|
|
3512
3522
|
networkId: string;
|
|
3523
|
+
currencyValue: string;
|
|
3513
3524
|
principal: string;
|
|
3514
3525
|
accruedFees: string;
|
|
3515
3526
|
minPrice: string;
|
|
3516
3527
|
maxPrice: string;
|
|
3517
3528
|
currentPrice: string;
|
|
3518
3529
|
balance: string;
|
|
3519
|
-
currencyValue: string;
|
|
3520
3530
|
symbol?: string | undefined;
|
|
3521
3531
|
name?: string | undefined;
|
|
3522
3532
|
decimals?: number | undefined;
|
|
@@ -3531,7 +3541,6 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
3531
3541
|
ccyDayChange?: string | undefined;
|
|
3532
3542
|
currencySymbol?: string | undefined;
|
|
3533
3543
|
};
|
|
3534
|
-
currencyValue: string;
|
|
3535
3544
|
address?: `0x${string}` | undefined;
|
|
3536
3545
|
tokenId?: string | undefined;
|
|
3537
3546
|
tickSpacingPercentage?: string | undefined;
|
|
@@ -3542,13 +3551,13 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
3542
3551
|
token0: {
|
|
3543
3552
|
address: string;
|
|
3544
3553
|
networkId: string;
|
|
3554
|
+
currencyValue: string;
|
|
3545
3555
|
principal: string;
|
|
3546
3556
|
accruedFees: string;
|
|
3547
3557
|
minPrice: string;
|
|
3548
3558
|
maxPrice: string;
|
|
3549
3559
|
currentPrice: string;
|
|
3550
3560
|
balance: string;
|
|
3551
|
-
currencyValue: string;
|
|
3552
3561
|
symbol?: string | undefined;
|
|
3553
3562
|
name?: string | undefined;
|
|
3554
3563
|
decimals?: number | undefined;
|
|
@@ -3566,13 +3575,13 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
3566
3575
|
token1: {
|
|
3567
3576
|
address: string;
|
|
3568
3577
|
networkId: string;
|
|
3578
|
+
currencyValue: string;
|
|
3569
3579
|
principal: string;
|
|
3570
3580
|
accruedFees: string;
|
|
3571
3581
|
minPrice: string;
|
|
3572
3582
|
maxPrice: string;
|
|
3573
3583
|
currentPrice: string;
|
|
3574
3584
|
balance: string;
|
|
3575
|
-
currencyValue: string;
|
|
3576
3585
|
symbol?: string | undefined;
|
|
3577
3586
|
name?: string | undefined;
|
|
3578
3587
|
decimals?: number | undefined;
|
|
@@ -3588,9 +3597,9 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
3588
3597
|
currencySymbol?: string | undefined;
|
|
3589
3598
|
};
|
|
3590
3599
|
address?: string | undefined;
|
|
3600
|
+
currencyValue?: string | undefined;
|
|
3591
3601
|
tokenId?: string | undefined;
|
|
3592
3602
|
tickSpacingPercentage?: string | undefined;
|
|
3593
|
-
currencyValue?: string | undefined;
|
|
3594
3603
|
unitCurrencyValueToken0?: string | undefined;
|
|
3595
3604
|
unitCurrencyValueToken1?: string | undefined;
|
|
3596
3605
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -3720,8 +3729,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
3720
3729
|
}>, "strip", z.ZodTypeAny, {
|
|
3721
3730
|
address: `0x${string}`;
|
|
3722
3731
|
networkId: string;
|
|
3723
|
-
balance: string;
|
|
3724
3732
|
currencyValue: string;
|
|
3733
|
+
balance: string;
|
|
3725
3734
|
symbol?: string | undefined;
|
|
3726
3735
|
name?: string | undefined;
|
|
3727
3736
|
decimals?: number | undefined;
|
|
@@ -3738,8 +3747,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
3738
3747
|
}, {
|
|
3739
3748
|
address: string;
|
|
3740
3749
|
networkId: string;
|
|
3741
|
-
balance: string;
|
|
3742
3750
|
currencyValue: string;
|
|
3751
|
+
balance: string;
|
|
3743
3752
|
symbol?: string | undefined;
|
|
3744
3753
|
name?: string | undefined;
|
|
3745
3754
|
decimals?: number | undefined;
|
|
@@ -3758,10 +3767,10 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
3758
3767
|
accountAddressGroup: z.ZodOptional<z.ZodString>;
|
|
3759
3768
|
}>, "strip", z.ZodTypeAny, {
|
|
3760
3769
|
lending: boolean;
|
|
3770
|
+
currencyValue: string;
|
|
3761
3771
|
totalBalances: Record<string, string>;
|
|
3762
3772
|
collateral: boolean;
|
|
3763
3773
|
debt: boolean;
|
|
3764
|
-
currencyValue: string;
|
|
3765
3774
|
address?: `0x${string}` | undefined;
|
|
3766
3775
|
accountAddress?: `0x${string}` | undefined;
|
|
3767
3776
|
totalApy?: string | undefined;
|
|
@@ -3795,8 +3804,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
3795
3804
|
token?: {
|
|
3796
3805
|
address: `0x${string}`;
|
|
3797
3806
|
networkId: string;
|
|
3798
|
-
balance: string;
|
|
3799
3807
|
currencyValue: string;
|
|
3808
|
+
balance: string;
|
|
3800
3809
|
symbol?: string | undefined;
|
|
3801
3810
|
name?: string | undefined;
|
|
3802
3811
|
decimals?: number | undefined;
|
|
@@ -3821,9 +3830,9 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
3821
3830
|
accountAddress?: string | undefined;
|
|
3822
3831
|
totalApy?: string | undefined;
|
|
3823
3832
|
apy?: string | undefined;
|
|
3833
|
+
currencyValue?: string | undefined;
|
|
3824
3834
|
unitCurrencyValue?: string | undefined;
|
|
3825
3835
|
group?: string | undefined;
|
|
3826
|
-
currencyValue?: string | undefined;
|
|
3827
3836
|
positionToken?: {
|
|
3828
3837
|
symbol: string;
|
|
3829
3838
|
name: string;
|
|
@@ -3851,8 +3860,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
3851
3860
|
token?: {
|
|
3852
3861
|
address: string;
|
|
3853
3862
|
networkId: string;
|
|
3854
|
-
balance: string;
|
|
3855
3863
|
currencyValue: string;
|
|
3864
|
+
balance: string;
|
|
3856
3865
|
symbol?: string | undefined;
|
|
3857
3866
|
name?: string | undefined;
|
|
3858
3867
|
decimals?: number | undefined;
|
|
@@ -3908,8 +3917,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
3908
3917
|
}>, "strip", z.ZodTypeAny, {
|
|
3909
3918
|
address: `0x${string}`;
|
|
3910
3919
|
networkId: string;
|
|
3911
|
-
balance: string;
|
|
3912
3920
|
currencyValue: string;
|
|
3921
|
+
balance: string;
|
|
3913
3922
|
symbol?: string | undefined;
|
|
3914
3923
|
name?: string | undefined;
|
|
3915
3924
|
decimals?: number | undefined;
|
|
@@ -3926,8 +3935,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
3926
3935
|
}, {
|
|
3927
3936
|
address: string;
|
|
3928
3937
|
networkId: string;
|
|
3929
|
-
balance: string;
|
|
3930
3938
|
currencyValue: string;
|
|
3939
|
+
balance: string;
|
|
3931
3940
|
symbol?: string | undefined;
|
|
3932
3941
|
name?: string | undefined;
|
|
3933
3942
|
decimals?: number | undefined;
|
|
@@ -3945,16 +3954,16 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
3945
3954
|
balance: z.ZodString;
|
|
3946
3955
|
unitCurrencyValue: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3947
3956
|
}>, "strip", z.ZodTypeAny, {
|
|
3957
|
+
currencyValue: string;
|
|
3948
3958
|
unitCurrencyValue: string;
|
|
3949
3959
|
delegatingTo: `0x${string}`;
|
|
3950
3960
|
balance: string;
|
|
3951
|
-
currencyValue: string;
|
|
3952
3961
|
address?: `0x${string}` | undefined;
|
|
3953
3962
|
token?: {
|
|
3954
3963
|
address: `0x${string}`;
|
|
3955
3964
|
networkId: string;
|
|
3956
|
-
balance: string;
|
|
3957
3965
|
currencyValue: string;
|
|
3966
|
+
balance: string;
|
|
3958
3967
|
symbol?: string | undefined;
|
|
3959
3968
|
name?: string | undefined;
|
|
3960
3969
|
decimals?: number | undefined;
|
|
@@ -3973,13 +3982,13 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
3973
3982
|
delegatingTo: string;
|
|
3974
3983
|
balance: string;
|
|
3975
3984
|
address?: string | undefined;
|
|
3976
|
-
unitCurrencyValue?: string | undefined;
|
|
3977
3985
|
currencyValue?: string | undefined;
|
|
3986
|
+
unitCurrencyValue?: string | undefined;
|
|
3978
3987
|
token?: {
|
|
3979
3988
|
address: string;
|
|
3980
3989
|
networkId: string;
|
|
3981
|
-
balance: string;
|
|
3982
3990
|
currencyValue: string;
|
|
3991
|
+
balance: string;
|
|
3983
3992
|
symbol?: string | undefined;
|
|
3984
3993
|
name?: string | undefined;
|
|
3985
3994
|
decimals?: number | undefined;
|
|
@@ -4088,8 +4097,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4088
4097
|
}>, "strip", z.ZodTypeAny, {
|
|
4089
4098
|
address: `0x${string}`;
|
|
4090
4099
|
networkId: string;
|
|
4091
|
-
balance: string;
|
|
4092
4100
|
currencyValue: string;
|
|
4101
|
+
balance: string;
|
|
4093
4102
|
symbol?: string | undefined;
|
|
4094
4103
|
name?: string | undefined;
|
|
4095
4104
|
decimals?: number | undefined;
|
|
@@ -4106,8 +4115,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4106
4115
|
}, {
|
|
4107
4116
|
address: string;
|
|
4108
4117
|
networkId: string;
|
|
4109
|
-
balance: string;
|
|
4110
4118
|
currencyValue: string;
|
|
4119
|
+
balance: string;
|
|
4111
4120
|
symbol?: string | undefined;
|
|
4112
4121
|
name?: string | undefined;
|
|
4113
4122
|
decimals?: number | undefined;
|
|
@@ -4131,6 +4140,7 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4131
4140
|
name?: string | undefined;
|
|
4132
4141
|
iconUrl?: string | undefined;
|
|
4133
4142
|
};
|
|
4143
|
+
currencyValue: string;
|
|
4134
4144
|
accruedRewards: {
|
|
4135
4145
|
wei: string;
|
|
4136
4146
|
eth: string;
|
|
@@ -4141,12 +4151,11 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4141
4151
|
eth: string;
|
|
4142
4152
|
currency: string;
|
|
4143
4153
|
};
|
|
4144
|
-
currencyValue: string;
|
|
4145
4154
|
token: {
|
|
4146
4155
|
address: `0x${string}`;
|
|
4147
4156
|
networkId: string;
|
|
4148
|
-
balance: string;
|
|
4149
4157
|
currencyValue: string;
|
|
4158
|
+
balance: string;
|
|
4150
4159
|
symbol?: string | undefined;
|
|
4151
4160
|
name?: string | undefined;
|
|
4152
4161
|
decimals?: number | undefined;
|
|
@@ -4189,8 +4198,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4189
4198
|
token: {
|
|
4190
4199
|
address: string;
|
|
4191
4200
|
networkId: string;
|
|
4192
|
-
balance: string;
|
|
4193
4201
|
currencyValue: string;
|
|
4202
|
+
balance: string;
|
|
4194
4203
|
symbol?: string | undefined;
|
|
4195
4204
|
name?: string | undefined;
|
|
4196
4205
|
decimals?: number | undefined;
|
|
@@ -4267,8 +4276,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4267
4276
|
}>, "strip", z.ZodTypeAny, {
|
|
4268
4277
|
address: `0x${string}`;
|
|
4269
4278
|
networkId: string;
|
|
4270
|
-
balance: string;
|
|
4271
4279
|
currencyValue: string;
|
|
4280
|
+
balance: string;
|
|
4272
4281
|
symbol?: string | undefined;
|
|
4273
4282
|
name?: string | undefined;
|
|
4274
4283
|
decimals?: number | undefined;
|
|
@@ -4285,8 +4294,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4285
4294
|
}, {
|
|
4286
4295
|
address: string;
|
|
4287
4296
|
networkId: string;
|
|
4288
|
-
balance: string;
|
|
4289
4297
|
currencyValue: string;
|
|
4298
|
+
balance: string;
|
|
4290
4299
|
symbol?: string | undefined;
|
|
4291
4300
|
name?: string | undefined;
|
|
4292
4301
|
decimals?: number | undefined;
|
|
@@ -4301,6 +4310,7 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4301
4310
|
ccyDayChange?: string | undefined;
|
|
4302
4311
|
currencySymbol?: string | undefined;
|
|
4303
4312
|
}>;
|
|
4313
|
+
liquidTokenAddress: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
4304
4314
|
}>, "strip", z.ZodTypeAny, {
|
|
4305
4315
|
id: string;
|
|
4306
4316
|
totalApy: number;
|
|
@@ -4309,8 +4319,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4309
4319
|
token: {
|
|
4310
4320
|
address: `0x${string}`;
|
|
4311
4321
|
networkId: string;
|
|
4312
|
-
balance: string;
|
|
4313
4322
|
currencyValue: string;
|
|
4323
|
+
balance: string;
|
|
4314
4324
|
symbol?: string | undefined;
|
|
4315
4325
|
name?: string | undefined;
|
|
4316
4326
|
decimals?: number | undefined;
|
|
@@ -4330,6 +4340,7 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4330
4340
|
eth: string;
|
|
4331
4341
|
currency: string;
|
|
4332
4342
|
};
|
|
4343
|
+
liquidTokenAddress: `0x${string}`;
|
|
4333
4344
|
address?: `0x${string}` | undefined;
|
|
4334
4345
|
}, {
|
|
4335
4346
|
id: string;
|
|
@@ -4338,8 +4349,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4338
4349
|
token: {
|
|
4339
4350
|
address: string;
|
|
4340
4351
|
networkId: string;
|
|
4341
|
-
balance: string;
|
|
4342
4352
|
currencyValue: string;
|
|
4353
|
+
balance: string;
|
|
4343
4354
|
symbol?: string | undefined;
|
|
4344
4355
|
name?: string | undefined;
|
|
4345
4356
|
decimals?: number | undefined;
|
|
@@ -4359,6 +4370,7 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4359
4370
|
eth: string;
|
|
4360
4371
|
currency: string;
|
|
4361
4372
|
};
|
|
4373
|
+
liquidTokenAddress: string;
|
|
4362
4374
|
address?: string | undefined;
|
|
4363
4375
|
currencyValue?: string | undefined;
|
|
4364
4376
|
}>]>, "many">;
|
|
@@ -4383,17 +4395,18 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4383
4395
|
type: "staking" | "strkDelegatedStaking" | "concentratedLiquidityPosition" | "collateralizedDebtPosition" | "delegatedTokens";
|
|
4384
4396
|
accountAddress: `0x${string}`;
|
|
4385
4397
|
positions: ({
|
|
4398
|
+
currencyValue: string;
|
|
4386
4399
|
poolFeePercentage: string;
|
|
4387
4400
|
token0: {
|
|
4388
4401
|
address: `0x${string}`;
|
|
4389
4402
|
networkId: string;
|
|
4403
|
+
currencyValue: string;
|
|
4390
4404
|
principal: string;
|
|
4391
4405
|
accruedFees: string;
|
|
4392
4406
|
minPrice: string;
|
|
4393
4407
|
maxPrice: string;
|
|
4394
4408
|
currentPrice: string;
|
|
4395
4409
|
balance: string;
|
|
4396
|
-
currencyValue: string;
|
|
4397
4410
|
symbol?: string | undefined;
|
|
4398
4411
|
name?: string | undefined;
|
|
4399
4412
|
decimals?: number | undefined;
|
|
@@ -4411,13 +4424,13 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4411
4424
|
token1: {
|
|
4412
4425
|
address: `0x${string}`;
|
|
4413
4426
|
networkId: string;
|
|
4427
|
+
currencyValue: string;
|
|
4414
4428
|
principal: string;
|
|
4415
4429
|
accruedFees: string;
|
|
4416
4430
|
minPrice: string;
|
|
4417
4431
|
maxPrice: string;
|
|
4418
4432
|
currentPrice: string;
|
|
4419
4433
|
balance: string;
|
|
4420
|
-
currencyValue: string;
|
|
4421
4434
|
symbol?: string | undefined;
|
|
4422
4435
|
name?: string | undefined;
|
|
4423
4436
|
decimals?: number | undefined;
|
|
@@ -4432,7 +4445,6 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4432
4445
|
ccyDayChange?: string | undefined;
|
|
4433
4446
|
currencySymbol?: string | undefined;
|
|
4434
4447
|
};
|
|
4435
|
-
currencyValue: string;
|
|
4436
4448
|
address?: `0x${string}` | undefined;
|
|
4437
4449
|
tokenId?: string | undefined;
|
|
4438
4450
|
tickSpacingPercentage?: string | undefined;
|
|
@@ -4440,10 +4452,10 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4440
4452
|
unitCurrencyValueToken1?: string | undefined;
|
|
4441
4453
|
} | {
|
|
4442
4454
|
lending: boolean;
|
|
4455
|
+
currencyValue: string;
|
|
4443
4456
|
totalBalances: Record<string, string>;
|
|
4444
4457
|
collateral: boolean;
|
|
4445
4458
|
debt: boolean;
|
|
4446
|
-
currencyValue: string;
|
|
4447
4459
|
address?: `0x${string}` | undefined;
|
|
4448
4460
|
accountAddress?: `0x${string}` | undefined;
|
|
4449
4461
|
totalApy?: string | undefined;
|
|
@@ -4477,8 +4489,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4477
4489
|
token?: {
|
|
4478
4490
|
address: `0x${string}`;
|
|
4479
4491
|
networkId: string;
|
|
4480
|
-
balance: string;
|
|
4481
4492
|
currencyValue: string;
|
|
4493
|
+
balance: string;
|
|
4482
4494
|
symbol?: string | undefined;
|
|
4483
4495
|
name?: string | undefined;
|
|
4484
4496
|
decimals?: number | undefined;
|
|
@@ -4495,16 +4507,16 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4495
4507
|
} | undefined;
|
|
4496
4508
|
accountAddressGroup?: string | undefined;
|
|
4497
4509
|
} | {
|
|
4510
|
+
currencyValue: string;
|
|
4498
4511
|
unitCurrencyValue: string;
|
|
4499
4512
|
delegatingTo: `0x${string}`;
|
|
4500
4513
|
balance: string;
|
|
4501
|
-
currencyValue: string;
|
|
4502
4514
|
address?: `0x${string}` | undefined;
|
|
4503
4515
|
token?: {
|
|
4504
4516
|
address: `0x${string}`;
|
|
4505
4517
|
networkId: string;
|
|
4506
|
-
balance: string;
|
|
4507
4518
|
currencyValue: string;
|
|
4519
|
+
balance: string;
|
|
4508
4520
|
symbol?: string | undefined;
|
|
4509
4521
|
name?: string | undefined;
|
|
4510
4522
|
decimals?: number | undefined;
|
|
@@ -4527,8 +4539,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4527
4539
|
token: {
|
|
4528
4540
|
address: `0x${string}`;
|
|
4529
4541
|
networkId: string;
|
|
4530
|
-
balance: string;
|
|
4531
4542
|
currencyValue: string;
|
|
4543
|
+
balance: string;
|
|
4532
4544
|
symbol?: string | undefined;
|
|
4533
4545
|
name?: string | undefined;
|
|
4534
4546
|
decimals?: number | undefined;
|
|
@@ -4548,6 +4560,7 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4548
4560
|
eth: string;
|
|
4549
4561
|
currency: string;
|
|
4550
4562
|
};
|
|
4563
|
+
liquidTokenAddress: `0x${string}`;
|
|
4551
4564
|
address?: `0x${string}` | undefined;
|
|
4552
4565
|
} | {
|
|
4553
4566
|
id: string;
|
|
@@ -4558,6 +4571,7 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4558
4571
|
name?: string | undefined;
|
|
4559
4572
|
iconUrl?: string | undefined;
|
|
4560
4573
|
};
|
|
4574
|
+
currencyValue: string;
|
|
4561
4575
|
accruedRewards: {
|
|
4562
4576
|
wei: string;
|
|
4563
4577
|
eth: string;
|
|
@@ -4568,12 +4582,11 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4568
4582
|
eth: string;
|
|
4569
4583
|
currency: string;
|
|
4570
4584
|
};
|
|
4571
|
-
currencyValue: string;
|
|
4572
4585
|
token: {
|
|
4573
4586
|
address: `0x${string}`;
|
|
4574
4587
|
networkId: string;
|
|
4575
|
-
balance: string;
|
|
4576
4588
|
currencyValue: string;
|
|
4589
|
+
balance: string;
|
|
4577
4590
|
symbol?: string | undefined;
|
|
4578
4591
|
name?: string | undefined;
|
|
4579
4592
|
decimals?: number | undefined;
|
|
@@ -4612,13 +4625,13 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4612
4625
|
token0: {
|
|
4613
4626
|
address: string;
|
|
4614
4627
|
networkId: string;
|
|
4628
|
+
currencyValue: string;
|
|
4615
4629
|
principal: string;
|
|
4616
4630
|
accruedFees: string;
|
|
4617
4631
|
minPrice: string;
|
|
4618
4632
|
maxPrice: string;
|
|
4619
4633
|
currentPrice: string;
|
|
4620
4634
|
balance: string;
|
|
4621
|
-
currencyValue: string;
|
|
4622
4635
|
symbol?: string | undefined;
|
|
4623
4636
|
name?: string | undefined;
|
|
4624
4637
|
decimals?: number | undefined;
|
|
@@ -4636,13 +4649,13 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4636
4649
|
token1: {
|
|
4637
4650
|
address: string;
|
|
4638
4651
|
networkId: string;
|
|
4652
|
+
currencyValue: string;
|
|
4639
4653
|
principal: string;
|
|
4640
4654
|
accruedFees: string;
|
|
4641
4655
|
minPrice: string;
|
|
4642
4656
|
maxPrice: string;
|
|
4643
4657
|
currentPrice: string;
|
|
4644
4658
|
balance: string;
|
|
4645
|
-
currencyValue: string;
|
|
4646
4659
|
symbol?: string | undefined;
|
|
4647
4660
|
name?: string | undefined;
|
|
4648
4661
|
decimals?: number | undefined;
|
|
@@ -4658,9 +4671,9 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4658
4671
|
currencySymbol?: string | undefined;
|
|
4659
4672
|
};
|
|
4660
4673
|
address?: string | undefined;
|
|
4674
|
+
currencyValue?: string | undefined;
|
|
4661
4675
|
tokenId?: string | undefined;
|
|
4662
4676
|
tickSpacingPercentage?: string | undefined;
|
|
4663
|
-
currencyValue?: string | undefined;
|
|
4664
4677
|
unitCurrencyValueToken0?: string | undefined;
|
|
4665
4678
|
unitCurrencyValueToken1?: string | undefined;
|
|
4666
4679
|
} | {
|
|
@@ -4672,9 +4685,9 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4672
4685
|
accountAddress?: string | undefined;
|
|
4673
4686
|
totalApy?: string | undefined;
|
|
4674
4687
|
apy?: string | undefined;
|
|
4688
|
+
currencyValue?: string | undefined;
|
|
4675
4689
|
unitCurrencyValue?: string | undefined;
|
|
4676
4690
|
group?: string | undefined;
|
|
4677
|
-
currencyValue?: string | undefined;
|
|
4678
4691
|
positionToken?: {
|
|
4679
4692
|
symbol: string;
|
|
4680
4693
|
name: string;
|
|
@@ -4702,8 +4715,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4702
4715
|
token?: {
|
|
4703
4716
|
address: string;
|
|
4704
4717
|
networkId: string;
|
|
4705
|
-
balance: string;
|
|
4706
4718
|
currencyValue: string;
|
|
4719
|
+
balance: string;
|
|
4707
4720
|
symbol?: string | undefined;
|
|
4708
4721
|
name?: string | undefined;
|
|
4709
4722
|
decimals?: number | undefined;
|
|
@@ -4723,13 +4736,13 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4723
4736
|
delegatingTo: string;
|
|
4724
4737
|
balance: string;
|
|
4725
4738
|
address?: string | undefined;
|
|
4726
|
-
unitCurrencyValue?: string | undefined;
|
|
4727
4739
|
currencyValue?: string | undefined;
|
|
4740
|
+
unitCurrencyValue?: string | undefined;
|
|
4728
4741
|
token?: {
|
|
4729
4742
|
address: string;
|
|
4730
4743
|
networkId: string;
|
|
4731
|
-
balance: string;
|
|
4732
4744
|
currencyValue: string;
|
|
4745
|
+
balance: string;
|
|
4733
4746
|
symbol?: string | undefined;
|
|
4734
4747
|
name?: string | undefined;
|
|
4735
4748
|
decimals?: number | undefined;
|
|
@@ -4751,8 +4764,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4751
4764
|
token: {
|
|
4752
4765
|
address: string;
|
|
4753
4766
|
networkId: string;
|
|
4754
|
-
balance: string;
|
|
4755
4767
|
currencyValue: string;
|
|
4768
|
+
balance: string;
|
|
4756
4769
|
symbol?: string | undefined;
|
|
4757
4770
|
name?: string | undefined;
|
|
4758
4771
|
decimals?: number | undefined;
|
|
@@ -4772,6 +4785,7 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4772
4785
|
eth: string;
|
|
4773
4786
|
currency: string;
|
|
4774
4787
|
};
|
|
4788
|
+
liquidTokenAddress: string;
|
|
4775
4789
|
address?: string | undefined;
|
|
4776
4790
|
currencyValue?: string | undefined;
|
|
4777
4791
|
} | {
|
|
@@ -4796,8 +4810,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4796
4810
|
token: {
|
|
4797
4811
|
address: string;
|
|
4798
4812
|
networkId: string;
|
|
4799
|
-
balance: string;
|
|
4800
4813
|
currencyValue: string;
|
|
4814
|
+
balance: string;
|
|
4801
4815
|
symbol?: string | undefined;
|
|
4802
4816
|
name?: string | undefined;
|
|
4803
4817
|
decimals?: number | undefined;
|
|
@@ -4883,13 +4897,13 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
4883
4897
|
}>, "strip", z.ZodTypeAny, {
|
|
4884
4898
|
address: `0x${string}`;
|
|
4885
4899
|
networkId: string;
|
|
4900
|
+
currencyValue: string;
|
|
4886
4901
|
principal: string;
|
|
4887
4902
|
accruedFees: string;
|
|
4888
4903
|
minPrice: string;
|
|
4889
4904
|
maxPrice: string;
|
|
4890
4905
|
currentPrice: string;
|
|
4891
4906
|
balance: string;
|
|
4892
|
-
currencyValue: string;
|
|
4893
4907
|
symbol?: string | undefined;
|
|
4894
4908
|
name?: string | undefined;
|
|
4895
4909
|
decimals?: number | undefined;
|
|
@@ -4906,13 +4920,13 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
4906
4920
|
}, {
|
|
4907
4921
|
address: string;
|
|
4908
4922
|
networkId: string;
|
|
4923
|
+
currencyValue: string;
|
|
4909
4924
|
principal: string;
|
|
4910
4925
|
accruedFees: string;
|
|
4911
4926
|
minPrice: string;
|
|
4912
4927
|
maxPrice: string;
|
|
4913
4928
|
currentPrice: string;
|
|
4914
4929
|
balance: string;
|
|
4915
|
-
currencyValue: string;
|
|
4916
4930
|
symbol?: string | undefined;
|
|
4917
4931
|
name?: string | undefined;
|
|
4918
4932
|
decimals?: number | undefined;
|
|
@@ -4968,13 +4982,13 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
4968
4982
|
}>, "strip", z.ZodTypeAny, {
|
|
4969
4983
|
address: `0x${string}`;
|
|
4970
4984
|
networkId: string;
|
|
4985
|
+
currencyValue: string;
|
|
4971
4986
|
principal: string;
|
|
4972
4987
|
accruedFees: string;
|
|
4973
4988
|
minPrice: string;
|
|
4974
4989
|
maxPrice: string;
|
|
4975
4990
|
currentPrice: string;
|
|
4976
4991
|
balance: string;
|
|
4977
|
-
currencyValue: string;
|
|
4978
4992
|
symbol?: string | undefined;
|
|
4979
4993
|
name?: string | undefined;
|
|
4980
4994
|
decimals?: number | undefined;
|
|
@@ -4991,13 +5005,13 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
4991
5005
|
}, {
|
|
4992
5006
|
address: string;
|
|
4993
5007
|
networkId: string;
|
|
5008
|
+
currencyValue: string;
|
|
4994
5009
|
principal: string;
|
|
4995
5010
|
accruedFees: string;
|
|
4996
5011
|
minPrice: string;
|
|
4997
5012
|
maxPrice: string;
|
|
4998
5013
|
currentPrice: string;
|
|
4999
5014
|
balance: string;
|
|
5000
|
-
currencyValue: string;
|
|
5001
5015
|
symbol?: string | undefined;
|
|
5002
5016
|
name?: string | undefined;
|
|
5003
5017
|
decimals?: number | undefined;
|
|
@@ -5013,17 +5027,18 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5013
5027
|
currencySymbol?: string | undefined;
|
|
5014
5028
|
}>;
|
|
5015
5029
|
}>, "strip", z.ZodTypeAny, {
|
|
5030
|
+
currencyValue: string;
|
|
5016
5031
|
poolFeePercentage: string;
|
|
5017
5032
|
token0: {
|
|
5018
5033
|
address: `0x${string}`;
|
|
5019
5034
|
networkId: string;
|
|
5035
|
+
currencyValue: string;
|
|
5020
5036
|
principal: string;
|
|
5021
5037
|
accruedFees: string;
|
|
5022
5038
|
minPrice: string;
|
|
5023
5039
|
maxPrice: string;
|
|
5024
5040
|
currentPrice: string;
|
|
5025
5041
|
balance: string;
|
|
5026
|
-
currencyValue: string;
|
|
5027
5042
|
symbol?: string | undefined;
|
|
5028
5043
|
name?: string | undefined;
|
|
5029
5044
|
decimals?: number | undefined;
|
|
@@ -5041,13 +5056,13 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5041
5056
|
token1: {
|
|
5042
5057
|
address: `0x${string}`;
|
|
5043
5058
|
networkId: string;
|
|
5059
|
+
currencyValue: string;
|
|
5044
5060
|
principal: string;
|
|
5045
5061
|
accruedFees: string;
|
|
5046
5062
|
minPrice: string;
|
|
5047
5063
|
maxPrice: string;
|
|
5048
5064
|
currentPrice: string;
|
|
5049
5065
|
balance: string;
|
|
5050
|
-
currencyValue: string;
|
|
5051
5066
|
symbol?: string | undefined;
|
|
5052
5067
|
name?: string | undefined;
|
|
5053
5068
|
decimals?: number | undefined;
|
|
@@ -5062,7 +5077,6 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5062
5077
|
ccyDayChange?: string | undefined;
|
|
5063
5078
|
currencySymbol?: string | undefined;
|
|
5064
5079
|
};
|
|
5065
|
-
currencyValue: string;
|
|
5066
5080
|
address?: `0x${string}` | undefined;
|
|
5067
5081
|
tokenId?: string | undefined;
|
|
5068
5082
|
tickSpacingPercentage?: string | undefined;
|
|
@@ -5073,13 +5087,13 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5073
5087
|
token0: {
|
|
5074
5088
|
address: string;
|
|
5075
5089
|
networkId: string;
|
|
5090
|
+
currencyValue: string;
|
|
5076
5091
|
principal: string;
|
|
5077
5092
|
accruedFees: string;
|
|
5078
5093
|
minPrice: string;
|
|
5079
5094
|
maxPrice: string;
|
|
5080
5095
|
currentPrice: string;
|
|
5081
5096
|
balance: string;
|
|
5082
|
-
currencyValue: string;
|
|
5083
5097
|
symbol?: string | undefined;
|
|
5084
5098
|
name?: string | undefined;
|
|
5085
5099
|
decimals?: number | undefined;
|
|
@@ -5097,13 +5111,13 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5097
5111
|
token1: {
|
|
5098
5112
|
address: string;
|
|
5099
5113
|
networkId: string;
|
|
5114
|
+
currencyValue: string;
|
|
5100
5115
|
principal: string;
|
|
5101
5116
|
accruedFees: string;
|
|
5102
5117
|
minPrice: string;
|
|
5103
5118
|
maxPrice: string;
|
|
5104
5119
|
currentPrice: string;
|
|
5105
5120
|
balance: string;
|
|
5106
|
-
currencyValue: string;
|
|
5107
5121
|
symbol?: string | undefined;
|
|
5108
5122
|
name?: string | undefined;
|
|
5109
5123
|
decimals?: number | undefined;
|
|
@@ -5119,9 +5133,9 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5119
5133
|
currencySymbol?: string | undefined;
|
|
5120
5134
|
};
|
|
5121
5135
|
address?: string | undefined;
|
|
5136
|
+
currencyValue?: string | undefined;
|
|
5122
5137
|
tokenId?: string | undefined;
|
|
5123
5138
|
tickSpacingPercentage?: string | undefined;
|
|
5124
|
-
currencyValue?: string | undefined;
|
|
5125
5139
|
unitCurrencyValueToken0?: string | undefined;
|
|
5126
5140
|
unitCurrencyValueToken1?: string | undefined;
|
|
5127
5141
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -5251,8 +5265,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5251
5265
|
}>, "strip", z.ZodTypeAny, {
|
|
5252
5266
|
address: `0x${string}`;
|
|
5253
5267
|
networkId: string;
|
|
5254
|
-
balance: string;
|
|
5255
5268
|
currencyValue: string;
|
|
5269
|
+
balance: string;
|
|
5256
5270
|
symbol?: string | undefined;
|
|
5257
5271
|
name?: string | undefined;
|
|
5258
5272
|
decimals?: number | undefined;
|
|
@@ -5269,8 +5283,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5269
5283
|
}, {
|
|
5270
5284
|
address: string;
|
|
5271
5285
|
networkId: string;
|
|
5272
|
-
balance: string;
|
|
5273
5286
|
currencyValue: string;
|
|
5287
|
+
balance: string;
|
|
5274
5288
|
symbol?: string | undefined;
|
|
5275
5289
|
name?: string | undefined;
|
|
5276
5290
|
decimals?: number | undefined;
|
|
@@ -5289,10 +5303,10 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5289
5303
|
accountAddressGroup: z.ZodOptional<z.ZodString>;
|
|
5290
5304
|
}>, "strip", z.ZodTypeAny, {
|
|
5291
5305
|
lending: boolean;
|
|
5306
|
+
currencyValue: string;
|
|
5292
5307
|
totalBalances: Record<string, string>;
|
|
5293
5308
|
collateral: boolean;
|
|
5294
5309
|
debt: boolean;
|
|
5295
|
-
currencyValue: string;
|
|
5296
5310
|
address?: `0x${string}` | undefined;
|
|
5297
5311
|
accountAddress?: `0x${string}` | undefined;
|
|
5298
5312
|
totalApy?: string | undefined;
|
|
@@ -5326,8 +5340,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5326
5340
|
token?: {
|
|
5327
5341
|
address: `0x${string}`;
|
|
5328
5342
|
networkId: string;
|
|
5329
|
-
balance: string;
|
|
5330
5343
|
currencyValue: string;
|
|
5344
|
+
balance: string;
|
|
5331
5345
|
symbol?: string | undefined;
|
|
5332
5346
|
name?: string | undefined;
|
|
5333
5347
|
decimals?: number | undefined;
|
|
@@ -5352,9 +5366,9 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5352
5366
|
accountAddress?: string | undefined;
|
|
5353
5367
|
totalApy?: string | undefined;
|
|
5354
5368
|
apy?: string | undefined;
|
|
5369
|
+
currencyValue?: string | undefined;
|
|
5355
5370
|
unitCurrencyValue?: string | undefined;
|
|
5356
5371
|
group?: string | undefined;
|
|
5357
|
-
currencyValue?: string | undefined;
|
|
5358
5372
|
positionToken?: {
|
|
5359
5373
|
symbol: string;
|
|
5360
5374
|
name: string;
|
|
@@ -5382,8 +5396,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5382
5396
|
token?: {
|
|
5383
5397
|
address: string;
|
|
5384
5398
|
networkId: string;
|
|
5385
|
-
balance: string;
|
|
5386
5399
|
currencyValue: string;
|
|
5400
|
+
balance: string;
|
|
5387
5401
|
symbol?: string | undefined;
|
|
5388
5402
|
name?: string | undefined;
|
|
5389
5403
|
decimals?: number | undefined;
|
|
@@ -5439,8 +5453,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5439
5453
|
}>, "strip", z.ZodTypeAny, {
|
|
5440
5454
|
address: `0x${string}`;
|
|
5441
5455
|
networkId: string;
|
|
5442
|
-
balance: string;
|
|
5443
5456
|
currencyValue: string;
|
|
5457
|
+
balance: string;
|
|
5444
5458
|
symbol?: string | undefined;
|
|
5445
5459
|
name?: string | undefined;
|
|
5446
5460
|
decimals?: number | undefined;
|
|
@@ -5457,8 +5471,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5457
5471
|
}, {
|
|
5458
5472
|
address: string;
|
|
5459
5473
|
networkId: string;
|
|
5460
|
-
balance: string;
|
|
5461
5474
|
currencyValue: string;
|
|
5475
|
+
balance: string;
|
|
5462
5476
|
symbol?: string | undefined;
|
|
5463
5477
|
name?: string | undefined;
|
|
5464
5478
|
decimals?: number | undefined;
|
|
@@ -5476,16 +5490,16 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5476
5490
|
balance: z.ZodString;
|
|
5477
5491
|
unitCurrencyValue: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
5478
5492
|
}>, "strip", z.ZodTypeAny, {
|
|
5493
|
+
currencyValue: string;
|
|
5479
5494
|
unitCurrencyValue: string;
|
|
5480
5495
|
delegatingTo: `0x${string}`;
|
|
5481
5496
|
balance: string;
|
|
5482
|
-
currencyValue: string;
|
|
5483
5497
|
address?: `0x${string}` | undefined;
|
|
5484
5498
|
token?: {
|
|
5485
5499
|
address: `0x${string}`;
|
|
5486
5500
|
networkId: string;
|
|
5487
|
-
balance: string;
|
|
5488
5501
|
currencyValue: string;
|
|
5502
|
+
balance: string;
|
|
5489
5503
|
symbol?: string | undefined;
|
|
5490
5504
|
name?: string | undefined;
|
|
5491
5505
|
decimals?: number | undefined;
|
|
@@ -5504,13 +5518,13 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5504
5518
|
delegatingTo: string;
|
|
5505
5519
|
balance: string;
|
|
5506
5520
|
address?: string | undefined;
|
|
5507
|
-
unitCurrencyValue?: string | undefined;
|
|
5508
5521
|
currencyValue?: string | undefined;
|
|
5522
|
+
unitCurrencyValue?: string | undefined;
|
|
5509
5523
|
token?: {
|
|
5510
5524
|
address: string;
|
|
5511
5525
|
networkId: string;
|
|
5512
|
-
balance: string;
|
|
5513
5526
|
currencyValue: string;
|
|
5527
|
+
balance: string;
|
|
5514
5528
|
symbol?: string | undefined;
|
|
5515
5529
|
name?: string | undefined;
|
|
5516
5530
|
decimals?: number | undefined;
|
|
@@ -5619,8 +5633,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5619
5633
|
}>, "strip", z.ZodTypeAny, {
|
|
5620
5634
|
address: `0x${string}`;
|
|
5621
5635
|
networkId: string;
|
|
5622
|
-
balance: string;
|
|
5623
5636
|
currencyValue: string;
|
|
5637
|
+
balance: string;
|
|
5624
5638
|
symbol?: string | undefined;
|
|
5625
5639
|
name?: string | undefined;
|
|
5626
5640
|
decimals?: number | undefined;
|
|
@@ -5637,8 +5651,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5637
5651
|
}, {
|
|
5638
5652
|
address: string;
|
|
5639
5653
|
networkId: string;
|
|
5640
|
-
balance: string;
|
|
5641
5654
|
currencyValue: string;
|
|
5655
|
+
balance: string;
|
|
5642
5656
|
symbol?: string | undefined;
|
|
5643
5657
|
name?: string | undefined;
|
|
5644
5658
|
decimals?: number | undefined;
|
|
@@ -5662,6 +5676,7 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5662
5676
|
name?: string | undefined;
|
|
5663
5677
|
iconUrl?: string | undefined;
|
|
5664
5678
|
};
|
|
5679
|
+
currencyValue: string;
|
|
5665
5680
|
accruedRewards: {
|
|
5666
5681
|
wei: string;
|
|
5667
5682
|
eth: string;
|
|
@@ -5672,12 +5687,11 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5672
5687
|
eth: string;
|
|
5673
5688
|
currency: string;
|
|
5674
5689
|
};
|
|
5675
|
-
currencyValue: string;
|
|
5676
5690
|
token: {
|
|
5677
5691
|
address: `0x${string}`;
|
|
5678
5692
|
networkId: string;
|
|
5679
|
-
balance: string;
|
|
5680
5693
|
currencyValue: string;
|
|
5694
|
+
balance: string;
|
|
5681
5695
|
symbol?: string | undefined;
|
|
5682
5696
|
name?: string | undefined;
|
|
5683
5697
|
decimals?: number | undefined;
|
|
@@ -5720,8 +5734,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5720
5734
|
token: {
|
|
5721
5735
|
address: string;
|
|
5722
5736
|
networkId: string;
|
|
5723
|
-
balance: string;
|
|
5724
5737
|
currencyValue: string;
|
|
5738
|
+
balance: string;
|
|
5725
5739
|
symbol?: string | undefined;
|
|
5726
5740
|
name?: string | undefined;
|
|
5727
5741
|
decimals?: number | undefined;
|
|
@@ -5798,8 +5812,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5798
5812
|
}>, "strip", z.ZodTypeAny, {
|
|
5799
5813
|
address: `0x${string}`;
|
|
5800
5814
|
networkId: string;
|
|
5801
|
-
balance: string;
|
|
5802
5815
|
currencyValue: string;
|
|
5816
|
+
balance: string;
|
|
5803
5817
|
symbol?: string | undefined;
|
|
5804
5818
|
name?: string | undefined;
|
|
5805
5819
|
decimals?: number | undefined;
|
|
@@ -5816,8 +5830,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5816
5830
|
}, {
|
|
5817
5831
|
address: string;
|
|
5818
5832
|
networkId: string;
|
|
5819
|
-
balance: string;
|
|
5820
5833
|
currencyValue: string;
|
|
5834
|
+
balance: string;
|
|
5821
5835
|
symbol?: string | undefined;
|
|
5822
5836
|
name?: string | undefined;
|
|
5823
5837
|
decimals?: number | undefined;
|
|
@@ -5832,6 +5846,7 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5832
5846
|
ccyDayChange?: string | undefined;
|
|
5833
5847
|
currencySymbol?: string | undefined;
|
|
5834
5848
|
}>;
|
|
5849
|
+
liquidTokenAddress: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
5835
5850
|
}>, "strip", z.ZodTypeAny, {
|
|
5836
5851
|
id: string;
|
|
5837
5852
|
totalApy: number;
|
|
@@ -5840,8 +5855,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5840
5855
|
token: {
|
|
5841
5856
|
address: `0x${string}`;
|
|
5842
5857
|
networkId: string;
|
|
5843
|
-
balance: string;
|
|
5844
5858
|
currencyValue: string;
|
|
5859
|
+
balance: string;
|
|
5845
5860
|
symbol?: string | undefined;
|
|
5846
5861
|
name?: string | undefined;
|
|
5847
5862
|
decimals?: number | undefined;
|
|
@@ -5861,6 +5876,7 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5861
5876
|
eth: string;
|
|
5862
5877
|
currency: string;
|
|
5863
5878
|
};
|
|
5879
|
+
liquidTokenAddress: `0x${string}`;
|
|
5864
5880
|
address?: `0x${string}` | undefined;
|
|
5865
5881
|
}, {
|
|
5866
5882
|
id: string;
|
|
@@ -5869,8 +5885,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5869
5885
|
token: {
|
|
5870
5886
|
address: string;
|
|
5871
5887
|
networkId: string;
|
|
5872
|
-
balance: string;
|
|
5873
5888
|
currencyValue: string;
|
|
5889
|
+
balance: string;
|
|
5874
5890
|
symbol?: string | undefined;
|
|
5875
5891
|
name?: string | undefined;
|
|
5876
5892
|
decimals?: number | undefined;
|
|
@@ -5890,6 +5906,7 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5890
5906
|
eth: string;
|
|
5891
5907
|
currency: string;
|
|
5892
5908
|
};
|
|
5909
|
+
liquidTokenAddress: string;
|
|
5893
5910
|
address?: string | undefined;
|
|
5894
5911
|
currencyValue?: string | undefined;
|
|
5895
5912
|
}>]>, "many">;
|
|
@@ -5914,17 +5931,18 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5914
5931
|
type: "staking" | "strkDelegatedStaking" | "concentratedLiquidityPosition" | "collateralizedDebtPosition" | "delegatedTokens";
|
|
5915
5932
|
accountAddress: `0x${string}`;
|
|
5916
5933
|
positions: ({
|
|
5934
|
+
currencyValue: string;
|
|
5917
5935
|
poolFeePercentage: string;
|
|
5918
5936
|
token0: {
|
|
5919
5937
|
address: `0x${string}`;
|
|
5920
5938
|
networkId: string;
|
|
5939
|
+
currencyValue: string;
|
|
5921
5940
|
principal: string;
|
|
5922
5941
|
accruedFees: string;
|
|
5923
5942
|
minPrice: string;
|
|
5924
5943
|
maxPrice: string;
|
|
5925
5944
|
currentPrice: string;
|
|
5926
5945
|
balance: string;
|
|
5927
|
-
currencyValue: string;
|
|
5928
5946
|
symbol?: string | undefined;
|
|
5929
5947
|
name?: string | undefined;
|
|
5930
5948
|
decimals?: number | undefined;
|
|
@@ -5942,13 +5960,13 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5942
5960
|
token1: {
|
|
5943
5961
|
address: `0x${string}`;
|
|
5944
5962
|
networkId: string;
|
|
5963
|
+
currencyValue: string;
|
|
5945
5964
|
principal: string;
|
|
5946
5965
|
accruedFees: string;
|
|
5947
5966
|
minPrice: string;
|
|
5948
5967
|
maxPrice: string;
|
|
5949
5968
|
currentPrice: string;
|
|
5950
5969
|
balance: string;
|
|
5951
|
-
currencyValue: string;
|
|
5952
5970
|
symbol?: string | undefined;
|
|
5953
5971
|
name?: string | undefined;
|
|
5954
5972
|
decimals?: number | undefined;
|
|
@@ -5963,7 +5981,6 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5963
5981
|
ccyDayChange?: string | undefined;
|
|
5964
5982
|
currencySymbol?: string | undefined;
|
|
5965
5983
|
};
|
|
5966
|
-
currencyValue: string;
|
|
5967
5984
|
address?: `0x${string}` | undefined;
|
|
5968
5985
|
tokenId?: string | undefined;
|
|
5969
5986
|
tickSpacingPercentage?: string | undefined;
|
|
@@ -5971,10 +5988,10 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5971
5988
|
unitCurrencyValueToken1?: string | undefined;
|
|
5972
5989
|
} | {
|
|
5973
5990
|
lending: boolean;
|
|
5991
|
+
currencyValue: string;
|
|
5974
5992
|
totalBalances: Record<string, string>;
|
|
5975
5993
|
collateral: boolean;
|
|
5976
5994
|
debt: boolean;
|
|
5977
|
-
currencyValue: string;
|
|
5978
5995
|
address?: `0x${string}` | undefined;
|
|
5979
5996
|
accountAddress?: `0x${string}` | undefined;
|
|
5980
5997
|
totalApy?: string | undefined;
|
|
@@ -6008,8 +6025,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
6008
6025
|
token?: {
|
|
6009
6026
|
address: `0x${string}`;
|
|
6010
6027
|
networkId: string;
|
|
6011
|
-
balance: string;
|
|
6012
6028
|
currencyValue: string;
|
|
6029
|
+
balance: string;
|
|
6013
6030
|
symbol?: string | undefined;
|
|
6014
6031
|
name?: string | undefined;
|
|
6015
6032
|
decimals?: number | undefined;
|
|
@@ -6026,16 +6043,16 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
6026
6043
|
} | undefined;
|
|
6027
6044
|
accountAddressGroup?: string | undefined;
|
|
6028
6045
|
} | {
|
|
6046
|
+
currencyValue: string;
|
|
6029
6047
|
unitCurrencyValue: string;
|
|
6030
6048
|
delegatingTo: `0x${string}`;
|
|
6031
6049
|
balance: string;
|
|
6032
|
-
currencyValue: string;
|
|
6033
6050
|
address?: `0x${string}` | undefined;
|
|
6034
6051
|
token?: {
|
|
6035
6052
|
address: `0x${string}`;
|
|
6036
6053
|
networkId: string;
|
|
6037
|
-
balance: string;
|
|
6038
6054
|
currencyValue: string;
|
|
6055
|
+
balance: string;
|
|
6039
6056
|
symbol?: string | undefined;
|
|
6040
6057
|
name?: string | undefined;
|
|
6041
6058
|
decimals?: number | undefined;
|
|
@@ -6058,8 +6075,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
6058
6075
|
token: {
|
|
6059
6076
|
address: `0x${string}`;
|
|
6060
6077
|
networkId: string;
|
|
6061
|
-
balance: string;
|
|
6062
6078
|
currencyValue: string;
|
|
6079
|
+
balance: string;
|
|
6063
6080
|
symbol?: string | undefined;
|
|
6064
6081
|
name?: string | undefined;
|
|
6065
6082
|
decimals?: number | undefined;
|
|
@@ -6079,6 +6096,7 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
6079
6096
|
eth: string;
|
|
6080
6097
|
currency: string;
|
|
6081
6098
|
};
|
|
6099
|
+
liquidTokenAddress: `0x${string}`;
|
|
6082
6100
|
address?: `0x${string}` | undefined;
|
|
6083
6101
|
} | {
|
|
6084
6102
|
id: string;
|
|
@@ -6089,6 +6107,7 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
6089
6107
|
name?: string | undefined;
|
|
6090
6108
|
iconUrl?: string | undefined;
|
|
6091
6109
|
};
|
|
6110
|
+
currencyValue: string;
|
|
6092
6111
|
accruedRewards: {
|
|
6093
6112
|
wei: string;
|
|
6094
6113
|
eth: string;
|
|
@@ -6099,12 +6118,11 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
6099
6118
|
eth: string;
|
|
6100
6119
|
currency: string;
|
|
6101
6120
|
};
|
|
6102
|
-
currencyValue: string;
|
|
6103
6121
|
token: {
|
|
6104
6122
|
address: `0x${string}`;
|
|
6105
6123
|
networkId: string;
|
|
6106
|
-
balance: string;
|
|
6107
6124
|
currencyValue: string;
|
|
6125
|
+
balance: string;
|
|
6108
6126
|
symbol?: string | undefined;
|
|
6109
6127
|
name?: string | undefined;
|
|
6110
6128
|
decimals?: number | undefined;
|
|
@@ -6143,13 +6161,13 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
6143
6161
|
token0: {
|
|
6144
6162
|
address: string;
|
|
6145
6163
|
networkId: string;
|
|
6164
|
+
currencyValue: string;
|
|
6146
6165
|
principal: string;
|
|
6147
6166
|
accruedFees: string;
|
|
6148
6167
|
minPrice: string;
|
|
6149
6168
|
maxPrice: string;
|
|
6150
6169
|
currentPrice: string;
|
|
6151
6170
|
balance: string;
|
|
6152
|
-
currencyValue: string;
|
|
6153
6171
|
symbol?: string | undefined;
|
|
6154
6172
|
name?: string | undefined;
|
|
6155
6173
|
decimals?: number | undefined;
|
|
@@ -6167,13 +6185,13 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
6167
6185
|
token1: {
|
|
6168
6186
|
address: string;
|
|
6169
6187
|
networkId: string;
|
|
6188
|
+
currencyValue: string;
|
|
6170
6189
|
principal: string;
|
|
6171
6190
|
accruedFees: string;
|
|
6172
6191
|
minPrice: string;
|
|
6173
6192
|
maxPrice: string;
|
|
6174
6193
|
currentPrice: string;
|
|
6175
6194
|
balance: string;
|
|
6176
|
-
currencyValue: string;
|
|
6177
6195
|
symbol?: string | undefined;
|
|
6178
6196
|
name?: string | undefined;
|
|
6179
6197
|
decimals?: number | undefined;
|
|
@@ -6189,9 +6207,9 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
6189
6207
|
currencySymbol?: string | undefined;
|
|
6190
6208
|
};
|
|
6191
6209
|
address?: string | undefined;
|
|
6210
|
+
currencyValue?: string | undefined;
|
|
6192
6211
|
tokenId?: string | undefined;
|
|
6193
6212
|
tickSpacingPercentage?: string | undefined;
|
|
6194
|
-
currencyValue?: string | undefined;
|
|
6195
6213
|
unitCurrencyValueToken0?: string | undefined;
|
|
6196
6214
|
unitCurrencyValueToken1?: string | undefined;
|
|
6197
6215
|
} | {
|
|
@@ -6203,9 +6221,9 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
6203
6221
|
accountAddress?: string | undefined;
|
|
6204
6222
|
totalApy?: string | undefined;
|
|
6205
6223
|
apy?: string | undefined;
|
|
6224
|
+
currencyValue?: string | undefined;
|
|
6206
6225
|
unitCurrencyValue?: string | undefined;
|
|
6207
6226
|
group?: string | undefined;
|
|
6208
|
-
currencyValue?: string | undefined;
|
|
6209
6227
|
positionToken?: {
|
|
6210
6228
|
symbol: string;
|
|
6211
6229
|
name: string;
|
|
@@ -6233,8 +6251,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
6233
6251
|
token?: {
|
|
6234
6252
|
address: string;
|
|
6235
6253
|
networkId: string;
|
|
6236
|
-
balance: string;
|
|
6237
6254
|
currencyValue: string;
|
|
6255
|
+
balance: string;
|
|
6238
6256
|
symbol?: string | undefined;
|
|
6239
6257
|
name?: string | undefined;
|
|
6240
6258
|
decimals?: number | undefined;
|
|
@@ -6254,13 +6272,13 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
6254
6272
|
delegatingTo: string;
|
|
6255
6273
|
balance: string;
|
|
6256
6274
|
address?: string | undefined;
|
|
6257
|
-
unitCurrencyValue?: string | undefined;
|
|
6258
6275
|
currencyValue?: string | undefined;
|
|
6276
|
+
unitCurrencyValue?: string | undefined;
|
|
6259
6277
|
token?: {
|
|
6260
6278
|
address: string;
|
|
6261
6279
|
networkId: string;
|
|
6262
|
-
balance: string;
|
|
6263
6280
|
currencyValue: string;
|
|
6281
|
+
balance: string;
|
|
6264
6282
|
symbol?: string | undefined;
|
|
6265
6283
|
name?: string | undefined;
|
|
6266
6284
|
decimals?: number | undefined;
|
|
@@ -6282,8 +6300,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
6282
6300
|
token: {
|
|
6283
6301
|
address: string;
|
|
6284
6302
|
networkId: string;
|
|
6285
|
-
balance: string;
|
|
6286
6303
|
currencyValue: string;
|
|
6304
|
+
balance: string;
|
|
6287
6305
|
symbol?: string | undefined;
|
|
6288
6306
|
name?: string | undefined;
|
|
6289
6307
|
decimals?: number | undefined;
|
|
@@ -6303,6 +6321,7 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
6303
6321
|
eth: string;
|
|
6304
6322
|
currency: string;
|
|
6305
6323
|
};
|
|
6324
|
+
liquidTokenAddress: string;
|
|
6306
6325
|
address?: string | undefined;
|
|
6307
6326
|
currencyValue?: string | undefined;
|
|
6308
6327
|
} | {
|
|
@@ -6327,8 +6346,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
6327
6346
|
token: {
|
|
6328
6347
|
address: string;
|
|
6329
6348
|
networkId: string;
|
|
6330
|
-
balance: string;
|
|
6331
6349
|
currencyValue: string;
|
|
6350
|
+
balance: string;
|
|
6332
6351
|
symbol?: string | undefined;
|
|
6333
6352
|
name?: string | undefined;
|
|
6334
6353
|
decimals?: number | undefined;
|
|
@@ -6416,13 +6435,13 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
6416
6435
|
}>, "strip", z.ZodTypeAny, {
|
|
6417
6436
|
address: `0x${string}`;
|
|
6418
6437
|
networkId: string;
|
|
6438
|
+
currencyValue: string;
|
|
6419
6439
|
principal: string;
|
|
6420
6440
|
accruedFees: string;
|
|
6421
6441
|
minPrice: string;
|
|
6422
6442
|
maxPrice: string;
|
|
6423
6443
|
currentPrice: string;
|
|
6424
6444
|
balance: string;
|
|
6425
|
-
currencyValue: string;
|
|
6426
6445
|
symbol?: string | undefined;
|
|
6427
6446
|
name?: string | undefined;
|
|
6428
6447
|
decimals?: number | undefined;
|
|
@@ -6439,13 +6458,13 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
6439
6458
|
}, {
|
|
6440
6459
|
address: string;
|
|
6441
6460
|
networkId: string;
|
|
6461
|
+
currencyValue: string;
|
|
6442
6462
|
principal: string;
|
|
6443
6463
|
accruedFees: string;
|
|
6444
6464
|
minPrice: string;
|
|
6445
6465
|
maxPrice: string;
|
|
6446
6466
|
currentPrice: string;
|
|
6447
6467
|
balance: string;
|
|
6448
|
-
currencyValue: string;
|
|
6449
6468
|
symbol?: string | undefined;
|
|
6450
6469
|
name?: string | undefined;
|
|
6451
6470
|
decimals?: number | undefined;
|
|
@@ -6501,13 +6520,13 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
6501
6520
|
}>, "strip", z.ZodTypeAny, {
|
|
6502
6521
|
address: `0x${string}`;
|
|
6503
6522
|
networkId: string;
|
|
6523
|
+
currencyValue: string;
|
|
6504
6524
|
principal: string;
|
|
6505
6525
|
accruedFees: string;
|
|
6506
6526
|
minPrice: string;
|
|
6507
6527
|
maxPrice: string;
|
|
6508
6528
|
currentPrice: string;
|
|
6509
6529
|
balance: string;
|
|
6510
|
-
currencyValue: string;
|
|
6511
6530
|
symbol?: string | undefined;
|
|
6512
6531
|
name?: string | undefined;
|
|
6513
6532
|
decimals?: number | undefined;
|
|
@@ -6524,13 +6543,13 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
6524
6543
|
}, {
|
|
6525
6544
|
address: string;
|
|
6526
6545
|
networkId: string;
|
|
6546
|
+
currencyValue: string;
|
|
6527
6547
|
principal: string;
|
|
6528
6548
|
accruedFees: string;
|
|
6529
6549
|
minPrice: string;
|
|
6530
6550
|
maxPrice: string;
|
|
6531
6551
|
currentPrice: string;
|
|
6532
6552
|
balance: string;
|
|
6533
|
-
currencyValue: string;
|
|
6534
6553
|
symbol?: string | undefined;
|
|
6535
6554
|
name?: string | undefined;
|
|
6536
6555
|
decimals?: number | undefined;
|
|
@@ -6546,17 +6565,18 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
6546
6565
|
currencySymbol?: string | undefined;
|
|
6547
6566
|
}>;
|
|
6548
6567
|
}>, "strip", z.ZodTypeAny, {
|
|
6568
|
+
currencyValue: string;
|
|
6549
6569
|
poolFeePercentage: string;
|
|
6550
6570
|
token0: {
|
|
6551
6571
|
address: `0x${string}`;
|
|
6552
6572
|
networkId: string;
|
|
6573
|
+
currencyValue: string;
|
|
6553
6574
|
principal: string;
|
|
6554
6575
|
accruedFees: string;
|
|
6555
6576
|
minPrice: string;
|
|
6556
6577
|
maxPrice: string;
|
|
6557
6578
|
currentPrice: string;
|
|
6558
6579
|
balance: string;
|
|
6559
|
-
currencyValue: string;
|
|
6560
6580
|
symbol?: string | undefined;
|
|
6561
6581
|
name?: string | undefined;
|
|
6562
6582
|
decimals?: number | undefined;
|
|
@@ -6574,13 +6594,13 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
6574
6594
|
token1: {
|
|
6575
6595
|
address: `0x${string}`;
|
|
6576
6596
|
networkId: string;
|
|
6597
|
+
currencyValue: string;
|
|
6577
6598
|
principal: string;
|
|
6578
6599
|
accruedFees: string;
|
|
6579
6600
|
minPrice: string;
|
|
6580
6601
|
maxPrice: string;
|
|
6581
6602
|
currentPrice: string;
|
|
6582
6603
|
balance: string;
|
|
6583
|
-
currencyValue: string;
|
|
6584
6604
|
symbol?: string | undefined;
|
|
6585
6605
|
name?: string | undefined;
|
|
6586
6606
|
decimals?: number | undefined;
|
|
@@ -6595,7 +6615,6 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
6595
6615
|
ccyDayChange?: string | undefined;
|
|
6596
6616
|
currencySymbol?: string | undefined;
|
|
6597
6617
|
};
|
|
6598
|
-
currencyValue: string;
|
|
6599
6618
|
address?: `0x${string}` | undefined;
|
|
6600
6619
|
tokenId?: string | undefined;
|
|
6601
6620
|
tickSpacingPercentage?: string | undefined;
|
|
@@ -6606,13 +6625,13 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
6606
6625
|
token0: {
|
|
6607
6626
|
address: string;
|
|
6608
6627
|
networkId: string;
|
|
6628
|
+
currencyValue: string;
|
|
6609
6629
|
principal: string;
|
|
6610
6630
|
accruedFees: string;
|
|
6611
6631
|
minPrice: string;
|
|
6612
6632
|
maxPrice: string;
|
|
6613
6633
|
currentPrice: string;
|
|
6614
6634
|
balance: string;
|
|
6615
|
-
currencyValue: string;
|
|
6616
6635
|
symbol?: string | undefined;
|
|
6617
6636
|
name?: string | undefined;
|
|
6618
6637
|
decimals?: number | undefined;
|
|
@@ -6630,13 +6649,13 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
6630
6649
|
token1: {
|
|
6631
6650
|
address: string;
|
|
6632
6651
|
networkId: string;
|
|
6652
|
+
currencyValue: string;
|
|
6633
6653
|
principal: string;
|
|
6634
6654
|
accruedFees: string;
|
|
6635
6655
|
minPrice: string;
|
|
6636
6656
|
maxPrice: string;
|
|
6637
6657
|
currentPrice: string;
|
|
6638
6658
|
balance: string;
|
|
6639
|
-
currencyValue: string;
|
|
6640
6659
|
symbol?: string | undefined;
|
|
6641
6660
|
name?: string | undefined;
|
|
6642
6661
|
decimals?: number | undefined;
|
|
@@ -6652,9 +6671,9 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
6652
6671
|
currencySymbol?: string | undefined;
|
|
6653
6672
|
};
|
|
6654
6673
|
address?: string | undefined;
|
|
6674
|
+
currencyValue?: string | undefined;
|
|
6655
6675
|
tokenId?: string | undefined;
|
|
6656
6676
|
tickSpacingPercentage?: string | undefined;
|
|
6657
|
-
currencyValue?: string | undefined;
|
|
6658
6677
|
unitCurrencyValueToken0?: string | undefined;
|
|
6659
6678
|
unitCurrencyValueToken1?: string | undefined;
|
|
6660
6679
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -6784,8 +6803,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
6784
6803
|
}>, "strip", z.ZodTypeAny, {
|
|
6785
6804
|
address: `0x${string}`;
|
|
6786
6805
|
networkId: string;
|
|
6787
|
-
balance: string;
|
|
6788
6806
|
currencyValue: string;
|
|
6807
|
+
balance: string;
|
|
6789
6808
|
symbol?: string | undefined;
|
|
6790
6809
|
name?: string | undefined;
|
|
6791
6810
|
decimals?: number | undefined;
|
|
@@ -6802,8 +6821,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
6802
6821
|
}, {
|
|
6803
6822
|
address: string;
|
|
6804
6823
|
networkId: string;
|
|
6805
|
-
balance: string;
|
|
6806
6824
|
currencyValue: string;
|
|
6825
|
+
balance: string;
|
|
6807
6826
|
symbol?: string | undefined;
|
|
6808
6827
|
name?: string | undefined;
|
|
6809
6828
|
decimals?: number | undefined;
|
|
@@ -6822,10 +6841,10 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
6822
6841
|
accountAddressGroup: z.ZodOptional<z.ZodString>;
|
|
6823
6842
|
}>, "strip", z.ZodTypeAny, {
|
|
6824
6843
|
lending: boolean;
|
|
6844
|
+
currencyValue: string;
|
|
6825
6845
|
totalBalances: Record<string, string>;
|
|
6826
6846
|
collateral: boolean;
|
|
6827
6847
|
debt: boolean;
|
|
6828
|
-
currencyValue: string;
|
|
6829
6848
|
address?: `0x${string}` | undefined;
|
|
6830
6849
|
accountAddress?: `0x${string}` | undefined;
|
|
6831
6850
|
totalApy?: string | undefined;
|
|
@@ -6859,8 +6878,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
6859
6878
|
token?: {
|
|
6860
6879
|
address: `0x${string}`;
|
|
6861
6880
|
networkId: string;
|
|
6862
|
-
balance: string;
|
|
6863
6881
|
currencyValue: string;
|
|
6882
|
+
balance: string;
|
|
6864
6883
|
symbol?: string | undefined;
|
|
6865
6884
|
name?: string | undefined;
|
|
6866
6885
|
decimals?: number | undefined;
|
|
@@ -6885,9 +6904,9 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
6885
6904
|
accountAddress?: string | undefined;
|
|
6886
6905
|
totalApy?: string | undefined;
|
|
6887
6906
|
apy?: string | undefined;
|
|
6907
|
+
currencyValue?: string | undefined;
|
|
6888
6908
|
unitCurrencyValue?: string | undefined;
|
|
6889
6909
|
group?: string | undefined;
|
|
6890
|
-
currencyValue?: string | undefined;
|
|
6891
6910
|
positionToken?: {
|
|
6892
6911
|
symbol: string;
|
|
6893
6912
|
name: string;
|
|
@@ -6915,8 +6934,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
6915
6934
|
token?: {
|
|
6916
6935
|
address: string;
|
|
6917
6936
|
networkId: string;
|
|
6918
|
-
balance: string;
|
|
6919
6937
|
currencyValue: string;
|
|
6938
|
+
balance: string;
|
|
6920
6939
|
symbol?: string | undefined;
|
|
6921
6940
|
name?: string | undefined;
|
|
6922
6941
|
decimals?: number | undefined;
|
|
@@ -6972,8 +6991,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
6972
6991
|
}>, "strip", z.ZodTypeAny, {
|
|
6973
6992
|
address: `0x${string}`;
|
|
6974
6993
|
networkId: string;
|
|
6975
|
-
balance: string;
|
|
6976
6994
|
currencyValue: string;
|
|
6995
|
+
balance: string;
|
|
6977
6996
|
symbol?: string | undefined;
|
|
6978
6997
|
name?: string | undefined;
|
|
6979
6998
|
decimals?: number | undefined;
|
|
@@ -6990,8 +7009,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
6990
7009
|
}, {
|
|
6991
7010
|
address: string;
|
|
6992
7011
|
networkId: string;
|
|
6993
|
-
balance: string;
|
|
6994
7012
|
currencyValue: string;
|
|
7013
|
+
balance: string;
|
|
6995
7014
|
symbol?: string | undefined;
|
|
6996
7015
|
name?: string | undefined;
|
|
6997
7016
|
decimals?: number | undefined;
|
|
@@ -7009,16 +7028,16 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7009
7028
|
balance: z.ZodString;
|
|
7010
7029
|
unitCurrencyValue: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
7011
7030
|
}>, "strip", z.ZodTypeAny, {
|
|
7031
|
+
currencyValue: string;
|
|
7012
7032
|
unitCurrencyValue: string;
|
|
7013
7033
|
delegatingTo: `0x${string}`;
|
|
7014
7034
|
balance: string;
|
|
7015
|
-
currencyValue: string;
|
|
7016
7035
|
address?: `0x${string}` | undefined;
|
|
7017
7036
|
token?: {
|
|
7018
7037
|
address: `0x${string}`;
|
|
7019
7038
|
networkId: string;
|
|
7020
|
-
balance: string;
|
|
7021
7039
|
currencyValue: string;
|
|
7040
|
+
balance: string;
|
|
7022
7041
|
symbol?: string | undefined;
|
|
7023
7042
|
name?: string | undefined;
|
|
7024
7043
|
decimals?: number | undefined;
|
|
@@ -7037,13 +7056,13 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7037
7056
|
delegatingTo: string;
|
|
7038
7057
|
balance: string;
|
|
7039
7058
|
address?: string | undefined;
|
|
7040
|
-
unitCurrencyValue?: string | undefined;
|
|
7041
7059
|
currencyValue?: string | undefined;
|
|
7060
|
+
unitCurrencyValue?: string | undefined;
|
|
7042
7061
|
token?: {
|
|
7043
7062
|
address: string;
|
|
7044
7063
|
networkId: string;
|
|
7045
|
-
balance: string;
|
|
7046
7064
|
currencyValue: string;
|
|
7065
|
+
balance: string;
|
|
7047
7066
|
symbol?: string | undefined;
|
|
7048
7067
|
name?: string | undefined;
|
|
7049
7068
|
decimals?: number | undefined;
|
|
@@ -7152,8 +7171,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7152
7171
|
}>, "strip", z.ZodTypeAny, {
|
|
7153
7172
|
address: `0x${string}`;
|
|
7154
7173
|
networkId: string;
|
|
7155
|
-
balance: string;
|
|
7156
7174
|
currencyValue: string;
|
|
7175
|
+
balance: string;
|
|
7157
7176
|
symbol?: string | undefined;
|
|
7158
7177
|
name?: string | undefined;
|
|
7159
7178
|
decimals?: number | undefined;
|
|
@@ -7170,8 +7189,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7170
7189
|
}, {
|
|
7171
7190
|
address: string;
|
|
7172
7191
|
networkId: string;
|
|
7173
|
-
balance: string;
|
|
7174
7192
|
currencyValue: string;
|
|
7193
|
+
balance: string;
|
|
7175
7194
|
symbol?: string | undefined;
|
|
7176
7195
|
name?: string | undefined;
|
|
7177
7196
|
decimals?: number | undefined;
|
|
@@ -7195,6 +7214,7 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7195
7214
|
name?: string | undefined;
|
|
7196
7215
|
iconUrl?: string | undefined;
|
|
7197
7216
|
};
|
|
7217
|
+
currencyValue: string;
|
|
7198
7218
|
accruedRewards: {
|
|
7199
7219
|
wei: string;
|
|
7200
7220
|
eth: string;
|
|
@@ -7205,12 +7225,11 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7205
7225
|
eth: string;
|
|
7206
7226
|
currency: string;
|
|
7207
7227
|
};
|
|
7208
|
-
currencyValue: string;
|
|
7209
7228
|
token: {
|
|
7210
7229
|
address: `0x${string}`;
|
|
7211
7230
|
networkId: string;
|
|
7212
|
-
balance: string;
|
|
7213
7231
|
currencyValue: string;
|
|
7232
|
+
balance: string;
|
|
7214
7233
|
symbol?: string | undefined;
|
|
7215
7234
|
name?: string | undefined;
|
|
7216
7235
|
decimals?: number | undefined;
|
|
@@ -7253,8 +7272,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7253
7272
|
token: {
|
|
7254
7273
|
address: string;
|
|
7255
7274
|
networkId: string;
|
|
7256
|
-
balance: string;
|
|
7257
7275
|
currencyValue: string;
|
|
7276
|
+
balance: string;
|
|
7258
7277
|
symbol?: string | undefined;
|
|
7259
7278
|
name?: string | undefined;
|
|
7260
7279
|
decimals?: number | undefined;
|
|
@@ -7331,8 +7350,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7331
7350
|
}>, "strip", z.ZodTypeAny, {
|
|
7332
7351
|
address: `0x${string}`;
|
|
7333
7352
|
networkId: string;
|
|
7334
|
-
balance: string;
|
|
7335
7353
|
currencyValue: string;
|
|
7354
|
+
balance: string;
|
|
7336
7355
|
symbol?: string | undefined;
|
|
7337
7356
|
name?: string | undefined;
|
|
7338
7357
|
decimals?: number | undefined;
|
|
@@ -7349,8 +7368,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7349
7368
|
}, {
|
|
7350
7369
|
address: string;
|
|
7351
7370
|
networkId: string;
|
|
7352
|
-
balance: string;
|
|
7353
7371
|
currencyValue: string;
|
|
7372
|
+
balance: string;
|
|
7354
7373
|
symbol?: string | undefined;
|
|
7355
7374
|
name?: string | undefined;
|
|
7356
7375
|
decimals?: number | undefined;
|
|
@@ -7365,6 +7384,7 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7365
7384
|
ccyDayChange?: string | undefined;
|
|
7366
7385
|
currencySymbol?: string | undefined;
|
|
7367
7386
|
}>;
|
|
7387
|
+
liquidTokenAddress: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
7368
7388
|
}>, "strip", z.ZodTypeAny, {
|
|
7369
7389
|
id: string;
|
|
7370
7390
|
totalApy: number;
|
|
@@ -7373,8 +7393,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7373
7393
|
token: {
|
|
7374
7394
|
address: `0x${string}`;
|
|
7375
7395
|
networkId: string;
|
|
7376
|
-
balance: string;
|
|
7377
7396
|
currencyValue: string;
|
|
7397
|
+
balance: string;
|
|
7378
7398
|
symbol?: string | undefined;
|
|
7379
7399
|
name?: string | undefined;
|
|
7380
7400
|
decimals?: number | undefined;
|
|
@@ -7394,6 +7414,7 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7394
7414
|
eth: string;
|
|
7395
7415
|
currency: string;
|
|
7396
7416
|
};
|
|
7417
|
+
liquidTokenAddress: `0x${string}`;
|
|
7397
7418
|
address?: `0x${string}` | undefined;
|
|
7398
7419
|
}, {
|
|
7399
7420
|
id: string;
|
|
@@ -7402,8 +7423,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7402
7423
|
token: {
|
|
7403
7424
|
address: string;
|
|
7404
7425
|
networkId: string;
|
|
7405
|
-
balance: string;
|
|
7406
7426
|
currencyValue: string;
|
|
7427
|
+
balance: string;
|
|
7407
7428
|
symbol?: string | undefined;
|
|
7408
7429
|
name?: string | undefined;
|
|
7409
7430
|
decimals?: number | undefined;
|
|
@@ -7423,6 +7444,7 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7423
7444
|
eth: string;
|
|
7424
7445
|
currency: string;
|
|
7425
7446
|
};
|
|
7447
|
+
liquidTokenAddress: string;
|
|
7426
7448
|
address?: string | undefined;
|
|
7427
7449
|
currencyValue?: string | undefined;
|
|
7428
7450
|
}>]>, "many">;
|
|
@@ -7447,17 +7469,18 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7447
7469
|
type: "staking" | "strkDelegatedStaking" | "concentratedLiquidityPosition" | "collateralizedDebtPosition" | "delegatedTokens";
|
|
7448
7470
|
accountAddress: `0x${string}`;
|
|
7449
7471
|
positions: ({
|
|
7472
|
+
currencyValue: string;
|
|
7450
7473
|
poolFeePercentage: string;
|
|
7451
7474
|
token0: {
|
|
7452
7475
|
address: `0x${string}`;
|
|
7453
7476
|
networkId: string;
|
|
7477
|
+
currencyValue: string;
|
|
7454
7478
|
principal: string;
|
|
7455
7479
|
accruedFees: string;
|
|
7456
7480
|
minPrice: string;
|
|
7457
7481
|
maxPrice: string;
|
|
7458
7482
|
currentPrice: string;
|
|
7459
7483
|
balance: string;
|
|
7460
|
-
currencyValue: string;
|
|
7461
7484
|
symbol?: string | undefined;
|
|
7462
7485
|
name?: string | undefined;
|
|
7463
7486
|
decimals?: number | undefined;
|
|
@@ -7475,13 +7498,13 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7475
7498
|
token1: {
|
|
7476
7499
|
address: `0x${string}`;
|
|
7477
7500
|
networkId: string;
|
|
7501
|
+
currencyValue: string;
|
|
7478
7502
|
principal: string;
|
|
7479
7503
|
accruedFees: string;
|
|
7480
7504
|
minPrice: string;
|
|
7481
7505
|
maxPrice: string;
|
|
7482
7506
|
currentPrice: string;
|
|
7483
7507
|
balance: string;
|
|
7484
|
-
currencyValue: string;
|
|
7485
7508
|
symbol?: string | undefined;
|
|
7486
7509
|
name?: string | undefined;
|
|
7487
7510
|
decimals?: number | undefined;
|
|
@@ -7496,7 +7519,6 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7496
7519
|
ccyDayChange?: string | undefined;
|
|
7497
7520
|
currencySymbol?: string | undefined;
|
|
7498
7521
|
};
|
|
7499
|
-
currencyValue: string;
|
|
7500
7522
|
address?: `0x${string}` | undefined;
|
|
7501
7523
|
tokenId?: string | undefined;
|
|
7502
7524
|
tickSpacingPercentage?: string | undefined;
|
|
@@ -7504,10 +7526,10 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7504
7526
|
unitCurrencyValueToken1?: string | undefined;
|
|
7505
7527
|
} | {
|
|
7506
7528
|
lending: boolean;
|
|
7529
|
+
currencyValue: string;
|
|
7507
7530
|
totalBalances: Record<string, string>;
|
|
7508
7531
|
collateral: boolean;
|
|
7509
7532
|
debt: boolean;
|
|
7510
|
-
currencyValue: string;
|
|
7511
7533
|
address?: `0x${string}` | undefined;
|
|
7512
7534
|
accountAddress?: `0x${string}` | undefined;
|
|
7513
7535
|
totalApy?: string | undefined;
|
|
@@ -7541,8 +7563,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7541
7563
|
token?: {
|
|
7542
7564
|
address: `0x${string}`;
|
|
7543
7565
|
networkId: string;
|
|
7544
|
-
balance: string;
|
|
7545
7566
|
currencyValue: string;
|
|
7567
|
+
balance: string;
|
|
7546
7568
|
symbol?: string | undefined;
|
|
7547
7569
|
name?: string | undefined;
|
|
7548
7570
|
decimals?: number | undefined;
|
|
@@ -7559,16 +7581,16 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7559
7581
|
} | undefined;
|
|
7560
7582
|
accountAddressGroup?: string | undefined;
|
|
7561
7583
|
} | {
|
|
7584
|
+
currencyValue: string;
|
|
7562
7585
|
unitCurrencyValue: string;
|
|
7563
7586
|
delegatingTo: `0x${string}`;
|
|
7564
7587
|
balance: string;
|
|
7565
|
-
currencyValue: string;
|
|
7566
7588
|
address?: `0x${string}` | undefined;
|
|
7567
7589
|
token?: {
|
|
7568
7590
|
address: `0x${string}`;
|
|
7569
7591
|
networkId: string;
|
|
7570
|
-
balance: string;
|
|
7571
7592
|
currencyValue: string;
|
|
7593
|
+
balance: string;
|
|
7572
7594
|
symbol?: string | undefined;
|
|
7573
7595
|
name?: string | undefined;
|
|
7574
7596
|
decimals?: number | undefined;
|
|
@@ -7591,8 +7613,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7591
7613
|
token: {
|
|
7592
7614
|
address: `0x${string}`;
|
|
7593
7615
|
networkId: string;
|
|
7594
|
-
balance: string;
|
|
7595
7616
|
currencyValue: string;
|
|
7617
|
+
balance: string;
|
|
7596
7618
|
symbol?: string | undefined;
|
|
7597
7619
|
name?: string | undefined;
|
|
7598
7620
|
decimals?: number | undefined;
|
|
@@ -7612,6 +7634,7 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7612
7634
|
eth: string;
|
|
7613
7635
|
currency: string;
|
|
7614
7636
|
};
|
|
7637
|
+
liquidTokenAddress: `0x${string}`;
|
|
7615
7638
|
address?: `0x${string}` | undefined;
|
|
7616
7639
|
} | {
|
|
7617
7640
|
id: string;
|
|
@@ -7622,6 +7645,7 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7622
7645
|
name?: string | undefined;
|
|
7623
7646
|
iconUrl?: string | undefined;
|
|
7624
7647
|
};
|
|
7648
|
+
currencyValue: string;
|
|
7625
7649
|
accruedRewards: {
|
|
7626
7650
|
wei: string;
|
|
7627
7651
|
eth: string;
|
|
@@ -7632,12 +7656,11 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7632
7656
|
eth: string;
|
|
7633
7657
|
currency: string;
|
|
7634
7658
|
};
|
|
7635
|
-
currencyValue: string;
|
|
7636
7659
|
token: {
|
|
7637
7660
|
address: `0x${string}`;
|
|
7638
7661
|
networkId: string;
|
|
7639
|
-
balance: string;
|
|
7640
7662
|
currencyValue: string;
|
|
7663
|
+
balance: string;
|
|
7641
7664
|
symbol?: string | undefined;
|
|
7642
7665
|
name?: string | undefined;
|
|
7643
7666
|
decimals?: number | undefined;
|
|
@@ -7676,13 +7699,13 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7676
7699
|
token0: {
|
|
7677
7700
|
address: string;
|
|
7678
7701
|
networkId: string;
|
|
7702
|
+
currencyValue: string;
|
|
7679
7703
|
principal: string;
|
|
7680
7704
|
accruedFees: string;
|
|
7681
7705
|
minPrice: string;
|
|
7682
7706
|
maxPrice: string;
|
|
7683
7707
|
currentPrice: string;
|
|
7684
7708
|
balance: string;
|
|
7685
|
-
currencyValue: string;
|
|
7686
7709
|
symbol?: string | undefined;
|
|
7687
7710
|
name?: string | undefined;
|
|
7688
7711
|
decimals?: number | undefined;
|
|
@@ -7700,13 +7723,13 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7700
7723
|
token1: {
|
|
7701
7724
|
address: string;
|
|
7702
7725
|
networkId: string;
|
|
7726
|
+
currencyValue: string;
|
|
7703
7727
|
principal: string;
|
|
7704
7728
|
accruedFees: string;
|
|
7705
7729
|
minPrice: string;
|
|
7706
7730
|
maxPrice: string;
|
|
7707
7731
|
currentPrice: string;
|
|
7708
7732
|
balance: string;
|
|
7709
|
-
currencyValue: string;
|
|
7710
7733
|
symbol?: string | undefined;
|
|
7711
7734
|
name?: string | undefined;
|
|
7712
7735
|
decimals?: number | undefined;
|
|
@@ -7722,9 +7745,9 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7722
7745
|
currencySymbol?: string | undefined;
|
|
7723
7746
|
};
|
|
7724
7747
|
address?: string | undefined;
|
|
7748
|
+
currencyValue?: string | undefined;
|
|
7725
7749
|
tokenId?: string | undefined;
|
|
7726
7750
|
tickSpacingPercentage?: string | undefined;
|
|
7727
|
-
currencyValue?: string | undefined;
|
|
7728
7751
|
unitCurrencyValueToken0?: string | undefined;
|
|
7729
7752
|
unitCurrencyValueToken1?: string | undefined;
|
|
7730
7753
|
} | {
|
|
@@ -7736,9 +7759,9 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7736
7759
|
accountAddress?: string | undefined;
|
|
7737
7760
|
totalApy?: string | undefined;
|
|
7738
7761
|
apy?: string | undefined;
|
|
7762
|
+
currencyValue?: string | undefined;
|
|
7739
7763
|
unitCurrencyValue?: string | undefined;
|
|
7740
7764
|
group?: string | undefined;
|
|
7741
|
-
currencyValue?: string | undefined;
|
|
7742
7765
|
positionToken?: {
|
|
7743
7766
|
symbol: string;
|
|
7744
7767
|
name: string;
|
|
@@ -7766,8 +7789,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7766
7789
|
token?: {
|
|
7767
7790
|
address: string;
|
|
7768
7791
|
networkId: string;
|
|
7769
|
-
balance: string;
|
|
7770
7792
|
currencyValue: string;
|
|
7793
|
+
balance: string;
|
|
7771
7794
|
symbol?: string | undefined;
|
|
7772
7795
|
name?: string | undefined;
|
|
7773
7796
|
decimals?: number | undefined;
|
|
@@ -7787,13 +7810,13 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7787
7810
|
delegatingTo: string;
|
|
7788
7811
|
balance: string;
|
|
7789
7812
|
address?: string | undefined;
|
|
7790
|
-
unitCurrencyValue?: string | undefined;
|
|
7791
7813
|
currencyValue?: string | undefined;
|
|
7814
|
+
unitCurrencyValue?: string | undefined;
|
|
7792
7815
|
token?: {
|
|
7793
7816
|
address: string;
|
|
7794
7817
|
networkId: string;
|
|
7795
|
-
balance: string;
|
|
7796
7818
|
currencyValue: string;
|
|
7819
|
+
balance: string;
|
|
7797
7820
|
symbol?: string | undefined;
|
|
7798
7821
|
name?: string | undefined;
|
|
7799
7822
|
decimals?: number | undefined;
|
|
@@ -7815,8 +7838,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7815
7838
|
token: {
|
|
7816
7839
|
address: string;
|
|
7817
7840
|
networkId: string;
|
|
7818
|
-
balance: string;
|
|
7819
7841
|
currencyValue: string;
|
|
7842
|
+
balance: string;
|
|
7820
7843
|
symbol?: string | undefined;
|
|
7821
7844
|
name?: string | undefined;
|
|
7822
7845
|
decimals?: number | undefined;
|
|
@@ -7836,6 +7859,7 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7836
7859
|
eth: string;
|
|
7837
7860
|
currency: string;
|
|
7838
7861
|
};
|
|
7862
|
+
liquidTokenAddress: string;
|
|
7839
7863
|
address?: string | undefined;
|
|
7840
7864
|
currencyValue?: string | undefined;
|
|
7841
7865
|
} | {
|
|
@@ -7860,8 +7884,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7860
7884
|
token: {
|
|
7861
7885
|
address: string;
|
|
7862
7886
|
networkId: string;
|
|
7863
|
-
balance: string;
|
|
7864
7887
|
currencyValue: string;
|
|
7888
|
+
balance: string;
|
|
7865
7889
|
symbol?: string | undefined;
|
|
7866
7890
|
name?: string | undefined;
|
|
7867
7891
|
decimals?: number | undefined;
|
|
@@ -7900,17 +7924,18 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7900
7924
|
type: "staking" | "strkDelegatedStaking" | "concentratedLiquidityPosition" | "collateralizedDebtPosition" | "delegatedTokens";
|
|
7901
7925
|
accountAddress: `0x${string}`;
|
|
7902
7926
|
positions: ({
|
|
7927
|
+
currencyValue: string;
|
|
7903
7928
|
poolFeePercentage: string;
|
|
7904
7929
|
token0: {
|
|
7905
7930
|
address: `0x${string}`;
|
|
7906
7931
|
networkId: string;
|
|
7932
|
+
currencyValue: string;
|
|
7907
7933
|
principal: string;
|
|
7908
7934
|
accruedFees: string;
|
|
7909
7935
|
minPrice: string;
|
|
7910
7936
|
maxPrice: string;
|
|
7911
7937
|
currentPrice: string;
|
|
7912
7938
|
balance: string;
|
|
7913
|
-
currencyValue: string;
|
|
7914
7939
|
symbol?: string | undefined;
|
|
7915
7940
|
name?: string | undefined;
|
|
7916
7941
|
decimals?: number | undefined;
|
|
@@ -7928,13 +7953,13 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7928
7953
|
token1: {
|
|
7929
7954
|
address: `0x${string}`;
|
|
7930
7955
|
networkId: string;
|
|
7956
|
+
currencyValue: string;
|
|
7931
7957
|
principal: string;
|
|
7932
7958
|
accruedFees: string;
|
|
7933
7959
|
minPrice: string;
|
|
7934
7960
|
maxPrice: string;
|
|
7935
7961
|
currentPrice: string;
|
|
7936
7962
|
balance: string;
|
|
7937
|
-
currencyValue: string;
|
|
7938
7963
|
symbol?: string | undefined;
|
|
7939
7964
|
name?: string | undefined;
|
|
7940
7965
|
decimals?: number | undefined;
|
|
@@ -7949,7 +7974,6 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7949
7974
|
ccyDayChange?: string | undefined;
|
|
7950
7975
|
currencySymbol?: string | undefined;
|
|
7951
7976
|
};
|
|
7952
|
-
currencyValue: string;
|
|
7953
7977
|
address?: `0x${string}` | undefined;
|
|
7954
7978
|
tokenId?: string | undefined;
|
|
7955
7979
|
tickSpacingPercentage?: string | undefined;
|
|
@@ -7957,10 +7981,10 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7957
7981
|
unitCurrencyValueToken1?: string | undefined;
|
|
7958
7982
|
} | {
|
|
7959
7983
|
lending: boolean;
|
|
7984
|
+
currencyValue: string;
|
|
7960
7985
|
totalBalances: Record<string, string>;
|
|
7961
7986
|
collateral: boolean;
|
|
7962
7987
|
debt: boolean;
|
|
7963
|
-
currencyValue: string;
|
|
7964
7988
|
address?: `0x${string}` | undefined;
|
|
7965
7989
|
accountAddress?: `0x${string}` | undefined;
|
|
7966
7990
|
totalApy?: string | undefined;
|
|
@@ -7994,8 +8018,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7994
8018
|
token?: {
|
|
7995
8019
|
address: `0x${string}`;
|
|
7996
8020
|
networkId: string;
|
|
7997
|
-
balance: string;
|
|
7998
8021
|
currencyValue: string;
|
|
8022
|
+
balance: string;
|
|
7999
8023
|
symbol?: string | undefined;
|
|
8000
8024
|
name?: string | undefined;
|
|
8001
8025
|
decimals?: number | undefined;
|
|
@@ -8012,16 +8036,16 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
8012
8036
|
} | undefined;
|
|
8013
8037
|
accountAddressGroup?: string | undefined;
|
|
8014
8038
|
} | {
|
|
8039
|
+
currencyValue: string;
|
|
8015
8040
|
unitCurrencyValue: string;
|
|
8016
8041
|
delegatingTo: `0x${string}`;
|
|
8017
8042
|
balance: string;
|
|
8018
|
-
currencyValue: string;
|
|
8019
8043
|
address?: `0x${string}` | undefined;
|
|
8020
8044
|
token?: {
|
|
8021
8045
|
address: `0x${string}`;
|
|
8022
8046
|
networkId: string;
|
|
8023
|
-
balance: string;
|
|
8024
8047
|
currencyValue: string;
|
|
8048
|
+
balance: string;
|
|
8025
8049
|
symbol?: string | undefined;
|
|
8026
8050
|
name?: string | undefined;
|
|
8027
8051
|
decimals?: number | undefined;
|
|
@@ -8044,8 +8068,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
8044
8068
|
token: {
|
|
8045
8069
|
address: `0x${string}`;
|
|
8046
8070
|
networkId: string;
|
|
8047
|
-
balance: string;
|
|
8048
8071
|
currencyValue: string;
|
|
8072
|
+
balance: string;
|
|
8049
8073
|
symbol?: string | undefined;
|
|
8050
8074
|
name?: string | undefined;
|
|
8051
8075
|
decimals?: number | undefined;
|
|
@@ -8065,6 +8089,7 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
8065
8089
|
eth: string;
|
|
8066
8090
|
currency: string;
|
|
8067
8091
|
};
|
|
8092
|
+
liquidTokenAddress: `0x${string}`;
|
|
8068
8093
|
address?: `0x${string}` | undefined;
|
|
8069
8094
|
} | {
|
|
8070
8095
|
id: string;
|
|
@@ -8075,6 +8100,7 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
8075
8100
|
name?: string | undefined;
|
|
8076
8101
|
iconUrl?: string | undefined;
|
|
8077
8102
|
};
|
|
8103
|
+
currencyValue: string;
|
|
8078
8104
|
accruedRewards: {
|
|
8079
8105
|
wei: string;
|
|
8080
8106
|
eth: string;
|
|
@@ -8085,12 +8111,11 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
8085
8111
|
eth: string;
|
|
8086
8112
|
currency: string;
|
|
8087
8113
|
};
|
|
8088
|
-
currencyValue: string;
|
|
8089
8114
|
token: {
|
|
8090
8115
|
address: `0x${string}`;
|
|
8091
8116
|
networkId: string;
|
|
8092
|
-
balance: string;
|
|
8093
8117
|
currencyValue: string;
|
|
8118
|
+
balance: string;
|
|
8094
8119
|
symbol?: string | undefined;
|
|
8095
8120
|
name?: string | undefined;
|
|
8096
8121
|
decimals?: number | undefined;
|
|
@@ -8132,13 +8157,13 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
8132
8157
|
token0: {
|
|
8133
8158
|
address: string;
|
|
8134
8159
|
networkId: string;
|
|
8160
|
+
currencyValue: string;
|
|
8135
8161
|
principal: string;
|
|
8136
8162
|
accruedFees: string;
|
|
8137
8163
|
minPrice: string;
|
|
8138
8164
|
maxPrice: string;
|
|
8139
8165
|
currentPrice: string;
|
|
8140
8166
|
balance: string;
|
|
8141
|
-
currencyValue: string;
|
|
8142
8167
|
symbol?: string | undefined;
|
|
8143
8168
|
name?: string | undefined;
|
|
8144
8169
|
decimals?: number | undefined;
|
|
@@ -8156,13 +8181,13 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
8156
8181
|
token1: {
|
|
8157
8182
|
address: string;
|
|
8158
8183
|
networkId: string;
|
|
8184
|
+
currencyValue: string;
|
|
8159
8185
|
principal: string;
|
|
8160
8186
|
accruedFees: string;
|
|
8161
8187
|
minPrice: string;
|
|
8162
8188
|
maxPrice: string;
|
|
8163
8189
|
currentPrice: string;
|
|
8164
8190
|
balance: string;
|
|
8165
|
-
currencyValue: string;
|
|
8166
8191
|
symbol?: string | undefined;
|
|
8167
8192
|
name?: string | undefined;
|
|
8168
8193
|
decimals?: number | undefined;
|
|
@@ -8178,9 +8203,9 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
8178
8203
|
currencySymbol?: string | undefined;
|
|
8179
8204
|
};
|
|
8180
8205
|
address?: string | undefined;
|
|
8206
|
+
currencyValue?: string | undefined;
|
|
8181
8207
|
tokenId?: string | undefined;
|
|
8182
8208
|
tickSpacingPercentage?: string | undefined;
|
|
8183
|
-
currencyValue?: string | undefined;
|
|
8184
8209
|
unitCurrencyValueToken0?: string | undefined;
|
|
8185
8210
|
unitCurrencyValueToken1?: string | undefined;
|
|
8186
8211
|
} | {
|
|
@@ -8192,9 +8217,9 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
8192
8217
|
accountAddress?: string | undefined;
|
|
8193
8218
|
totalApy?: string | undefined;
|
|
8194
8219
|
apy?: string | undefined;
|
|
8220
|
+
currencyValue?: string | undefined;
|
|
8195
8221
|
unitCurrencyValue?: string | undefined;
|
|
8196
8222
|
group?: string | undefined;
|
|
8197
|
-
currencyValue?: string | undefined;
|
|
8198
8223
|
positionToken?: {
|
|
8199
8224
|
symbol: string;
|
|
8200
8225
|
name: string;
|
|
@@ -8222,8 +8247,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
8222
8247
|
token?: {
|
|
8223
8248
|
address: string;
|
|
8224
8249
|
networkId: string;
|
|
8225
|
-
balance: string;
|
|
8226
8250
|
currencyValue: string;
|
|
8251
|
+
balance: string;
|
|
8227
8252
|
symbol?: string | undefined;
|
|
8228
8253
|
name?: string | undefined;
|
|
8229
8254
|
decimals?: number | undefined;
|
|
@@ -8243,13 +8268,13 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
8243
8268
|
delegatingTo: string;
|
|
8244
8269
|
balance: string;
|
|
8245
8270
|
address?: string | undefined;
|
|
8246
|
-
unitCurrencyValue?: string | undefined;
|
|
8247
8271
|
currencyValue?: string | undefined;
|
|
8272
|
+
unitCurrencyValue?: string | undefined;
|
|
8248
8273
|
token?: {
|
|
8249
8274
|
address: string;
|
|
8250
8275
|
networkId: string;
|
|
8251
|
-
balance: string;
|
|
8252
8276
|
currencyValue: string;
|
|
8277
|
+
balance: string;
|
|
8253
8278
|
symbol?: string | undefined;
|
|
8254
8279
|
name?: string | undefined;
|
|
8255
8280
|
decimals?: number | undefined;
|
|
@@ -8271,8 +8296,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
8271
8296
|
token: {
|
|
8272
8297
|
address: string;
|
|
8273
8298
|
networkId: string;
|
|
8274
|
-
balance: string;
|
|
8275
8299
|
currencyValue: string;
|
|
8300
|
+
balance: string;
|
|
8276
8301
|
symbol?: string | undefined;
|
|
8277
8302
|
name?: string | undefined;
|
|
8278
8303
|
decimals?: number | undefined;
|
|
@@ -8292,6 +8317,7 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
8292
8317
|
eth: string;
|
|
8293
8318
|
currency: string;
|
|
8294
8319
|
};
|
|
8320
|
+
liquidTokenAddress: string;
|
|
8295
8321
|
address?: string | undefined;
|
|
8296
8322
|
currencyValue?: string | undefined;
|
|
8297
8323
|
} | {
|
|
@@ -8316,8 +8342,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
8316
8342
|
token: {
|
|
8317
8343
|
address: string;
|
|
8318
8344
|
networkId: string;
|
|
8319
|
-
balance: string;
|
|
8320
8345
|
currencyValue: string;
|
|
8346
|
+
balance: string;
|
|
8321
8347
|
symbol?: string | undefined;
|
|
8322
8348
|
name?: string | undefined;
|
|
8323
8349
|
decimals?: number | undefined;
|