@argent/x-shared 1.62.12 → 1.63.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/defiDecomposition.cjs +1 -0
- package/dist/defiDecomposition.d.ts +2 -0
- package/dist/defiDecomposition.js +65 -0
- package/dist/index.cjs +1 -1
- package/dist/index.js +476 -475
- package/dist/src/account/account.model.cjs +1 -1
- package/dist/src/account/account.model.d.ts +11 -0
- package/dist/src/account/account.model.js +8 -4
- package/dist/src/features/defiDecomposition/helpers/computeCollateralizedDebtPositionsUsdValue.cjs +1 -0
- package/dist/src/features/defiDecomposition/helpers/computeCollateralizedDebtPositionsUsdValue.d.ts +6 -0
- package/dist/src/features/defiDecomposition/helpers/computeCollateralizedDebtPositionsUsdValue.js +62 -0
- package/dist/src/features/defiDecomposition/helpers/computeConcentratedLiquidityPositionsUsdValue.cjs +1 -0
- package/dist/src/features/defiDecomposition/helpers/computeConcentratedLiquidityPositionsUsdValue.d.ts +4 -0
- package/dist/src/features/defiDecomposition/helpers/computeConcentratedLiquidityPositionsUsdValue.js +31 -0
- package/dist/src/features/defiDecomposition/helpers/computeDefiDecompositionUsdValue.cjs +1 -0
- package/dist/src/features/defiDecomposition/helpers/computeDefiDecompositionUsdValue.d.ts +4 -0
- package/dist/src/features/defiDecomposition/helpers/computeDefiDecompositionUsdValue.js +55 -0
- package/dist/src/features/defiDecomposition/helpers/computeDelegatedTokensPositionsUsdValue.cjs +1 -0
- package/dist/src/features/defiDecomposition/helpers/computeDelegatedTokensPositionsUsdValue.d.ts +4 -0
- package/dist/src/features/defiDecomposition/helpers/computeDelegatedTokensPositionsUsdValue.js +30 -0
- package/dist/src/features/defiDecomposition/helpers/computeStakingPositionsUsdValue.cjs +1 -0
- package/dist/src/features/defiDecomposition/helpers/computeStakingPositionsUsdValue.d.ts +4 -0
- package/dist/src/features/defiDecomposition/helpers/computeStakingPositionsUsdValue.js +30 -0
- package/dist/src/features/defiDecomposition/helpers/computeStrkDelegatedStakingPositionsUsdValue.cjs +1 -0
- package/dist/src/features/defiDecomposition/helpers/computeStrkDelegatedStakingPositionsUsdValue.d.ts +4 -0
- package/dist/src/features/defiDecomposition/helpers/computeStrkDelegatedStakingPositionsUsdValue.js +30 -0
- package/dist/src/features/defiDecomposition/helpers/computeUsdValueForPosition.cjs +1 -0
- package/dist/src/features/defiDecomposition/helpers/computeUsdValueForPosition.d.ts +3 -0
- package/dist/src/features/defiDecomposition/helpers/computeUsdValueForPosition.js +17 -0
- package/dist/src/features/defiDecomposition/helpers/getDefiProductName.cjs +1 -0
- package/dist/src/features/defiDecomposition/helpers/getDefiProductName.d.ts +1 -0
- package/dist/src/features/defiDecomposition/helpers/getDefiProductName.js +11 -0
- package/dist/src/features/defiDecomposition/helpers/index.d.ts +13 -0
- package/dist/src/features/defiDecomposition/helpers/parseCollateralizedDebtPositions.cjs +1 -0
- package/dist/src/features/defiDecomposition/helpers/parseCollateralizedDebtPositions.d.ts +7 -0
- package/dist/src/features/defiDecomposition/helpers/parseCollateralizedDebtPositions.js +57 -0
- package/dist/src/features/defiDecomposition/helpers/parseConcentratedLiquidityPositions.cjs +1 -0
- package/dist/src/features/defiDecomposition/helpers/parseConcentratedLiquidityPositions.d.ts +4 -0
- package/dist/src/features/defiDecomposition/helpers/parseConcentratedLiquidityPositions.js +42 -0
- package/dist/src/features/defiDecomposition/helpers/parseDefiDecomposition.cjs +1 -0
- package/dist/src/features/defiDecomposition/helpers/parseDefiDecomposition.d.ts +4 -0
- package/dist/src/features/defiDecomposition/helpers/parseDefiDecomposition.js +63 -0
- package/dist/src/features/defiDecomposition/helpers/parseDelegatedTokensPositions.cjs +1 -0
- package/dist/src/features/defiDecomposition/helpers/parseDelegatedTokensPositions.d.ts +4 -0
- package/dist/src/features/defiDecomposition/helpers/parseDelegatedTokensPositions.js +27 -0
- package/dist/src/features/defiDecomposition/helpers/parseStakingPositions.cjs +1 -0
- package/dist/src/features/defiDecomposition/helpers/parseStakingPositions.d.ts +4 -0
- package/dist/src/features/defiDecomposition/helpers/parseStakingPositions.js +29 -0
- package/dist/src/features/defiDecomposition/helpers/parseStrkDelegatedStakingPositions.cjs +1 -0
- package/dist/src/features/defiDecomposition/helpers/parseStrkDelegatedStakingPositions.d.ts +4 -0
- package/dist/src/features/defiDecomposition/helpers/parseStrkDelegatedStakingPositions.js +27 -0
- package/dist/src/features/defiDecomposition/helpers/sortDescendingByUsdValue.cjs +1 -0
- package/dist/src/features/defiDecomposition/helpers/sortDescendingByUsdValue.d.ts +9 -0
- package/dist/src/features/defiDecomposition/helpers/sortDescendingByUsdValue.js +9 -0
- package/dist/src/features/defiDecomposition/index.d.ts +2 -0
- package/dist/src/features/defiDecomposition/schema.cjs +1 -0
- package/dist/src/features/defiDecomposition/schema.d.ts +16935 -0
- package/dist/src/features/defiDecomposition/schema.js +153 -0
- package/dist/src/features/paymaster/types.d.ts +20 -20
- package/dist/src/features/simulation/activity/schema.d.ts +356 -356
- package/dist/src/features/simulation/activity/utils/createNativeActivity.d.ts +8 -8
- package/dist/src/features/simulation/transactionReview/schema.d.ts +1484 -1484
- package/dist/src/features/swap/models/trade.model.d.ts +20 -0
- package/dist/src/staking/schema.d.ts +24 -24
- package/dist/src/tokens/service/types/backend.model.d.ts +8 -8
- package/dist/src/tokens/service/types/defiPosition.model.d.ts +576 -40
- package/dist/src/tokens/service/types/unclaimedRewards.model.d.ts +8 -8
- package/dist/src/tokens/service/types/webToken.model.cjs +1 -1
- package/dist/src/tokens/service/types/webToken.model.d.ts +36 -2
- package/dist/src/tokens/service/types/webToken.model.js +9 -7
- package/dist/src/transactions/equalTokens.cjs +1 -0
- package/dist/src/transactions/equalTokens.d.ts +2 -0
- package/dist/src/transactions/equalTokens.js +5 -0
- package/dist/src/transactions/errors.d.ts +4 -4
- package/dist/src/utils/starknet/starknet.d.ts +12 -12
- package/dist/src/utils/starknet/starknetSchemas.d.ts +212 -212
- package/package.json +6 -1
|
@@ -12,6 +12,8 @@ declare const defiPositionTokenSchema: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
12
12
|
category: z.ZodOptional<z.ZodString>;
|
|
13
13
|
dappId: z.ZodOptional<z.ZodString>;
|
|
14
14
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
15
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
16
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
15
17
|
}>, {
|
|
16
18
|
currencyValue: z.ZodString;
|
|
17
19
|
currencySymbol: z.ZodOptional<z.ZodString>;
|
|
@@ -30,6 +32,8 @@ declare const defiPositionTokenSchema: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
30
32
|
category: z.ZodOptional<z.ZodString>;
|
|
31
33
|
dappId: z.ZodOptional<z.ZodString>;
|
|
32
34
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
35
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
36
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
33
37
|
balance: z.ZodString;
|
|
34
38
|
}>, {
|
|
35
39
|
accruedFees: z.ZodString;
|
|
@@ -56,6 +60,8 @@ declare const defiPositionTokenSchema: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
56
60
|
iconUrl?: string | undefined;
|
|
57
61
|
category?: string | undefined;
|
|
58
62
|
unitCurrencyValue?: string | undefined;
|
|
63
|
+
popular?: boolean | undefined;
|
|
64
|
+
tradable?: boolean | undefined;
|
|
59
65
|
pricingId?: number | undefined;
|
|
60
66
|
ethDayChange?: string | undefined;
|
|
61
67
|
ccyDayChange?: string | undefined;
|
|
@@ -79,6 +85,8 @@ declare const defiPositionTokenSchema: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
79
85
|
iconUrl?: string | undefined;
|
|
80
86
|
category?: string | undefined;
|
|
81
87
|
unitCurrencyValue?: string | undefined;
|
|
88
|
+
popular?: boolean | undefined;
|
|
89
|
+
tradable?: boolean | undefined;
|
|
82
90
|
pricingId?: number | undefined;
|
|
83
91
|
ethDayChange?: string | undefined;
|
|
84
92
|
ccyDayChange?: string | undefined;
|
|
@@ -106,6 +114,8 @@ export declare const concentratedLiquidityPositionSchema: z.ZodObject<z.objectUt
|
|
|
106
114
|
category: z.ZodOptional<z.ZodString>;
|
|
107
115
|
dappId: z.ZodOptional<z.ZodString>;
|
|
108
116
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
117
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
118
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
109
119
|
}>, {
|
|
110
120
|
currencyValue: z.ZodString;
|
|
111
121
|
currencySymbol: z.ZodOptional<z.ZodString>;
|
|
@@ -124,6 +134,8 @@ export declare const concentratedLiquidityPositionSchema: z.ZodObject<z.objectUt
|
|
|
124
134
|
category: z.ZodOptional<z.ZodString>;
|
|
125
135
|
dappId: z.ZodOptional<z.ZodString>;
|
|
126
136
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
137
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
138
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
127
139
|
balance: z.ZodString;
|
|
128
140
|
}>, {
|
|
129
141
|
accruedFees: z.ZodString;
|
|
@@ -150,6 +162,8 @@ export declare const concentratedLiquidityPositionSchema: z.ZodObject<z.objectUt
|
|
|
150
162
|
iconUrl?: string | undefined;
|
|
151
163
|
category?: string | undefined;
|
|
152
164
|
unitCurrencyValue?: string | undefined;
|
|
165
|
+
popular?: boolean | undefined;
|
|
166
|
+
tradable?: boolean | undefined;
|
|
153
167
|
pricingId?: number | undefined;
|
|
154
168
|
ethDayChange?: string | undefined;
|
|
155
169
|
ccyDayChange?: string | undefined;
|
|
@@ -173,6 +187,8 @@ export declare const concentratedLiquidityPositionSchema: z.ZodObject<z.objectUt
|
|
|
173
187
|
iconUrl?: string | undefined;
|
|
174
188
|
category?: string | undefined;
|
|
175
189
|
unitCurrencyValue?: string | undefined;
|
|
190
|
+
popular?: boolean | undefined;
|
|
191
|
+
tradable?: boolean | undefined;
|
|
176
192
|
pricingId?: number | undefined;
|
|
177
193
|
ethDayChange?: string | undefined;
|
|
178
194
|
ccyDayChange?: string | undefined;
|
|
@@ -191,6 +207,8 @@ export declare const concentratedLiquidityPositionSchema: z.ZodObject<z.objectUt
|
|
|
191
207
|
category: z.ZodOptional<z.ZodString>;
|
|
192
208
|
dappId: z.ZodOptional<z.ZodString>;
|
|
193
209
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
210
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
211
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
194
212
|
}>, {
|
|
195
213
|
currencyValue: z.ZodString;
|
|
196
214
|
currencySymbol: z.ZodOptional<z.ZodString>;
|
|
@@ -209,6 +227,8 @@ export declare const concentratedLiquidityPositionSchema: z.ZodObject<z.objectUt
|
|
|
209
227
|
category: z.ZodOptional<z.ZodString>;
|
|
210
228
|
dappId: z.ZodOptional<z.ZodString>;
|
|
211
229
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
230
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
231
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
212
232
|
balance: z.ZodString;
|
|
213
233
|
}>, {
|
|
214
234
|
accruedFees: z.ZodString;
|
|
@@ -235,6 +255,8 @@ export declare const concentratedLiquidityPositionSchema: z.ZodObject<z.objectUt
|
|
|
235
255
|
iconUrl?: string | undefined;
|
|
236
256
|
category?: string | undefined;
|
|
237
257
|
unitCurrencyValue?: string | undefined;
|
|
258
|
+
popular?: boolean | undefined;
|
|
259
|
+
tradable?: boolean | undefined;
|
|
238
260
|
pricingId?: number | undefined;
|
|
239
261
|
ethDayChange?: string | undefined;
|
|
240
262
|
ccyDayChange?: string | undefined;
|
|
@@ -258,6 +280,8 @@ export declare const concentratedLiquidityPositionSchema: z.ZodObject<z.objectUt
|
|
|
258
280
|
iconUrl?: string | undefined;
|
|
259
281
|
category?: string | undefined;
|
|
260
282
|
unitCurrencyValue?: string | undefined;
|
|
283
|
+
popular?: boolean | undefined;
|
|
284
|
+
tradable?: boolean | undefined;
|
|
261
285
|
pricingId?: number | undefined;
|
|
262
286
|
ethDayChange?: string | undefined;
|
|
263
287
|
ccyDayChange?: string | undefined;
|
|
@@ -285,6 +309,8 @@ export declare const concentratedLiquidityPositionSchema: z.ZodObject<z.objectUt
|
|
|
285
309
|
iconUrl?: string | undefined;
|
|
286
310
|
category?: string | undefined;
|
|
287
311
|
unitCurrencyValue?: string | undefined;
|
|
312
|
+
popular?: boolean | undefined;
|
|
313
|
+
tradable?: boolean | undefined;
|
|
288
314
|
pricingId?: number | undefined;
|
|
289
315
|
ethDayChange?: string | undefined;
|
|
290
316
|
ccyDayChange?: string | undefined;
|
|
@@ -309,6 +335,8 @@ export declare const concentratedLiquidityPositionSchema: z.ZodObject<z.objectUt
|
|
|
309
335
|
iconUrl?: string | undefined;
|
|
310
336
|
category?: string | undefined;
|
|
311
337
|
unitCurrencyValue?: string | undefined;
|
|
338
|
+
popular?: boolean | undefined;
|
|
339
|
+
tradable?: boolean | undefined;
|
|
312
340
|
pricingId?: number | undefined;
|
|
313
341
|
ethDayChange?: string | undefined;
|
|
314
342
|
ccyDayChange?: string | undefined;
|
|
@@ -340,6 +368,8 @@ export declare const concentratedLiquidityPositionSchema: z.ZodObject<z.objectUt
|
|
|
340
368
|
iconUrl?: string | undefined;
|
|
341
369
|
category?: string | undefined;
|
|
342
370
|
unitCurrencyValue?: string | undefined;
|
|
371
|
+
popular?: boolean | undefined;
|
|
372
|
+
tradable?: boolean | undefined;
|
|
343
373
|
pricingId?: number | undefined;
|
|
344
374
|
ethDayChange?: string | undefined;
|
|
345
375
|
ccyDayChange?: string | undefined;
|
|
@@ -364,6 +394,8 @@ export declare const concentratedLiquidityPositionSchema: z.ZodObject<z.objectUt
|
|
|
364
394
|
iconUrl?: string | undefined;
|
|
365
395
|
category?: string | undefined;
|
|
366
396
|
unitCurrencyValue?: string | undefined;
|
|
397
|
+
popular?: boolean | undefined;
|
|
398
|
+
tradable?: boolean | undefined;
|
|
367
399
|
pricingId?: number | undefined;
|
|
368
400
|
ethDayChange?: string | undefined;
|
|
369
401
|
ccyDayChange?: string | undefined;
|
|
@@ -398,6 +430,8 @@ export declare const concentratedLiquidityPositionsSchema: z.ZodArray<z.ZodObjec
|
|
|
398
430
|
category: z.ZodOptional<z.ZodString>;
|
|
399
431
|
dappId: z.ZodOptional<z.ZodString>;
|
|
400
432
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
433
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
434
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
401
435
|
}>, {
|
|
402
436
|
currencyValue: z.ZodString;
|
|
403
437
|
currencySymbol: z.ZodOptional<z.ZodString>;
|
|
@@ -416,6 +450,8 @@ export declare const concentratedLiquidityPositionsSchema: z.ZodArray<z.ZodObjec
|
|
|
416
450
|
category: z.ZodOptional<z.ZodString>;
|
|
417
451
|
dappId: z.ZodOptional<z.ZodString>;
|
|
418
452
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
453
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
454
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
419
455
|
balance: z.ZodString;
|
|
420
456
|
}>, {
|
|
421
457
|
accruedFees: z.ZodString;
|
|
@@ -442,6 +478,8 @@ export declare const concentratedLiquidityPositionsSchema: z.ZodArray<z.ZodObjec
|
|
|
442
478
|
iconUrl?: string | undefined;
|
|
443
479
|
category?: string | undefined;
|
|
444
480
|
unitCurrencyValue?: string | undefined;
|
|
481
|
+
popular?: boolean | undefined;
|
|
482
|
+
tradable?: boolean | undefined;
|
|
445
483
|
pricingId?: number | undefined;
|
|
446
484
|
ethDayChange?: string | undefined;
|
|
447
485
|
ccyDayChange?: string | undefined;
|
|
@@ -465,6 +503,8 @@ export declare const concentratedLiquidityPositionsSchema: z.ZodArray<z.ZodObjec
|
|
|
465
503
|
iconUrl?: string | undefined;
|
|
466
504
|
category?: string | undefined;
|
|
467
505
|
unitCurrencyValue?: string | undefined;
|
|
506
|
+
popular?: boolean | undefined;
|
|
507
|
+
tradable?: boolean | undefined;
|
|
468
508
|
pricingId?: number | undefined;
|
|
469
509
|
ethDayChange?: string | undefined;
|
|
470
510
|
ccyDayChange?: string | undefined;
|
|
@@ -483,6 +523,8 @@ export declare const concentratedLiquidityPositionsSchema: z.ZodArray<z.ZodObjec
|
|
|
483
523
|
category: z.ZodOptional<z.ZodString>;
|
|
484
524
|
dappId: z.ZodOptional<z.ZodString>;
|
|
485
525
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
526
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
527
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
486
528
|
}>, {
|
|
487
529
|
currencyValue: z.ZodString;
|
|
488
530
|
currencySymbol: z.ZodOptional<z.ZodString>;
|
|
@@ -501,6 +543,8 @@ export declare const concentratedLiquidityPositionsSchema: z.ZodArray<z.ZodObjec
|
|
|
501
543
|
category: z.ZodOptional<z.ZodString>;
|
|
502
544
|
dappId: z.ZodOptional<z.ZodString>;
|
|
503
545
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
546
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
547
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
504
548
|
balance: z.ZodString;
|
|
505
549
|
}>, {
|
|
506
550
|
accruedFees: z.ZodString;
|
|
@@ -527,6 +571,8 @@ export declare const concentratedLiquidityPositionsSchema: z.ZodArray<z.ZodObjec
|
|
|
527
571
|
iconUrl?: string | undefined;
|
|
528
572
|
category?: string | undefined;
|
|
529
573
|
unitCurrencyValue?: string | undefined;
|
|
574
|
+
popular?: boolean | undefined;
|
|
575
|
+
tradable?: boolean | undefined;
|
|
530
576
|
pricingId?: number | undefined;
|
|
531
577
|
ethDayChange?: string | undefined;
|
|
532
578
|
ccyDayChange?: string | undefined;
|
|
@@ -550,6 +596,8 @@ export declare const concentratedLiquidityPositionsSchema: z.ZodArray<z.ZodObjec
|
|
|
550
596
|
iconUrl?: string | undefined;
|
|
551
597
|
category?: string | undefined;
|
|
552
598
|
unitCurrencyValue?: string | undefined;
|
|
599
|
+
popular?: boolean | undefined;
|
|
600
|
+
tradable?: boolean | undefined;
|
|
553
601
|
pricingId?: number | undefined;
|
|
554
602
|
ethDayChange?: string | undefined;
|
|
555
603
|
ccyDayChange?: string | undefined;
|
|
@@ -577,6 +625,8 @@ export declare const concentratedLiquidityPositionsSchema: z.ZodArray<z.ZodObjec
|
|
|
577
625
|
iconUrl?: string | undefined;
|
|
578
626
|
category?: string | undefined;
|
|
579
627
|
unitCurrencyValue?: string | undefined;
|
|
628
|
+
popular?: boolean | undefined;
|
|
629
|
+
tradable?: boolean | undefined;
|
|
580
630
|
pricingId?: number | undefined;
|
|
581
631
|
ethDayChange?: string | undefined;
|
|
582
632
|
ccyDayChange?: string | undefined;
|
|
@@ -601,6 +651,8 @@ export declare const concentratedLiquidityPositionsSchema: z.ZodArray<z.ZodObjec
|
|
|
601
651
|
iconUrl?: string | undefined;
|
|
602
652
|
category?: string | undefined;
|
|
603
653
|
unitCurrencyValue?: string | undefined;
|
|
654
|
+
popular?: boolean | undefined;
|
|
655
|
+
tradable?: boolean | undefined;
|
|
604
656
|
pricingId?: number | undefined;
|
|
605
657
|
ethDayChange?: string | undefined;
|
|
606
658
|
ccyDayChange?: string | undefined;
|
|
@@ -632,6 +684,8 @@ export declare const concentratedLiquidityPositionsSchema: z.ZodArray<z.ZodObjec
|
|
|
632
684
|
iconUrl?: string | undefined;
|
|
633
685
|
category?: string | undefined;
|
|
634
686
|
unitCurrencyValue?: string | undefined;
|
|
687
|
+
popular?: boolean | undefined;
|
|
688
|
+
tradable?: boolean | undefined;
|
|
635
689
|
pricingId?: number | undefined;
|
|
636
690
|
ethDayChange?: string | undefined;
|
|
637
691
|
ccyDayChange?: string | undefined;
|
|
@@ -656,6 +710,8 @@ export declare const concentratedLiquidityPositionsSchema: z.ZodArray<z.ZodObjec
|
|
|
656
710
|
iconUrl?: string | undefined;
|
|
657
711
|
category?: string | undefined;
|
|
658
712
|
unitCurrencyValue?: string | undefined;
|
|
713
|
+
popular?: boolean | undefined;
|
|
714
|
+
tradable?: boolean | undefined;
|
|
659
715
|
pricingId?: number | undefined;
|
|
660
716
|
ethDayChange?: string | undefined;
|
|
661
717
|
ccyDayChange?: string | undefined;
|
|
@@ -728,8 +784,8 @@ export declare const collateralizedDebtPositionSchema: z.ZodObject<z.objectUtil.
|
|
|
728
784
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
729
785
|
}, "strip", z.ZodTypeAny, {
|
|
730
786
|
symbol: string;
|
|
731
|
-
name: string;
|
|
732
787
|
address: `0x${string}`;
|
|
788
|
+
name: string;
|
|
733
789
|
decimals: number;
|
|
734
790
|
id: number;
|
|
735
791
|
category: "tokens" | "currencies" | "savings";
|
|
@@ -751,8 +807,8 @@ export declare const collateralizedDebtPositionSchema: z.ZodObject<z.objectUtil.
|
|
|
751
807
|
tags?: string[] | undefined;
|
|
752
808
|
}, {
|
|
753
809
|
symbol: string;
|
|
754
|
-
name: string;
|
|
755
810
|
address: string;
|
|
811
|
+
name: string;
|
|
756
812
|
decimals: number;
|
|
757
813
|
id: number;
|
|
758
814
|
category: "tokens" | "currencies" | "savings";
|
|
@@ -786,6 +842,8 @@ export declare const collateralizedDebtPositionSchema: z.ZodObject<z.objectUtil.
|
|
|
786
842
|
category: z.ZodOptional<z.ZodString>;
|
|
787
843
|
dappId: z.ZodOptional<z.ZodString>;
|
|
788
844
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
845
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
846
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
789
847
|
}>, {
|
|
790
848
|
currencyValue: z.ZodString;
|
|
791
849
|
currencySymbol: z.ZodOptional<z.ZodString>;
|
|
@@ -804,6 +862,8 @@ export declare const collateralizedDebtPositionSchema: z.ZodObject<z.objectUtil.
|
|
|
804
862
|
category: z.ZodOptional<z.ZodString>;
|
|
805
863
|
dappId: z.ZodOptional<z.ZodString>;
|
|
806
864
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
865
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
866
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
807
867
|
balance: z.ZodString;
|
|
808
868
|
}>, "strip", z.ZodTypeAny, {
|
|
809
869
|
address: `0x${string}`;
|
|
@@ -819,6 +879,8 @@ export declare const collateralizedDebtPositionSchema: z.ZodObject<z.objectUtil.
|
|
|
819
879
|
iconUrl?: string | undefined;
|
|
820
880
|
category?: string | undefined;
|
|
821
881
|
unitCurrencyValue?: string | undefined;
|
|
882
|
+
popular?: boolean | undefined;
|
|
883
|
+
tradable?: boolean | undefined;
|
|
822
884
|
pricingId?: number | undefined;
|
|
823
885
|
ethDayChange?: string | undefined;
|
|
824
886
|
ccyDayChange?: string | undefined;
|
|
@@ -837,6 +899,8 @@ export declare const collateralizedDebtPositionSchema: z.ZodObject<z.objectUtil.
|
|
|
837
899
|
iconUrl?: string | undefined;
|
|
838
900
|
category?: string | undefined;
|
|
839
901
|
unitCurrencyValue?: string | undefined;
|
|
902
|
+
popular?: boolean | undefined;
|
|
903
|
+
tradable?: boolean | undefined;
|
|
840
904
|
pricingId?: number | undefined;
|
|
841
905
|
ethDayChange?: string | undefined;
|
|
842
906
|
ccyDayChange?: string | undefined;
|
|
@@ -858,8 +922,8 @@ export declare const collateralizedDebtPositionSchema: z.ZodObject<z.objectUtil.
|
|
|
858
922
|
group?: string | undefined;
|
|
859
923
|
positionToken?: {
|
|
860
924
|
symbol: string;
|
|
861
|
-
name: string;
|
|
862
925
|
address: `0x${string}`;
|
|
926
|
+
name: string;
|
|
863
927
|
decimals: number;
|
|
864
928
|
id: number;
|
|
865
929
|
category: "tokens" | "currencies" | "savings";
|
|
@@ -894,6 +958,8 @@ export declare const collateralizedDebtPositionSchema: z.ZodObject<z.objectUtil.
|
|
|
894
958
|
iconUrl?: string | undefined;
|
|
895
959
|
category?: string | undefined;
|
|
896
960
|
unitCurrencyValue?: string | undefined;
|
|
961
|
+
popular?: boolean | undefined;
|
|
962
|
+
tradable?: boolean | undefined;
|
|
897
963
|
pricingId?: number | undefined;
|
|
898
964
|
ethDayChange?: string | undefined;
|
|
899
965
|
ccyDayChange?: string | undefined;
|
|
@@ -914,8 +980,8 @@ export declare const collateralizedDebtPositionSchema: z.ZodObject<z.objectUtil.
|
|
|
914
980
|
group?: string | undefined;
|
|
915
981
|
positionToken?: {
|
|
916
982
|
symbol: string;
|
|
917
|
-
name: string;
|
|
918
983
|
address: string;
|
|
984
|
+
name: string;
|
|
919
985
|
decimals: number;
|
|
920
986
|
id: number;
|
|
921
987
|
category: "tokens" | "currencies" | "savings";
|
|
@@ -950,6 +1016,8 @@ export declare const collateralizedDebtPositionSchema: z.ZodObject<z.objectUtil.
|
|
|
950
1016
|
iconUrl?: string | undefined;
|
|
951
1017
|
category?: string | undefined;
|
|
952
1018
|
unitCurrencyValue?: string | undefined;
|
|
1019
|
+
popular?: boolean | undefined;
|
|
1020
|
+
tradable?: boolean | undefined;
|
|
953
1021
|
pricingId?: number | undefined;
|
|
954
1022
|
ethDayChange?: string | undefined;
|
|
955
1023
|
ccyDayChange?: string | undefined;
|
|
@@ -1004,8 +1072,8 @@ export declare const collateralizedDebtPositionsSchema: z.ZodArray<z.ZodObject<z
|
|
|
1004
1072
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1005
1073
|
}, "strip", z.ZodTypeAny, {
|
|
1006
1074
|
symbol: string;
|
|
1007
|
-
name: string;
|
|
1008
1075
|
address: `0x${string}`;
|
|
1076
|
+
name: string;
|
|
1009
1077
|
decimals: number;
|
|
1010
1078
|
id: number;
|
|
1011
1079
|
category: "tokens" | "currencies" | "savings";
|
|
@@ -1027,8 +1095,8 @@ export declare const collateralizedDebtPositionsSchema: z.ZodArray<z.ZodObject<z
|
|
|
1027
1095
|
tags?: string[] | undefined;
|
|
1028
1096
|
}, {
|
|
1029
1097
|
symbol: string;
|
|
1030
|
-
name: string;
|
|
1031
1098
|
address: string;
|
|
1099
|
+
name: string;
|
|
1032
1100
|
decimals: number;
|
|
1033
1101
|
id: number;
|
|
1034
1102
|
category: "tokens" | "currencies" | "savings";
|
|
@@ -1062,6 +1130,8 @@ export declare const collateralizedDebtPositionsSchema: z.ZodArray<z.ZodObject<z
|
|
|
1062
1130
|
category: z.ZodOptional<z.ZodString>;
|
|
1063
1131
|
dappId: z.ZodOptional<z.ZodString>;
|
|
1064
1132
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
1133
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
1134
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
1065
1135
|
}>, {
|
|
1066
1136
|
currencyValue: z.ZodString;
|
|
1067
1137
|
currencySymbol: z.ZodOptional<z.ZodString>;
|
|
@@ -1080,6 +1150,8 @@ export declare const collateralizedDebtPositionsSchema: z.ZodArray<z.ZodObject<z
|
|
|
1080
1150
|
category: z.ZodOptional<z.ZodString>;
|
|
1081
1151
|
dappId: z.ZodOptional<z.ZodString>;
|
|
1082
1152
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
1153
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
1154
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
1083
1155
|
balance: z.ZodString;
|
|
1084
1156
|
}>, "strip", z.ZodTypeAny, {
|
|
1085
1157
|
address: `0x${string}`;
|
|
@@ -1095,6 +1167,8 @@ export declare const collateralizedDebtPositionsSchema: z.ZodArray<z.ZodObject<z
|
|
|
1095
1167
|
iconUrl?: string | undefined;
|
|
1096
1168
|
category?: string | undefined;
|
|
1097
1169
|
unitCurrencyValue?: string | undefined;
|
|
1170
|
+
popular?: boolean | undefined;
|
|
1171
|
+
tradable?: boolean | undefined;
|
|
1098
1172
|
pricingId?: number | undefined;
|
|
1099
1173
|
ethDayChange?: string | undefined;
|
|
1100
1174
|
ccyDayChange?: string | undefined;
|
|
@@ -1113,6 +1187,8 @@ export declare const collateralizedDebtPositionsSchema: z.ZodArray<z.ZodObject<z
|
|
|
1113
1187
|
iconUrl?: string | undefined;
|
|
1114
1188
|
category?: string | undefined;
|
|
1115
1189
|
unitCurrencyValue?: string | undefined;
|
|
1190
|
+
popular?: boolean | undefined;
|
|
1191
|
+
tradable?: boolean | undefined;
|
|
1116
1192
|
pricingId?: number | undefined;
|
|
1117
1193
|
ethDayChange?: string | undefined;
|
|
1118
1194
|
ccyDayChange?: string | undefined;
|
|
@@ -1134,8 +1210,8 @@ export declare const collateralizedDebtPositionsSchema: z.ZodArray<z.ZodObject<z
|
|
|
1134
1210
|
group?: string | undefined;
|
|
1135
1211
|
positionToken?: {
|
|
1136
1212
|
symbol: string;
|
|
1137
|
-
name: string;
|
|
1138
1213
|
address: `0x${string}`;
|
|
1214
|
+
name: string;
|
|
1139
1215
|
decimals: number;
|
|
1140
1216
|
id: number;
|
|
1141
1217
|
category: "tokens" | "currencies" | "savings";
|
|
@@ -1170,6 +1246,8 @@ export declare const collateralizedDebtPositionsSchema: z.ZodArray<z.ZodObject<z
|
|
|
1170
1246
|
iconUrl?: string | undefined;
|
|
1171
1247
|
category?: string | undefined;
|
|
1172
1248
|
unitCurrencyValue?: string | undefined;
|
|
1249
|
+
popular?: boolean | undefined;
|
|
1250
|
+
tradable?: boolean | undefined;
|
|
1173
1251
|
pricingId?: number | undefined;
|
|
1174
1252
|
ethDayChange?: string | undefined;
|
|
1175
1253
|
ccyDayChange?: string | undefined;
|
|
@@ -1190,8 +1268,8 @@ export declare const collateralizedDebtPositionsSchema: z.ZodArray<z.ZodObject<z
|
|
|
1190
1268
|
group?: string | undefined;
|
|
1191
1269
|
positionToken?: {
|
|
1192
1270
|
symbol: string;
|
|
1193
|
-
name: string;
|
|
1194
1271
|
address: string;
|
|
1272
|
+
name: string;
|
|
1195
1273
|
decimals: number;
|
|
1196
1274
|
id: number;
|
|
1197
1275
|
category: "tokens" | "currencies" | "savings";
|
|
@@ -1226,6 +1304,8 @@ export declare const collateralizedDebtPositionsSchema: z.ZodArray<z.ZodObject<z
|
|
|
1226
1304
|
iconUrl?: string | undefined;
|
|
1227
1305
|
category?: string | undefined;
|
|
1228
1306
|
unitCurrencyValue?: string | undefined;
|
|
1307
|
+
popular?: boolean | undefined;
|
|
1308
|
+
tradable?: boolean | undefined;
|
|
1229
1309
|
pricingId?: number | undefined;
|
|
1230
1310
|
ethDayChange?: string | undefined;
|
|
1231
1311
|
ccyDayChange?: string | undefined;
|
|
@@ -1251,6 +1331,8 @@ export declare const delegatedTokensSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
1251
1331
|
category: z.ZodOptional<z.ZodString>;
|
|
1252
1332
|
dappId: z.ZodOptional<z.ZodString>;
|
|
1253
1333
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
1334
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
1335
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
1254
1336
|
}>, {
|
|
1255
1337
|
currencyValue: z.ZodString;
|
|
1256
1338
|
currencySymbol: z.ZodOptional<z.ZodString>;
|
|
@@ -1269,6 +1351,8 @@ export declare const delegatedTokensSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
1269
1351
|
category: z.ZodOptional<z.ZodString>;
|
|
1270
1352
|
dappId: z.ZodOptional<z.ZodString>;
|
|
1271
1353
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
1354
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
1355
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
1272
1356
|
balance: z.ZodString;
|
|
1273
1357
|
}>, "strip", z.ZodTypeAny, {
|
|
1274
1358
|
address: `0x${string}`;
|
|
@@ -1284,6 +1368,8 @@ export declare const delegatedTokensSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
1284
1368
|
iconUrl?: string | undefined;
|
|
1285
1369
|
category?: string | undefined;
|
|
1286
1370
|
unitCurrencyValue?: string | undefined;
|
|
1371
|
+
popular?: boolean | undefined;
|
|
1372
|
+
tradable?: boolean | undefined;
|
|
1287
1373
|
pricingId?: number | undefined;
|
|
1288
1374
|
ethDayChange?: string | undefined;
|
|
1289
1375
|
ccyDayChange?: string | undefined;
|
|
@@ -1302,6 +1388,8 @@ export declare const delegatedTokensSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
1302
1388
|
iconUrl?: string | undefined;
|
|
1303
1389
|
category?: string | undefined;
|
|
1304
1390
|
unitCurrencyValue?: string | undefined;
|
|
1391
|
+
popular?: boolean | undefined;
|
|
1392
|
+
tradable?: boolean | undefined;
|
|
1305
1393
|
pricingId?: number | undefined;
|
|
1306
1394
|
ethDayChange?: string | undefined;
|
|
1307
1395
|
ccyDayChange?: string | undefined;
|
|
@@ -1329,6 +1417,8 @@ export declare const delegatedTokensSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
1329
1417
|
iconUrl?: string | undefined;
|
|
1330
1418
|
category?: string | undefined;
|
|
1331
1419
|
unitCurrencyValue?: string | undefined;
|
|
1420
|
+
popular?: boolean | undefined;
|
|
1421
|
+
tradable?: boolean | undefined;
|
|
1332
1422
|
pricingId?: number | undefined;
|
|
1333
1423
|
ethDayChange?: string | undefined;
|
|
1334
1424
|
ccyDayChange?: string | undefined;
|
|
@@ -1354,6 +1444,8 @@ export declare const delegatedTokensSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
1354
1444
|
iconUrl?: string | undefined;
|
|
1355
1445
|
category?: string | undefined;
|
|
1356
1446
|
unitCurrencyValue?: string | undefined;
|
|
1447
|
+
popular?: boolean | undefined;
|
|
1448
|
+
tradable?: boolean | undefined;
|
|
1357
1449
|
pricingId?: number | undefined;
|
|
1358
1450
|
ethDayChange?: string | undefined;
|
|
1359
1451
|
ccyDayChange?: string | undefined;
|
|
@@ -1378,6 +1470,8 @@ export declare const delegatedTokensArraySchema: z.ZodArray<z.ZodObject<z.object
|
|
|
1378
1470
|
category: z.ZodOptional<z.ZodString>;
|
|
1379
1471
|
dappId: z.ZodOptional<z.ZodString>;
|
|
1380
1472
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
1473
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
1474
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
1381
1475
|
}>, {
|
|
1382
1476
|
currencyValue: z.ZodString;
|
|
1383
1477
|
currencySymbol: z.ZodOptional<z.ZodString>;
|
|
@@ -1396,6 +1490,8 @@ export declare const delegatedTokensArraySchema: z.ZodArray<z.ZodObject<z.object
|
|
|
1396
1490
|
category: z.ZodOptional<z.ZodString>;
|
|
1397
1491
|
dappId: z.ZodOptional<z.ZodString>;
|
|
1398
1492
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
1493
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
1494
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
1399
1495
|
balance: z.ZodString;
|
|
1400
1496
|
}>, "strip", z.ZodTypeAny, {
|
|
1401
1497
|
address: `0x${string}`;
|
|
@@ -1411,6 +1507,8 @@ export declare const delegatedTokensArraySchema: z.ZodArray<z.ZodObject<z.object
|
|
|
1411
1507
|
iconUrl?: string | undefined;
|
|
1412
1508
|
category?: string | undefined;
|
|
1413
1509
|
unitCurrencyValue?: string | undefined;
|
|
1510
|
+
popular?: boolean | undefined;
|
|
1511
|
+
tradable?: boolean | undefined;
|
|
1414
1512
|
pricingId?: number | undefined;
|
|
1415
1513
|
ethDayChange?: string | undefined;
|
|
1416
1514
|
ccyDayChange?: string | undefined;
|
|
@@ -1429,6 +1527,8 @@ export declare const delegatedTokensArraySchema: z.ZodArray<z.ZodObject<z.object
|
|
|
1429
1527
|
iconUrl?: string | undefined;
|
|
1430
1528
|
category?: string | undefined;
|
|
1431
1529
|
unitCurrencyValue?: string | undefined;
|
|
1530
|
+
popular?: boolean | undefined;
|
|
1531
|
+
tradable?: boolean | undefined;
|
|
1432
1532
|
pricingId?: number | undefined;
|
|
1433
1533
|
ethDayChange?: string | undefined;
|
|
1434
1534
|
ccyDayChange?: string | undefined;
|
|
@@ -1456,6 +1556,8 @@ export declare const delegatedTokensArraySchema: z.ZodArray<z.ZodObject<z.object
|
|
|
1456
1556
|
iconUrl?: string | undefined;
|
|
1457
1557
|
category?: string | undefined;
|
|
1458
1558
|
unitCurrencyValue?: string | undefined;
|
|
1559
|
+
popular?: boolean | undefined;
|
|
1560
|
+
tradable?: boolean | undefined;
|
|
1459
1561
|
pricingId?: number | undefined;
|
|
1460
1562
|
ethDayChange?: string | undefined;
|
|
1461
1563
|
ccyDayChange?: string | undefined;
|
|
@@ -1481,6 +1583,8 @@ export declare const delegatedTokensArraySchema: z.ZodArray<z.ZodObject<z.object
|
|
|
1481
1583
|
iconUrl?: string | undefined;
|
|
1482
1584
|
category?: string | undefined;
|
|
1483
1585
|
unitCurrencyValue?: string | undefined;
|
|
1586
|
+
popular?: boolean | undefined;
|
|
1587
|
+
tradable?: boolean | undefined;
|
|
1484
1588
|
pricingId?: number | undefined;
|
|
1485
1589
|
ethDayChange?: string | undefined;
|
|
1486
1590
|
ccyDayChange?: string | undefined;
|
|
@@ -1520,6 +1624,8 @@ export declare const stakingPositionSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
1520
1624
|
category: z.ZodOptional<z.ZodString>;
|
|
1521
1625
|
dappId: z.ZodOptional<z.ZodString>;
|
|
1522
1626
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
1627
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
1628
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
1523
1629
|
}>, {
|
|
1524
1630
|
currencyValue: z.ZodString;
|
|
1525
1631
|
currencySymbol: z.ZodOptional<z.ZodString>;
|
|
@@ -1538,6 +1644,8 @@ export declare const stakingPositionSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
1538
1644
|
category: z.ZodOptional<z.ZodString>;
|
|
1539
1645
|
dappId: z.ZodOptional<z.ZodString>;
|
|
1540
1646
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
1647
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
1648
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
1541
1649
|
balance: z.ZodString;
|
|
1542
1650
|
}>, "strip", z.ZodTypeAny, {
|
|
1543
1651
|
address: `0x${string}`;
|
|
@@ -1553,6 +1661,8 @@ export declare const stakingPositionSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
1553
1661
|
iconUrl?: string | undefined;
|
|
1554
1662
|
category?: string | undefined;
|
|
1555
1663
|
unitCurrencyValue?: string | undefined;
|
|
1664
|
+
popular?: boolean | undefined;
|
|
1665
|
+
tradable?: boolean | undefined;
|
|
1556
1666
|
pricingId?: number | undefined;
|
|
1557
1667
|
ethDayChange?: string | undefined;
|
|
1558
1668
|
ccyDayChange?: string | undefined;
|
|
@@ -1571,6 +1681,8 @@ export declare const stakingPositionSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
1571
1681
|
iconUrl?: string | undefined;
|
|
1572
1682
|
category?: string | undefined;
|
|
1573
1683
|
unitCurrencyValue?: string | undefined;
|
|
1684
|
+
popular?: boolean | undefined;
|
|
1685
|
+
tradable?: boolean | undefined;
|
|
1574
1686
|
pricingId?: number | undefined;
|
|
1575
1687
|
ethDayChange?: string | undefined;
|
|
1576
1688
|
ccyDayChange?: string | undefined;
|
|
@@ -1596,6 +1708,8 @@ export declare const stakingPositionSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
1596
1708
|
iconUrl?: string | undefined;
|
|
1597
1709
|
category?: string | undefined;
|
|
1598
1710
|
unitCurrencyValue?: string | undefined;
|
|
1711
|
+
popular?: boolean | undefined;
|
|
1712
|
+
tradable?: boolean | undefined;
|
|
1599
1713
|
pricingId?: number | undefined;
|
|
1600
1714
|
ethDayChange?: string | undefined;
|
|
1601
1715
|
ccyDayChange?: string | undefined;
|
|
@@ -1626,6 +1740,8 @@ export declare const stakingPositionSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
1626
1740
|
iconUrl?: string | undefined;
|
|
1627
1741
|
category?: string | undefined;
|
|
1628
1742
|
unitCurrencyValue?: string | undefined;
|
|
1743
|
+
popular?: boolean | undefined;
|
|
1744
|
+
tradable?: boolean | undefined;
|
|
1629
1745
|
pricingId?: number | undefined;
|
|
1630
1746
|
ethDayChange?: string | undefined;
|
|
1631
1747
|
ccyDayChange?: string | undefined;
|
|
@@ -1673,6 +1789,8 @@ export declare const stakingPositionsSchema: z.ZodArray<z.ZodObject<z.objectUtil
|
|
|
1673
1789
|
category: z.ZodOptional<z.ZodString>;
|
|
1674
1790
|
dappId: z.ZodOptional<z.ZodString>;
|
|
1675
1791
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
1792
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
1793
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
1676
1794
|
}>, {
|
|
1677
1795
|
currencyValue: z.ZodString;
|
|
1678
1796
|
currencySymbol: z.ZodOptional<z.ZodString>;
|
|
@@ -1691,6 +1809,8 @@ export declare const stakingPositionsSchema: z.ZodArray<z.ZodObject<z.objectUtil
|
|
|
1691
1809
|
category: z.ZodOptional<z.ZodString>;
|
|
1692
1810
|
dappId: z.ZodOptional<z.ZodString>;
|
|
1693
1811
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
1812
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
1813
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
1694
1814
|
balance: z.ZodString;
|
|
1695
1815
|
}>, "strip", z.ZodTypeAny, {
|
|
1696
1816
|
address: `0x${string}`;
|
|
@@ -1706,6 +1826,8 @@ export declare const stakingPositionsSchema: z.ZodArray<z.ZodObject<z.objectUtil
|
|
|
1706
1826
|
iconUrl?: string | undefined;
|
|
1707
1827
|
category?: string | undefined;
|
|
1708
1828
|
unitCurrencyValue?: string | undefined;
|
|
1829
|
+
popular?: boolean | undefined;
|
|
1830
|
+
tradable?: boolean | undefined;
|
|
1709
1831
|
pricingId?: number | undefined;
|
|
1710
1832
|
ethDayChange?: string | undefined;
|
|
1711
1833
|
ccyDayChange?: string | undefined;
|
|
@@ -1724,6 +1846,8 @@ export declare const stakingPositionsSchema: z.ZodArray<z.ZodObject<z.objectUtil
|
|
|
1724
1846
|
iconUrl?: string | undefined;
|
|
1725
1847
|
category?: string | undefined;
|
|
1726
1848
|
unitCurrencyValue?: string | undefined;
|
|
1849
|
+
popular?: boolean | undefined;
|
|
1850
|
+
tradable?: boolean | undefined;
|
|
1727
1851
|
pricingId?: number | undefined;
|
|
1728
1852
|
ethDayChange?: string | undefined;
|
|
1729
1853
|
ccyDayChange?: string | undefined;
|
|
@@ -1749,6 +1873,8 @@ export declare const stakingPositionsSchema: z.ZodArray<z.ZodObject<z.objectUtil
|
|
|
1749
1873
|
iconUrl?: string | undefined;
|
|
1750
1874
|
category?: string | undefined;
|
|
1751
1875
|
unitCurrencyValue?: string | undefined;
|
|
1876
|
+
popular?: boolean | undefined;
|
|
1877
|
+
tradable?: boolean | undefined;
|
|
1752
1878
|
pricingId?: number | undefined;
|
|
1753
1879
|
ethDayChange?: string | undefined;
|
|
1754
1880
|
ccyDayChange?: string | undefined;
|
|
@@ -1779,6 +1905,8 @@ export declare const stakingPositionsSchema: z.ZodArray<z.ZodObject<z.objectUtil
|
|
|
1779
1905
|
iconUrl?: string | undefined;
|
|
1780
1906
|
category?: string | undefined;
|
|
1781
1907
|
unitCurrencyValue?: string | undefined;
|
|
1908
|
+
popular?: boolean | undefined;
|
|
1909
|
+
tradable?: boolean | undefined;
|
|
1782
1910
|
pricingId?: number | undefined;
|
|
1783
1911
|
ethDayChange?: string | undefined;
|
|
1784
1912
|
ccyDayChange?: string | undefined;
|
|
@@ -1865,6 +1993,8 @@ export declare const strkDelegatedStakingPositionSchema: z.ZodObject<z.objectUti
|
|
|
1865
1993
|
category: z.ZodOptional<z.ZodString>;
|
|
1866
1994
|
dappId: z.ZodOptional<z.ZodString>;
|
|
1867
1995
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
1996
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
1997
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
1868
1998
|
}>, {
|
|
1869
1999
|
currencyValue: z.ZodString;
|
|
1870
2000
|
currencySymbol: z.ZodOptional<z.ZodString>;
|
|
@@ -1883,6 +2013,8 @@ export declare const strkDelegatedStakingPositionSchema: z.ZodObject<z.objectUti
|
|
|
1883
2013
|
category: z.ZodOptional<z.ZodString>;
|
|
1884
2014
|
dappId: z.ZodOptional<z.ZodString>;
|
|
1885
2015
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
2016
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
2017
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
1886
2018
|
balance: z.ZodString;
|
|
1887
2019
|
}>, "strip", z.ZodTypeAny, {
|
|
1888
2020
|
address: `0x${string}`;
|
|
@@ -1898,6 +2030,8 @@ export declare const strkDelegatedStakingPositionSchema: z.ZodObject<z.objectUti
|
|
|
1898
2030
|
iconUrl?: string | undefined;
|
|
1899
2031
|
category?: string | undefined;
|
|
1900
2032
|
unitCurrencyValue?: string | undefined;
|
|
2033
|
+
popular?: boolean | undefined;
|
|
2034
|
+
tradable?: boolean | undefined;
|
|
1901
2035
|
pricingId?: number | undefined;
|
|
1902
2036
|
ethDayChange?: string | undefined;
|
|
1903
2037
|
ccyDayChange?: string | undefined;
|
|
@@ -1916,6 +2050,8 @@ export declare const strkDelegatedStakingPositionSchema: z.ZodObject<z.objectUti
|
|
|
1916
2050
|
iconUrl?: string | undefined;
|
|
1917
2051
|
category?: string | undefined;
|
|
1918
2052
|
unitCurrencyValue?: string | undefined;
|
|
2053
|
+
popular?: boolean | undefined;
|
|
2054
|
+
tradable?: boolean | undefined;
|
|
1919
2055
|
pricingId?: number | undefined;
|
|
1920
2056
|
ethDayChange?: string | undefined;
|
|
1921
2057
|
ccyDayChange?: string | undefined;
|
|
@@ -1955,6 +2091,8 @@ export declare const strkDelegatedStakingPositionSchema: z.ZodObject<z.objectUti
|
|
|
1955
2091
|
iconUrl?: string | undefined;
|
|
1956
2092
|
category?: string | undefined;
|
|
1957
2093
|
unitCurrencyValue?: string | undefined;
|
|
2094
|
+
popular?: boolean | undefined;
|
|
2095
|
+
tradable?: boolean | undefined;
|
|
1958
2096
|
pricingId?: number | undefined;
|
|
1959
2097
|
ethDayChange?: string | undefined;
|
|
1960
2098
|
ccyDayChange?: string | undefined;
|
|
@@ -1999,6 +2137,8 @@ export declare const strkDelegatedStakingPositionSchema: z.ZodObject<z.objectUti
|
|
|
1999
2137
|
iconUrl?: string | undefined;
|
|
2000
2138
|
category?: string | undefined;
|
|
2001
2139
|
unitCurrencyValue?: string | undefined;
|
|
2140
|
+
popular?: boolean | undefined;
|
|
2141
|
+
tradable?: boolean | undefined;
|
|
2002
2142
|
pricingId?: number | undefined;
|
|
2003
2143
|
ethDayChange?: string | undefined;
|
|
2004
2144
|
ccyDayChange?: string | undefined;
|
|
@@ -2084,6 +2224,8 @@ export declare const strkDelegatedStakingPositionArraySchema: z.ZodArray<z.ZodOb
|
|
|
2084
2224
|
category: z.ZodOptional<z.ZodString>;
|
|
2085
2225
|
dappId: z.ZodOptional<z.ZodString>;
|
|
2086
2226
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
2227
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
2228
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
2087
2229
|
}>, {
|
|
2088
2230
|
currencyValue: z.ZodString;
|
|
2089
2231
|
currencySymbol: z.ZodOptional<z.ZodString>;
|
|
@@ -2102,6 +2244,8 @@ export declare const strkDelegatedStakingPositionArraySchema: z.ZodArray<z.ZodOb
|
|
|
2102
2244
|
category: z.ZodOptional<z.ZodString>;
|
|
2103
2245
|
dappId: z.ZodOptional<z.ZodString>;
|
|
2104
2246
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
2247
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
2248
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
2105
2249
|
balance: z.ZodString;
|
|
2106
2250
|
}>, "strip", z.ZodTypeAny, {
|
|
2107
2251
|
address: `0x${string}`;
|
|
@@ -2117,6 +2261,8 @@ export declare const strkDelegatedStakingPositionArraySchema: z.ZodArray<z.ZodOb
|
|
|
2117
2261
|
iconUrl?: string | undefined;
|
|
2118
2262
|
category?: string | undefined;
|
|
2119
2263
|
unitCurrencyValue?: string | undefined;
|
|
2264
|
+
popular?: boolean | undefined;
|
|
2265
|
+
tradable?: boolean | undefined;
|
|
2120
2266
|
pricingId?: number | undefined;
|
|
2121
2267
|
ethDayChange?: string | undefined;
|
|
2122
2268
|
ccyDayChange?: string | undefined;
|
|
@@ -2135,6 +2281,8 @@ export declare const strkDelegatedStakingPositionArraySchema: z.ZodArray<z.ZodOb
|
|
|
2135
2281
|
iconUrl?: string | undefined;
|
|
2136
2282
|
category?: string | undefined;
|
|
2137
2283
|
unitCurrencyValue?: string | undefined;
|
|
2284
|
+
popular?: boolean | undefined;
|
|
2285
|
+
tradable?: boolean | undefined;
|
|
2138
2286
|
pricingId?: number | undefined;
|
|
2139
2287
|
ethDayChange?: string | undefined;
|
|
2140
2288
|
ccyDayChange?: string | undefined;
|
|
@@ -2174,6 +2322,8 @@ export declare const strkDelegatedStakingPositionArraySchema: z.ZodArray<z.ZodOb
|
|
|
2174
2322
|
iconUrl?: string | undefined;
|
|
2175
2323
|
category?: string | undefined;
|
|
2176
2324
|
unitCurrencyValue?: string | undefined;
|
|
2325
|
+
popular?: boolean | undefined;
|
|
2326
|
+
tradable?: boolean | undefined;
|
|
2177
2327
|
pricingId?: number | undefined;
|
|
2178
2328
|
ethDayChange?: string | undefined;
|
|
2179
2329
|
ccyDayChange?: string | undefined;
|
|
@@ -2218,6 +2368,8 @@ export declare const strkDelegatedStakingPositionArraySchema: z.ZodArray<z.ZodOb
|
|
|
2218
2368
|
iconUrl?: string | undefined;
|
|
2219
2369
|
category?: string | undefined;
|
|
2220
2370
|
unitCurrencyValue?: string | undefined;
|
|
2371
|
+
popular?: boolean | undefined;
|
|
2372
|
+
tradable?: boolean | undefined;
|
|
2221
2373
|
pricingId?: number | undefined;
|
|
2222
2374
|
ethDayChange?: string | undefined;
|
|
2223
2375
|
ccyDayChange?: string | undefined;
|
|
@@ -2253,6 +2405,8 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
2253
2405
|
category: z.ZodOptional<z.ZodString>;
|
|
2254
2406
|
dappId: z.ZodOptional<z.ZodString>;
|
|
2255
2407
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
2408
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
2409
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
2256
2410
|
}>, {
|
|
2257
2411
|
currencyValue: z.ZodString;
|
|
2258
2412
|
currencySymbol: z.ZodOptional<z.ZodString>;
|
|
@@ -2271,6 +2425,8 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
2271
2425
|
category: z.ZodOptional<z.ZodString>;
|
|
2272
2426
|
dappId: z.ZodOptional<z.ZodString>;
|
|
2273
2427
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
2428
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
2429
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
2274
2430
|
balance: z.ZodString;
|
|
2275
2431
|
}>, {
|
|
2276
2432
|
accruedFees: z.ZodString;
|
|
@@ -2297,6 +2453,8 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
2297
2453
|
iconUrl?: string | undefined;
|
|
2298
2454
|
category?: string | undefined;
|
|
2299
2455
|
unitCurrencyValue?: string | undefined;
|
|
2456
|
+
popular?: boolean | undefined;
|
|
2457
|
+
tradable?: boolean | undefined;
|
|
2300
2458
|
pricingId?: number | undefined;
|
|
2301
2459
|
ethDayChange?: string | undefined;
|
|
2302
2460
|
ccyDayChange?: string | undefined;
|
|
@@ -2320,6 +2478,8 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
2320
2478
|
iconUrl?: string | undefined;
|
|
2321
2479
|
category?: string | undefined;
|
|
2322
2480
|
unitCurrencyValue?: string | undefined;
|
|
2481
|
+
popular?: boolean | undefined;
|
|
2482
|
+
tradable?: boolean | undefined;
|
|
2323
2483
|
pricingId?: number | undefined;
|
|
2324
2484
|
ethDayChange?: string | undefined;
|
|
2325
2485
|
ccyDayChange?: string | undefined;
|
|
@@ -2338,6 +2498,8 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
2338
2498
|
category: z.ZodOptional<z.ZodString>;
|
|
2339
2499
|
dappId: z.ZodOptional<z.ZodString>;
|
|
2340
2500
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
2501
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
2502
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
2341
2503
|
}>, {
|
|
2342
2504
|
currencyValue: z.ZodString;
|
|
2343
2505
|
currencySymbol: z.ZodOptional<z.ZodString>;
|
|
@@ -2356,6 +2518,8 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
2356
2518
|
category: z.ZodOptional<z.ZodString>;
|
|
2357
2519
|
dappId: z.ZodOptional<z.ZodString>;
|
|
2358
2520
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
2521
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
2522
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
2359
2523
|
balance: z.ZodString;
|
|
2360
2524
|
}>, {
|
|
2361
2525
|
accruedFees: z.ZodString;
|
|
@@ -2382,6 +2546,8 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
2382
2546
|
iconUrl?: string | undefined;
|
|
2383
2547
|
category?: string | undefined;
|
|
2384
2548
|
unitCurrencyValue?: string | undefined;
|
|
2549
|
+
popular?: boolean | undefined;
|
|
2550
|
+
tradable?: boolean | undefined;
|
|
2385
2551
|
pricingId?: number | undefined;
|
|
2386
2552
|
ethDayChange?: string | undefined;
|
|
2387
2553
|
ccyDayChange?: string | undefined;
|
|
@@ -2405,6 +2571,8 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
2405
2571
|
iconUrl?: string | undefined;
|
|
2406
2572
|
category?: string | undefined;
|
|
2407
2573
|
unitCurrencyValue?: string | undefined;
|
|
2574
|
+
popular?: boolean | undefined;
|
|
2575
|
+
tradable?: boolean | undefined;
|
|
2408
2576
|
pricingId?: number | undefined;
|
|
2409
2577
|
ethDayChange?: string | undefined;
|
|
2410
2578
|
ccyDayChange?: string | undefined;
|
|
@@ -2432,6 +2600,8 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
2432
2600
|
iconUrl?: string | undefined;
|
|
2433
2601
|
category?: string | undefined;
|
|
2434
2602
|
unitCurrencyValue?: string | undefined;
|
|
2603
|
+
popular?: boolean | undefined;
|
|
2604
|
+
tradable?: boolean | undefined;
|
|
2435
2605
|
pricingId?: number | undefined;
|
|
2436
2606
|
ethDayChange?: string | undefined;
|
|
2437
2607
|
ccyDayChange?: string | undefined;
|
|
@@ -2456,6 +2626,8 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
2456
2626
|
iconUrl?: string | undefined;
|
|
2457
2627
|
category?: string | undefined;
|
|
2458
2628
|
unitCurrencyValue?: string | undefined;
|
|
2629
|
+
popular?: boolean | undefined;
|
|
2630
|
+
tradable?: boolean | undefined;
|
|
2459
2631
|
pricingId?: number | undefined;
|
|
2460
2632
|
ethDayChange?: string | undefined;
|
|
2461
2633
|
ccyDayChange?: string | undefined;
|
|
@@ -2487,6 +2659,8 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
2487
2659
|
iconUrl?: string | undefined;
|
|
2488
2660
|
category?: string | undefined;
|
|
2489
2661
|
unitCurrencyValue?: string | undefined;
|
|
2662
|
+
popular?: boolean | undefined;
|
|
2663
|
+
tradable?: boolean | undefined;
|
|
2490
2664
|
pricingId?: number | undefined;
|
|
2491
2665
|
ethDayChange?: string | undefined;
|
|
2492
2666
|
ccyDayChange?: string | undefined;
|
|
@@ -2511,6 +2685,8 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
2511
2685
|
iconUrl?: string | undefined;
|
|
2512
2686
|
category?: string | undefined;
|
|
2513
2687
|
unitCurrencyValue?: string | undefined;
|
|
2688
|
+
popular?: boolean | undefined;
|
|
2689
|
+
tradable?: boolean | undefined;
|
|
2514
2690
|
pricingId?: number | undefined;
|
|
2515
2691
|
ethDayChange?: string | undefined;
|
|
2516
2692
|
ccyDayChange?: string | undefined;
|
|
@@ -2569,8 +2745,8 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
2569
2745
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2570
2746
|
}, "strip", z.ZodTypeAny, {
|
|
2571
2747
|
symbol: string;
|
|
2572
|
-
name: string;
|
|
2573
2748
|
address: `0x${string}`;
|
|
2749
|
+
name: string;
|
|
2574
2750
|
decimals: number;
|
|
2575
2751
|
id: number;
|
|
2576
2752
|
category: "tokens" | "currencies" | "savings";
|
|
@@ -2592,8 +2768,8 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
2592
2768
|
tags?: string[] | undefined;
|
|
2593
2769
|
}, {
|
|
2594
2770
|
symbol: string;
|
|
2595
|
-
name: string;
|
|
2596
2771
|
address: string;
|
|
2772
|
+
name: string;
|
|
2597
2773
|
decimals: number;
|
|
2598
2774
|
id: number;
|
|
2599
2775
|
category: "tokens" | "currencies" | "savings";
|
|
@@ -2627,6 +2803,8 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
2627
2803
|
category: z.ZodOptional<z.ZodString>;
|
|
2628
2804
|
dappId: z.ZodOptional<z.ZodString>;
|
|
2629
2805
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
2806
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
2807
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
2630
2808
|
}>, {
|
|
2631
2809
|
currencyValue: z.ZodString;
|
|
2632
2810
|
currencySymbol: z.ZodOptional<z.ZodString>;
|
|
@@ -2645,6 +2823,8 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
2645
2823
|
category: z.ZodOptional<z.ZodString>;
|
|
2646
2824
|
dappId: z.ZodOptional<z.ZodString>;
|
|
2647
2825
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
2826
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
2827
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
2648
2828
|
balance: z.ZodString;
|
|
2649
2829
|
}>, "strip", z.ZodTypeAny, {
|
|
2650
2830
|
address: `0x${string}`;
|
|
@@ -2660,6 +2840,8 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
2660
2840
|
iconUrl?: string | undefined;
|
|
2661
2841
|
category?: string | undefined;
|
|
2662
2842
|
unitCurrencyValue?: string | undefined;
|
|
2843
|
+
popular?: boolean | undefined;
|
|
2844
|
+
tradable?: boolean | undefined;
|
|
2663
2845
|
pricingId?: number | undefined;
|
|
2664
2846
|
ethDayChange?: string | undefined;
|
|
2665
2847
|
ccyDayChange?: string | undefined;
|
|
@@ -2678,6 +2860,8 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
2678
2860
|
iconUrl?: string | undefined;
|
|
2679
2861
|
category?: string | undefined;
|
|
2680
2862
|
unitCurrencyValue?: string | undefined;
|
|
2863
|
+
popular?: boolean | undefined;
|
|
2864
|
+
tradable?: boolean | undefined;
|
|
2681
2865
|
pricingId?: number | undefined;
|
|
2682
2866
|
ethDayChange?: string | undefined;
|
|
2683
2867
|
ccyDayChange?: string | undefined;
|
|
@@ -2699,8 +2883,8 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
2699
2883
|
group?: string | undefined;
|
|
2700
2884
|
positionToken?: {
|
|
2701
2885
|
symbol: string;
|
|
2702
|
-
name: string;
|
|
2703
2886
|
address: `0x${string}`;
|
|
2887
|
+
name: string;
|
|
2704
2888
|
decimals: number;
|
|
2705
2889
|
id: number;
|
|
2706
2890
|
category: "tokens" | "currencies" | "savings";
|
|
@@ -2735,6 +2919,8 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
2735
2919
|
iconUrl?: string | undefined;
|
|
2736
2920
|
category?: string | undefined;
|
|
2737
2921
|
unitCurrencyValue?: string | undefined;
|
|
2922
|
+
popular?: boolean | undefined;
|
|
2923
|
+
tradable?: boolean | undefined;
|
|
2738
2924
|
pricingId?: number | undefined;
|
|
2739
2925
|
ethDayChange?: string | undefined;
|
|
2740
2926
|
ccyDayChange?: string | undefined;
|
|
@@ -2755,8 +2941,8 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
2755
2941
|
group?: string | undefined;
|
|
2756
2942
|
positionToken?: {
|
|
2757
2943
|
symbol: string;
|
|
2758
|
-
name: string;
|
|
2759
2944
|
address: string;
|
|
2945
|
+
name: string;
|
|
2760
2946
|
decimals: number;
|
|
2761
2947
|
id: number;
|
|
2762
2948
|
category: "tokens" | "currencies" | "savings";
|
|
@@ -2791,6 +2977,8 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
2791
2977
|
iconUrl?: string | undefined;
|
|
2792
2978
|
category?: string | undefined;
|
|
2793
2979
|
unitCurrencyValue?: string | undefined;
|
|
2980
|
+
popular?: boolean | undefined;
|
|
2981
|
+
tradable?: boolean | undefined;
|
|
2794
2982
|
pricingId?: number | undefined;
|
|
2795
2983
|
ethDayChange?: string | undefined;
|
|
2796
2984
|
ccyDayChange?: string | undefined;
|
|
@@ -2815,6 +3003,8 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
2815
3003
|
category: z.ZodOptional<z.ZodString>;
|
|
2816
3004
|
dappId: z.ZodOptional<z.ZodString>;
|
|
2817
3005
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
3006
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
3007
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
2818
3008
|
}>, {
|
|
2819
3009
|
currencyValue: z.ZodString;
|
|
2820
3010
|
currencySymbol: z.ZodOptional<z.ZodString>;
|
|
@@ -2833,6 +3023,8 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
2833
3023
|
category: z.ZodOptional<z.ZodString>;
|
|
2834
3024
|
dappId: z.ZodOptional<z.ZodString>;
|
|
2835
3025
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
3026
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
3027
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
2836
3028
|
balance: z.ZodString;
|
|
2837
3029
|
}>, "strip", z.ZodTypeAny, {
|
|
2838
3030
|
address: `0x${string}`;
|
|
@@ -2848,6 +3040,8 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
2848
3040
|
iconUrl?: string | undefined;
|
|
2849
3041
|
category?: string | undefined;
|
|
2850
3042
|
unitCurrencyValue?: string | undefined;
|
|
3043
|
+
popular?: boolean | undefined;
|
|
3044
|
+
tradable?: boolean | undefined;
|
|
2851
3045
|
pricingId?: number | undefined;
|
|
2852
3046
|
ethDayChange?: string | undefined;
|
|
2853
3047
|
ccyDayChange?: string | undefined;
|
|
@@ -2866,6 +3060,8 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
2866
3060
|
iconUrl?: string | undefined;
|
|
2867
3061
|
category?: string | undefined;
|
|
2868
3062
|
unitCurrencyValue?: string | undefined;
|
|
3063
|
+
popular?: boolean | undefined;
|
|
3064
|
+
tradable?: boolean | undefined;
|
|
2869
3065
|
pricingId?: number | undefined;
|
|
2870
3066
|
ethDayChange?: string | undefined;
|
|
2871
3067
|
ccyDayChange?: string | undefined;
|
|
@@ -2893,6 +3089,8 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
2893
3089
|
iconUrl?: string | undefined;
|
|
2894
3090
|
category?: string | undefined;
|
|
2895
3091
|
unitCurrencyValue?: string | undefined;
|
|
3092
|
+
popular?: boolean | undefined;
|
|
3093
|
+
tradable?: boolean | undefined;
|
|
2896
3094
|
pricingId?: number | undefined;
|
|
2897
3095
|
ethDayChange?: string | undefined;
|
|
2898
3096
|
ccyDayChange?: string | undefined;
|
|
@@ -2918,6 +3116,8 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
2918
3116
|
iconUrl?: string | undefined;
|
|
2919
3117
|
category?: string | undefined;
|
|
2920
3118
|
unitCurrencyValue?: string | undefined;
|
|
3119
|
+
popular?: boolean | undefined;
|
|
3120
|
+
tradable?: boolean | undefined;
|
|
2921
3121
|
pricingId?: number | undefined;
|
|
2922
3122
|
ethDayChange?: string | undefined;
|
|
2923
3123
|
ccyDayChange?: string | undefined;
|
|
@@ -2995,6 +3195,8 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
2995
3195
|
category: z.ZodOptional<z.ZodString>;
|
|
2996
3196
|
dappId: z.ZodOptional<z.ZodString>;
|
|
2997
3197
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
3198
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
3199
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
2998
3200
|
}>, {
|
|
2999
3201
|
currencyValue: z.ZodString;
|
|
3000
3202
|
currencySymbol: z.ZodOptional<z.ZodString>;
|
|
@@ -3013,6 +3215,8 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
3013
3215
|
category: z.ZodOptional<z.ZodString>;
|
|
3014
3216
|
dappId: z.ZodOptional<z.ZodString>;
|
|
3015
3217
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
3218
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
3219
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
3016
3220
|
balance: z.ZodString;
|
|
3017
3221
|
}>, "strip", z.ZodTypeAny, {
|
|
3018
3222
|
address: `0x${string}`;
|
|
@@ -3028,6 +3232,8 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
3028
3232
|
iconUrl?: string | undefined;
|
|
3029
3233
|
category?: string | undefined;
|
|
3030
3234
|
unitCurrencyValue?: string | undefined;
|
|
3235
|
+
popular?: boolean | undefined;
|
|
3236
|
+
tradable?: boolean | undefined;
|
|
3031
3237
|
pricingId?: number | undefined;
|
|
3032
3238
|
ethDayChange?: string | undefined;
|
|
3033
3239
|
ccyDayChange?: string | undefined;
|
|
@@ -3046,6 +3252,8 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
3046
3252
|
iconUrl?: string | undefined;
|
|
3047
3253
|
category?: string | undefined;
|
|
3048
3254
|
unitCurrencyValue?: string | undefined;
|
|
3255
|
+
popular?: boolean | undefined;
|
|
3256
|
+
tradable?: boolean | undefined;
|
|
3049
3257
|
pricingId?: number | undefined;
|
|
3050
3258
|
ethDayChange?: string | undefined;
|
|
3051
3259
|
ccyDayChange?: string | undefined;
|
|
@@ -3085,6 +3293,8 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
3085
3293
|
iconUrl?: string | undefined;
|
|
3086
3294
|
category?: string | undefined;
|
|
3087
3295
|
unitCurrencyValue?: string | undefined;
|
|
3296
|
+
popular?: boolean | undefined;
|
|
3297
|
+
tradable?: boolean | undefined;
|
|
3088
3298
|
pricingId?: number | undefined;
|
|
3089
3299
|
ethDayChange?: string | undefined;
|
|
3090
3300
|
ccyDayChange?: string | undefined;
|
|
@@ -3129,6 +3339,8 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
3129
3339
|
iconUrl?: string | undefined;
|
|
3130
3340
|
category?: string | undefined;
|
|
3131
3341
|
unitCurrencyValue?: string | undefined;
|
|
3342
|
+
popular?: boolean | undefined;
|
|
3343
|
+
tradable?: boolean | undefined;
|
|
3132
3344
|
pricingId?: number | undefined;
|
|
3133
3345
|
ethDayChange?: string | undefined;
|
|
3134
3346
|
ccyDayChange?: string | undefined;
|
|
@@ -3174,6 +3386,8 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
3174
3386
|
category: z.ZodOptional<z.ZodString>;
|
|
3175
3387
|
dappId: z.ZodOptional<z.ZodString>;
|
|
3176
3388
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
3389
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
3390
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
3177
3391
|
}>, {
|
|
3178
3392
|
currencyValue: z.ZodString;
|
|
3179
3393
|
currencySymbol: z.ZodOptional<z.ZodString>;
|
|
@@ -3192,6 +3406,8 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
3192
3406
|
category: z.ZodOptional<z.ZodString>;
|
|
3193
3407
|
dappId: z.ZodOptional<z.ZodString>;
|
|
3194
3408
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
3409
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
3410
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
3195
3411
|
balance: z.ZodString;
|
|
3196
3412
|
}>, "strip", z.ZodTypeAny, {
|
|
3197
3413
|
address: `0x${string}`;
|
|
@@ -3207,6 +3423,8 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
3207
3423
|
iconUrl?: string | undefined;
|
|
3208
3424
|
category?: string | undefined;
|
|
3209
3425
|
unitCurrencyValue?: string | undefined;
|
|
3426
|
+
popular?: boolean | undefined;
|
|
3427
|
+
tradable?: boolean | undefined;
|
|
3210
3428
|
pricingId?: number | undefined;
|
|
3211
3429
|
ethDayChange?: string | undefined;
|
|
3212
3430
|
ccyDayChange?: string | undefined;
|
|
@@ -3225,6 +3443,8 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
3225
3443
|
iconUrl?: string | undefined;
|
|
3226
3444
|
category?: string | undefined;
|
|
3227
3445
|
unitCurrencyValue?: string | undefined;
|
|
3446
|
+
popular?: boolean | undefined;
|
|
3447
|
+
tradable?: boolean | undefined;
|
|
3228
3448
|
pricingId?: number | undefined;
|
|
3229
3449
|
ethDayChange?: string | undefined;
|
|
3230
3450
|
ccyDayChange?: string | undefined;
|
|
@@ -3250,6 +3470,8 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
3250
3470
|
iconUrl?: string | undefined;
|
|
3251
3471
|
category?: string | undefined;
|
|
3252
3472
|
unitCurrencyValue?: string | undefined;
|
|
3473
|
+
popular?: boolean | undefined;
|
|
3474
|
+
tradable?: boolean | undefined;
|
|
3253
3475
|
pricingId?: number | undefined;
|
|
3254
3476
|
ethDayChange?: string | undefined;
|
|
3255
3477
|
ccyDayChange?: string | undefined;
|
|
@@ -3280,6 +3502,8 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.Z
|
|
|
3280
3502
|
iconUrl?: string | undefined;
|
|
3281
3503
|
category?: string | undefined;
|
|
3282
3504
|
unitCurrencyValue?: string | undefined;
|
|
3505
|
+
popular?: boolean | undefined;
|
|
3506
|
+
tradable?: boolean | undefined;
|
|
3283
3507
|
pricingId?: number | undefined;
|
|
3284
3508
|
ethDayChange?: string | undefined;
|
|
3285
3509
|
ccyDayChange?: string | undefined;
|
|
@@ -3333,6 +3557,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
3333
3557
|
category: z.ZodOptional<z.ZodString>;
|
|
3334
3558
|
dappId: z.ZodOptional<z.ZodString>;
|
|
3335
3559
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
3560
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
3561
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
3336
3562
|
}>, {
|
|
3337
3563
|
currencyValue: z.ZodString;
|
|
3338
3564
|
currencySymbol: z.ZodOptional<z.ZodString>;
|
|
@@ -3351,6 +3577,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
3351
3577
|
category: z.ZodOptional<z.ZodString>;
|
|
3352
3578
|
dappId: z.ZodOptional<z.ZodString>;
|
|
3353
3579
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
3580
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
3581
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
3354
3582
|
balance: z.ZodString;
|
|
3355
3583
|
}>, {
|
|
3356
3584
|
accruedFees: z.ZodString;
|
|
@@ -3377,6 +3605,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
3377
3605
|
iconUrl?: string | undefined;
|
|
3378
3606
|
category?: string | undefined;
|
|
3379
3607
|
unitCurrencyValue?: string | undefined;
|
|
3608
|
+
popular?: boolean | undefined;
|
|
3609
|
+
tradable?: boolean | undefined;
|
|
3380
3610
|
pricingId?: number | undefined;
|
|
3381
3611
|
ethDayChange?: string | undefined;
|
|
3382
3612
|
ccyDayChange?: string | undefined;
|
|
@@ -3400,6 +3630,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
3400
3630
|
iconUrl?: string | undefined;
|
|
3401
3631
|
category?: string | undefined;
|
|
3402
3632
|
unitCurrencyValue?: string | undefined;
|
|
3633
|
+
popular?: boolean | undefined;
|
|
3634
|
+
tradable?: boolean | undefined;
|
|
3403
3635
|
pricingId?: number | undefined;
|
|
3404
3636
|
ethDayChange?: string | undefined;
|
|
3405
3637
|
ccyDayChange?: string | undefined;
|
|
@@ -3418,6 +3650,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
3418
3650
|
category: z.ZodOptional<z.ZodString>;
|
|
3419
3651
|
dappId: z.ZodOptional<z.ZodString>;
|
|
3420
3652
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
3653
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
3654
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
3421
3655
|
}>, {
|
|
3422
3656
|
currencyValue: z.ZodString;
|
|
3423
3657
|
currencySymbol: z.ZodOptional<z.ZodString>;
|
|
@@ -3436,6 +3670,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
3436
3670
|
category: z.ZodOptional<z.ZodString>;
|
|
3437
3671
|
dappId: z.ZodOptional<z.ZodString>;
|
|
3438
3672
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
3673
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
3674
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
3439
3675
|
balance: z.ZodString;
|
|
3440
3676
|
}>, {
|
|
3441
3677
|
accruedFees: z.ZodString;
|
|
@@ -3462,6 +3698,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
3462
3698
|
iconUrl?: string | undefined;
|
|
3463
3699
|
category?: string | undefined;
|
|
3464
3700
|
unitCurrencyValue?: string | undefined;
|
|
3701
|
+
popular?: boolean | undefined;
|
|
3702
|
+
tradable?: boolean | undefined;
|
|
3465
3703
|
pricingId?: number | undefined;
|
|
3466
3704
|
ethDayChange?: string | undefined;
|
|
3467
3705
|
ccyDayChange?: string | undefined;
|
|
@@ -3485,6 +3723,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
3485
3723
|
iconUrl?: string | undefined;
|
|
3486
3724
|
category?: string | undefined;
|
|
3487
3725
|
unitCurrencyValue?: string | undefined;
|
|
3726
|
+
popular?: boolean | undefined;
|
|
3727
|
+
tradable?: boolean | undefined;
|
|
3488
3728
|
pricingId?: number | undefined;
|
|
3489
3729
|
ethDayChange?: string | undefined;
|
|
3490
3730
|
ccyDayChange?: string | undefined;
|
|
@@ -3512,6 +3752,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
3512
3752
|
iconUrl?: string | undefined;
|
|
3513
3753
|
category?: string | undefined;
|
|
3514
3754
|
unitCurrencyValue?: string | undefined;
|
|
3755
|
+
popular?: boolean | undefined;
|
|
3756
|
+
tradable?: boolean | undefined;
|
|
3515
3757
|
pricingId?: number | undefined;
|
|
3516
3758
|
ethDayChange?: string | undefined;
|
|
3517
3759
|
ccyDayChange?: string | undefined;
|
|
@@ -3536,6 +3778,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
3536
3778
|
iconUrl?: string | undefined;
|
|
3537
3779
|
category?: string | undefined;
|
|
3538
3780
|
unitCurrencyValue?: string | undefined;
|
|
3781
|
+
popular?: boolean | undefined;
|
|
3782
|
+
tradable?: boolean | undefined;
|
|
3539
3783
|
pricingId?: number | undefined;
|
|
3540
3784
|
ethDayChange?: string | undefined;
|
|
3541
3785
|
ccyDayChange?: string | undefined;
|
|
@@ -3567,6 +3811,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
3567
3811
|
iconUrl?: string | undefined;
|
|
3568
3812
|
category?: string | undefined;
|
|
3569
3813
|
unitCurrencyValue?: string | undefined;
|
|
3814
|
+
popular?: boolean | undefined;
|
|
3815
|
+
tradable?: boolean | undefined;
|
|
3570
3816
|
pricingId?: number | undefined;
|
|
3571
3817
|
ethDayChange?: string | undefined;
|
|
3572
3818
|
ccyDayChange?: string | undefined;
|
|
@@ -3591,6 +3837,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
3591
3837
|
iconUrl?: string | undefined;
|
|
3592
3838
|
category?: string | undefined;
|
|
3593
3839
|
unitCurrencyValue?: string | undefined;
|
|
3840
|
+
popular?: boolean | undefined;
|
|
3841
|
+
tradable?: boolean | undefined;
|
|
3594
3842
|
pricingId?: number | undefined;
|
|
3595
3843
|
ethDayChange?: string | undefined;
|
|
3596
3844
|
ccyDayChange?: string | undefined;
|
|
@@ -3649,8 +3897,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
3649
3897
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3650
3898
|
}, "strip", z.ZodTypeAny, {
|
|
3651
3899
|
symbol: string;
|
|
3652
|
-
name: string;
|
|
3653
3900
|
address: `0x${string}`;
|
|
3901
|
+
name: string;
|
|
3654
3902
|
decimals: number;
|
|
3655
3903
|
id: number;
|
|
3656
3904
|
category: "tokens" | "currencies" | "savings";
|
|
@@ -3672,8 +3920,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
3672
3920
|
tags?: string[] | undefined;
|
|
3673
3921
|
}, {
|
|
3674
3922
|
symbol: string;
|
|
3675
|
-
name: string;
|
|
3676
3923
|
address: string;
|
|
3924
|
+
name: string;
|
|
3677
3925
|
decimals: number;
|
|
3678
3926
|
id: number;
|
|
3679
3927
|
category: "tokens" | "currencies" | "savings";
|
|
@@ -3707,6 +3955,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
3707
3955
|
category: z.ZodOptional<z.ZodString>;
|
|
3708
3956
|
dappId: z.ZodOptional<z.ZodString>;
|
|
3709
3957
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
3958
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
3959
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
3710
3960
|
}>, {
|
|
3711
3961
|
currencyValue: z.ZodString;
|
|
3712
3962
|
currencySymbol: z.ZodOptional<z.ZodString>;
|
|
@@ -3725,6 +3975,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
3725
3975
|
category: z.ZodOptional<z.ZodString>;
|
|
3726
3976
|
dappId: z.ZodOptional<z.ZodString>;
|
|
3727
3977
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
3978
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
3979
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
3728
3980
|
balance: z.ZodString;
|
|
3729
3981
|
}>, "strip", z.ZodTypeAny, {
|
|
3730
3982
|
address: `0x${string}`;
|
|
@@ -3740,6 +3992,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
3740
3992
|
iconUrl?: string | undefined;
|
|
3741
3993
|
category?: string | undefined;
|
|
3742
3994
|
unitCurrencyValue?: string | undefined;
|
|
3995
|
+
popular?: boolean | undefined;
|
|
3996
|
+
tradable?: boolean | undefined;
|
|
3743
3997
|
pricingId?: number | undefined;
|
|
3744
3998
|
ethDayChange?: string | undefined;
|
|
3745
3999
|
ccyDayChange?: string | undefined;
|
|
@@ -3758,6 +4012,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
3758
4012
|
iconUrl?: string | undefined;
|
|
3759
4013
|
category?: string | undefined;
|
|
3760
4014
|
unitCurrencyValue?: string | undefined;
|
|
4015
|
+
popular?: boolean | undefined;
|
|
4016
|
+
tradable?: boolean | undefined;
|
|
3761
4017
|
pricingId?: number | undefined;
|
|
3762
4018
|
ethDayChange?: string | undefined;
|
|
3763
4019
|
ccyDayChange?: string | undefined;
|
|
@@ -3779,8 +4035,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
3779
4035
|
group?: string | undefined;
|
|
3780
4036
|
positionToken?: {
|
|
3781
4037
|
symbol: string;
|
|
3782
|
-
name: string;
|
|
3783
4038
|
address: `0x${string}`;
|
|
4039
|
+
name: string;
|
|
3784
4040
|
decimals: number;
|
|
3785
4041
|
id: number;
|
|
3786
4042
|
category: "tokens" | "currencies" | "savings";
|
|
@@ -3815,6 +4071,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
3815
4071
|
iconUrl?: string | undefined;
|
|
3816
4072
|
category?: string | undefined;
|
|
3817
4073
|
unitCurrencyValue?: string | undefined;
|
|
4074
|
+
popular?: boolean | undefined;
|
|
4075
|
+
tradable?: boolean | undefined;
|
|
3818
4076
|
pricingId?: number | undefined;
|
|
3819
4077
|
ethDayChange?: string | undefined;
|
|
3820
4078
|
ccyDayChange?: string | undefined;
|
|
@@ -3835,8 +4093,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
3835
4093
|
group?: string | undefined;
|
|
3836
4094
|
positionToken?: {
|
|
3837
4095
|
symbol: string;
|
|
3838
|
-
name: string;
|
|
3839
4096
|
address: string;
|
|
4097
|
+
name: string;
|
|
3840
4098
|
decimals: number;
|
|
3841
4099
|
id: number;
|
|
3842
4100
|
category: "tokens" | "currencies" | "savings";
|
|
@@ -3871,6 +4129,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
3871
4129
|
iconUrl?: string | undefined;
|
|
3872
4130
|
category?: string | undefined;
|
|
3873
4131
|
unitCurrencyValue?: string | undefined;
|
|
4132
|
+
popular?: boolean | undefined;
|
|
4133
|
+
tradable?: boolean | undefined;
|
|
3874
4134
|
pricingId?: number | undefined;
|
|
3875
4135
|
ethDayChange?: string | undefined;
|
|
3876
4136
|
ccyDayChange?: string | undefined;
|
|
@@ -3895,6 +4155,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
3895
4155
|
category: z.ZodOptional<z.ZodString>;
|
|
3896
4156
|
dappId: z.ZodOptional<z.ZodString>;
|
|
3897
4157
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
4158
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
4159
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
3898
4160
|
}>, {
|
|
3899
4161
|
currencyValue: z.ZodString;
|
|
3900
4162
|
currencySymbol: z.ZodOptional<z.ZodString>;
|
|
@@ -3913,6 +4175,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
3913
4175
|
category: z.ZodOptional<z.ZodString>;
|
|
3914
4176
|
dappId: z.ZodOptional<z.ZodString>;
|
|
3915
4177
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
4178
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
4179
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
3916
4180
|
balance: z.ZodString;
|
|
3917
4181
|
}>, "strip", z.ZodTypeAny, {
|
|
3918
4182
|
address: `0x${string}`;
|
|
@@ -3928,6 +4192,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
3928
4192
|
iconUrl?: string | undefined;
|
|
3929
4193
|
category?: string | undefined;
|
|
3930
4194
|
unitCurrencyValue?: string | undefined;
|
|
4195
|
+
popular?: boolean | undefined;
|
|
4196
|
+
tradable?: boolean | undefined;
|
|
3931
4197
|
pricingId?: number | undefined;
|
|
3932
4198
|
ethDayChange?: string | undefined;
|
|
3933
4199
|
ccyDayChange?: string | undefined;
|
|
@@ -3946,6 +4212,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
3946
4212
|
iconUrl?: string | undefined;
|
|
3947
4213
|
category?: string | undefined;
|
|
3948
4214
|
unitCurrencyValue?: string | undefined;
|
|
4215
|
+
popular?: boolean | undefined;
|
|
4216
|
+
tradable?: boolean | undefined;
|
|
3949
4217
|
pricingId?: number | undefined;
|
|
3950
4218
|
ethDayChange?: string | undefined;
|
|
3951
4219
|
ccyDayChange?: string | undefined;
|
|
@@ -3973,6 +4241,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
3973
4241
|
iconUrl?: string | undefined;
|
|
3974
4242
|
category?: string | undefined;
|
|
3975
4243
|
unitCurrencyValue?: string | undefined;
|
|
4244
|
+
popular?: boolean | undefined;
|
|
4245
|
+
tradable?: boolean | undefined;
|
|
3976
4246
|
pricingId?: number | undefined;
|
|
3977
4247
|
ethDayChange?: string | undefined;
|
|
3978
4248
|
ccyDayChange?: string | undefined;
|
|
@@ -3998,6 +4268,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
3998
4268
|
iconUrl?: string | undefined;
|
|
3999
4269
|
category?: string | undefined;
|
|
4000
4270
|
unitCurrencyValue?: string | undefined;
|
|
4271
|
+
popular?: boolean | undefined;
|
|
4272
|
+
tradable?: boolean | undefined;
|
|
4001
4273
|
pricingId?: number | undefined;
|
|
4002
4274
|
ethDayChange?: string | undefined;
|
|
4003
4275
|
ccyDayChange?: string | undefined;
|
|
@@ -4075,6 +4347,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4075
4347
|
category: z.ZodOptional<z.ZodString>;
|
|
4076
4348
|
dappId: z.ZodOptional<z.ZodString>;
|
|
4077
4349
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
4350
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
4351
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
4078
4352
|
}>, {
|
|
4079
4353
|
currencyValue: z.ZodString;
|
|
4080
4354
|
currencySymbol: z.ZodOptional<z.ZodString>;
|
|
@@ -4093,6 +4367,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4093
4367
|
category: z.ZodOptional<z.ZodString>;
|
|
4094
4368
|
dappId: z.ZodOptional<z.ZodString>;
|
|
4095
4369
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
4370
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
4371
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
4096
4372
|
balance: z.ZodString;
|
|
4097
4373
|
}>, "strip", z.ZodTypeAny, {
|
|
4098
4374
|
address: `0x${string}`;
|
|
@@ -4108,6 +4384,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4108
4384
|
iconUrl?: string | undefined;
|
|
4109
4385
|
category?: string | undefined;
|
|
4110
4386
|
unitCurrencyValue?: string | undefined;
|
|
4387
|
+
popular?: boolean | undefined;
|
|
4388
|
+
tradable?: boolean | undefined;
|
|
4111
4389
|
pricingId?: number | undefined;
|
|
4112
4390
|
ethDayChange?: string | undefined;
|
|
4113
4391
|
ccyDayChange?: string | undefined;
|
|
@@ -4126,6 +4404,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4126
4404
|
iconUrl?: string | undefined;
|
|
4127
4405
|
category?: string | undefined;
|
|
4128
4406
|
unitCurrencyValue?: string | undefined;
|
|
4407
|
+
popular?: boolean | undefined;
|
|
4408
|
+
tradable?: boolean | undefined;
|
|
4129
4409
|
pricingId?: number | undefined;
|
|
4130
4410
|
ethDayChange?: string | undefined;
|
|
4131
4411
|
ccyDayChange?: string | undefined;
|
|
@@ -4165,6 +4445,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4165
4445
|
iconUrl?: string | undefined;
|
|
4166
4446
|
category?: string | undefined;
|
|
4167
4447
|
unitCurrencyValue?: string | undefined;
|
|
4448
|
+
popular?: boolean | undefined;
|
|
4449
|
+
tradable?: boolean | undefined;
|
|
4168
4450
|
pricingId?: number | undefined;
|
|
4169
4451
|
ethDayChange?: string | undefined;
|
|
4170
4452
|
ccyDayChange?: string | undefined;
|
|
@@ -4209,6 +4491,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4209
4491
|
iconUrl?: string | undefined;
|
|
4210
4492
|
category?: string | undefined;
|
|
4211
4493
|
unitCurrencyValue?: string | undefined;
|
|
4494
|
+
popular?: boolean | undefined;
|
|
4495
|
+
tradable?: boolean | undefined;
|
|
4212
4496
|
pricingId?: number | undefined;
|
|
4213
4497
|
ethDayChange?: string | undefined;
|
|
4214
4498
|
ccyDayChange?: string | undefined;
|
|
@@ -4254,6 +4538,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4254
4538
|
category: z.ZodOptional<z.ZodString>;
|
|
4255
4539
|
dappId: z.ZodOptional<z.ZodString>;
|
|
4256
4540
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
4541
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
4542
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
4257
4543
|
}>, {
|
|
4258
4544
|
currencyValue: z.ZodString;
|
|
4259
4545
|
currencySymbol: z.ZodOptional<z.ZodString>;
|
|
@@ -4272,6 +4558,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4272
4558
|
category: z.ZodOptional<z.ZodString>;
|
|
4273
4559
|
dappId: z.ZodOptional<z.ZodString>;
|
|
4274
4560
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
4561
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
4562
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
4275
4563
|
balance: z.ZodString;
|
|
4276
4564
|
}>, "strip", z.ZodTypeAny, {
|
|
4277
4565
|
address: `0x${string}`;
|
|
@@ -4287,6 +4575,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4287
4575
|
iconUrl?: string | undefined;
|
|
4288
4576
|
category?: string | undefined;
|
|
4289
4577
|
unitCurrencyValue?: string | undefined;
|
|
4578
|
+
popular?: boolean | undefined;
|
|
4579
|
+
tradable?: boolean | undefined;
|
|
4290
4580
|
pricingId?: number | undefined;
|
|
4291
4581
|
ethDayChange?: string | undefined;
|
|
4292
4582
|
ccyDayChange?: string | undefined;
|
|
@@ -4305,6 +4595,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4305
4595
|
iconUrl?: string | undefined;
|
|
4306
4596
|
category?: string | undefined;
|
|
4307
4597
|
unitCurrencyValue?: string | undefined;
|
|
4598
|
+
popular?: boolean | undefined;
|
|
4599
|
+
tradable?: boolean | undefined;
|
|
4308
4600
|
pricingId?: number | undefined;
|
|
4309
4601
|
ethDayChange?: string | undefined;
|
|
4310
4602
|
ccyDayChange?: string | undefined;
|
|
@@ -4330,6 +4622,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4330
4622
|
iconUrl?: string | undefined;
|
|
4331
4623
|
category?: string | undefined;
|
|
4332
4624
|
unitCurrencyValue?: string | undefined;
|
|
4625
|
+
popular?: boolean | undefined;
|
|
4626
|
+
tradable?: boolean | undefined;
|
|
4333
4627
|
pricingId?: number | undefined;
|
|
4334
4628
|
ethDayChange?: string | undefined;
|
|
4335
4629
|
ccyDayChange?: string | undefined;
|
|
@@ -4360,6 +4654,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4360
4654
|
iconUrl?: string | undefined;
|
|
4361
4655
|
category?: string | undefined;
|
|
4362
4656
|
unitCurrencyValue?: string | undefined;
|
|
4657
|
+
popular?: boolean | undefined;
|
|
4658
|
+
tradable?: boolean | undefined;
|
|
4363
4659
|
pricingId?: number | undefined;
|
|
4364
4660
|
ethDayChange?: string | undefined;
|
|
4365
4661
|
ccyDayChange?: string | undefined;
|
|
@@ -4391,8 +4687,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4391
4687
|
}>>>;
|
|
4392
4688
|
accountAddress: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
4393
4689
|
}, "strip", z.ZodTypeAny, {
|
|
4394
|
-
name: string;
|
|
4395
4690
|
type: "staking" | "strkDelegatedStaking" | "concentratedLiquidityPosition" | "collateralizedDebtPosition" | "delegatedTokens";
|
|
4691
|
+
name: string;
|
|
4396
4692
|
accountAddress: `0x${string}`;
|
|
4397
4693
|
positions: ({
|
|
4398
4694
|
currencyValue: string;
|
|
@@ -4416,6 +4712,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4416
4712
|
iconUrl?: string | undefined;
|
|
4417
4713
|
category?: string | undefined;
|
|
4418
4714
|
unitCurrencyValue?: string | undefined;
|
|
4715
|
+
popular?: boolean | undefined;
|
|
4716
|
+
tradable?: boolean | undefined;
|
|
4419
4717
|
pricingId?: number | undefined;
|
|
4420
4718
|
ethDayChange?: string | undefined;
|
|
4421
4719
|
ccyDayChange?: string | undefined;
|
|
@@ -4440,6 +4738,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4440
4738
|
iconUrl?: string | undefined;
|
|
4441
4739
|
category?: string | undefined;
|
|
4442
4740
|
unitCurrencyValue?: string | undefined;
|
|
4741
|
+
popular?: boolean | undefined;
|
|
4742
|
+
tradable?: boolean | undefined;
|
|
4443
4743
|
pricingId?: number | undefined;
|
|
4444
4744
|
ethDayChange?: string | undefined;
|
|
4445
4745
|
ccyDayChange?: string | undefined;
|
|
@@ -4464,8 +4764,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4464
4764
|
group?: string | undefined;
|
|
4465
4765
|
positionToken?: {
|
|
4466
4766
|
symbol: string;
|
|
4467
|
-
name: string;
|
|
4468
4767
|
address: `0x${string}`;
|
|
4768
|
+
name: string;
|
|
4469
4769
|
decimals: number;
|
|
4470
4770
|
id: number;
|
|
4471
4771
|
category: "tokens" | "currencies" | "savings";
|
|
@@ -4500,6 +4800,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4500
4800
|
iconUrl?: string | undefined;
|
|
4501
4801
|
category?: string | undefined;
|
|
4502
4802
|
unitCurrencyValue?: string | undefined;
|
|
4803
|
+
popular?: boolean | undefined;
|
|
4804
|
+
tradable?: boolean | undefined;
|
|
4503
4805
|
pricingId?: number | undefined;
|
|
4504
4806
|
ethDayChange?: string | undefined;
|
|
4505
4807
|
ccyDayChange?: string | undefined;
|
|
@@ -4526,6 +4828,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4526
4828
|
iconUrl?: string | undefined;
|
|
4527
4829
|
category?: string | undefined;
|
|
4528
4830
|
unitCurrencyValue?: string | undefined;
|
|
4831
|
+
popular?: boolean | undefined;
|
|
4832
|
+
tradable?: boolean | undefined;
|
|
4529
4833
|
pricingId?: number | undefined;
|
|
4530
4834
|
ethDayChange?: string | undefined;
|
|
4531
4835
|
ccyDayChange?: string | undefined;
|
|
@@ -4550,6 +4854,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4550
4854
|
iconUrl?: string | undefined;
|
|
4551
4855
|
category?: string | undefined;
|
|
4552
4856
|
unitCurrencyValue?: string | undefined;
|
|
4857
|
+
popular?: boolean | undefined;
|
|
4858
|
+
tradable?: boolean | undefined;
|
|
4553
4859
|
pricingId?: number | undefined;
|
|
4554
4860
|
ethDayChange?: string | undefined;
|
|
4555
4861
|
ccyDayChange?: string | undefined;
|
|
@@ -4596,6 +4902,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4596
4902
|
iconUrl?: string | undefined;
|
|
4597
4903
|
category?: string | undefined;
|
|
4598
4904
|
unitCurrencyValue?: string | undefined;
|
|
4905
|
+
popular?: boolean | undefined;
|
|
4906
|
+
tradable?: boolean | undefined;
|
|
4599
4907
|
pricingId?: number | undefined;
|
|
4600
4908
|
ethDayChange?: string | undefined;
|
|
4601
4909
|
ccyDayChange?: string | undefined;
|
|
@@ -4617,8 +4925,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4617
4925
|
healthRatio?: string | undefined;
|
|
4618
4926
|
}> | undefined;
|
|
4619
4927
|
}, {
|
|
4620
|
-
name: string;
|
|
4621
4928
|
type: "staking" | "strkDelegatedStaking" | "concentratedLiquidityPosition" | "collateralizedDebtPosition" | "delegatedTokens";
|
|
4929
|
+
name: string;
|
|
4622
4930
|
accountAddress: string;
|
|
4623
4931
|
positions: ({
|
|
4624
4932
|
poolFeePercentage: string;
|
|
@@ -4641,6 +4949,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4641
4949
|
iconUrl?: string | undefined;
|
|
4642
4950
|
category?: string | undefined;
|
|
4643
4951
|
unitCurrencyValue?: string | undefined;
|
|
4952
|
+
popular?: boolean | undefined;
|
|
4953
|
+
tradable?: boolean | undefined;
|
|
4644
4954
|
pricingId?: number | undefined;
|
|
4645
4955
|
ethDayChange?: string | undefined;
|
|
4646
4956
|
ccyDayChange?: string | undefined;
|
|
@@ -4665,6 +4975,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4665
4975
|
iconUrl?: string | undefined;
|
|
4666
4976
|
category?: string | undefined;
|
|
4667
4977
|
unitCurrencyValue?: string | undefined;
|
|
4978
|
+
popular?: boolean | undefined;
|
|
4979
|
+
tradable?: boolean | undefined;
|
|
4668
4980
|
pricingId?: number | undefined;
|
|
4669
4981
|
ethDayChange?: string | undefined;
|
|
4670
4982
|
ccyDayChange?: string | undefined;
|
|
@@ -4690,8 +5002,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4690
5002
|
group?: string | undefined;
|
|
4691
5003
|
positionToken?: {
|
|
4692
5004
|
symbol: string;
|
|
4693
|
-
name: string;
|
|
4694
5005
|
address: string;
|
|
5006
|
+
name: string;
|
|
4695
5007
|
decimals: number;
|
|
4696
5008
|
id: number;
|
|
4697
5009
|
category: "tokens" | "currencies" | "savings";
|
|
@@ -4726,6 +5038,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4726
5038
|
iconUrl?: string | undefined;
|
|
4727
5039
|
category?: string | undefined;
|
|
4728
5040
|
unitCurrencyValue?: string | undefined;
|
|
5041
|
+
popular?: boolean | undefined;
|
|
5042
|
+
tradable?: boolean | undefined;
|
|
4729
5043
|
pricingId?: number | undefined;
|
|
4730
5044
|
ethDayChange?: string | undefined;
|
|
4731
5045
|
ccyDayChange?: string | undefined;
|
|
@@ -4752,6 +5066,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4752
5066
|
iconUrl?: string | undefined;
|
|
4753
5067
|
category?: string | undefined;
|
|
4754
5068
|
unitCurrencyValue?: string | undefined;
|
|
5069
|
+
popular?: boolean | undefined;
|
|
5070
|
+
tradable?: boolean | undefined;
|
|
4755
5071
|
pricingId?: number | undefined;
|
|
4756
5072
|
ethDayChange?: string | undefined;
|
|
4757
5073
|
ccyDayChange?: string | undefined;
|
|
@@ -4775,6 +5091,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4775
5091
|
iconUrl?: string | undefined;
|
|
4776
5092
|
category?: string | undefined;
|
|
4777
5093
|
unitCurrencyValue?: string | undefined;
|
|
5094
|
+
popular?: boolean | undefined;
|
|
5095
|
+
tradable?: boolean | undefined;
|
|
4778
5096
|
pricingId?: number | undefined;
|
|
4779
5097
|
ethDayChange?: string | undefined;
|
|
4780
5098
|
ccyDayChange?: string | undefined;
|
|
@@ -4821,6 +5139,8 @@ export declare const defiProductSchema: z.ZodObject<{
|
|
|
4821
5139
|
iconUrl?: string | undefined;
|
|
4822
5140
|
category?: string | undefined;
|
|
4823
5141
|
unitCurrencyValue?: string | undefined;
|
|
5142
|
+
popular?: boolean | undefined;
|
|
5143
|
+
tradable?: boolean | undefined;
|
|
4824
5144
|
pricingId?: number | undefined;
|
|
4825
5145
|
ethDayChange?: string | undefined;
|
|
4826
5146
|
ccyDayChange?: string | undefined;
|
|
@@ -4869,6 +5189,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
4869
5189
|
category: z.ZodOptional<z.ZodString>;
|
|
4870
5190
|
dappId: z.ZodOptional<z.ZodString>;
|
|
4871
5191
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
5192
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
5193
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
4872
5194
|
}>, {
|
|
4873
5195
|
currencyValue: z.ZodString;
|
|
4874
5196
|
currencySymbol: z.ZodOptional<z.ZodString>;
|
|
@@ -4887,6 +5209,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
4887
5209
|
category: z.ZodOptional<z.ZodString>;
|
|
4888
5210
|
dappId: z.ZodOptional<z.ZodString>;
|
|
4889
5211
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
5212
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
5213
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
4890
5214
|
balance: z.ZodString;
|
|
4891
5215
|
}>, {
|
|
4892
5216
|
accruedFees: z.ZodString;
|
|
@@ -4913,6 +5237,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
4913
5237
|
iconUrl?: string | undefined;
|
|
4914
5238
|
category?: string | undefined;
|
|
4915
5239
|
unitCurrencyValue?: string | undefined;
|
|
5240
|
+
popular?: boolean | undefined;
|
|
5241
|
+
tradable?: boolean | undefined;
|
|
4916
5242
|
pricingId?: number | undefined;
|
|
4917
5243
|
ethDayChange?: string | undefined;
|
|
4918
5244
|
ccyDayChange?: string | undefined;
|
|
@@ -4936,6 +5262,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
4936
5262
|
iconUrl?: string | undefined;
|
|
4937
5263
|
category?: string | undefined;
|
|
4938
5264
|
unitCurrencyValue?: string | undefined;
|
|
5265
|
+
popular?: boolean | undefined;
|
|
5266
|
+
tradable?: boolean | undefined;
|
|
4939
5267
|
pricingId?: number | undefined;
|
|
4940
5268
|
ethDayChange?: string | undefined;
|
|
4941
5269
|
ccyDayChange?: string | undefined;
|
|
@@ -4954,6 +5282,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
4954
5282
|
category: z.ZodOptional<z.ZodString>;
|
|
4955
5283
|
dappId: z.ZodOptional<z.ZodString>;
|
|
4956
5284
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
5285
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
5286
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
4957
5287
|
}>, {
|
|
4958
5288
|
currencyValue: z.ZodString;
|
|
4959
5289
|
currencySymbol: z.ZodOptional<z.ZodString>;
|
|
@@ -4972,6 +5302,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
4972
5302
|
category: z.ZodOptional<z.ZodString>;
|
|
4973
5303
|
dappId: z.ZodOptional<z.ZodString>;
|
|
4974
5304
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
5305
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
5306
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
4975
5307
|
balance: z.ZodString;
|
|
4976
5308
|
}>, {
|
|
4977
5309
|
accruedFees: z.ZodString;
|
|
@@ -4998,6 +5330,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
4998
5330
|
iconUrl?: string | undefined;
|
|
4999
5331
|
category?: string | undefined;
|
|
5000
5332
|
unitCurrencyValue?: string | undefined;
|
|
5333
|
+
popular?: boolean | undefined;
|
|
5334
|
+
tradable?: boolean | undefined;
|
|
5001
5335
|
pricingId?: number | undefined;
|
|
5002
5336
|
ethDayChange?: string | undefined;
|
|
5003
5337
|
ccyDayChange?: string | undefined;
|
|
@@ -5021,6 +5355,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5021
5355
|
iconUrl?: string | undefined;
|
|
5022
5356
|
category?: string | undefined;
|
|
5023
5357
|
unitCurrencyValue?: string | undefined;
|
|
5358
|
+
popular?: boolean | undefined;
|
|
5359
|
+
tradable?: boolean | undefined;
|
|
5024
5360
|
pricingId?: number | undefined;
|
|
5025
5361
|
ethDayChange?: string | undefined;
|
|
5026
5362
|
ccyDayChange?: string | undefined;
|
|
@@ -5048,6 +5384,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5048
5384
|
iconUrl?: string | undefined;
|
|
5049
5385
|
category?: string | undefined;
|
|
5050
5386
|
unitCurrencyValue?: string | undefined;
|
|
5387
|
+
popular?: boolean | undefined;
|
|
5388
|
+
tradable?: boolean | undefined;
|
|
5051
5389
|
pricingId?: number | undefined;
|
|
5052
5390
|
ethDayChange?: string | undefined;
|
|
5053
5391
|
ccyDayChange?: string | undefined;
|
|
@@ -5072,6 +5410,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5072
5410
|
iconUrl?: string | undefined;
|
|
5073
5411
|
category?: string | undefined;
|
|
5074
5412
|
unitCurrencyValue?: string | undefined;
|
|
5413
|
+
popular?: boolean | undefined;
|
|
5414
|
+
tradable?: boolean | undefined;
|
|
5075
5415
|
pricingId?: number | undefined;
|
|
5076
5416
|
ethDayChange?: string | undefined;
|
|
5077
5417
|
ccyDayChange?: string | undefined;
|
|
@@ -5103,6 +5443,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5103
5443
|
iconUrl?: string | undefined;
|
|
5104
5444
|
category?: string | undefined;
|
|
5105
5445
|
unitCurrencyValue?: string | undefined;
|
|
5446
|
+
popular?: boolean | undefined;
|
|
5447
|
+
tradable?: boolean | undefined;
|
|
5106
5448
|
pricingId?: number | undefined;
|
|
5107
5449
|
ethDayChange?: string | undefined;
|
|
5108
5450
|
ccyDayChange?: string | undefined;
|
|
@@ -5127,6 +5469,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5127
5469
|
iconUrl?: string | undefined;
|
|
5128
5470
|
category?: string | undefined;
|
|
5129
5471
|
unitCurrencyValue?: string | undefined;
|
|
5472
|
+
popular?: boolean | undefined;
|
|
5473
|
+
tradable?: boolean | undefined;
|
|
5130
5474
|
pricingId?: number | undefined;
|
|
5131
5475
|
ethDayChange?: string | undefined;
|
|
5132
5476
|
ccyDayChange?: string | undefined;
|
|
@@ -5185,8 +5529,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5185
5529
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
5186
5530
|
}, "strip", z.ZodTypeAny, {
|
|
5187
5531
|
symbol: string;
|
|
5188
|
-
name: string;
|
|
5189
5532
|
address: `0x${string}`;
|
|
5533
|
+
name: string;
|
|
5190
5534
|
decimals: number;
|
|
5191
5535
|
id: number;
|
|
5192
5536
|
category: "tokens" | "currencies" | "savings";
|
|
@@ -5208,8 +5552,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5208
5552
|
tags?: string[] | undefined;
|
|
5209
5553
|
}, {
|
|
5210
5554
|
symbol: string;
|
|
5211
|
-
name: string;
|
|
5212
5555
|
address: string;
|
|
5556
|
+
name: string;
|
|
5213
5557
|
decimals: number;
|
|
5214
5558
|
id: number;
|
|
5215
5559
|
category: "tokens" | "currencies" | "savings";
|
|
@@ -5243,6 +5587,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5243
5587
|
category: z.ZodOptional<z.ZodString>;
|
|
5244
5588
|
dappId: z.ZodOptional<z.ZodString>;
|
|
5245
5589
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
5590
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
5591
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
5246
5592
|
}>, {
|
|
5247
5593
|
currencyValue: z.ZodString;
|
|
5248
5594
|
currencySymbol: z.ZodOptional<z.ZodString>;
|
|
@@ -5261,6 +5607,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5261
5607
|
category: z.ZodOptional<z.ZodString>;
|
|
5262
5608
|
dappId: z.ZodOptional<z.ZodString>;
|
|
5263
5609
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
5610
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
5611
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
5264
5612
|
balance: z.ZodString;
|
|
5265
5613
|
}>, "strip", z.ZodTypeAny, {
|
|
5266
5614
|
address: `0x${string}`;
|
|
@@ -5276,6 +5624,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5276
5624
|
iconUrl?: string | undefined;
|
|
5277
5625
|
category?: string | undefined;
|
|
5278
5626
|
unitCurrencyValue?: string | undefined;
|
|
5627
|
+
popular?: boolean | undefined;
|
|
5628
|
+
tradable?: boolean | undefined;
|
|
5279
5629
|
pricingId?: number | undefined;
|
|
5280
5630
|
ethDayChange?: string | undefined;
|
|
5281
5631
|
ccyDayChange?: string | undefined;
|
|
@@ -5294,6 +5644,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5294
5644
|
iconUrl?: string | undefined;
|
|
5295
5645
|
category?: string | undefined;
|
|
5296
5646
|
unitCurrencyValue?: string | undefined;
|
|
5647
|
+
popular?: boolean | undefined;
|
|
5648
|
+
tradable?: boolean | undefined;
|
|
5297
5649
|
pricingId?: number | undefined;
|
|
5298
5650
|
ethDayChange?: string | undefined;
|
|
5299
5651
|
ccyDayChange?: string | undefined;
|
|
@@ -5315,8 +5667,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5315
5667
|
group?: string | undefined;
|
|
5316
5668
|
positionToken?: {
|
|
5317
5669
|
symbol: string;
|
|
5318
|
-
name: string;
|
|
5319
5670
|
address: `0x${string}`;
|
|
5671
|
+
name: string;
|
|
5320
5672
|
decimals: number;
|
|
5321
5673
|
id: number;
|
|
5322
5674
|
category: "tokens" | "currencies" | "savings";
|
|
@@ -5351,6 +5703,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5351
5703
|
iconUrl?: string | undefined;
|
|
5352
5704
|
category?: string | undefined;
|
|
5353
5705
|
unitCurrencyValue?: string | undefined;
|
|
5706
|
+
popular?: boolean | undefined;
|
|
5707
|
+
tradable?: boolean | undefined;
|
|
5354
5708
|
pricingId?: number | undefined;
|
|
5355
5709
|
ethDayChange?: string | undefined;
|
|
5356
5710
|
ccyDayChange?: string | undefined;
|
|
@@ -5371,8 +5725,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5371
5725
|
group?: string | undefined;
|
|
5372
5726
|
positionToken?: {
|
|
5373
5727
|
symbol: string;
|
|
5374
|
-
name: string;
|
|
5375
5728
|
address: string;
|
|
5729
|
+
name: string;
|
|
5376
5730
|
decimals: number;
|
|
5377
5731
|
id: number;
|
|
5378
5732
|
category: "tokens" | "currencies" | "savings";
|
|
@@ -5407,6 +5761,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5407
5761
|
iconUrl?: string | undefined;
|
|
5408
5762
|
category?: string | undefined;
|
|
5409
5763
|
unitCurrencyValue?: string | undefined;
|
|
5764
|
+
popular?: boolean | undefined;
|
|
5765
|
+
tradable?: boolean | undefined;
|
|
5410
5766
|
pricingId?: number | undefined;
|
|
5411
5767
|
ethDayChange?: string | undefined;
|
|
5412
5768
|
ccyDayChange?: string | undefined;
|
|
@@ -5431,6 +5787,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5431
5787
|
category: z.ZodOptional<z.ZodString>;
|
|
5432
5788
|
dappId: z.ZodOptional<z.ZodString>;
|
|
5433
5789
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
5790
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
5791
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
5434
5792
|
}>, {
|
|
5435
5793
|
currencyValue: z.ZodString;
|
|
5436
5794
|
currencySymbol: z.ZodOptional<z.ZodString>;
|
|
@@ -5449,6 +5807,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5449
5807
|
category: z.ZodOptional<z.ZodString>;
|
|
5450
5808
|
dappId: z.ZodOptional<z.ZodString>;
|
|
5451
5809
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
5810
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
5811
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
5452
5812
|
balance: z.ZodString;
|
|
5453
5813
|
}>, "strip", z.ZodTypeAny, {
|
|
5454
5814
|
address: `0x${string}`;
|
|
@@ -5464,6 +5824,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5464
5824
|
iconUrl?: string | undefined;
|
|
5465
5825
|
category?: string | undefined;
|
|
5466
5826
|
unitCurrencyValue?: string | undefined;
|
|
5827
|
+
popular?: boolean | undefined;
|
|
5828
|
+
tradable?: boolean | undefined;
|
|
5467
5829
|
pricingId?: number | undefined;
|
|
5468
5830
|
ethDayChange?: string | undefined;
|
|
5469
5831
|
ccyDayChange?: string | undefined;
|
|
@@ -5482,6 +5844,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5482
5844
|
iconUrl?: string | undefined;
|
|
5483
5845
|
category?: string | undefined;
|
|
5484
5846
|
unitCurrencyValue?: string | undefined;
|
|
5847
|
+
popular?: boolean | undefined;
|
|
5848
|
+
tradable?: boolean | undefined;
|
|
5485
5849
|
pricingId?: number | undefined;
|
|
5486
5850
|
ethDayChange?: string | undefined;
|
|
5487
5851
|
ccyDayChange?: string | undefined;
|
|
@@ -5509,6 +5873,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5509
5873
|
iconUrl?: string | undefined;
|
|
5510
5874
|
category?: string | undefined;
|
|
5511
5875
|
unitCurrencyValue?: string | undefined;
|
|
5876
|
+
popular?: boolean | undefined;
|
|
5877
|
+
tradable?: boolean | undefined;
|
|
5512
5878
|
pricingId?: number | undefined;
|
|
5513
5879
|
ethDayChange?: string | undefined;
|
|
5514
5880
|
ccyDayChange?: string | undefined;
|
|
@@ -5534,6 +5900,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5534
5900
|
iconUrl?: string | undefined;
|
|
5535
5901
|
category?: string | undefined;
|
|
5536
5902
|
unitCurrencyValue?: string | undefined;
|
|
5903
|
+
popular?: boolean | undefined;
|
|
5904
|
+
tradable?: boolean | undefined;
|
|
5537
5905
|
pricingId?: number | undefined;
|
|
5538
5906
|
ethDayChange?: string | undefined;
|
|
5539
5907
|
ccyDayChange?: string | undefined;
|
|
@@ -5611,6 +5979,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5611
5979
|
category: z.ZodOptional<z.ZodString>;
|
|
5612
5980
|
dappId: z.ZodOptional<z.ZodString>;
|
|
5613
5981
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
5982
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
5983
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
5614
5984
|
}>, {
|
|
5615
5985
|
currencyValue: z.ZodString;
|
|
5616
5986
|
currencySymbol: z.ZodOptional<z.ZodString>;
|
|
@@ -5629,6 +5999,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5629
5999
|
category: z.ZodOptional<z.ZodString>;
|
|
5630
6000
|
dappId: z.ZodOptional<z.ZodString>;
|
|
5631
6001
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
6002
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
6003
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
5632
6004
|
balance: z.ZodString;
|
|
5633
6005
|
}>, "strip", z.ZodTypeAny, {
|
|
5634
6006
|
address: `0x${string}`;
|
|
@@ -5644,6 +6016,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5644
6016
|
iconUrl?: string | undefined;
|
|
5645
6017
|
category?: string | undefined;
|
|
5646
6018
|
unitCurrencyValue?: string | undefined;
|
|
6019
|
+
popular?: boolean | undefined;
|
|
6020
|
+
tradable?: boolean | undefined;
|
|
5647
6021
|
pricingId?: number | undefined;
|
|
5648
6022
|
ethDayChange?: string | undefined;
|
|
5649
6023
|
ccyDayChange?: string | undefined;
|
|
@@ -5662,6 +6036,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5662
6036
|
iconUrl?: string | undefined;
|
|
5663
6037
|
category?: string | undefined;
|
|
5664
6038
|
unitCurrencyValue?: string | undefined;
|
|
6039
|
+
popular?: boolean | undefined;
|
|
6040
|
+
tradable?: boolean | undefined;
|
|
5665
6041
|
pricingId?: number | undefined;
|
|
5666
6042
|
ethDayChange?: string | undefined;
|
|
5667
6043
|
ccyDayChange?: string | undefined;
|
|
@@ -5701,6 +6077,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5701
6077
|
iconUrl?: string | undefined;
|
|
5702
6078
|
category?: string | undefined;
|
|
5703
6079
|
unitCurrencyValue?: string | undefined;
|
|
6080
|
+
popular?: boolean | undefined;
|
|
6081
|
+
tradable?: boolean | undefined;
|
|
5704
6082
|
pricingId?: number | undefined;
|
|
5705
6083
|
ethDayChange?: string | undefined;
|
|
5706
6084
|
ccyDayChange?: string | undefined;
|
|
@@ -5745,6 +6123,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5745
6123
|
iconUrl?: string | undefined;
|
|
5746
6124
|
category?: string | undefined;
|
|
5747
6125
|
unitCurrencyValue?: string | undefined;
|
|
6126
|
+
popular?: boolean | undefined;
|
|
6127
|
+
tradable?: boolean | undefined;
|
|
5748
6128
|
pricingId?: number | undefined;
|
|
5749
6129
|
ethDayChange?: string | undefined;
|
|
5750
6130
|
ccyDayChange?: string | undefined;
|
|
@@ -5790,6 +6170,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5790
6170
|
category: z.ZodOptional<z.ZodString>;
|
|
5791
6171
|
dappId: z.ZodOptional<z.ZodString>;
|
|
5792
6172
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
6173
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
6174
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
5793
6175
|
}>, {
|
|
5794
6176
|
currencyValue: z.ZodString;
|
|
5795
6177
|
currencySymbol: z.ZodOptional<z.ZodString>;
|
|
@@ -5808,6 +6190,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5808
6190
|
category: z.ZodOptional<z.ZodString>;
|
|
5809
6191
|
dappId: z.ZodOptional<z.ZodString>;
|
|
5810
6192
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
6193
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
6194
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
5811
6195
|
balance: z.ZodString;
|
|
5812
6196
|
}>, "strip", z.ZodTypeAny, {
|
|
5813
6197
|
address: `0x${string}`;
|
|
@@ -5823,6 +6207,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5823
6207
|
iconUrl?: string | undefined;
|
|
5824
6208
|
category?: string | undefined;
|
|
5825
6209
|
unitCurrencyValue?: string | undefined;
|
|
6210
|
+
popular?: boolean | undefined;
|
|
6211
|
+
tradable?: boolean | undefined;
|
|
5826
6212
|
pricingId?: number | undefined;
|
|
5827
6213
|
ethDayChange?: string | undefined;
|
|
5828
6214
|
ccyDayChange?: string | undefined;
|
|
@@ -5841,6 +6227,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5841
6227
|
iconUrl?: string | undefined;
|
|
5842
6228
|
category?: string | undefined;
|
|
5843
6229
|
unitCurrencyValue?: string | undefined;
|
|
6230
|
+
popular?: boolean | undefined;
|
|
6231
|
+
tradable?: boolean | undefined;
|
|
5844
6232
|
pricingId?: number | undefined;
|
|
5845
6233
|
ethDayChange?: string | undefined;
|
|
5846
6234
|
ccyDayChange?: string | undefined;
|
|
@@ -5866,6 +6254,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5866
6254
|
iconUrl?: string | undefined;
|
|
5867
6255
|
category?: string | undefined;
|
|
5868
6256
|
unitCurrencyValue?: string | undefined;
|
|
6257
|
+
popular?: boolean | undefined;
|
|
6258
|
+
tradable?: boolean | undefined;
|
|
5869
6259
|
pricingId?: number | undefined;
|
|
5870
6260
|
ethDayChange?: string | undefined;
|
|
5871
6261
|
ccyDayChange?: string | undefined;
|
|
@@ -5896,6 +6286,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5896
6286
|
iconUrl?: string | undefined;
|
|
5897
6287
|
category?: string | undefined;
|
|
5898
6288
|
unitCurrencyValue?: string | undefined;
|
|
6289
|
+
popular?: boolean | undefined;
|
|
6290
|
+
tradable?: boolean | undefined;
|
|
5899
6291
|
pricingId?: number | undefined;
|
|
5900
6292
|
ethDayChange?: string | undefined;
|
|
5901
6293
|
ccyDayChange?: string | undefined;
|
|
@@ -5927,8 +6319,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5927
6319
|
}>>>;
|
|
5928
6320
|
accountAddress: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
5929
6321
|
}, "strip", z.ZodTypeAny, {
|
|
5930
|
-
name: string;
|
|
5931
6322
|
type: "staking" | "strkDelegatedStaking" | "concentratedLiquidityPosition" | "collateralizedDebtPosition" | "delegatedTokens";
|
|
6323
|
+
name: string;
|
|
5932
6324
|
accountAddress: `0x${string}`;
|
|
5933
6325
|
positions: ({
|
|
5934
6326
|
currencyValue: string;
|
|
@@ -5952,6 +6344,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5952
6344
|
iconUrl?: string | undefined;
|
|
5953
6345
|
category?: string | undefined;
|
|
5954
6346
|
unitCurrencyValue?: string | undefined;
|
|
6347
|
+
popular?: boolean | undefined;
|
|
6348
|
+
tradable?: boolean | undefined;
|
|
5955
6349
|
pricingId?: number | undefined;
|
|
5956
6350
|
ethDayChange?: string | undefined;
|
|
5957
6351
|
ccyDayChange?: string | undefined;
|
|
@@ -5976,6 +6370,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
5976
6370
|
iconUrl?: string | undefined;
|
|
5977
6371
|
category?: string | undefined;
|
|
5978
6372
|
unitCurrencyValue?: string | undefined;
|
|
6373
|
+
popular?: boolean | undefined;
|
|
6374
|
+
tradable?: boolean | undefined;
|
|
5979
6375
|
pricingId?: number | undefined;
|
|
5980
6376
|
ethDayChange?: string | undefined;
|
|
5981
6377
|
ccyDayChange?: string | undefined;
|
|
@@ -6000,8 +6396,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
6000
6396
|
group?: string | undefined;
|
|
6001
6397
|
positionToken?: {
|
|
6002
6398
|
symbol: string;
|
|
6003
|
-
name: string;
|
|
6004
6399
|
address: `0x${string}`;
|
|
6400
|
+
name: string;
|
|
6005
6401
|
decimals: number;
|
|
6006
6402
|
id: number;
|
|
6007
6403
|
category: "tokens" | "currencies" | "savings";
|
|
@@ -6036,6 +6432,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
6036
6432
|
iconUrl?: string | undefined;
|
|
6037
6433
|
category?: string | undefined;
|
|
6038
6434
|
unitCurrencyValue?: string | undefined;
|
|
6435
|
+
popular?: boolean | undefined;
|
|
6436
|
+
tradable?: boolean | undefined;
|
|
6039
6437
|
pricingId?: number | undefined;
|
|
6040
6438
|
ethDayChange?: string | undefined;
|
|
6041
6439
|
ccyDayChange?: string | undefined;
|
|
@@ -6062,6 +6460,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
6062
6460
|
iconUrl?: string | undefined;
|
|
6063
6461
|
category?: string | undefined;
|
|
6064
6462
|
unitCurrencyValue?: string | undefined;
|
|
6463
|
+
popular?: boolean | undefined;
|
|
6464
|
+
tradable?: boolean | undefined;
|
|
6065
6465
|
pricingId?: number | undefined;
|
|
6066
6466
|
ethDayChange?: string | undefined;
|
|
6067
6467
|
ccyDayChange?: string | undefined;
|
|
@@ -6086,6 +6486,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
6086
6486
|
iconUrl?: string | undefined;
|
|
6087
6487
|
category?: string | undefined;
|
|
6088
6488
|
unitCurrencyValue?: string | undefined;
|
|
6489
|
+
popular?: boolean | undefined;
|
|
6490
|
+
tradable?: boolean | undefined;
|
|
6089
6491
|
pricingId?: number | undefined;
|
|
6090
6492
|
ethDayChange?: string | undefined;
|
|
6091
6493
|
ccyDayChange?: string | undefined;
|
|
@@ -6132,6 +6534,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
6132
6534
|
iconUrl?: string | undefined;
|
|
6133
6535
|
category?: string | undefined;
|
|
6134
6536
|
unitCurrencyValue?: string | undefined;
|
|
6537
|
+
popular?: boolean | undefined;
|
|
6538
|
+
tradable?: boolean | undefined;
|
|
6135
6539
|
pricingId?: number | undefined;
|
|
6136
6540
|
ethDayChange?: string | undefined;
|
|
6137
6541
|
ccyDayChange?: string | undefined;
|
|
@@ -6153,8 +6557,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
6153
6557
|
healthRatio?: string | undefined;
|
|
6154
6558
|
}> | undefined;
|
|
6155
6559
|
}, {
|
|
6156
|
-
name: string;
|
|
6157
6560
|
type: "staking" | "strkDelegatedStaking" | "concentratedLiquidityPosition" | "collateralizedDebtPosition" | "delegatedTokens";
|
|
6561
|
+
name: string;
|
|
6158
6562
|
accountAddress: string;
|
|
6159
6563
|
positions: ({
|
|
6160
6564
|
poolFeePercentage: string;
|
|
@@ -6177,6 +6581,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
6177
6581
|
iconUrl?: string | undefined;
|
|
6178
6582
|
category?: string | undefined;
|
|
6179
6583
|
unitCurrencyValue?: string | undefined;
|
|
6584
|
+
popular?: boolean | undefined;
|
|
6585
|
+
tradable?: boolean | undefined;
|
|
6180
6586
|
pricingId?: number | undefined;
|
|
6181
6587
|
ethDayChange?: string | undefined;
|
|
6182
6588
|
ccyDayChange?: string | undefined;
|
|
@@ -6201,6 +6607,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
6201
6607
|
iconUrl?: string | undefined;
|
|
6202
6608
|
category?: string | undefined;
|
|
6203
6609
|
unitCurrencyValue?: string | undefined;
|
|
6610
|
+
popular?: boolean | undefined;
|
|
6611
|
+
tradable?: boolean | undefined;
|
|
6204
6612
|
pricingId?: number | undefined;
|
|
6205
6613
|
ethDayChange?: string | undefined;
|
|
6206
6614
|
ccyDayChange?: string | undefined;
|
|
@@ -6226,8 +6634,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
6226
6634
|
group?: string | undefined;
|
|
6227
6635
|
positionToken?: {
|
|
6228
6636
|
symbol: string;
|
|
6229
|
-
name: string;
|
|
6230
6637
|
address: string;
|
|
6638
|
+
name: string;
|
|
6231
6639
|
decimals: number;
|
|
6232
6640
|
id: number;
|
|
6233
6641
|
category: "tokens" | "currencies" | "savings";
|
|
@@ -6262,6 +6670,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
6262
6670
|
iconUrl?: string | undefined;
|
|
6263
6671
|
category?: string | undefined;
|
|
6264
6672
|
unitCurrencyValue?: string | undefined;
|
|
6673
|
+
popular?: boolean | undefined;
|
|
6674
|
+
tradable?: boolean | undefined;
|
|
6265
6675
|
pricingId?: number | undefined;
|
|
6266
6676
|
ethDayChange?: string | undefined;
|
|
6267
6677
|
ccyDayChange?: string | undefined;
|
|
@@ -6288,6 +6698,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
6288
6698
|
iconUrl?: string | undefined;
|
|
6289
6699
|
category?: string | undefined;
|
|
6290
6700
|
unitCurrencyValue?: string | undefined;
|
|
6701
|
+
popular?: boolean | undefined;
|
|
6702
|
+
tradable?: boolean | undefined;
|
|
6291
6703
|
pricingId?: number | undefined;
|
|
6292
6704
|
ethDayChange?: string | undefined;
|
|
6293
6705
|
ccyDayChange?: string | undefined;
|
|
@@ -6311,6 +6723,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
6311
6723
|
iconUrl?: string | undefined;
|
|
6312
6724
|
category?: string | undefined;
|
|
6313
6725
|
unitCurrencyValue?: string | undefined;
|
|
6726
|
+
popular?: boolean | undefined;
|
|
6727
|
+
tradable?: boolean | undefined;
|
|
6314
6728
|
pricingId?: number | undefined;
|
|
6315
6729
|
ethDayChange?: string | undefined;
|
|
6316
6730
|
ccyDayChange?: string | undefined;
|
|
@@ -6357,6 +6771,8 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
|
|
|
6357
6771
|
iconUrl?: string | undefined;
|
|
6358
6772
|
category?: string | undefined;
|
|
6359
6773
|
unitCurrencyValue?: string | undefined;
|
|
6774
|
+
popular?: boolean | undefined;
|
|
6775
|
+
tradable?: boolean | undefined;
|
|
6360
6776
|
pricingId?: number | undefined;
|
|
6361
6777
|
ethDayChange?: string | undefined;
|
|
6362
6778
|
ccyDayChange?: string | undefined;
|
|
@@ -6407,6 +6823,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
6407
6823
|
category: z.ZodOptional<z.ZodString>;
|
|
6408
6824
|
dappId: z.ZodOptional<z.ZodString>;
|
|
6409
6825
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
6826
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
6827
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
6410
6828
|
}>, {
|
|
6411
6829
|
currencyValue: z.ZodString;
|
|
6412
6830
|
currencySymbol: z.ZodOptional<z.ZodString>;
|
|
@@ -6425,6 +6843,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
6425
6843
|
category: z.ZodOptional<z.ZodString>;
|
|
6426
6844
|
dappId: z.ZodOptional<z.ZodString>;
|
|
6427
6845
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
6846
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
6847
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
6428
6848
|
balance: z.ZodString;
|
|
6429
6849
|
}>, {
|
|
6430
6850
|
accruedFees: z.ZodString;
|
|
@@ -6451,6 +6871,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
6451
6871
|
iconUrl?: string | undefined;
|
|
6452
6872
|
category?: string | undefined;
|
|
6453
6873
|
unitCurrencyValue?: string | undefined;
|
|
6874
|
+
popular?: boolean | undefined;
|
|
6875
|
+
tradable?: boolean | undefined;
|
|
6454
6876
|
pricingId?: number | undefined;
|
|
6455
6877
|
ethDayChange?: string | undefined;
|
|
6456
6878
|
ccyDayChange?: string | undefined;
|
|
@@ -6474,6 +6896,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
6474
6896
|
iconUrl?: string | undefined;
|
|
6475
6897
|
category?: string | undefined;
|
|
6476
6898
|
unitCurrencyValue?: string | undefined;
|
|
6899
|
+
popular?: boolean | undefined;
|
|
6900
|
+
tradable?: boolean | undefined;
|
|
6477
6901
|
pricingId?: number | undefined;
|
|
6478
6902
|
ethDayChange?: string | undefined;
|
|
6479
6903
|
ccyDayChange?: string | undefined;
|
|
@@ -6492,6 +6916,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
6492
6916
|
category: z.ZodOptional<z.ZodString>;
|
|
6493
6917
|
dappId: z.ZodOptional<z.ZodString>;
|
|
6494
6918
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
6919
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
6920
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
6495
6921
|
}>, {
|
|
6496
6922
|
currencyValue: z.ZodString;
|
|
6497
6923
|
currencySymbol: z.ZodOptional<z.ZodString>;
|
|
@@ -6510,6 +6936,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
6510
6936
|
category: z.ZodOptional<z.ZodString>;
|
|
6511
6937
|
dappId: z.ZodOptional<z.ZodString>;
|
|
6512
6938
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
6939
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
6940
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
6513
6941
|
balance: z.ZodString;
|
|
6514
6942
|
}>, {
|
|
6515
6943
|
accruedFees: z.ZodString;
|
|
@@ -6536,6 +6964,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
6536
6964
|
iconUrl?: string | undefined;
|
|
6537
6965
|
category?: string | undefined;
|
|
6538
6966
|
unitCurrencyValue?: string | undefined;
|
|
6967
|
+
popular?: boolean | undefined;
|
|
6968
|
+
tradable?: boolean | undefined;
|
|
6539
6969
|
pricingId?: number | undefined;
|
|
6540
6970
|
ethDayChange?: string | undefined;
|
|
6541
6971
|
ccyDayChange?: string | undefined;
|
|
@@ -6559,6 +6989,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
6559
6989
|
iconUrl?: string | undefined;
|
|
6560
6990
|
category?: string | undefined;
|
|
6561
6991
|
unitCurrencyValue?: string | undefined;
|
|
6992
|
+
popular?: boolean | undefined;
|
|
6993
|
+
tradable?: boolean | undefined;
|
|
6562
6994
|
pricingId?: number | undefined;
|
|
6563
6995
|
ethDayChange?: string | undefined;
|
|
6564
6996
|
ccyDayChange?: string | undefined;
|
|
@@ -6586,6 +7018,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
6586
7018
|
iconUrl?: string | undefined;
|
|
6587
7019
|
category?: string | undefined;
|
|
6588
7020
|
unitCurrencyValue?: string | undefined;
|
|
7021
|
+
popular?: boolean | undefined;
|
|
7022
|
+
tradable?: boolean | undefined;
|
|
6589
7023
|
pricingId?: number | undefined;
|
|
6590
7024
|
ethDayChange?: string | undefined;
|
|
6591
7025
|
ccyDayChange?: string | undefined;
|
|
@@ -6610,6 +7044,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
6610
7044
|
iconUrl?: string | undefined;
|
|
6611
7045
|
category?: string | undefined;
|
|
6612
7046
|
unitCurrencyValue?: string | undefined;
|
|
7047
|
+
popular?: boolean | undefined;
|
|
7048
|
+
tradable?: boolean | undefined;
|
|
6613
7049
|
pricingId?: number | undefined;
|
|
6614
7050
|
ethDayChange?: string | undefined;
|
|
6615
7051
|
ccyDayChange?: string | undefined;
|
|
@@ -6641,6 +7077,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
6641
7077
|
iconUrl?: string | undefined;
|
|
6642
7078
|
category?: string | undefined;
|
|
6643
7079
|
unitCurrencyValue?: string | undefined;
|
|
7080
|
+
popular?: boolean | undefined;
|
|
7081
|
+
tradable?: boolean | undefined;
|
|
6644
7082
|
pricingId?: number | undefined;
|
|
6645
7083
|
ethDayChange?: string | undefined;
|
|
6646
7084
|
ccyDayChange?: string | undefined;
|
|
@@ -6665,6 +7103,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
6665
7103
|
iconUrl?: string | undefined;
|
|
6666
7104
|
category?: string | undefined;
|
|
6667
7105
|
unitCurrencyValue?: string | undefined;
|
|
7106
|
+
popular?: boolean | undefined;
|
|
7107
|
+
tradable?: boolean | undefined;
|
|
6668
7108
|
pricingId?: number | undefined;
|
|
6669
7109
|
ethDayChange?: string | undefined;
|
|
6670
7110
|
ccyDayChange?: string | undefined;
|
|
@@ -6723,8 +7163,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
6723
7163
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
6724
7164
|
}, "strip", z.ZodTypeAny, {
|
|
6725
7165
|
symbol: string;
|
|
6726
|
-
name: string;
|
|
6727
7166
|
address: `0x${string}`;
|
|
7167
|
+
name: string;
|
|
6728
7168
|
decimals: number;
|
|
6729
7169
|
id: number;
|
|
6730
7170
|
category: "tokens" | "currencies" | "savings";
|
|
@@ -6746,8 +7186,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
6746
7186
|
tags?: string[] | undefined;
|
|
6747
7187
|
}, {
|
|
6748
7188
|
symbol: string;
|
|
6749
|
-
name: string;
|
|
6750
7189
|
address: string;
|
|
7190
|
+
name: string;
|
|
6751
7191
|
decimals: number;
|
|
6752
7192
|
id: number;
|
|
6753
7193
|
category: "tokens" | "currencies" | "savings";
|
|
@@ -6781,6 +7221,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
6781
7221
|
category: z.ZodOptional<z.ZodString>;
|
|
6782
7222
|
dappId: z.ZodOptional<z.ZodString>;
|
|
6783
7223
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
7224
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
7225
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
6784
7226
|
}>, {
|
|
6785
7227
|
currencyValue: z.ZodString;
|
|
6786
7228
|
currencySymbol: z.ZodOptional<z.ZodString>;
|
|
@@ -6799,6 +7241,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
6799
7241
|
category: z.ZodOptional<z.ZodString>;
|
|
6800
7242
|
dappId: z.ZodOptional<z.ZodString>;
|
|
6801
7243
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
7244
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
7245
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
6802
7246
|
balance: z.ZodString;
|
|
6803
7247
|
}>, "strip", z.ZodTypeAny, {
|
|
6804
7248
|
address: `0x${string}`;
|
|
@@ -6814,6 +7258,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
6814
7258
|
iconUrl?: string | undefined;
|
|
6815
7259
|
category?: string | undefined;
|
|
6816
7260
|
unitCurrencyValue?: string | undefined;
|
|
7261
|
+
popular?: boolean | undefined;
|
|
7262
|
+
tradable?: boolean | undefined;
|
|
6817
7263
|
pricingId?: number | undefined;
|
|
6818
7264
|
ethDayChange?: string | undefined;
|
|
6819
7265
|
ccyDayChange?: string | undefined;
|
|
@@ -6832,6 +7278,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
6832
7278
|
iconUrl?: string | undefined;
|
|
6833
7279
|
category?: string | undefined;
|
|
6834
7280
|
unitCurrencyValue?: string | undefined;
|
|
7281
|
+
popular?: boolean | undefined;
|
|
7282
|
+
tradable?: boolean | undefined;
|
|
6835
7283
|
pricingId?: number | undefined;
|
|
6836
7284
|
ethDayChange?: string | undefined;
|
|
6837
7285
|
ccyDayChange?: string | undefined;
|
|
@@ -6853,8 +7301,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
6853
7301
|
group?: string | undefined;
|
|
6854
7302
|
positionToken?: {
|
|
6855
7303
|
symbol: string;
|
|
6856
|
-
name: string;
|
|
6857
7304
|
address: `0x${string}`;
|
|
7305
|
+
name: string;
|
|
6858
7306
|
decimals: number;
|
|
6859
7307
|
id: number;
|
|
6860
7308
|
category: "tokens" | "currencies" | "savings";
|
|
@@ -6889,6 +7337,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
6889
7337
|
iconUrl?: string | undefined;
|
|
6890
7338
|
category?: string | undefined;
|
|
6891
7339
|
unitCurrencyValue?: string | undefined;
|
|
7340
|
+
popular?: boolean | undefined;
|
|
7341
|
+
tradable?: boolean | undefined;
|
|
6892
7342
|
pricingId?: number | undefined;
|
|
6893
7343
|
ethDayChange?: string | undefined;
|
|
6894
7344
|
ccyDayChange?: string | undefined;
|
|
@@ -6909,8 +7359,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
6909
7359
|
group?: string | undefined;
|
|
6910
7360
|
positionToken?: {
|
|
6911
7361
|
symbol: string;
|
|
6912
|
-
name: string;
|
|
6913
7362
|
address: string;
|
|
7363
|
+
name: string;
|
|
6914
7364
|
decimals: number;
|
|
6915
7365
|
id: number;
|
|
6916
7366
|
category: "tokens" | "currencies" | "savings";
|
|
@@ -6945,6 +7395,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
6945
7395
|
iconUrl?: string | undefined;
|
|
6946
7396
|
category?: string | undefined;
|
|
6947
7397
|
unitCurrencyValue?: string | undefined;
|
|
7398
|
+
popular?: boolean | undefined;
|
|
7399
|
+
tradable?: boolean | undefined;
|
|
6948
7400
|
pricingId?: number | undefined;
|
|
6949
7401
|
ethDayChange?: string | undefined;
|
|
6950
7402
|
ccyDayChange?: string | undefined;
|
|
@@ -6969,6 +7421,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
6969
7421
|
category: z.ZodOptional<z.ZodString>;
|
|
6970
7422
|
dappId: z.ZodOptional<z.ZodString>;
|
|
6971
7423
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
7424
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
7425
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
6972
7426
|
}>, {
|
|
6973
7427
|
currencyValue: z.ZodString;
|
|
6974
7428
|
currencySymbol: z.ZodOptional<z.ZodString>;
|
|
@@ -6987,6 +7441,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
6987
7441
|
category: z.ZodOptional<z.ZodString>;
|
|
6988
7442
|
dappId: z.ZodOptional<z.ZodString>;
|
|
6989
7443
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
7444
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
7445
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
6990
7446
|
balance: z.ZodString;
|
|
6991
7447
|
}>, "strip", z.ZodTypeAny, {
|
|
6992
7448
|
address: `0x${string}`;
|
|
@@ -7002,6 +7458,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7002
7458
|
iconUrl?: string | undefined;
|
|
7003
7459
|
category?: string | undefined;
|
|
7004
7460
|
unitCurrencyValue?: string | undefined;
|
|
7461
|
+
popular?: boolean | undefined;
|
|
7462
|
+
tradable?: boolean | undefined;
|
|
7005
7463
|
pricingId?: number | undefined;
|
|
7006
7464
|
ethDayChange?: string | undefined;
|
|
7007
7465
|
ccyDayChange?: string | undefined;
|
|
@@ -7020,6 +7478,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7020
7478
|
iconUrl?: string | undefined;
|
|
7021
7479
|
category?: string | undefined;
|
|
7022
7480
|
unitCurrencyValue?: string | undefined;
|
|
7481
|
+
popular?: boolean | undefined;
|
|
7482
|
+
tradable?: boolean | undefined;
|
|
7023
7483
|
pricingId?: number | undefined;
|
|
7024
7484
|
ethDayChange?: string | undefined;
|
|
7025
7485
|
ccyDayChange?: string | undefined;
|
|
@@ -7047,6 +7507,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7047
7507
|
iconUrl?: string | undefined;
|
|
7048
7508
|
category?: string | undefined;
|
|
7049
7509
|
unitCurrencyValue?: string | undefined;
|
|
7510
|
+
popular?: boolean | undefined;
|
|
7511
|
+
tradable?: boolean | undefined;
|
|
7050
7512
|
pricingId?: number | undefined;
|
|
7051
7513
|
ethDayChange?: string | undefined;
|
|
7052
7514
|
ccyDayChange?: string | undefined;
|
|
@@ -7072,6 +7534,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7072
7534
|
iconUrl?: string | undefined;
|
|
7073
7535
|
category?: string | undefined;
|
|
7074
7536
|
unitCurrencyValue?: string | undefined;
|
|
7537
|
+
popular?: boolean | undefined;
|
|
7538
|
+
tradable?: boolean | undefined;
|
|
7075
7539
|
pricingId?: number | undefined;
|
|
7076
7540
|
ethDayChange?: string | undefined;
|
|
7077
7541
|
ccyDayChange?: string | undefined;
|
|
@@ -7149,6 +7613,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7149
7613
|
category: z.ZodOptional<z.ZodString>;
|
|
7150
7614
|
dappId: z.ZodOptional<z.ZodString>;
|
|
7151
7615
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
7616
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
7617
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
7152
7618
|
}>, {
|
|
7153
7619
|
currencyValue: z.ZodString;
|
|
7154
7620
|
currencySymbol: z.ZodOptional<z.ZodString>;
|
|
@@ -7167,6 +7633,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7167
7633
|
category: z.ZodOptional<z.ZodString>;
|
|
7168
7634
|
dappId: z.ZodOptional<z.ZodString>;
|
|
7169
7635
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
7636
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
7637
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
7170
7638
|
balance: z.ZodString;
|
|
7171
7639
|
}>, "strip", z.ZodTypeAny, {
|
|
7172
7640
|
address: `0x${string}`;
|
|
@@ -7182,6 +7650,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7182
7650
|
iconUrl?: string | undefined;
|
|
7183
7651
|
category?: string | undefined;
|
|
7184
7652
|
unitCurrencyValue?: string | undefined;
|
|
7653
|
+
popular?: boolean | undefined;
|
|
7654
|
+
tradable?: boolean | undefined;
|
|
7185
7655
|
pricingId?: number | undefined;
|
|
7186
7656
|
ethDayChange?: string | undefined;
|
|
7187
7657
|
ccyDayChange?: string | undefined;
|
|
@@ -7200,6 +7670,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7200
7670
|
iconUrl?: string | undefined;
|
|
7201
7671
|
category?: string | undefined;
|
|
7202
7672
|
unitCurrencyValue?: string | undefined;
|
|
7673
|
+
popular?: boolean | undefined;
|
|
7674
|
+
tradable?: boolean | undefined;
|
|
7203
7675
|
pricingId?: number | undefined;
|
|
7204
7676
|
ethDayChange?: string | undefined;
|
|
7205
7677
|
ccyDayChange?: string | undefined;
|
|
@@ -7239,6 +7711,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7239
7711
|
iconUrl?: string | undefined;
|
|
7240
7712
|
category?: string | undefined;
|
|
7241
7713
|
unitCurrencyValue?: string | undefined;
|
|
7714
|
+
popular?: boolean | undefined;
|
|
7715
|
+
tradable?: boolean | undefined;
|
|
7242
7716
|
pricingId?: number | undefined;
|
|
7243
7717
|
ethDayChange?: string | undefined;
|
|
7244
7718
|
ccyDayChange?: string | undefined;
|
|
@@ -7283,6 +7757,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7283
7757
|
iconUrl?: string | undefined;
|
|
7284
7758
|
category?: string | undefined;
|
|
7285
7759
|
unitCurrencyValue?: string | undefined;
|
|
7760
|
+
popular?: boolean | undefined;
|
|
7761
|
+
tradable?: boolean | undefined;
|
|
7286
7762
|
pricingId?: number | undefined;
|
|
7287
7763
|
ethDayChange?: string | undefined;
|
|
7288
7764
|
ccyDayChange?: string | undefined;
|
|
@@ -7328,6 +7804,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7328
7804
|
category: z.ZodOptional<z.ZodString>;
|
|
7329
7805
|
dappId: z.ZodOptional<z.ZodString>;
|
|
7330
7806
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
7807
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
7808
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
7331
7809
|
}>, {
|
|
7332
7810
|
currencyValue: z.ZodString;
|
|
7333
7811
|
currencySymbol: z.ZodOptional<z.ZodString>;
|
|
@@ -7346,6 +7824,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7346
7824
|
category: z.ZodOptional<z.ZodString>;
|
|
7347
7825
|
dappId: z.ZodOptional<z.ZodString>;
|
|
7348
7826
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
7827
|
+
tradable: z.ZodOptional<z.ZodBoolean>;
|
|
7828
|
+
popular: z.ZodOptional<z.ZodBoolean>;
|
|
7349
7829
|
balance: z.ZodString;
|
|
7350
7830
|
}>, "strip", z.ZodTypeAny, {
|
|
7351
7831
|
address: `0x${string}`;
|
|
@@ -7361,6 +7841,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7361
7841
|
iconUrl?: string | undefined;
|
|
7362
7842
|
category?: string | undefined;
|
|
7363
7843
|
unitCurrencyValue?: string | undefined;
|
|
7844
|
+
popular?: boolean | undefined;
|
|
7845
|
+
tradable?: boolean | undefined;
|
|
7364
7846
|
pricingId?: number | undefined;
|
|
7365
7847
|
ethDayChange?: string | undefined;
|
|
7366
7848
|
ccyDayChange?: string | undefined;
|
|
@@ -7379,6 +7861,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7379
7861
|
iconUrl?: string | undefined;
|
|
7380
7862
|
category?: string | undefined;
|
|
7381
7863
|
unitCurrencyValue?: string | undefined;
|
|
7864
|
+
popular?: boolean | undefined;
|
|
7865
|
+
tradable?: boolean | undefined;
|
|
7382
7866
|
pricingId?: number | undefined;
|
|
7383
7867
|
ethDayChange?: string | undefined;
|
|
7384
7868
|
ccyDayChange?: string | undefined;
|
|
@@ -7404,6 +7888,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7404
7888
|
iconUrl?: string | undefined;
|
|
7405
7889
|
category?: string | undefined;
|
|
7406
7890
|
unitCurrencyValue?: string | undefined;
|
|
7891
|
+
popular?: boolean | undefined;
|
|
7892
|
+
tradable?: boolean | undefined;
|
|
7407
7893
|
pricingId?: number | undefined;
|
|
7408
7894
|
ethDayChange?: string | undefined;
|
|
7409
7895
|
ccyDayChange?: string | undefined;
|
|
@@ -7434,6 +7920,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7434
7920
|
iconUrl?: string | undefined;
|
|
7435
7921
|
category?: string | undefined;
|
|
7436
7922
|
unitCurrencyValue?: string | undefined;
|
|
7923
|
+
popular?: boolean | undefined;
|
|
7924
|
+
tradable?: boolean | undefined;
|
|
7437
7925
|
pricingId?: number | undefined;
|
|
7438
7926
|
ethDayChange?: string | undefined;
|
|
7439
7927
|
ccyDayChange?: string | undefined;
|
|
@@ -7465,8 +7953,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7465
7953
|
}>>>;
|
|
7466
7954
|
accountAddress: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
|
|
7467
7955
|
}, "strip", z.ZodTypeAny, {
|
|
7468
|
-
name: string;
|
|
7469
7956
|
type: "staking" | "strkDelegatedStaking" | "concentratedLiquidityPosition" | "collateralizedDebtPosition" | "delegatedTokens";
|
|
7957
|
+
name: string;
|
|
7470
7958
|
accountAddress: `0x${string}`;
|
|
7471
7959
|
positions: ({
|
|
7472
7960
|
currencyValue: string;
|
|
@@ -7490,6 +7978,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7490
7978
|
iconUrl?: string | undefined;
|
|
7491
7979
|
category?: string | undefined;
|
|
7492
7980
|
unitCurrencyValue?: string | undefined;
|
|
7981
|
+
popular?: boolean | undefined;
|
|
7982
|
+
tradable?: boolean | undefined;
|
|
7493
7983
|
pricingId?: number | undefined;
|
|
7494
7984
|
ethDayChange?: string | undefined;
|
|
7495
7985
|
ccyDayChange?: string | undefined;
|
|
@@ -7514,6 +8004,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7514
8004
|
iconUrl?: string | undefined;
|
|
7515
8005
|
category?: string | undefined;
|
|
7516
8006
|
unitCurrencyValue?: string | undefined;
|
|
8007
|
+
popular?: boolean | undefined;
|
|
8008
|
+
tradable?: boolean | undefined;
|
|
7517
8009
|
pricingId?: number | undefined;
|
|
7518
8010
|
ethDayChange?: string | undefined;
|
|
7519
8011
|
ccyDayChange?: string | undefined;
|
|
@@ -7538,8 +8030,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7538
8030
|
group?: string | undefined;
|
|
7539
8031
|
positionToken?: {
|
|
7540
8032
|
symbol: string;
|
|
7541
|
-
name: string;
|
|
7542
8033
|
address: `0x${string}`;
|
|
8034
|
+
name: string;
|
|
7543
8035
|
decimals: number;
|
|
7544
8036
|
id: number;
|
|
7545
8037
|
category: "tokens" | "currencies" | "savings";
|
|
@@ -7574,6 +8066,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7574
8066
|
iconUrl?: string | undefined;
|
|
7575
8067
|
category?: string | undefined;
|
|
7576
8068
|
unitCurrencyValue?: string | undefined;
|
|
8069
|
+
popular?: boolean | undefined;
|
|
8070
|
+
tradable?: boolean | undefined;
|
|
7577
8071
|
pricingId?: number | undefined;
|
|
7578
8072
|
ethDayChange?: string | undefined;
|
|
7579
8073
|
ccyDayChange?: string | undefined;
|
|
@@ -7600,6 +8094,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7600
8094
|
iconUrl?: string | undefined;
|
|
7601
8095
|
category?: string | undefined;
|
|
7602
8096
|
unitCurrencyValue?: string | undefined;
|
|
8097
|
+
popular?: boolean | undefined;
|
|
8098
|
+
tradable?: boolean | undefined;
|
|
7603
8099
|
pricingId?: number | undefined;
|
|
7604
8100
|
ethDayChange?: string | undefined;
|
|
7605
8101
|
ccyDayChange?: string | undefined;
|
|
@@ -7624,6 +8120,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7624
8120
|
iconUrl?: string | undefined;
|
|
7625
8121
|
category?: string | undefined;
|
|
7626
8122
|
unitCurrencyValue?: string | undefined;
|
|
8123
|
+
popular?: boolean | undefined;
|
|
8124
|
+
tradable?: boolean | undefined;
|
|
7627
8125
|
pricingId?: number | undefined;
|
|
7628
8126
|
ethDayChange?: string | undefined;
|
|
7629
8127
|
ccyDayChange?: string | undefined;
|
|
@@ -7670,6 +8168,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7670
8168
|
iconUrl?: string | undefined;
|
|
7671
8169
|
category?: string | undefined;
|
|
7672
8170
|
unitCurrencyValue?: string | undefined;
|
|
8171
|
+
popular?: boolean | undefined;
|
|
8172
|
+
tradable?: boolean | undefined;
|
|
7673
8173
|
pricingId?: number | undefined;
|
|
7674
8174
|
ethDayChange?: string | undefined;
|
|
7675
8175
|
ccyDayChange?: string | undefined;
|
|
@@ -7691,8 +8191,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7691
8191
|
healthRatio?: string | undefined;
|
|
7692
8192
|
}> | undefined;
|
|
7693
8193
|
}, {
|
|
7694
|
-
name: string;
|
|
7695
8194
|
type: "staking" | "strkDelegatedStaking" | "concentratedLiquidityPosition" | "collateralizedDebtPosition" | "delegatedTokens";
|
|
8195
|
+
name: string;
|
|
7696
8196
|
accountAddress: string;
|
|
7697
8197
|
positions: ({
|
|
7698
8198
|
poolFeePercentage: string;
|
|
@@ -7715,6 +8215,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7715
8215
|
iconUrl?: string | undefined;
|
|
7716
8216
|
category?: string | undefined;
|
|
7717
8217
|
unitCurrencyValue?: string | undefined;
|
|
8218
|
+
popular?: boolean | undefined;
|
|
8219
|
+
tradable?: boolean | undefined;
|
|
7718
8220
|
pricingId?: number | undefined;
|
|
7719
8221
|
ethDayChange?: string | undefined;
|
|
7720
8222
|
ccyDayChange?: string | undefined;
|
|
@@ -7739,6 +8241,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7739
8241
|
iconUrl?: string | undefined;
|
|
7740
8242
|
category?: string | undefined;
|
|
7741
8243
|
unitCurrencyValue?: string | undefined;
|
|
8244
|
+
popular?: boolean | undefined;
|
|
8245
|
+
tradable?: boolean | undefined;
|
|
7742
8246
|
pricingId?: number | undefined;
|
|
7743
8247
|
ethDayChange?: string | undefined;
|
|
7744
8248
|
ccyDayChange?: string | undefined;
|
|
@@ -7764,8 +8268,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7764
8268
|
group?: string | undefined;
|
|
7765
8269
|
positionToken?: {
|
|
7766
8270
|
symbol: string;
|
|
7767
|
-
name: string;
|
|
7768
8271
|
address: string;
|
|
8272
|
+
name: string;
|
|
7769
8273
|
decimals: number;
|
|
7770
8274
|
id: number;
|
|
7771
8275
|
category: "tokens" | "currencies" | "savings";
|
|
@@ -7800,6 +8304,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7800
8304
|
iconUrl?: string | undefined;
|
|
7801
8305
|
category?: string | undefined;
|
|
7802
8306
|
unitCurrencyValue?: string | undefined;
|
|
8307
|
+
popular?: boolean | undefined;
|
|
8308
|
+
tradable?: boolean | undefined;
|
|
7803
8309
|
pricingId?: number | undefined;
|
|
7804
8310
|
ethDayChange?: string | undefined;
|
|
7805
8311
|
ccyDayChange?: string | undefined;
|
|
@@ -7826,6 +8332,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7826
8332
|
iconUrl?: string | undefined;
|
|
7827
8333
|
category?: string | undefined;
|
|
7828
8334
|
unitCurrencyValue?: string | undefined;
|
|
8335
|
+
popular?: boolean | undefined;
|
|
8336
|
+
tradable?: boolean | undefined;
|
|
7829
8337
|
pricingId?: number | undefined;
|
|
7830
8338
|
ethDayChange?: string | undefined;
|
|
7831
8339
|
ccyDayChange?: string | undefined;
|
|
@@ -7849,6 +8357,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7849
8357
|
iconUrl?: string | undefined;
|
|
7850
8358
|
category?: string | undefined;
|
|
7851
8359
|
unitCurrencyValue?: string | undefined;
|
|
8360
|
+
popular?: boolean | undefined;
|
|
8361
|
+
tradable?: boolean | undefined;
|
|
7852
8362
|
pricingId?: number | undefined;
|
|
7853
8363
|
ethDayChange?: string | undefined;
|
|
7854
8364
|
ccyDayChange?: string | undefined;
|
|
@@ -7895,6 +8405,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7895
8405
|
iconUrl?: string | undefined;
|
|
7896
8406
|
category?: string | undefined;
|
|
7897
8407
|
unitCurrencyValue?: string | undefined;
|
|
8408
|
+
popular?: boolean | undefined;
|
|
8409
|
+
tradable?: boolean | undefined;
|
|
7898
8410
|
pricingId?: number | undefined;
|
|
7899
8411
|
ethDayChange?: string | undefined;
|
|
7900
8412
|
ccyDayChange?: string | undefined;
|
|
@@ -7920,8 +8432,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7920
8432
|
}, "strip", z.ZodTypeAny, {
|
|
7921
8433
|
dappId: string;
|
|
7922
8434
|
products: {
|
|
7923
|
-
name: string;
|
|
7924
8435
|
type: "staking" | "strkDelegatedStaking" | "concentratedLiquidityPosition" | "collateralizedDebtPosition" | "delegatedTokens";
|
|
8436
|
+
name: string;
|
|
7925
8437
|
accountAddress: `0x${string}`;
|
|
7926
8438
|
positions: ({
|
|
7927
8439
|
currencyValue: string;
|
|
@@ -7945,6 +8457,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7945
8457
|
iconUrl?: string | undefined;
|
|
7946
8458
|
category?: string | undefined;
|
|
7947
8459
|
unitCurrencyValue?: string | undefined;
|
|
8460
|
+
popular?: boolean | undefined;
|
|
8461
|
+
tradable?: boolean | undefined;
|
|
7948
8462
|
pricingId?: number | undefined;
|
|
7949
8463
|
ethDayChange?: string | undefined;
|
|
7950
8464
|
ccyDayChange?: string | undefined;
|
|
@@ -7969,6 +8483,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7969
8483
|
iconUrl?: string | undefined;
|
|
7970
8484
|
category?: string | undefined;
|
|
7971
8485
|
unitCurrencyValue?: string | undefined;
|
|
8486
|
+
popular?: boolean | undefined;
|
|
8487
|
+
tradable?: boolean | undefined;
|
|
7972
8488
|
pricingId?: number | undefined;
|
|
7973
8489
|
ethDayChange?: string | undefined;
|
|
7974
8490
|
ccyDayChange?: string | undefined;
|
|
@@ -7993,8 +8509,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
7993
8509
|
group?: string | undefined;
|
|
7994
8510
|
positionToken?: {
|
|
7995
8511
|
symbol: string;
|
|
7996
|
-
name: string;
|
|
7997
8512
|
address: `0x${string}`;
|
|
8513
|
+
name: string;
|
|
7998
8514
|
decimals: number;
|
|
7999
8515
|
id: number;
|
|
8000
8516
|
category: "tokens" | "currencies" | "savings";
|
|
@@ -8029,6 +8545,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
8029
8545
|
iconUrl?: string | undefined;
|
|
8030
8546
|
category?: string | undefined;
|
|
8031
8547
|
unitCurrencyValue?: string | undefined;
|
|
8548
|
+
popular?: boolean | undefined;
|
|
8549
|
+
tradable?: boolean | undefined;
|
|
8032
8550
|
pricingId?: number | undefined;
|
|
8033
8551
|
ethDayChange?: string | undefined;
|
|
8034
8552
|
ccyDayChange?: string | undefined;
|
|
@@ -8055,6 +8573,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
8055
8573
|
iconUrl?: string | undefined;
|
|
8056
8574
|
category?: string | undefined;
|
|
8057
8575
|
unitCurrencyValue?: string | undefined;
|
|
8576
|
+
popular?: boolean | undefined;
|
|
8577
|
+
tradable?: boolean | undefined;
|
|
8058
8578
|
pricingId?: number | undefined;
|
|
8059
8579
|
ethDayChange?: string | undefined;
|
|
8060
8580
|
ccyDayChange?: string | undefined;
|
|
@@ -8079,6 +8599,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
8079
8599
|
iconUrl?: string | undefined;
|
|
8080
8600
|
category?: string | undefined;
|
|
8081
8601
|
unitCurrencyValue?: string | undefined;
|
|
8602
|
+
popular?: boolean | undefined;
|
|
8603
|
+
tradable?: boolean | undefined;
|
|
8082
8604
|
pricingId?: number | undefined;
|
|
8083
8605
|
ethDayChange?: string | undefined;
|
|
8084
8606
|
ccyDayChange?: string | undefined;
|
|
@@ -8125,6 +8647,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
8125
8647
|
iconUrl?: string | undefined;
|
|
8126
8648
|
category?: string | undefined;
|
|
8127
8649
|
unitCurrencyValue?: string | undefined;
|
|
8650
|
+
popular?: boolean | undefined;
|
|
8651
|
+
tradable?: boolean | undefined;
|
|
8128
8652
|
pricingId?: number | undefined;
|
|
8129
8653
|
ethDayChange?: string | undefined;
|
|
8130
8654
|
ccyDayChange?: string | undefined;
|
|
@@ -8149,8 +8673,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
8149
8673
|
}, {
|
|
8150
8674
|
dappId: string;
|
|
8151
8675
|
products: {
|
|
8152
|
-
name: string;
|
|
8153
8676
|
type: "staking" | "strkDelegatedStaking" | "concentratedLiquidityPosition" | "collateralizedDebtPosition" | "delegatedTokens";
|
|
8677
|
+
name: string;
|
|
8154
8678
|
accountAddress: string;
|
|
8155
8679
|
positions: ({
|
|
8156
8680
|
poolFeePercentage: string;
|
|
@@ -8173,6 +8697,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
8173
8697
|
iconUrl?: string | undefined;
|
|
8174
8698
|
category?: string | undefined;
|
|
8175
8699
|
unitCurrencyValue?: string | undefined;
|
|
8700
|
+
popular?: boolean | undefined;
|
|
8701
|
+
tradable?: boolean | undefined;
|
|
8176
8702
|
pricingId?: number | undefined;
|
|
8177
8703
|
ethDayChange?: string | undefined;
|
|
8178
8704
|
ccyDayChange?: string | undefined;
|
|
@@ -8197,6 +8723,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
8197
8723
|
iconUrl?: string | undefined;
|
|
8198
8724
|
category?: string | undefined;
|
|
8199
8725
|
unitCurrencyValue?: string | undefined;
|
|
8726
|
+
popular?: boolean | undefined;
|
|
8727
|
+
tradable?: boolean | undefined;
|
|
8200
8728
|
pricingId?: number | undefined;
|
|
8201
8729
|
ethDayChange?: string | undefined;
|
|
8202
8730
|
ccyDayChange?: string | undefined;
|
|
@@ -8222,8 +8750,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
8222
8750
|
group?: string | undefined;
|
|
8223
8751
|
positionToken?: {
|
|
8224
8752
|
symbol: string;
|
|
8225
|
-
name: string;
|
|
8226
8753
|
address: string;
|
|
8754
|
+
name: string;
|
|
8227
8755
|
decimals: number;
|
|
8228
8756
|
id: number;
|
|
8229
8757
|
category: "tokens" | "currencies" | "savings";
|
|
@@ -8258,6 +8786,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
8258
8786
|
iconUrl?: string | undefined;
|
|
8259
8787
|
category?: string | undefined;
|
|
8260
8788
|
unitCurrencyValue?: string | undefined;
|
|
8789
|
+
popular?: boolean | undefined;
|
|
8790
|
+
tradable?: boolean | undefined;
|
|
8261
8791
|
pricingId?: number | undefined;
|
|
8262
8792
|
ethDayChange?: string | undefined;
|
|
8263
8793
|
ccyDayChange?: string | undefined;
|
|
@@ -8284,6 +8814,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
8284
8814
|
iconUrl?: string | undefined;
|
|
8285
8815
|
category?: string | undefined;
|
|
8286
8816
|
unitCurrencyValue?: string | undefined;
|
|
8817
|
+
popular?: boolean | undefined;
|
|
8818
|
+
tradable?: boolean | undefined;
|
|
8287
8819
|
pricingId?: number | undefined;
|
|
8288
8820
|
ethDayChange?: string | undefined;
|
|
8289
8821
|
ccyDayChange?: string | undefined;
|
|
@@ -8307,6 +8839,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
8307
8839
|
iconUrl?: string | undefined;
|
|
8308
8840
|
category?: string | undefined;
|
|
8309
8841
|
unitCurrencyValue?: string | undefined;
|
|
8842
|
+
popular?: boolean | undefined;
|
|
8843
|
+
tradable?: boolean | undefined;
|
|
8310
8844
|
pricingId?: number | undefined;
|
|
8311
8845
|
ethDayChange?: string | undefined;
|
|
8312
8846
|
ccyDayChange?: string | undefined;
|
|
@@ -8353,6 +8887,8 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
|
|
|
8353
8887
|
iconUrl?: string | undefined;
|
|
8354
8888
|
category?: string | undefined;
|
|
8355
8889
|
unitCurrencyValue?: string | undefined;
|
|
8890
|
+
popular?: boolean | undefined;
|
|
8891
|
+
tradable?: boolean | undefined;
|
|
8356
8892
|
pricingId?: number | undefined;
|
|
8357
8893
|
ethDayChange?: string | undefined;
|
|
8358
8894
|
ccyDayChange?: string | undefined;
|