@argent/x-shared 1.34.5 → 1.35.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.
Files changed (43) hide show
  1. package/dist/bips-CP71ZN9a.js +1 -0
  2. package/dist/bips-zBtnMbia.mjs +114 -0
  3. package/dist/chains/starknet/address.d.ts +2 -2
  4. package/dist/errors/swap.d.ts +12 -0
  5. package/dist/features/swap/index.d.ts +3 -0
  6. package/dist/features/swap/models/index.d.ts +3 -0
  7. package/dist/features/swap/models/order.model.d.ts +48 -0
  8. package/dist/features/swap/models/quote.model.d.ts +82 -0
  9. package/dist/features/swap/models/trade.model.d.ts +186 -0
  10. package/dist/features/swap/services/implementation.d.ts +14 -0
  11. package/dist/features/swap/services/index.d.ts +2 -0
  12. package/dist/features/swap/services/interface.d.ts +8 -0
  13. package/dist/features/swap/services/order.mock.d.ts +7 -0
  14. package/dist/features/swap/services/quote.mock.d.ts +29 -0
  15. package/dist/features/swap/tests/token.mock.d.ts +2 -0
  16. package/dist/features/swap/tests/trade.mock.d.ts +2 -0
  17. package/dist/features/swap/tests/walletAccount.mock.d.ts +43 -0
  18. package/dist/features/swap/utils/index.d.ts +2 -0
  19. package/dist/features/swap/utils/slippage.d.ts +16 -0
  20. package/dist/features/swap/utils/totalFee.d.ts +5 -0
  21. package/dist/index.js +2 -2
  22. package/dist/index.mjs +1326 -1407
  23. package/dist/nfts/BackendNftService.d.ts +2 -4
  24. package/dist/nfts/INFTService.d.ts +1 -1
  25. package/dist/simulation.js +1 -1
  26. package/dist/simulation.mjs +101 -100
  27. package/dist/swap.d.ts +2 -0
  28. package/dist/swap.js +1 -0
  29. package/dist/swap.mjs +183 -0
  30. package/dist/tokens/service/implementation.d.ts +3 -3
  31. package/dist/tokens/service/interface.d.ts +2 -2
  32. package/dist/tokens/service/types/defiPosition.model.d.ts +117 -0
  33. package/dist/tokens/service/types/index.d.ts +1 -0
  34. package/dist/tokens/service/types/{token.model.d.ts → webToken.model.d.ts} +27 -18
  35. package/dist/transactionVersion-CACUj2ch.mjs +793 -0
  36. package/dist/transactionVersion-CaRQ5Df4.js +1 -0
  37. package/dist/utils/bips.d.ts +7 -0
  38. package/dist/utils/index.d.ts +1 -0
  39. package/dist/webToken.model-Cl4dvcmj.mjs +1881 -0
  40. package/dist/webToken.model-Dsd8Rd3e.js +1 -0
  41. package/package.json +9 -2
  42. package/dist/transactionVersion-CL9JUEKt.js +0 -1
  43. package/dist/transactionVersion-CpEa4gsg.mjs +0 -2661
@@ -14,6 +14,7 @@ declare const defiPositionTokenSchema: z.ZodObject<z.objectUtil.extendShape<z.ob
14
14
  brandColor: z.ZodOptional<z.ZodString>;
15
15
  }>, {
16
16
  currencyValue: z.ZodString;
17
+ currencySymbol: z.ZodOptional<z.ZodString>;
17
18
  ccyDayChange: z.ZodOptional<z.ZodString>;
18
19
  ethDayChange: z.ZodOptional<z.ZodString>;
19
20
  unitCurrencyValue: z.ZodOptional<z.ZodString>;
@@ -58,6 +59,7 @@ declare const defiPositionTokenSchema: z.ZodObject<z.objectUtil.extendShape<z.ob
58
59
  pricingId?: number | undefined;
59
60
  ethDayChange?: string | undefined;
60
61
  ccyDayChange?: string | undefined;
62
+ currencySymbol?: string | undefined;
61
63
  }, {
62
64
  address: string;
63
65
  networkId: string;
@@ -80,6 +82,7 @@ declare const defiPositionTokenSchema: z.ZodObject<z.objectUtil.extendShape<z.ob
80
82
  pricingId?: number | undefined;
81
83
  ethDayChange?: string | undefined;
82
84
  ccyDayChange?: string | undefined;
85
+ currencySymbol?: string | undefined;
83
86
  }>;
84
87
  export declare const concentratedLiquidityPositionSchema: z.ZodObject<z.objectUtil.extendShape<{
85
88
  address: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
@@ -105,6 +108,7 @@ export declare const concentratedLiquidityPositionSchema: z.ZodObject<z.objectUt
105
108
  brandColor: z.ZodOptional<z.ZodString>;
106
109
  }>, {
107
110
  currencyValue: z.ZodString;
111
+ currencySymbol: z.ZodOptional<z.ZodString>;
108
112
  ccyDayChange: z.ZodOptional<z.ZodString>;
109
113
  ethDayChange: z.ZodOptional<z.ZodString>;
110
114
  unitCurrencyValue: z.ZodOptional<z.ZodString>;
@@ -149,6 +153,7 @@ export declare const concentratedLiquidityPositionSchema: z.ZodObject<z.objectUt
149
153
  pricingId?: number | undefined;
150
154
  ethDayChange?: string | undefined;
151
155
  ccyDayChange?: string | undefined;
156
+ currencySymbol?: string | undefined;
152
157
  }, {
153
158
  address: string;
154
159
  networkId: string;
@@ -171,6 +176,7 @@ export declare const concentratedLiquidityPositionSchema: z.ZodObject<z.objectUt
171
176
  pricingId?: number | undefined;
172
177
  ethDayChange?: string | undefined;
173
178
  ccyDayChange?: string | undefined;
179
+ currencySymbol?: string | undefined;
174
180
  }>;
175
181
  token1: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
176
182
  address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
@@ -187,6 +193,7 @@ export declare const concentratedLiquidityPositionSchema: z.ZodObject<z.objectUt
187
193
  brandColor: z.ZodOptional<z.ZodString>;
188
194
  }>, {
189
195
  currencyValue: z.ZodString;
196
+ currencySymbol: z.ZodOptional<z.ZodString>;
190
197
  ccyDayChange: z.ZodOptional<z.ZodString>;
191
198
  ethDayChange: z.ZodOptional<z.ZodString>;
192
199
  unitCurrencyValue: z.ZodOptional<z.ZodString>;
@@ -231,6 +238,7 @@ export declare const concentratedLiquidityPositionSchema: z.ZodObject<z.objectUt
231
238
  pricingId?: number | undefined;
232
239
  ethDayChange?: string | undefined;
233
240
  ccyDayChange?: string | undefined;
241
+ currencySymbol?: string | undefined;
234
242
  }, {
235
243
  address: string;
236
244
  networkId: string;
@@ -253,6 +261,7 @@ export declare const concentratedLiquidityPositionSchema: z.ZodObject<z.objectUt
253
261
  pricingId?: number | undefined;
254
262
  ethDayChange?: string | undefined;
255
263
  ccyDayChange?: string | undefined;
264
+ currencySymbol?: string | undefined;
256
265
  }>;
257
266
  }>, "strip", z.ZodTypeAny, {
258
267
  poolFeePercentage: string;
@@ -278,6 +287,7 @@ export declare const concentratedLiquidityPositionSchema: z.ZodObject<z.objectUt
278
287
  pricingId?: number | undefined;
279
288
  ethDayChange?: string | undefined;
280
289
  ccyDayChange?: string | undefined;
290
+ currencySymbol?: string | undefined;
281
291
  };
282
292
  token1: {
283
293
  address: `0x${string}`;
@@ -301,6 +311,7 @@ export declare const concentratedLiquidityPositionSchema: z.ZodObject<z.objectUt
301
311
  pricingId?: number | undefined;
302
312
  ethDayChange?: string | undefined;
303
313
  ccyDayChange?: string | undefined;
314
+ currencySymbol?: string | undefined;
304
315
  };
305
316
  currencyValue: string;
306
317
  address?: `0x${string}` | undefined;
@@ -332,6 +343,7 @@ export declare const concentratedLiquidityPositionSchema: z.ZodObject<z.objectUt
332
343
  pricingId?: number | undefined;
333
344
  ethDayChange?: string | undefined;
334
345
  ccyDayChange?: string | undefined;
346
+ currencySymbol?: string | undefined;
335
347
  };
336
348
  token1: {
337
349
  address: string;
@@ -355,6 +367,7 @@ export declare const concentratedLiquidityPositionSchema: z.ZodObject<z.objectUt
355
367
  pricingId?: number | undefined;
356
368
  ethDayChange?: string | undefined;
357
369
  ccyDayChange?: string | undefined;
370
+ currencySymbol?: string | undefined;
358
371
  };
359
372
  address?: string | undefined;
360
373
  tokenId?: string | undefined;
@@ -387,6 +400,7 @@ export declare const concentratedLiquidityPositionsSchema: z.ZodArray<z.ZodObjec
387
400
  brandColor: z.ZodOptional<z.ZodString>;
388
401
  }>, {
389
402
  currencyValue: z.ZodString;
403
+ currencySymbol: z.ZodOptional<z.ZodString>;
390
404
  ccyDayChange: z.ZodOptional<z.ZodString>;
391
405
  ethDayChange: z.ZodOptional<z.ZodString>;
392
406
  unitCurrencyValue: z.ZodOptional<z.ZodString>;
@@ -431,6 +445,7 @@ export declare const concentratedLiquidityPositionsSchema: z.ZodArray<z.ZodObjec
431
445
  pricingId?: number | undefined;
432
446
  ethDayChange?: string | undefined;
433
447
  ccyDayChange?: string | undefined;
448
+ currencySymbol?: string | undefined;
434
449
  }, {
435
450
  address: string;
436
451
  networkId: string;
@@ -453,6 +468,7 @@ export declare const concentratedLiquidityPositionsSchema: z.ZodArray<z.ZodObjec
453
468
  pricingId?: number | undefined;
454
469
  ethDayChange?: string | undefined;
455
470
  ccyDayChange?: string | undefined;
471
+ currencySymbol?: string | undefined;
456
472
  }>;
457
473
  token1: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
458
474
  address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
@@ -469,6 +485,7 @@ export declare const concentratedLiquidityPositionsSchema: z.ZodArray<z.ZodObjec
469
485
  brandColor: z.ZodOptional<z.ZodString>;
470
486
  }>, {
471
487
  currencyValue: z.ZodString;
488
+ currencySymbol: z.ZodOptional<z.ZodString>;
472
489
  ccyDayChange: z.ZodOptional<z.ZodString>;
473
490
  ethDayChange: z.ZodOptional<z.ZodString>;
474
491
  unitCurrencyValue: z.ZodOptional<z.ZodString>;
@@ -513,6 +530,7 @@ export declare const concentratedLiquidityPositionsSchema: z.ZodArray<z.ZodObjec
513
530
  pricingId?: number | undefined;
514
531
  ethDayChange?: string | undefined;
515
532
  ccyDayChange?: string | undefined;
533
+ currencySymbol?: string | undefined;
516
534
  }, {
517
535
  address: string;
518
536
  networkId: string;
@@ -535,6 +553,7 @@ export declare const concentratedLiquidityPositionsSchema: z.ZodArray<z.ZodObjec
535
553
  pricingId?: number | undefined;
536
554
  ethDayChange?: string | undefined;
537
555
  ccyDayChange?: string | undefined;
556
+ currencySymbol?: string | undefined;
538
557
  }>;
539
558
  }>, "strip", z.ZodTypeAny, {
540
559
  poolFeePercentage: string;
@@ -560,6 +579,7 @@ export declare const concentratedLiquidityPositionsSchema: z.ZodArray<z.ZodObjec
560
579
  pricingId?: number | undefined;
561
580
  ethDayChange?: string | undefined;
562
581
  ccyDayChange?: string | undefined;
582
+ currencySymbol?: string | undefined;
563
583
  };
564
584
  token1: {
565
585
  address: `0x${string}`;
@@ -583,6 +603,7 @@ export declare const concentratedLiquidityPositionsSchema: z.ZodArray<z.ZodObjec
583
603
  pricingId?: number | undefined;
584
604
  ethDayChange?: string | undefined;
585
605
  ccyDayChange?: string | undefined;
606
+ currencySymbol?: string | undefined;
586
607
  };
587
608
  currencyValue: string;
588
609
  address?: `0x${string}` | undefined;
@@ -614,6 +635,7 @@ export declare const concentratedLiquidityPositionsSchema: z.ZodArray<z.ZodObjec
614
635
  pricingId?: number | undefined;
615
636
  ethDayChange?: string | undefined;
616
637
  ccyDayChange?: string | undefined;
638
+ currencySymbol?: string | undefined;
617
639
  };
618
640
  token1: {
619
641
  address: string;
@@ -637,6 +659,7 @@ export declare const concentratedLiquidityPositionsSchema: z.ZodArray<z.ZodObjec
637
659
  pricingId?: number | undefined;
638
660
  ethDayChange?: string | undefined;
639
661
  ccyDayChange?: string | undefined;
662
+ currencySymbol?: string | undefined;
640
663
  };
641
664
  address?: string | undefined;
642
665
  tokenId?: string | undefined;
@@ -764,6 +787,7 @@ export declare const collateralizedDebtPositionSchema: z.ZodObject<z.objectUtil.
764
787
  brandColor: z.ZodOptional<z.ZodString>;
765
788
  }>, {
766
789
  currencyValue: z.ZodString;
790
+ currencySymbol: z.ZodOptional<z.ZodString>;
767
791
  ccyDayChange: z.ZodOptional<z.ZodString>;
768
792
  ethDayChange: z.ZodOptional<z.ZodString>;
769
793
  unitCurrencyValue: z.ZodOptional<z.ZodString>;
@@ -797,6 +821,7 @@ export declare const collateralizedDebtPositionSchema: z.ZodObject<z.objectUtil.
797
821
  pricingId?: number | undefined;
798
822
  ethDayChange?: string | undefined;
799
823
  ccyDayChange?: string | undefined;
824
+ currencySymbol?: string | undefined;
800
825
  }, {
801
826
  address: string;
802
827
  networkId: string;
@@ -814,6 +839,7 @@ export declare const collateralizedDebtPositionSchema: z.ZodObject<z.objectUtil.
814
839
  pricingId?: number | undefined;
815
840
  ethDayChange?: string | undefined;
816
841
  ccyDayChange?: string | undefined;
842
+ currencySymbol?: string | undefined;
817
843
  }>>;
818
844
  accountAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
819
845
  accountAddressGroup: z.ZodOptional<z.ZodString>;
@@ -869,6 +895,7 @@ export declare const collateralizedDebtPositionSchema: z.ZodObject<z.objectUtil.
869
895
  pricingId?: number | undefined;
870
896
  ethDayChange?: string | undefined;
871
897
  ccyDayChange?: string | undefined;
898
+ currencySymbol?: string | undefined;
872
899
  } | undefined;
873
900
  accountAddressGroup?: string | undefined;
874
901
  }, {
@@ -923,6 +950,7 @@ export declare const collateralizedDebtPositionSchema: z.ZodObject<z.objectUtil.
923
950
  pricingId?: number | undefined;
924
951
  ethDayChange?: string | undefined;
925
952
  ccyDayChange?: string | undefined;
953
+ currencySymbol?: string | undefined;
926
954
  } | undefined;
927
955
  accountAddressGroup?: string | undefined;
928
956
  }>;
@@ -1032,6 +1060,7 @@ export declare const collateralizedDebtPositionsSchema: z.ZodArray<z.ZodObject<z
1032
1060
  brandColor: z.ZodOptional<z.ZodString>;
1033
1061
  }>, {
1034
1062
  currencyValue: z.ZodString;
1063
+ currencySymbol: z.ZodOptional<z.ZodString>;
1035
1064
  ccyDayChange: z.ZodOptional<z.ZodString>;
1036
1065
  ethDayChange: z.ZodOptional<z.ZodString>;
1037
1066
  unitCurrencyValue: z.ZodOptional<z.ZodString>;
@@ -1065,6 +1094,7 @@ export declare const collateralizedDebtPositionsSchema: z.ZodArray<z.ZodObject<z
1065
1094
  pricingId?: number | undefined;
1066
1095
  ethDayChange?: string | undefined;
1067
1096
  ccyDayChange?: string | undefined;
1097
+ currencySymbol?: string | undefined;
1068
1098
  }, {
1069
1099
  address: string;
1070
1100
  networkId: string;
@@ -1082,6 +1112,7 @@ export declare const collateralizedDebtPositionsSchema: z.ZodArray<z.ZodObject<z
1082
1112
  pricingId?: number | undefined;
1083
1113
  ethDayChange?: string | undefined;
1084
1114
  ccyDayChange?: string | undefined;
1115
+ currencySymbol?: string | undefined;
1085
1116
  }>>;
1086
1117
  accountAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
1087
1118
  accountAddressGroup: z.ZodOptional<z.ZodString>;
@@ -1137,6 +1168,7 @@ export declare const collateralizedDebtPositionsSchema: z.ZodArray<z.ZodObject<z
1137
1168
  pricingId?: number | undefined;
1138
1169
  ethDayChange?: string | undefined;
1139
1170
  ccyDayChange?: string | undefined;
1171
+ currencySymbol?: string | undefined;
1140
1172
  } | undefined;
1141
1173
  accountAddressGroup?: string | undefined;
1142
1174
  }, {
@@ -1191,6 +1223,7 @@ export declare const collateralizedDebtPositionsSchema: z.ZodArray<z.ZodObject<z
1191
1223
  pricingId?: number | undefined;
1192
1224
  ethDayChange?: string | undefined;
1193
1225
  ccyDayChange?: string | undefined;
1226
+ currencySymbol?: string | undefined;
1194
1227
  } | undefined;
1195
1228
  accountAddressGroup?: string | undefined;
1196
1229
  }>, "many">;
@@ -1218,6 +1251,7 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.ex
1218
1251
  brandColor: z.ZodOptional<z.ZodString>;
1219
1252
  }>, {
1220
1253
  currencyValue: z.ZodString;
1254
+ currencySymbol: z.ZodOptional<z.ZodString>;
1221
1255
  ccyDayChange: z.ZodOptional<z.ZodString>;
1222
1256
  ethDayChange: z.ZodOptional<z.ZodString>;
1223
1257
  unitCurrencyValue: z.ZodOptional<z.ZodString>;
@@ -1262,6 +1296,7 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.ex
1262
1296
  pricingId?: number | undefined;
1263
1297
  ethDayChange?: string | undefined;
1264
1298
  ccyDayChange?: string | undefined;
1299
+ currencySymbol?: string | undefined;
1265
1300
  }, {
1266
1301
  address: string;
1267
1302
  networkId: string;
@@ -1284,6 +1319,7 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.ex
1284
1319
  pricingId?: number | undefined;
1285
1320
  ethDayChange?: string | undefined;
1286
1321
  ccyDayChange?: string | undefined;
1322
+ currencySymbol?: string | undefined;
1287
1323
  }>;
1288
1324
  token1: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
1289
1325
  address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
@@ -1300,6 +1336,7 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.ex
1300
1336
  brandColor: z.ZodOptional<z.ZodString>;
1301
1337
  }>, {
1302
1338
  currencyValue: z.ZodString;
1339
+ currencySymbol: z.ZodOptional<z.ZodString>;
1303
1340
  ccyDayChange: z.ZodOptional<z.ZodString>;
1304
1341
  ethDayChange: z.ZodOptional<z.ZodString>;
1305
1342
  unitCurrencyValue: z.ZodOptional<z.ZodString>;
@@ -1344,6 +1381,7 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.ex
1344
1381
  pricingId?: number | undefined;
1345
1382
  ethDayChange?: string | undefined;
1346
1383
  ccyDayChange?: string | undefined;
1384
+ currencySymbol?: string | undefined;
1347
1385
  }, {
1348
1386
  address: string;
1349
1387
  networkId: string;
@@ -1366,6 +1404,7 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.ex
1366
1404
  pricingId?: number | undefined;
1367
1405
  ethDayChange?: string | undefined;
1368
1406
  ccyDayChange?: string | undefined;
1407
+ currencySymbol?: string | undefined;
1369
1408
  }>;
1370
1409
  }>, "strip", z.ZodTypeAny, {
1371
1410
  poolFeePercentage: string;
@@ -1391,6 +1430,7 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.ex
1391
1430
  pricingId?: number | undefined;
1392
1431
  ethDayChange?: string | undefined;
1393
1432
  ccyDayChange?: string | undefined;
1433
+ currencySymbol?: string | undefined;
1394
1434
  };
1395
1435
  token1: {
1396
1436
  address: `0x${string}`;
@@ -1414,6 +1454,7 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.ex
1414
1454
  pricingId?: number | undefined;
1415
1455
  ethDayChange?: string | undefined;
1416
1456
  ccyDayChange?: string | undefined;
1457
+ currencySymbol?: string | undefined;
1417
1458
  };
1418
1459
  currencyValue: string;
1419
1460
  address?: `0x${string}` | undefined;
@@ -1445,6 +1486,7 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.ex
1445
1486
  pricingId?: number | undefined;
1446
1487
  ethDayChange?: string | undefined;
1447
1488
  ccyDayChange?: string | undefined;
1489
+ currencySymbol?: string | undefined;
1448
1490
  };
1449
1491
  token1: {
1450
1492
  address: string;
@@ -1468,6 +1510,7 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.ex
1468
1510
  pricingId?: number | undefined;
1469
1511
  ethDayChange?: string | undefined;
1470
1512
  ccyDayChange?: string | undefined;
1513
+ currencySymbol?: string | undefined;
1471
1514
  };
1472
1515
  address?: string | undefined;
1473
1516
  tokenId?: string | undefined;
@@ -1581,6 +1624,7 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.ex
1581
1624
  brandColor: z.ZodOptional<z.ZodString>;
1582
1625
  }>, {
1583
1626
  currencyValue: z.ZodString;
1627
+ currencySymbol: z.ZodOptional<z.ZodString>;
1584
1628
  ccyDayChange: z.ZodOptional<z.ZodString>;
1585
1629
  ethDayChange: z.ZodOptional<z.ZodString>;
1586
1630
  unitCurrencyValue: z.ZodOptional<z.ZodString>;
@@ -1614,6 +1658,7 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.ex
1614
1658
  pricingId?: number | undefined;
1615
1659
  ethDayChange?: string | undefined;
1616
1660
  ccyDayChange?: string | undefined;
1661
+ currencySymbol?: string | undefined;
1617
1662
  }, {
1618
1663
  address: string;
1619
1664
  networkId: string;
@@ -1631,6 +1676,7 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.ex
1631
1676
  pricingId?: number | undefined;
1632
1677
  ethDayChange?: string | undefined;
1633
1678
  ccyDayChange?: string | undefined;
1679
+ currencySymbol?: string | undefined;
1634
1680
  }>>;
1635
1681
  accountAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
1636
1682
  accountAddressGroup: z.ZodOptional<z.ZodString>;
@@ -1686,6 +1732,7 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.ex
1686
1732
  pricingId?: number | undefined;
1687
1733
  ethDayChange?: string | undefined;
1688
1734
  ccyDayChange?: string | undefined;
1735
+ currencySymbol?: string | undefined;
1689
1736
  } | undefined;
1690
1737
  accountAddressGroup?: string | undefined;
1691
1738
  }, {
@@ -1740,6 +1787,7 @@ export declare const defiPositionSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.ex
1740
1787
  pricingId?: number | undefined;
1741
1788
  ethDayChange?: string | undefined;
1742
1789
  ccyDayChange?: string | undefined;
1790
+ currencySymbol?: string | undefined;
1743
1791
  } | undefined;
1744
1792
  accountAddressGroup?: string | undefined;
1745
1793
  }>]>;
@@ -1784,6 +1832,7 @@ export declare const defiProductSchema: z.ZodObject<{
1784
1832
  brandColor: z.ZodOptional<z.ZodString>;
1785
1833
  }>, {
1786
1834
  currencyValue: z.ZodString;
1835
+ currencySymbol: z.ZodOptional<z.ZodString>;
1787
1836
  ccyDayChange: z.ZodOptional<z.ZodString>;
1788
1837
  ethDayChange: z.ZodOptional<z.ZodString>;
1789
1838
  unitCurrencyValue: z.ZodOptional<z.ZodString>;
@@ -1828,6 +1877,7 @@ export declare const defiProductSchema: z.ZodObject<{
1828
1877
  pricingId?: number | undefined;
1829
1878
  ethDayChange?: string | undefined;
1830
1879
  ccyDayChange?: string | undefined;
1880
+ currencySymbol?: string | undefined;
1831
1881
  }, {
1832
1882
  address: string;
1833
1883
  networkId: string;
@@ -1850,6 +1900,7 @@ export declare const defiProductSchema: z.ZodObject<{
1850
1900
  pricingId?: number | undefined;
1851
1901
  ethDayChange?: string | undefined;
1852
1902
  ccyDayChange?: string | undefined;
1903
+ currencySymbol?: string | undefined;
1853
1904
  }>;
1854
1905
  token1: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
1855
1906
  address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
@@ -1866,6 +1917,7 @@ export declare const defiProductSchema: z.ZodObject<{
1866
1917
  brandColor: z.ZodOptional<z.ZodString>;
1867
1918
  }>, {
1868
1919
  currencyValue: z.ZodString;
1920
+ currencySymbol: z.ZodOptional<z.ZodString>;
1869
1921
  ccyDayChange: z.ZodOptional<z.ZodString>;
1870
1922
  ethDayChange: z.ZodOptional<z.ZodString>;
1871
1923
  unitCurrencyValue: z.ZodOptional<z.ZodString>;
@@ -1910,6 +1962,7 @@ export declare const defiProductSchema: z.ZodObject<{
1910
1962
  pricingId?: number | undefined;
1911
1963
  ethDayChange?: string | undefined;
1912
1964
  ccyDayChange?: string | undefined;
1965
+ currencySymbol?: string | undefined;
1913
1966
  }, {
1914
1967
  address: string;
1915
1968
  networkId: string;
@@ -1932,6 +1985,7 @@ export declare const defiProductSchema: z.ZodObject<{
1932
1985
  pricingId?: number | undefined;
1933
1986
  ethDayChange?: string | undefined;
1934
1987
  ccyDayChange?: string | undefined;
1988
+ currencySymbol?: string | undefined;
1935
1989
  }>;
1936
1990
  }>, "strip", z.ZodTypeAny, {
1937
1991
  poolFeePercentage: string;
@@ -1957,6 +2011,7 @@ export declare const defiProductSchema: z.ZodObject<{
1957
2011
  pricingId?: number | undefined;
1958
2012
  ethDayChange?: string | undefined;
1959
2013
  ccyDayChange?: string | undefined;
2014
+ currencySymbol?: string | undefined;
1960
2015
  };
1961
2016
  token1: {
1962
2017
  address: `0x${string}`;
@@ -1980,6 +2035,7 @@ export declare const defiProductSchema: z.ZodObject<{
1980
2035
  pricingId?: number | undefined;
1981
2036
  ethDayChange?: string | undefined;
1982
2037
  ccyDayChange?: string | undefined;
2038
+ currencySymbol?: string | undefined;
1983
2039
  };
1984
2040
  currencyValue: string;
1985
2041
  address?: `0x${string}` | undefined;
@@ -2011,6 +2067,7 @@ export declare const defiProductSchema: z.ZodObject<{
2011
2067
  pricingId?: number | undefined;
2012
2068
  ethDayChange?: string | undefined;
2013
2069
  ccyDayChange?: string | undefined;
2070
+ currencySymbol?: string | undefined;
2014
2071
  };
2015
2072
  token1: {
2016
2073
  address: string;
@@ -2034,6 +2091,7 @@ export declare const defiProductSchema: z.ZodObject<{
2034
2091
  pricingId?: number | undefined;
2035
2092
  ethDayChange?: string | undefined;
2036
2093
  ccyDayChange?: string | undefined;
2094
+ currencySymbol?: string | undefined;
2037
2095
  };
2038
2096
  address?: string | undefined;
2039
2097
  tokenId?: string | undefined;
@@ -2147,6 +2205,7 @@ export declare const defiProductSchema: z.ZodObject<{
2147
2205
  brandColor: z.ZodOptional<z.ZodString>;
2148
2206
  }>, {
2149
2207
  currencyValue: z.ZodString;
2208
+ currencySymbol: z.ZodOptional<z.ZodString>;
2150
2209
  ccyDayChange: z.ZodOptional<z.ZodString>;
2151
2210
  ethDayChange: z.ZodOptional<z.ZodString>;
2152
2211
  unitCurrencyValue: z.ZodOptional<z.ZodString>;
@@ -2180,6 +2239,7 @@ export declare const defiProductSchema: z.ZodObject<{
2180
2239
  pricingId?: number | undefined;
2181
2240
  ethDayChange?: string | undefined;
2182
2241
  ccyDayChange?: string | undefined;
2242
+ currencySymbol?: string | undefined;
2183
2243
  }, {
2184
2244
  address: string;
2185
2245
  networkId: string;
@@ -2197,6 +2257,7 @@ export declare const defiProductSchema: z.ZodObject<{
2197
2257
  pricingId?: number | undefined;
2198
2258
  ethDayChange?: string | undefined;
2199
2259
  ccyDayChange?: string | undefined;
2260
+ currencySymbol?: string | undefined;
2200
2261
  }>>;
2201
2262
  accountAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
2202
2263
  accountAddressGroup: z.ZodOptional<z.ZodString>;
@@ -2252,6 +2313,7 @@ export declare const defiProductSchema: z.ZodObject<{
2252
2313
  pricingId?: number | undefined;
2253
2314
  ethDayChange?: string | undefined;
2254
2315
  ccyDayChange?: string | undefined;
2316
+ currencySymbol?: string | undefined;
2255
2317
  } | undefined;
2256
2318
  accountAddressGroup?: string | undefined;
2257
2319
  }, {
@@ -2306,6 +2368,7 @@ export declare const defiProductSchema: z.ZodObject<{
2306
2368
  pricingId?: number | undefined;
2307
2369
  ethDayChange?: string | undefined;
2308
2370
  ccyDayChange?: string | undefined;
2371
+ currencySymbol?: string | undefined;
2309
2372
  } | undefined;
2310
2373
  accountAddressGroup?: string | undefined;
2311
2374
  }>]>, "many">;
@@ -2353,6 +2416,7 @@ export declare const defiProductSchema: z.ZodObject<{
2353
2416
  pricingId?: number | undefined;
2354
2417
  ethDayChange?: string | undefined;
2355
2418
  ccyDayChange?: string | undefined;
2419
+ currencySymbol?: string | undefined;
2356
2420
  };
2357
2421
  token1: {
2358
2422
  address: `0x${string}`;
@@ -2376,6 +2440,7 @@ export declare const defiProductSchema: z.ZodObject<{
2376
2440
  pricingId?: number | undefined;
2377
2441
  ethDayChange?: string | undefined;
2378
2442
  ccyDayChange?: string | undefined;
2443
+ currencySymbol?: string | undefined;
2379
2444
  };
2380
2445
  currencyValue: string;
2381
2446
  address?: `0x${string}` | undefined;
@@ -2435,6 +2500,7 @@ export declare const defiProductSchema: z.ZodObject<{
2435
2500
  pricingId?: number | undefined;
2436
2501
  ethDayChange?: string | undefined;
2437
2502
  ccyDayChange?: string | undefined;
2503
+ currencySymbol?: string | undefined;
2438
2504
  } | undefined;
2439
2505
  accountAddressGroup?: string | undefined;
2440
2506
  })[];
@@ -2474,6 +2540,7 @@ export declare const defiProductSchema: z.ZodObject<{
2474
2540
  pricingId?: number | undefined;
2475
2541
  ethDayChange?: string | undefined;
2476
2542
  ccyDayChange?: string | undefined;
2543
+ currencySymbol?: string | undefined;
2477
2544
  };
2478
2545
  token1: {
2479
2546
  address: string;
@@ -2497,6 +2564,7 @@ export declare const defiProductSchema: z.ZodObject<{
2497
2564
  pricingId?: number | undefined;
2498
2565
  ethDayChange?: string | undefined;
2499
2566
  ccyDayChange?: string | undefined;
2567
+ currencySymbol?: string | undefined;
2500
2568
  };
2501
2569
  address?: string | undefined;
2502
2570
  tokenId?: string | undefined;
@@ -2556,6 +2624,7 @@ export declare const defiProductSchema: z.ZodObject<{
2556
2624
  pricingId?: number | undefined;
2557
2625
  ethDayChange?: string | undefined;
2558
2626
  ccyDayChange?: string | undefined;
2627
+ currencySymbol?: string | undefined;
2559
2628
  } | undefined;
2560
2629
  accountAddressGroup?: string | undefined;
2561
2630
  })[];
@@ -2596,6 +2665,7 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
2596
2665
  brandColor: z.ZodOptional<z.ZodString>;
2597
2666
  }>, {
2598
2667
  currencyValue: z.ZodString;
2668
+ currencySymbol: z.ZodOptional<z.ZodString>;
2599
2669
  ccyDayChange: z.ZodOptional<z.ZodString>;
2600
2670
  ethDayChange: z.ZodOptional<z.ZodString>;
2601
2671
  unitCurrencyValue: z.ZodOptional<z.ZodString>;
@@ -2640,6 +2710,7 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
2640
2710
  pricingId?: number | undefined;
2641
2711
  ethDayChange?: string | undefined;
2642
2712
  ccyDayChange?: string | undefined;
2713
+ currencySymbol?: string | undefined;
2643
2714
  }, {
2644
2715
  address: string;
2645
2716
  networkId: string;
@@ -2662,6 +2733,7 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
2662
2733
  pricingId?: number | undefined;
2663
2734
  ethDayChange?: string | undefined;
2664
2735
  ccyDayChange?: string | undefined;
2736
+ currencySymbol?: string | undefined;
2665
2737
  }>;
2666
2738
  token1: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
2667
2739
  address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
@@ -2678,6 +2750,7 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
2678
2750
  brandColor: z.ZodOptional<z.ZodString>;
2679
2751
  }>, {
2680
2752
  currencyValue: z.ZodString;
2753
+ currencySymbol: z.ZodOptional<z.ZodString>;
2681
2754
  ccyDayChange: z.ZodOptional<z.ZodString>;
2682
2755
  ethDayChange: z.ZodOptional<z.ZodString>;
2683
2756
  unitCurrencyValue: z.ZodOptional<z.ZodString>;
@@ -2722,6 +2795,7 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
2722
2795
  pricingId?: number | undefined;
2723
2796
  ethDayChange?: string | undefined;
2724
2797
  ccyDayChange?: string | undefined;
2798
+ currencySymbol?: string | undefined;
2725
2799
  }, {
2726
2800
  address: string;
2727
2801
  networkId: string;
@@ -2744,6 +2818,7 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
2744
2818
  pricingId?: number | undefined;
2745
2819
  ethDayChange?: string | undefined;
2746
2820
  ccyDayChange?: string | undefined;
2821
+ currencySymbol?: string | undefined;
2747
2822
  }>;
2748
2823
  }>, "strip", z.ZodTypeAny, {
2749
2824
  poolFeePercentage: string;
@@ -2769,6 +2844,7 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
2769
2844
  pricingId?: number | undefined;
2770
2845
  ethDayChange?: string | undefined;
2771
2846
  ccyDayChange?: string | undefined;
2847
+ currencySymbol?: string | undefined;
2772
2848
  };
2773
2849
  token1: {
2774
2850
  address: `0x${string}`;
@@ -2792,6 +2868,7 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
2792
2868
  pricingId?: number | undefined;
2793
2869
  ethDayChange?: string | undefined;
2794
2870
  ccyDayChange?: string | undefined;
2871
+ currencySymbol?: string | undefined;
2795
2872
  };
2796
2873
  currencyValue: string;
2797
2874
  address?: `0x${string}` | undefined;
@@ -2823,6 +2900,7 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
2823
2900
  pricingId?: number | undefined;
2824
2901
  ethDayChange?: string | undefined;
2825
2902
  ccyDayChange?: string | undefined;
2903
+ currencySymbol?: string | undefined;
2826
2904
  };
2827
2905
  token1: {
2828
2906
  address: string;
@@ -2846,6 +2924,7 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
2846
2924
  pricingId?: number | undefined;
2847
2925
  ethDayChange?: string | undefined;
2848
2926
  ccyDayChange?: string | undefined;
2927
+ currencySymbol?: string | undefined;
2849
2928
  };
2850
2929
  address?: string | undefined;
2851
2930
  tokenId?: string | undefined;
@@ -2959,6 +3038,7 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
2959
3038
  brandColor: z.ZodOptional<z.ZodString>;
2960
3039
  }>, {
2961
3040
  currencyValue: z.ZodString;
3041
+ currencySymbol: z.ZodOptional<z.ZodString>;
2962
3042
  ccyDayChange: z.ZodOptional<z.ZodString>;
2963
3043
  ethDayChange: z.ZodOptional<z.ZodString>;
2964
3044
  unitCurrencyValue: z.ZodOptional<z.ZodString>;
@@ -2992,6 +3072,7 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
2992
3072
  pricingId?: number | undefined;
2993
3073
  ethDayChange?: string | undefined;
2994
3074
  ccyDayChange?: string | undefined;
3075
+ currencySymbol?: string | undefined;
2995
3076
  }, {
2996
3077
  address: string;
2997
3078
  networkId: string;
@@ -3009,6 +3090,7 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
3009
3090
  pricingId?: number | undefined;
3010
3091
  ethDayChange?: string | undefined;
3011
3092
  ccyDayChange?: string | undefined;
3093
+ currencySymbol?: string | undefined;
3012
3094
  }>>;
3013
3095
  accountAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
3014
3096
  accountAddressGroup: z.ZodOptional<z.ZodString>;
@@ -3064,6 +3146,7 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
3064
3146
  pricingId?: number | undefined;
3065
3147
  ethDayChange?: string | undefined;
3066
3148
  ccyDayChange?: string | undefined;
3149
+ currencySymbol?: string | undefined;
3067
3150
  } | undefined;
3068
3151
  accountAddressGroup?: string | undefined;
3069
3152
  }, {
@@ -3118,6 +3201,7 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
3118
3201
  pricingId?: number | undefined;
3119
3202
  ethDayChange?: string | undefined;
3120
3203
  ccyDayChange?: string | undefined;
3204
+ currencySymbol?: string | undefined;
3121
3205
  } | undefined;
3122
3206
  accountAddressGroup?: string | undefined;
3123
3207
  }>]>, "many">;
@@ -3165,6 +3249,7 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
3165
3249
  pricingId?: number | undefined;
3166
3250
  ethDayChange?: string | undefined;
3167
3251
  ccyDayChange?: string | undefined;
3252
+ currencySymbol?: string | undefined;
3168
3253
  };
3169
3254
  token1: {
3170
3255
  address: `0x${string}`;
@@ -3188,6 +3273,7 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
3188
3273
  pricingId?: number | undefined;
3189
3274
  ethDayChange?: string | undefined;
3190
3275
  ccyDayChange?: string | undefined;
3276
+ currencySymbol?: string | undefined;
3191
3277
  };
3192
3278
  currencyValue: string;
3193
3279
  address?: `0x${string}` | undefined;
@@ -3247,6 +3333,7 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
3247
3333
  pricingId?: number | undefined;
3248
3334
  ethDayChange?: string | undefined;
3249
3335
  ccyDayChange?: string | undefined;
3336
+ currencySymbol?: string | undefined;
3250
3337
  } | undefined;
3251
3338
  accountAddressGroup?: string | undefined;
3252
3339
  })[];
@@ -3286,6 +3373,7 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
3286
3373
  pricingId?: number | undefined;
3287
3374
  ethDayChange?: string | undefined;
3288
3375
  ccyDayChange?: string | undefined;
3376
+ currencySymbol?: string | undefined;
3289
3377
  };
3290
3378
  token1: {
3291
3379
  address: string;
@@ -3309,6 +3397,7 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
3309
3397
  pricingId?: number | undefined;
3310
3398
  ethDayChange?: string | undefined;
3311
3399
  ccyDayChange?: string | undefined;
3400
+ currencySymbol?: string | undefined;
3312
3401
  };
3313
3402
  address?: string | undefined;
3314
3403
  tokenId?: string | undefined;
@@ -3368,6 +3457,7 @@ export declare const defiProductsSchema: z.ZodArray<z.ZodObject<{
3368
3457
  pricingId?: number | undefined;
3369
3458
  ethDayChange?: string | undefined;
3370
3459
  ccyDayChange?: string | undefined;
3460
+ currencySymbol?: string | undefined;
3371
3461
  } | undefined;
3372
3462
  accountAddressGroup?: string | undefined;
3373
3463
  })[];
@@ -3410,6 +3500,7 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
3410
3500
  brandColor: z.ZodOptional<z.ZodString>;
3411
3501
  }>, {
3412
3502
  currencyValue: z.ZodString;
3503
+ currencySymbol: z.ZodOptional<z.ZodString>;
3413
3504
  ccyDayChange: z.ZodOptional<z.ZodString>;
3414
3505
  ethDayChange: z.ZodOptional<z.ZodString>;
3415
3506
  unitCurrencyValue: z.ZodOptional<z.ZodString>;
@@ -3454,6 +3545,7 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
3454
3545
  pricingId?: number | undefined;
3455
3546
  ethDayChange?: string | undefined;
3456
3547
  ccyDayChange?: string | undefined;
3548
+ currencySymbol?: string | undefined;
3457
3549
  }, {
3458
3550
  address: string;
3459
3551
  networkId: string;
@@ -3476,6 +3568,7 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
3476
3568
  pricingId?: number | undefined;
3477
3569
  ethDayChange?: string | undefined;
3478
3570
  ccyDayChange?: string | undefined;
3571
+ currencySymbol?: string | undefined;
3479
3572
  }>;
3480
3573
  token1: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
3481
3574
  address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
@@ -3492,6 +3585,7 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
3492
3585
  brandColor: z.ZodOptional<z.ZodString>;
3493
3586
  }>, {
3494
3587
  currencyValue: z.ZodString;
3588
+ currencySymbol: z.ZodOptional<z.ZodString>;
3495
3589
  ccyDayChange: z.ZodOptional<z.ZodString>;
3496
3590
  ethDayChange: z.ZodOptional<z.ZodString>;
3497
3591
  unitCurrencyValue: z.ZodOptional<z.ZodString>;
@@ -3536,6 +3630,7 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
3536
3630
  pricingId?: number | undefined;
3537
3631
  ethDayChange?: string | undefined;
3538
3632
  ccyDayChange?: string | undefined;
3633
+ currencySymbol?: string | undefined;
3539
3634
  }, {
3540
3635
  address: string;
3541
3636
  networkId: string;
@@ -3558,6 +3653,7 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
3558
3653
  pricingId?: number | undefined;
3559
3654
  ethDayChange?: string | undefined;
3560
3655
  ccyDayChange?: string | undefined;
3656
+ currencySymbol?: string | undefined;
3561
3657
  }>;
3562
3658
  }>, "strip", z.ZodTypeAny, {
3563
3659
  poolFeePercentage: string;
@@ -3583,6 +3679,7 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
3583
3679
  pricingId?: number | undefined;
3584
3680
  ethDayChange?: string | undefined;
3585
3681
  ccyDayChange?: string | undefined;
3682
+ currencySymbol?: string | undefined;
3586
3683
  };
3587
3684
  token1: {
3588
3685
  address: `0x${string}`;
@@ -3606,6 +3703,7 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
3606
3703
  pricingId?: number | undefined;
3607
3704
  ethDayChange?: string | undefined;
3608
3705
  ccyDayChange?: string | undefined;
3706
+ currencySymbol?: string | undefined;
3609
3707
  };
3610
3708
  currencyValue: string;
3611
3709
  address?: `0x${string}` | undefined;
@@ -3637,6 +3735,7 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
3637
3735
  pricingId?: number | undefined;
3638
3736
  ethDayChange?: string | undefined;
3639
3737
  ccyDayChange?: string | undefined;
3738
+ currencySymbol?: string | undefined;
3640
3739
  };
3641
3740
  token1: {
3642
3741
  address: string;
@@ -3660,6 +3759,7 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
3660
3759
  pricingId?: number | undefined;
3661
3760
  ethDayChange?: string | undefined;
3662
3761
  ccyDayChange?: string | undefined;
3762
+ currencySymbol?: string | undefined;
3663
3763
  };
3664
3764
  address?: string | undefined;
3665
3765
  tokenId?: string | undefined;
@@ -3773,6 +3873,7 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
3773
3873
  brandColor: z.ZodOptional<z.ZodString>;
3774
3874
  }>, {
3775
3875
  currencyValue: z.ZodString;
3876
+ currencySymbol: z.ZodOptional<z.ZodString>;
3776
3877
  ccyDayChange: z.ZodOptional<z.ZodString>;
3777
3878
  ethDayChange: z.ZodOptional<z.ZodString>;
3778
3879
  unitCurrencyValue: z.ZodOptional<z.ZodString>;
@@ -3806,6 +3907,7 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
3806
3907
  pricingId?: number | undefined;
3807
3908
  ethDayChange?: string | undefined;
3808
3909
  ccyDayChange?: string | undefined;
3910
+ currencySymbol?: string | undefined;
3809
3911
  }, {
3810
3912
  address: string;
3811
3913
  networkId: string;
@@ -3823,6 +3925,7 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
3823
3925
  pricingId?: number | undefined;
3824
3926
  ethDayChange?: string | undefined;
3825
3927
  ccyDayChange?: string | undefined;
3928
+ currencySymbol?: string | undefined;
3826
3929
  }>>;
3827
3930
  accountAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
3828
3931
  accountAddressGroup: z.ZodOptional<z.ZodString>;
@@ -3878,6 +3981,7 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
3878
3981
  pricingId?: number | undefined;
3879
3982
  ethDayChange?: string | undefined;
3880
3983
  ccyDayChange?: string | undefined;
3984
+ currencySymbol?: string | undefined;
3881
3985
  } | undefined;
3882
3986
  accountAddressGroup?: string | undefined;
3883
3987
  }, {
@@ -3932,6 +4036,7 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
3932
4036
  pricingId?: number | undefined;
3933
4037
  ethDayChange?: string | undefined;
3934
4038
  ccyDayChange?: string | undefined;
4039
+ currencySymbol?: string | undefined;
3935
4040
  } | undefined;
3936
4041
  accountAddressGroup?: string | undefined;
3937
4042
  }>]>, "many">;
@@ -3979,6 +4084,7 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
3979
4084
  pricingId?: number | undefined;
3980
4085
  ethDayChange?: string | undefined;
3981
4086
  ccyDayChange?: string | undefined;
4087
+ currencySymbol?: string | undefined;
3982
4088
  };
3983
4089
  token1: {
3984
4090
  address: `0x${string}`;
@@ -4002,6 +4108,7 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
4002
4108
  pricingId?: number | undefined;
4003
4109
  ethDayChange?: string | undefined;
4004
4110
  ccyDayChange?: string | undefined;
4111
+ currencySymbol?: string | undefined;
4005
4112
  };
4006
4113
  currencyValue: string;
4007
4114
  address?: `0x${string}` | undefined;
@@ -4061,6 +4168,7 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
4061
4168
  pricingId?: number | undefined;
4062
4169
  ethDayChange?: string | undefined;
4063
4170
  ccyDayChange?: string | undefined;
4171
+ currencySymbol?: string | undefined;
4064
4172
  } | undefined;
4065
4173
  accountAddressGroup?: string | undefined;
4066
4174
  })[];
@@ -4100,6 +4208,7 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
4100
4208
  pricingId?: number | undefined;
4101
4209
  ethDayChange?: string | undefined;
4102
4210
  ccyDayChange?: string | undefined;
4211
+ currencySymbol?: string | undefined;
4103
4212
  };
4104
4213
  token1: {
4105
4214
  address: string;
@@ -4123,6 +4232,7 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
4123
4232
  pricingId?: number | undefined;
4124
4233
  ethDayChange?: string | undefined;
4125
4234
  ccyDayChange?: string | undefined;
4235
+ currencySymbol?: string | undefined;
4126
4236
  };
4127
4237
  address?: string | undefined;
4128
4238
  tokenId?: string | undefined;
@@ -4182,6 +4292,7 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
4182
4292
  pricingId?: number | undefined;
4183
4293
  ethDayChange?: string | undefined;
4184
4294
  ccyDayChange?: string | undefined;
4295
+ currencySymbol?: string | undefined;
4185
4296
  } | undefined;
4186
4297
  accountAddressGroup?: string | undefined;
4187
4298
  })[];
@@ -4224,6 +4335,7 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
4224
4335
  pricingId?: number | undefined;
4225
4336
  ethDayChange?: string | undefined;
4226
4337
  ccyDayChange?: string | undefined;
4338
+ currencySymbol?: string | undefined;
4227
4339
  };
4228
4340
  token1: {
4229
4341
  address: `0x${string}`;
@@ -4247,6 +4359,7 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
4247
4359
  pricingId?: number | undefined;
4248
4360
  ethDayChange?: string | undefined;
4249
4361
  ccyDayChange?: string | undefined;
4362
+ currencySymbol?: string | undefined;
4250
4363
  };
4251
4364
  currencyValue: string;
4252
4365
  address?: `0x${string}` | undefined;
@@ -4306,6 +4419,7 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
4306
4419
  pricingId?: number | undefined;
4307
4420
  ethDayChange?: string | undefined;
4308
4421
  ccyDayChange?: string | undefined;
4422
+ currencySymbol?: string | undefined;
4309
4423
  } | undefined;
4310
4424
  accountAddressGroup?: string | undefined;
4311
4425
  })[];
@@ -4348,6 +4462,7 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
4348
4462
  pricingId?: number | undefined;
4349
4463
  ethDayChange?: string | undefined;
4350
4464
  ccyDayChange?: string | undefined;
4465
+ currencySymbol?: string | undefined;
4351
4466
  };
4352
4467
  token1: {
4353
4468
  address: string;
@@ -4371,6 +4486,7 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
4371
4486
  pricingId?: number | undefined;
4372
4487
  ethDayChange?: string | undefined;
4373
4488
  ccyDayChange?: string | undefined;
4489
+ currencySymbol?: string | undefined;
4374
4490
  };
4375
4491
  address?: string | undefined;
4376
4492
  tokenId?: string | undefined;
@@ -4430,6 +4546,7 @@ export declare const defiDappsProductsSchema: z.ZodObject<{
4430
4546
  pricingId?: number | undefined;
4431
4547
  ethDayChange?: string | undefined;
4432
4548
  ccyDayChange?: string | undefined;
4549
+ currencySymbol?: string | undefined;
4433
4550
  } | undefined;
4434
4551
  accountAddressGroup?: string | undefined;
4435
4552
  })[];