@illalabs/interfaces 0.10.2 → 0.10.3

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.
@@ -412,6 +412,10 @@ export declare const TransactionActionMetadataSchema: z.ZodDiscriminatedUnion<"a
412
412
  shares: z.ZodString;
413
413
  usdcAmount: z.ZodString;
414
414
  currentPrice: z.ZodString;
415
+ /** Image URL for the market */
416
+ image: z.ZodOptional<z.ZodString>;
417
+ /** Full Polymarket URL for the market */
418
+ url: z.ZodOptional<z.ZodString>;
415
419
  chainId: z.ZodNumber;
416
420
  }, "strip", z.ZodTypeAny, {
417
421
  chainId: number;
@@ -426,6 +430,8 @@ export declare const TransactionActionMetadataSchema: z.ZodDiscriminatedUnion<"a
426
430
  shares: string;
427
431
  usdcAmount: string;
428
432
  currentPrice: string;
433
+ url?: string | undefined;
434
+ image?: string | undefined;
429
435
  }, {
430
436
  chainId: number;
431
437
  action: "predictionMarketBet";
@@ -439,6 +445,8 @@ export declare const TransactionActionMetadataSchema: z.ZodDiscriminatedUnion<"a
439
445
  shares: string;
440
446
  usdcAmount: string;
441
447
  currentPrice: string;
448
+ url?: string | undefined;
449
+ image?: string | undefined;
442
450
  }>, z.ZodObject<{
443
451
  action: z.ZodLiteral<"predictionMarketRedeem">;
444
452
  protocol: z.ZodString;
@@ -453,6 +461,7 @@ export declare const TransactionActionMetadataSchema: z.ZodDiscriminatedUnion<"a
453
461
  icon: z.ZodOptional<z.ZodString>;
454
462
  eventSlug: z.ZodOptional<z.ZodString>;
455
463
  slug: z.ZodOptional<z.ZodString>;
464
+ url: z.ZodOptional<z.ZodString>;
456
465
  }, "strip", z.ZodTypeAny, {
457
466
  title?: string | undefined;
458
467
  outcome?: string | undefined;
@@ -464,6 +473,7 @@ export declare const TransactionActionMetadataSchema: z.ZodDiscriminatedUnion<"a
464
473
  icon?: string | undefined;
465
474
  eventSlug?: string | undefined;
466
475
  slug?: string | undefined;
476
+ url?: string | undefined;
467
477
  }, {
468
478
  title?: string | undefined;
469
479
  outcome?: string | undefined;
@@ -475,6 +485,7 @@ export declare const TransactionActionMetadataSchema: z.ZodDiscriminatedUnion<"a
475
485
  icon?: string | undefined;
476
486
  eventSlug?: string | undefined;
477
487
  slug?: string | undefined;
488
+ url?: string | undefined;
478
489
  }>, "many">;
479
490
  chainId: z.ZodNumber;
480
491
  }, "strip", z.ZodTypeAny, {
@@ -492,6 +503,7 @@ export declare const TransactionActionMetadataSchema: z.ZodDiscriminatedUnion<"a
492
503
  icon?: string | undefined;
493
504
  eventSlug?: string | undefined;
494
505
  slug?: string | undefined;
506
+ url?: string | undefined;
495
507
  }[];
496
508
  }, {
497
509
  chainId: number;
@@ -508,6 +520,7 @@ export declare const TransactionActionMetadataSchema: z.ZodDiscriminatedUnion<"a
508
520
  icon?: string | undefined;
509
521
  eventSlug?: string | undefined;
510
522
  slug?: string | undefined;
523
+ url?: string | undefined;
511
524
  }[];
512
525
  }>, z.ZodObject<{
513
526
  action: z.ZodLiteral<"predictionMarketWithdraw">;
@@ -1342,6 +1355,10 @@ export declare const PendingToolCallSchema: z.ZodObject<{
1342
1355
  shares: z.ZodString;
1343
1356
  usdcAmount: z.ZodString;
1344
1357
  currentPrice: z.ZodString;
1358
+ /** Image URL for the market */
1359
+ image: z.ZodOptional<z.ZodString>;
1360
+ /** Full Polymarket URL for the market */
1361
+ url: z.ZodOptional<z.ZodString>;
1345
1362
  chainId: z.ZodNumber;
1346
1363
  }, "strip", z.ZodTypeAny, {
1347
1364
  chainId: number;
@@ -1356,6 +1373,8 @@ export declare const PendingToolCallSchema: z.ZodObject<{
1356
1373
  shares: string;
1357
1374
  usdcAmount: string;
1358
1375
  currentPrice: string;
1376
+ url?: string | undefined;
1377
+ image?: string | undefined;
1359
1378
  }, {
1360
1379
  chainId: number;
1361
1380
  action: "predictionMarketBet";
@@ -1369,6 +1388,8 @@ export declare const PendingToolCallSchema: z.ZodObject<{
1369
1388
  shares: string;
1370
1389
  usdcAmount: string;
1371
1390
  currentPrice: string;
1391
+ url?: string | undefined;
1392
+ image?: string | undefined;
1372
1393
  }>, z.ZodObject<{
1373
1394
  action: z.ZodLiteral<"predictionMarketRedeem">;
1374
1395
  protocol: z.ZodString;
@@ -1383,6 +1404,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
1383
1404
  icon: z.ZodOptional<z.ZodString>;
1384
1405
  eventSlug: z.ZodOptional<z.ZodString>;
1385
1406
  slug: z.ZodOptional<z.ZodString>;
1407
+ url: z.ZodOptional<z.ZodString>;
1386
1408
  }, "strip", z.ZodTypeAny, {
1387
1409
  title?: string | undefined;
1388
1410
  outcome?: string | undefined;
@@ -1394,6 +1416,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
1394
1416
  icon?: string | undefined;
1395
1417
  eventSlug?: string | undefined;
1396
1418
  slug?: string | undefined;
1419
+ url?: string | undefined;
1397
1420
  }, {
1398
1421
  title?: string | undefined;
1399
1422
  outcome?: string | undefined;
@@ -1405,6 +1428,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
1405
1428
  icon?: string | undefined;
1406
1429
  eventSlug?: string | undefined;
1407
1430
  slug?: string | undefined;
1431
+ url?: string | undefined;
1408
1432
  }>, "many">;
1409
1433
  chainId: z.ZodNumber;
1410
1434
  }, "strip", z.ZodTypeAny, {
@@ -1422,6 +1446,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
1422
1446
  icon?: string | undefined;
1423
1447
  eventSlug?: string | undefined;
1424
1448
  slug?: string | undefined;
1449
+ url?: string | undefined;
1425
1450
  }[];
1426
1451
  }, {
1427
1452
  chainId: number;
@@ -1438,6 +1463,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
1438
1463
  icon?: string | undefined;
1439
1464
  eventSlug?: string | undefined;
1440
1465
  slug?: string | undefined;
1466
+ url?: string | undefined;
1441
1467
  }[];
1442
1468
  }>, z.ZodObject<{
1443
1469
  action: z.ZodLiteral<"predictionMarketWithdraw">;
@@ -1570,6 +1596,8 @@ export declare const PendingToolCallSchema: z.ZodObject<{
1570
1596
  shares: string;
1571
1597
  usdcAmount: string;
1572
1598
  currentPrice: string;
1599
+ url?: string | undefined;
1600
+ image?: string | undefined;
1573
1601
  } | {
1574
1602
  chainId: number;
1575
1603
  action: "predictionMarketRedeem";
@@ -1585,6 +1613,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
1585
1613
  icon?: string | undefined;
1586
1614
  eventSlug?: string | undefined;
1587
1615
  slug?: string | undefined;
1616
+ url?: string | undefined;
1588
1617
  }[];
1589
1618
  } | {
1590
1619
  chainId: number;
@@ -1687,6 +1716,8 @@ export declare const PendingToolCallSchema: z.ZodObject<{
1687
1716
  shares: string;
1688
1717
  usdcAmount: string;
1689
1718
  currentPrice: string;
1719
+ url?: string | undefined;
1720
+ image?: string | undefined;
1690
1721
  } | {
1691
1722
  chainId: number;
1692
1723
  action: "predictionMarketRedeem";
@@ -1702,6 +1733,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
1702
1733
  icon?: string | undefined;
1703
1734
  eventSlug?: string | undefined;
1704
1735
  slug?: string | undefined;
1736
+ url?: string | undefined;
1705
1737
  }[];
1706
1738
  } | {
1707
1739
  chainId: number;
@@ -1995,6 +2027,10 @@ export declare const PendingToolCallSchema: z.ZodObject<{
1995
2027
  shares: z.ZodString;
1996
2028
  usdcAmount: z.ZodString;
1997
2029
  currentPrice: z.ZodString;
2030
+ /** Image URL for the market */
2031
+ image: z.ZodOptional<z.ZodString>;
2032
+ /** Full Polymarket URL for the market */
2033
+ url: z.ZodOptional<z.ZodString>;
1998
2034
  chainId: z.ZodNumber;
1999
2035
  }, "strip", z.ZodTypeAny, {
2000
2036
  chainId: number;
@@ -2009,6 +2045,8 @@ export declare const PendingToolCallSchema: z.ZodObject<{
2009
2045
  shares: string;
2010
2046
  usdcAmount: string;
2011
2047
  currentPrice: string;
2048
+ url?: string | undefined;
2049
+ image?: string | undefined;
2012
2050
  }, {
2013
2051
  chainId: number;
2014
2052
  action: "predictionMarketBet";
@@ -2022,6 +2060,8 @@ export declare const PendingToolCallSchema: z.ZodObject<{
2022
2060
  shares: string;
2023
2061
  usdcAmount: string;
2024
2062
  currentPrice: string;
2063
+ url?: string | undefined;
2064
+ image?: string | undefined;
2025
2065
  }>, z.ZodObject<{
2026
2066
  action: z.ZodLiteral<"predictionMarketRedeem">;
2027
2067
  protocol: z.ZodString;
@@ -2036,6 +2076,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
2036
2076
  icon: z.ZodOptional<z.ZodString>;
2037
2077
  eventSlug: z.ZodOptional<z.ZodString>;
2038
2078
  slug: z.ZodOptional<z.ZodString>;
2079
+ url: z.ZodOptional<z.ZodString>;
2039
2080
  }, "strip", z.ZodTypeAny, {
2040
2081
  title?: string | undefined;
2041
2082
  outcome?: string | undefined;
@@ -2047,6 +2088,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
2047
2088
  icon?: string | undefined;
2048
2089
  eventSlug?: string | undefined;
2049
2090
  slug?: string | undefined;
2091
+ url?: string | undefined;
2050
2092
  }, {
2051
2093
  title?: string | undefined;
2052
2094
  outcome?: string | undefined;
@@ -2058,6 +2100,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
2058
2100
  icon?: string | undefined;
2059
2101
  eventSlug?: string | undefined;
2060
2102
  slug?: string | undefined;
2103
+ url?: string | undefined;
2061
2104
  }>, "many">;
2062
2105
  chainId: z.ZodNumber;
2063
2106
  }, "strip", z.ZodTypeAny, {
@@ -2075,6 +2118,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
2075
2118
  icon?: string | undefined;
2076
2119
  eventSlug?: string | undefined;
2077
2120
  slug?: string | undefined;
2121
+ url?: string | undefined;
2078
2122
  }[];
2079
2123
  }, {
2080
2124
  chainId: number;
@@ -2091,6 +2135,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
2091
2135
  icon?: string | undefined;
2092
2136
  eventSlug?: string | undefined;
2093
2137
  slug?: string | undefined;
2138
+ url?: string | undefined;
2094
2139
  }[];
2095
2140
  }>, z.ZodObject<{
2096
2141
  action: z.ZodLiteral<"predictionMarketWithdraw">;
@@ -2223,6 +2268,8 @@ export declare const PendingToolCallSchema: z.ZodObject<{
2223
2268
  shares: string;
2224
2269
  usdcAmount: string;
2225
2270
  currentPrice: string;
2271
+ url?: string | undefined;
2272
+ image?: string | undefined;
2226
2273
  } | {
2227
2274
  chainId: number;
2228
2275
  action: "predictionMarketRedeem";
@@ -2238,6 +2285,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
2238
2285
  icon?: string | undefined;
2239
2286
  eventSlug?: string | undefined;
2240
2287
  slug?: string | undefined;
2288
+ url?: string | undefined;
2241
2289
  }[];
2242
2290
  } | {
2243
2291
  chainId: number;
@@ -2340,6 +2388,8 @@ export declare const PendingToolCallSchema: z.ZodObject<{
2340
2388
  shares: string;
2341
2389
  usdcAmount: string;
2342
2390
  currentPrice: string;
2391
+ url?: string | undefined;
2392
+ image?: string | undefined;
2343
2393
  } | {
2344
2394
  chainId: number;
2345
2395
  action: "predictionMarketRedeem";
@@ -2355,6 +2405,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
2355
2405
  icon?: string | undefined;
2356
2406
  eventSlug?: string | undefined;
2357
2407
  slug?: string | undefined;
2408
+ url?: string | undefined;
2358
2409
  }[];
2359
2410
  } | {
2360
2411
  chainId: number;
@@ -2774,6 +2825,10 @@ export declare const PendingToolCallSchema: z.ZodObject<{
2774
2825
  shares: z.ZodString;
2775
2826
  usdcAmount: z.ZodString;
2776
2827
  currentPrice: z.ZodString;
2828
+ /** Image URL for the market */
2829
+ image: z.ZodOptional<z.ZodString>;
2830
+ /** Full Polymarket URL for the market */
2831
+ url: z.ZodOptional<z.ZodString>;
2777
2832
  chainId: z.ZodNumber;
2778
2833
  }, "strip", z.ZodTypeAny, {
2779
2834
  chainId: number;
@@ -2788,6 +2843,8 @@ export declare const PendingToolCallSchema: z.ZodObject<{
2788
2843
  shares: string;
2789
2844
  usdcAmount: string;
2790
2845
  currentPrice: string;
2846
+ url?: string | undefined;
2847
+ image?: string | undefined;
2791
2848
  }, {
2792
2849
  chainId: number;
2793
2850
  action: "predictionMarketBet";
@@ -2801,6 +2858,8 @@ export declare const PendingToolCallSchema: z.ZodObject<{
2801
2858
  shares: string;
2802
2859
  usdcAmount: string;
2803
2860
  currentPrice: string;
2861
+ url?: string | undefined;
2862
+ image?: string | undefined;
2804
2863
  }>, z.ZodObject<{
2805
2864
  action: z.ZodLiteral<"predictionMarketRedeem">;
2806
2865
  protocol: z.ZodString;
@@ -2815,6 +2874,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
2815
2874
  icon: z.ZodOptional<z.ZodString>;
2816
2875
  eventSlug: z.ZodOptional<z.ZodString>;
2817
2876
  slug: z.ZodOptional<z.ZodString>;
2877
+ url: z.ZodOptional<z.ZodString>;
2818
2878
  }, "strip", z.ZodTypeAny, {
2819
2879
  title?: string | undefined;
2820
2880
  outcome?: string | undefined;
@@ -2826,6 +2886,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
2826
2886
  icon?: string | undefined;
2827
2887
  eventSlug?: string | undefined;
2828
2888
  slug?: string | undefined;
2889
+ url?: string | undefined;
2829
2890
  }, {
2830
2891
  title?: string | undefined;
2831
2892
  outcome?: string | undefined;
@@ -2837,6 +2898,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
2837
2898
  icon?: string | undefined;
2838
2899
  eventSlug?: string | undefined;
2839
2900
  slug?: string | undefined;
2901
+ url?: string | undefined;
2840
2902
  }>, "many">;
2841
2903
  chainId: z.ZodNumber;
2842
2904
  }, "strip", z.ZodTypeAny, {
@@ -2854,6 +2916,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
2854
2916
  icon?: string | undefined;
2855
2917
  eventSlug?: string | undefined;
2856
2918
  slug?: string | undefined;
2919
+ url?: string | undefined;
2857
2920
  }[];
2858
2921
  }, {
2859
2922
  chainId: number;
@@ -2870,6 +2933,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
2870
2933
  icon?: string | undefined;
2871
2934
  eventSlug?: string | undefined;
2872
2935
  slug?: string | undefined;
2936
+ url?: string | undefined;
2873
2937
  }[];
2874
2938
  }>, z.ZodObject<{
2875
2939
  action: z.ZodLiteral<"predictionMarketWithdraw">;
@@ -3020,6 +3084,8 @@ export declare const PendingToolCallSchema: z.ZodObject<{
3020
3084
  shares: string;
3021
3085
  usdcAmount: string;
3022
3086
  currentPrice: string;
3087
+ url?: string | undefined;
3088
+ image?: string | undefined;
3023
3089
  } | {
3024
3090
  chainId: number;
3025
3091
  action: "predictionMarketRedeem";
@@ -3035,6 +3101,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
3035
3101
  icon?: string | undefined;
3036
3102
  eventSlug?: string | undefined;
3037
3103
  slug?: string | undefined;
3104
+ url?: string | undefined;
3038
3105
  }[];
3039
3106
  } | {
3040
3107
  chainId: number;
@@ -3155,6 +3222,8 @@ export declare const PendingToolCallSchema: z.ZodObject<{
3155
3222
  shares: string;
3156
3223
  usdcAmount: string;
3157
3224
  currentPrice: string;
3225
+ url?: string | undefined;
3226
+ image?: string | undefined;
3158
3227
  } | {
3159
3228
  chainId: number;
3160
3229
  action: "predictionMarketRedeem";
@@ -3170,6 +3239,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
3170
3239
  icon?: string | undefined;
3171
3240
  eventSlug?: string | undefined;
3172
3241
  slug?: string | undefined;
3242
+ url?: string | undefined;
3173
3243
  }[];
3174
3244
  } | {
3175
3245
  chainId: number;
@@ -3465,6 +3535,10 @@ export declare const PendingToolCallSchema: z.ZodObject<{
3465
3535
  shares: z.ZodString;
3466
3536
  usdcAmount: z.ZodString;
3467
3537
  currentPrice: z.ZodString;
3538
+ /** Image URL for the market */
3539
+ image: z.ZodOptional<z.ZodString>;
3540
+ /** Full Polymarket URL for the market */
3541
+ url: z.ZodOptional<z.ZodString>;
3468
3542
  chainId: z.ZodNumber;
3469
3543
  }, "strip", z.ZodTypeAny, {
3470
3544
  chainId: number;
@@ -3479,6 +3553,8 @@ export declare const PendingToolCallSchema: z.ZodObject<{
3479
3553
  shares: string;
3480
3554
  usdcAmount: string;
3481
3555
  currentPrice: string;
3556
+ url?: string | undefined;
3557
+ image?: string | undefined;
3482
3558
  }, {
3483
3559
  chainId: number;
3484
3560
  action: "predictionMarketBet";
@@ -3492,6 +3568,8 @@ export declare const PendingToolCallSchema: z.ZodObject<{
3492
3568
  shares: string;
3493
3569
  usdcAmount: string;
3494
3570
  currentPrice: string;
3571
+ url?: string | undefined;
3572
+ image?: string | undefined;
3495
3573
  }>, z.ZodObject<{
3496
3574
  action: z.ZodLiteral<"predictionMarketRedeem">;
3497
3575
  protocol: z.ZodString;
@@ -3506,6 +3584,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
3506
3584
  icon: z.ZodOptional<z.ZodString>;
3507
3585
  eventSlug: z.ZodOptional<z.ZodString>;
3508
3586
  slug: z.ZodOptional<z.ZodString>;
3587
+ url: z.ZodOptional<z.ZodString>;
3509
3588
  }, "strip", z.ZodTypeAny, {
3510
3589
  title?: string | undefined;
3511
3590
  outcome?: string | undefined;
@@ -3517,6 +3596,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
3517
3596
  icon?: string | undefined;
3518
3597
  eventSlug?: string | undefined;
3519
3598
  slug?: string | undefined;
3599
+ url?: string | undefined;
3520
3600
  }, {
3521
3601
  title?: string | undefined;
3522
3602
  outcome?: string | undefined;
@@ -3528,6 +3608,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
3528
3608
  icon?: string | undefined;
3529
3609
  eventSlug?: string | undefined;
3530
3610
  slug?: string | undefined;
3611
+ url?: string | undefined;
3531
3612
  }>, "many">;
3532
3613
  chainId: z.ZodNumber;
3533
3614
  }, "strip", z.ZodTypeAny, {
@@ -3545,6 +3626,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
3545
3626
  icon?: string | undefined;
3546
3627
  eventSlug?: string | undefined;
3547
3628
  slug?: string | undefined;
3629
+ url?: string | undefined;
3548
3630
  }[];
3549
3631
  }, {
3550
3632
  chainId: number;
@@ -3561,6 +3643,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
3561
3643
  icon?: string | undefined;
3562
3644
  eventSlug?: string | undefined;
3563
3645
  slug?: string | undefined;
3646
+ url?: string | undefined;
3564
3647
  }[];
3565
3648
  }>, z.ZodObject<{
3566
3649
  action: z.ZodLiteral<"predictionMarketWithdraw">;
@@ -3693,6 +3776,8 @@ export declare const PendingToolCallSchema: z.ZodObject<{
3693
3776
  shares: string;
3694
3777
  usdcAmount: string;
3695
3778
  currentPrice: string;
3779
+ url?: string | undefined;
3780
+ image?: string | undefined;
3696
3781
  } | {
3697
3782
  chainId: number;
3698
3783
  action: "predictionMarketRedeem";
@@ -3708,6 +3793,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
3708
3793
  icon?: string | undefined;
3709
3794
  eventSlug?: string | undefined;
3710
3795
  slug?: string | undefined;
3796
+ url?: string | undefined;
3711
3797
  }[];
3712
3798
  } | {
3713
3799
  chainId: number;
@@ -3810,6 +3896,8 @@ export declare const PendingToolCallSchema: z.ZodObject<{
3810
3896
  shares: string;
3811
3897
  usdcAmount: string;
3812
3898
  currentPrice: string;
3899
+ url?: string | undefined;
3900
+ image?: string | undefined;
3813
3901
  } | {
3814
3902
  chainId: number;
3815
3903
  action: "predictionMarketRedeem";
@@ -3825,6 +3913,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
3825
3913
  icon?: string | undefined;
3826
3914
  eventSlug?: string | undefined;
3827
3915
  slug?: string | undefined;
3916
+ url?: string | undefined;
3828
3917
  }[];
3829
3918
  } | {
3830
3919
  chainId: number;
@@ -4118,6 +4207,10 @@ export declare const PendingToolCallSchema: z.ZodObject<{
4118
4207
  shares: z.ZodString;
4119
4208
  usdcAmount: z.ZodString;
4120
4209
  currentPrice: z.ZodString;
4210
+ /** Image URL for the market */
4211
+ image: z.ZodOptional<z.ZodString>;
4212
+ /** Full Polymarket URL for the market */
4213
+ url: z.ZodOptional<z.ZodString>;
4121
4214
  chainId: z.ZodNumber;
4122
4215
  }, "strip", z.ZodTypeAny, {
4123
4216
  chainId: number;
@@ -4132,6 +4225,8 @@ export declare const PendingToolCallSchema: z.ZodObject<{
4132
4225
  shares: string;
4133
4226
  usdcAmount: string;
4134
4227
  currentPrice: string;
4228
+ url?: string | undefined;
4229
+ image?: string | undefined;
4135
4230
  }, {
4136
4231
  chainId: number;
4137
4232
  action: "predictionMarketBet";
@@ -4145,6 +4240,8 @@ export declare const PendingToolCallSchema: z.ZodObject<{
4145
4240
  shares: string;
4146
4241
  usdcAmount: string;
4147
4242
  currentPrice: string;
4243
+ url?: string | undefined;
4244
+ image?: string | undefined;
4148
4245
  }>, z.ZodObject<{
4149
4246
  action: z.ZodLiteral<"predictionMarketRedeem">;
4150
4247
  protocol: z.ZodString;
@@ -4159,6 +4256,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
4159
4256
  icon: z.ZodOptional<z.ZodString>;
4160
4257
  eventSlug: z.ZodOptional<z.ZodString>;
4161
4258
  slug: z.ZodOptional<z.ZodString>;
4259
+ url: z.ZodOptional<z.ZodString>;
4162
4260
  }, "strip", z.ZodTypeAny, {
4163
4261
  title?: string | undefined;
4164
4262
  outcome?: string | undefined;
@@ -4170,6 +4268,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
4170
4268
  icon?: string | undefined;
4171
4269
  eventSlug?: string | undefined;
4172
4270
  slug?: string | undefined;
4271
+ url?: string | undefined;
4173
4272
  }, {
4174
4273
  title?: string | undefined;
4175
4274
  outcome?: string | undefined;
@@ -4181,6 +4280,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
4181
4280
  icon?: string | undefined;
4182
4281
  eventSlug?: string | undefined;
4183
4282
  slug?: string | undefined;
4283
+ url?: string | undefined;
4184
4284
  }>, "many">;
4185
4285
  chainId: z.ZodNumber;
4186
4286
  }, "strip", z.ZodTypeAny, {
@@ -4198,6 +4298,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
4198
4298
  icon?: string | undefined;
4199
4299
  eventSlug?: string | undefined;
4200
4300
  slug?: string | undefined;
4301
+ url?: string | undefined;
4201
4302
  }[];
4202
4303
  }, {
4203
4304
  chainId: number;
@@ -4214,6 +4315,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
4214
4315
  icon?: string | undefined;
4215
4316
  eventSlug?: string | undefined;
4216
4317
  slug?: string | undefined;
4318
+ url?: string | undefined;
4217
4319
  }[];
4218
4320
  }>, z.ZodObject<{
4219
4321
  action: z.ZodLiteral<"predictionMarketWithdraw">;
@@ -4346,6 +4448,8 @@ export declare const PendingToolCallSchema: z.ZodObject<{
4346
4448
  shares: string;
4347
4449
  usdcAmount: string;
4348
4450
  currentPrice: string;
4451
+ url?: string | undefined;
4452
+ image?: string | undefined;
4349
4453
  } | {
4350
4454
  chainId: number;
4351
4455
  action: "predictionMarketRedeem";
@@ -4361,6 +4465,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
4361
4465
  icon?: string | undefined;
4362
4466
  eventSlug?: string | undefined;
4363
4467
  slug?: string | undefined;
4468
+ url?: string | undefined;
4364
4469
  }[];
4365
4470
  } | {
4366
4471
  chainId: number;
@@ -4463,6 +4568,8 @@ export declare const PendingToolCallSchema: z.ZodObject<{
4463
4568
  shares: string;
4464
4569
  usdcAmount: string;
4465
4570
  currentPrice: string;
4571
+ url?: string | undefined;
4572
+ image?: string | undefined;
4466
4573
  } | {
4467
4574
  chainId: number;
4468
4575
  action: "predictionMarketRedeem";
@@ -4478,6 +4585,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
4478
4585
  icon?: string | undefined;
4479
4586
  eventSlug?: string | undefined;
4480
4587
  slug?: string | undefined;
4588
+ url?: string | undefined;
4481
4589
  }[];
4482
4590
  } | {
4483
4591
  chainId: number;
@@ -4897,6 +5005,10 @@ export declare const PendingToolCallSchema: z.ZodObject<{
4897
5005
  shares: z.ZodString;
4898
5006
  usdcAmount: z.ZodString;
4899
5007
  currentPrice: z.ZodString;
5008
+ /** Image URL for the market */
5009
+ image: z.ZodOptional<z.ZodString>;
5010
+ /** Full Polymarket URL for the market */
5011
+ url: z.ZodOptional<z.ZodString>;
4900
5012
  chainId: z.ZodNumber;
4901
5013
  }, "strip", z.ZodTypeAny, {
4902
5014
  chainId: number;
@@ -4911,6 +5023,8 @@ export declare const PendingToolCallSchema: z.ZodObject<{
4911
5023
  shares: string;
4912
5024
  usdcAmount: string;
4913
5025
  currentPrice: string;
5026
+ url?: string | undefined;
5027
+ image?: string | undefined;
4914
5028
  }, {
4915
5029
  chainId: number;
4916
5030
  action: "predictionMarketBet";
@@ -4924,6 +5038,8 @@ export declare const PendingToolCallSchema: z.ZodObject<{
4924
5038
  shares: string;
4925
5039
  usdcAmount: string;
4926
5040
  currentPrice: string;
5041
+ url?: string | undefined;
5042
+ image?: string | undefined;
4927
5043
  }>, z.ZodObject<{
4928
5044
  action: z.ZodLiteral<"predictionMarketRedeem">;
4929
5045
  protocol: z.ZodString;
@@ -4938,6 +5054,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
4938
5054
  icon: z.ZodOptional<z.ZodString>;
4939
5055
  eventSlug: z.ZodOptional<z.ZodString>;
4940
5056
  slug: z.ZodOptional<z.ZodString>;
5057
+ url: z.ZodOptional<z.ZodString>;
4941
5058
  }, "strip", z.ZodTypeAny, {
4942
5059
  title?: string | undefined;
4943
5060
  outcome?: string | undefined;
@@ -4949,6 +5066,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
4949
5066
  icon?: string | undefined;
4950
5067
  eventSlug?: string | undefined;
4951
5068
  slug?: string | undefined;
5069
+ url?: string | undefined;
4952
5070
  }, {
4953
5071
  title?: string | undefined;
4954
5072
  outcome?: string | undefined;
@@ -4960,6 +5078,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
4960
5078
  icon?: string | undefined;
4961
5079
  eventSlug?: string | undefined;
4962
5080
  slug?: string | undefined;
5081
+ url?: string | undefined;
4963
5082
  }>, "many">;
4964
5083
  chainId: z.ZodNumber;
4965
5084
  }, "strip", z.ZodTypeAny, {
@@ -4977,6 +5096,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
4977
5096
  icon?: string | undefined;
4978
5097
  eventSlug?: string | undefined;
4979
5098
  slug?: string | undefined;
5099
+ url?: string | undefined;
4980
5100
  }[];
4981
5101
  }, {
4982
5102
  chainId: number;
@@ -4993,6 +5113,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
4993
5113
  icon?: string | undefined;
4994
5114
  eventSlug?: string | undefined;
4995
5115
  slug?: string | undefined;
5116
+ url?: string | undefined;
4996
5117
  }[];
4997
5118
  }>, z.ZodObject<{
4998
5119
  action: z.ZodLiteral<"predictionMarketWithdraw">;
@@ -5143,6 +5264,8 @@ export declare const PendingToolCallSchema: z.ZodObject<{
5143
5264
  shares: string;
5144
5265
  usdcAmount: string;
5145
5266
  currentPrice: string;
5267
+ url?: string | undefined;
5268
+ image?: string | undefined;
5146
5269
  } | {
5147
5270
  chainId: number;
5148
5271
  action: "predictionMarketRedeem";
@@ -5158,6 +5281,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
5158
5281
  icon?: string | undefined;
5159
5282
  eventSlug?: string | undefined;
5160
5283
  slug?: string | undefined;
5284
+ url?: string | undefined;
5161
5285
  }[];
5162
5286
  } | {
5163
5287
  chainId: number;
@@ -5278,6 +5402,8 @@ export declare const PendingToolCallSchema: z.ZodObject<{
5278
5402
  shares: string;
5279
5403
  usdcAmount: string;
5280
5404
  currentPrice: string;
5405
+ url?: string | undefined;
5406
+ image?: string | undefined;
5281
5407
  } | {
5282
5408
  chainId: number;
5283
5409
  action: "predictionMarketRedeem";
@@ -5293,6 +5419,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
5293
5419
  icon?: string | undefined;
5294
5420
  eventSlug?: string | undefined;
5295
5421
  slug?: string | undefined;
5422
+ url?: string | undefined;
5296
5423
  }[];
5297
5424
  } | {
5298
5425
  chainId: number;
@@ -5560,6 +5687,10 @@ export declare const PendingToolCallSchema: z.ZodObject<{
5560
5687
  shares: z.ZodString;
5561
5688
  usdcAmount: z.ZodString;
5562
5689
  currentPrice: z.ZodString;
5690
+ /** Image URL for the market */
5691
+ image: z.ZodOptional<z.ZodString>;
5692
+ /** Full Polymarket URL for the market */
5693
+ url: z.ZodOptional<z.ZodString>;
5563
5694
  chainId: z.ZodNumber;
5564
5695
  }, "strip", z.ZodTypeAny, {
5565
5696
  chainId: number;
@@ -5574,6 +5705,8 @@ export declare const PendingToolCallSchema: z.ZodObject<{
5574
5705
  shares: string;
5575
5706
  usdcAmount: string;
5576
5707
  currentPrice: string;
5708
+ url?: string | undefined;
5709
+ image?: string | undefined;
5577
5710
  }, {
5578
5711
  chainId: number;
5579
5712
  action: "predictionMarketBet";
@@ -5587,6 +5720,8 @@ export declare const PendingToolCallSchema: z.ZodObject<{
5587
5720
  shares: string;
5588
5721
  usdcAmount: string;
5589
5722
  currentPrice: string;
5723
+ url?: string | undefined;
5724
+ image?: string | undefined;
5590
5725
  }>, z.ZodObject<{
5591
5726
  action: z.ZodLiteral<"predictionMarketRedeem">;
5592
5727
  protocol: z.ZodString;
@@ -5601,6 +5736,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
5601
5736
  icon: z.ZodOptional<z.ZodString>;
5602
5737
  eventSlug: z.ZodOptional<z.ZodString>;
5603
5738
  slug: z.ZodOptional<z.ZodString>;
5739
+ url: z.ZodOptional<z.ZodString>;
5604
5740
  }, "strip", z.ZodTypeAny, {
5605
5741
  title?: string | undefined;
5606
5742
  outcome?: string | undefined;
@@ -5612,6 +5748,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
5612
5748
  icon?: string | undefined;
5613
5749
  eventSlug?: string | undefined;
5614
5750
  slug?: string | undefined;
5751
+ url?: string | undefined;
5615
5752
  }, {
5616
5753
  title?: string | undefined;
5617
5754
  outcome?: string | undefined;
@@ -5623,6 +5760,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
5623
5760
  icon?: string | undefined;
5624
5761
  eventSlug?: string | undefined;
5625
5762
  slug?: string | undefined;
5763
+ url?: string | undefined;
5626
5764
  }>, "many">;
5627
5765
  chainId: z.ZodNumber;
5628
5766
  }, "strip", z.ZodTypeAny, {
@@ -5640,6 +5778,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
5640
5778
  icon?: string | undefined;
5641
5779
  eventSlug?: string | undefined;
5642
5780
  slug?: string | undefined;
5781
+ url?: string | undefined;
5643
5782
  }[];
5644
5783
  }, {
5645
5784
  chainId: number;
@@ -5656,6 +5795,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
5656
5795
  icon?: string | undefined;
5657
5796
  eventSlug?: string | undefined;
5658
5797
  slug?: string | undefined;
5798
+ url?: string | undefined;
5659
5799
  }[];
5660
5800
  }>, z.ZodObject<{
5661
5801
  action: z.ZodLiteral<"predictionMarketWithdraw">;
@@ -5790,6 +5930,8 @@ export declare const PendingToolCallSchema: z.ZodObject<{
5790
5930
  shares: string;
5791
5931
  usdcAmount: string;
5792
5932
  currentPrice: string;
5933
+ url?: string | undefined;
5934
+ image?: string | undefined;
5793
5935
  } | {
5794
5936
  chainId: number;
5795
5937
  action: "predictionMarketRedeem";
@@ -5805,6 +5947,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
5805
5947
  icon?: string | undefined;
5806
5948
  eventSlug?: string | undefined;
5807
5949
  slug?: string | undefined;
5950
+ url?: string | undefined;
5808
5951
  }[];
5809
5952
  } | {
5810
5953
  chainId: number;
@@ -5907,6 +6050,8 @@ export declare const PendingToolCallSchema: z.ZodObject<{
5907
6050
  shares: string;
5908
6051
  usdcAmount: string;
5909
6052
  currentPrice: string;
6053
+ url?: string | undefined;
6054
+ image?: string | undefined;
5910
6055
  } | {
5911
6056
  chainId: number;
5912
6057
  action: "predictionMarketRedeem";
@@ -5922,6 +6067,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
5922
6067
  icon?: string | undefined;
5923
6068
  eventSlug?: string | undefined;
5924
6069
  slug?: string | undefined;
6070
+ url?: string | undefined;
5925
6071
  }[];
5926
6072
  } | {
5927
6073
  chainId: number;
@@ -6042,6 +6188,8 @@ export declare const PendingToolCallSchema: z.ZodObject<{
6042
6188
  shares: string;
6043
6189
  usdcAmount: string;
6044
6190
  currentPrice: string;
6191
+ url?: string | undefined;
6192
+ image?: string | undefined;
6045
6193
  } | {
6046
6194
  chainId: number;
6047
6195
  action: "predictionMarketRedeem";
@@ -6057,6 +6205,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
6057
6205
  icon?: string | undefined;
6058
6206
  eventSlug?: string | undefined;
6059
6207
  slug?: string | undefined;
6208
+ url?: string | undefined;
6060
6209
  }[];
6061
6210
  } | {
6062
6211
  chainId: number;
@@ -6151,6 +6300,8 @@ export declare const PendingToolCallSchema: z.ZodObject<{
6151
6300
  shares: string;
6152
6301
  usdcAmount: string;
6153
6302
  currentPrice: string;
6303
+ url?: string | undefined;
6304
+ image?: string | undefined;
6154
6305
  } | {
6155
6306
  chainId: number;
6156
6307
  action: "predictionMarketRedeem";
@@ -6166,6 +6317,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
6166
6317
  icon?: string | undefined;
6167
6318
  eventSlug?: string | undefined;
6168
6319
  slug?: string | undefined;
6320
+ url?: string | undefined;
6169
6321
  }[];
6170
6322
  } | {
6171
6323
  chainId: number;
@@ -6270,6 +6422,8 @@ export declare const PendingToolCallSchema: z.ZodObject<{
6270
6422
  shares: string;
6271
6423
  usdcAmount: string;
6272
6424
  currentPrice: string;
6425
+ url?: string | undefined;
6426
+ image?: string | undefined;
6273
6427
  } | {
6274
6428
  chainId: number;
6275
6429
  action: "predictionMarketRedeem";
@@ -6285,6 +6439,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
6285
6439
  icon?: string | undefined;
6286
6440
  eventSlug?: string | undefined;
6287
6441
  slug?: string | undefined;
6442
+ url?: string | undefined;
6288
6443
  }[];
6289
6444
  } | {
6290
6445
  chainId: number;
@@ -6387,6 +6542,8 @@ export declare const PendingToolCallSchema: z.ZodObject<{
6387
6542
  shares: string;
6388
6543
  usdcAmount: string;
6389
6544
  currentPrice: string;
6545
+ url?: string | undefined;
6546
+ image?: string | undefined;
6390
6547
  } | {
6391
6548
  chainId: number;
6392
6549
  action: "predictionMarketRedeem";
@@ -6402,6 +6559,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
6402
6559
  icon?: string | undefined;
6403
6560
  eventSlug?: string | undefined;
6404
6561
  slug?: string | undefined;
6562
+ url?: string | undefined;
6405
6563
  }[];
6406
6564
  } | {
6407
6565
  chainId: number;
@@ -6522,6 +6680,8 @@ export declare const PendingToolCallSchema: z.ZodObject<{
6522
6680
  shares: string;
6523
6681
  usdcAmount: string;
6524
6682
  currentPrice: string;
6683
+ url?: string | undefined;
6684
+ image?: string | undefined;
6525
6685
  } | {
6526
6686
  chainId: number;
6527
6687
  action: "predictionMarketRedeem";
@@ -6537,6 +6697,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
6537
6697
  icon?: string | undefined;
6538
6698
  eventSlug?: string | undefined;
6539
6699
  slug?: string | undefined;
6700
+ url?: string | undefined;
6540
6701
  }[];
6541
6702
  } | {
6542
6703
  chainId: number;
@@ -6631,6 +6792,8 @@ export declare const PendingToolCallSchema: z.ZodObject<{
6631
6792
  shares: string;
6632
6793
  usdcAmount: string;
6633
6794
  currentPrice: string;
6795
+ url?: string | undefined;
6796
+ image?: string | undefined;
6634
6797
  } | {
6635
6798
  chainId: number;
6636
6799
  action: "predictionMarketRedeem";
@@ -6646,6 +6809,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
6646
6809
  icon?: string | undefined;
6647
6810
  eventSlug?: string | undefined;
6648
6811
  slug?: string | undefined;
6812
+ url?: string | undefined;
6649
6813
  }[];
6650
6814
  } | {
6651
6815
  chainId: number;
@@ -6994,6 +7158,8 @@ export declare const PendingToolCallSchema: z.ZodObject<{
6994
7158
  shares: string;
6995
7159
  usdcAmount: string;
6996
7160
  currentPrice: string;
7161
+ url?: string | undefined;
7162
+ image?: string | undefined;
6997
7163
  } | {
6998
7164
  chainId: number;
6999
7165
  action: "predictionMarketRedeem";
@@ -7009,6 +7175,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
7009
7175
  icon?: string | undefined;
7010
7176
  eventSlug?: string | undefined;
7011
7177
  slug?: string | undefined;
7178
+ url?: string | undefined;
7012
7179
  }[];
7013
7180
  } | {
7014
7181
  chainId: number;
@@ -7111,6 +7278,8 @@ export declare const PendingToolCallSchema: z.ZodObject<{
7111
7278
  shares: string;
7112
7279
  usdcAmount: string;
7113
7280
  currentPrice: string;
7281
+ url?: string | undefined;
7282
+ image?: string | undefined;
7114
7283
  } | {
7115
7284
  chainId: number;
7116
7285
  action: "predictionMarketRedeem";
@@ -7126,6 +7295,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
7126
7295
  icon?: string | undefined;
7127
7296
  eventSlug?: string | undefined;
7128
7297
  slug?: string | undefined;
7298
+ url?: string | undefined;
7129
7299
  }[];
7130
7300
  } | {
7131
7301
  chainId: number;
@@ -7246,6 +7416,8 @@ export declare const PendingToolCallSchema: z.ZodObject<{
7246
7416
  shares: string;
7247
7417
  usdcAmount: string;
7248
7418
  currentPrice: string;
7419
+ url?: string | undefined;
7420
+ image?: string | undefined;
7249
7421
  } | {
7250
7422
  chainId: number;
7251
7423
  action: "predictionMarketRedeem";
@@ -7261,6 +7433,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
7261
7433
  icon?: string | undefined;
7262
7434
  eventSlug?: string | undefined;
7263
7435
  slug?: string | undefined;
7436
+ url?: string | undefined;
7264
7437
  }[];
7265
7438
  } | {
7266
7439
  chainId: number;
@@ -7365,6 +7538,8 @@ export declare const PendingToolCallSchema: z.ZodObject<{
7365
7538
  shares: string;
7366
7539
  usdcAmount: string;
7367
7540
  currentPrice: string;
7541
+ url?: string | undefined;
7542
+ image?: string | undefined;
7368
7543
  } | {
7369
7544
  chainId: number;
7370
7545
  action: "predictionMarketRedeem";
@@ -7380,6 +7555,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
7380
7555
  icon?: string | undefined;
7381
7556
  eventSlug?: string | undefined;
7382
7557
  slug?: string | undefined;
7558
+ url?: string | undefined;
7383
7559
  }[];
7384
7560
  } | {
7385
7561
  chainId: number;
@@ -7482,6 +7658,8 @@ export declare const PendingToolCallSchema: z.ZodObject<{
7482
7658
  shares: string;
7483
7659
  usdcAmount: string;
7484
7660
  currentPrice: string;
7661
+ url?: string | undefined;
7662
+ image?: string | undefined;
7485
7663
  } | {
7486
7664
  chainId: number;
7487
7665
  action: "predictionMarketRedeem";
@@ -7497,6 +7675,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
7497
7675
  icon?: string | undefined;
7498
7676
  eventSlug?: string | undefined;
7499
7677
  slug?: string | undefined;
7678
+ url?: string | undefined;
7500
7679
  }[];
7501
7680
  } | {
7502
7681
  chainId: number;
@@ -7617,6 +7796,8 @@ export declare const PendingToolCallSchema: z.ZodObject<{
7617
7796
  shares: string;
7618
7797
  usdcAmount: string;
7619
7798
  currentPrice: string;
7799
+ url?: string | undefined;
7800
+ image?: string | undefined;
7620
7801
  } | {
7621
7802
  chainId: number;
7622
7803
  action: "predictionMarketRedeem";
@@ -7632,6 +7813,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
7632
7813
  icon?: string | undefined;
7633
7814
  eventSlug?: string | undefined;
7634
7815
  slug?: string | undefined;
7816
+ url?: string | undefined;
7635
7817
  }[];
7636
7818
  } | {
7637
7819
  chainId: number;
@@ -7726,6 +7908,8 @@ export declare const PendingToolCallSchema: z.ZodObject<{
7726
7908
  shares: string;
7727
7909
  usdcAmount: string;
7728
7910
  currentPrice: string;
7911
+ url?: string | undefined;
7912
+ image?: string | undefined;
7729
7913
  } | {
7730
7914
  chainId: number;
7731
7915
  action: "predictionMarketRedeem";
@@ -7741,6 +7925,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
7741
7925
  icon?: string | undefined;
7742
7926
  eventSlug?: string | undefined;
7743
7927
  slug?: string | undefined;
7928
+ url?: string | undefined;
7744
7929
  }[];
7745
7930
  } | {
7746
7931
  chainId: number;
@@ -7895,6 +8080,8 @@ export declare const PendingToolCallSchema: z.ZodObject<{
7895
8080
  shares: string;
7896
8081
  usdcAmount: string;
7897
8082
  currentPrice: string;
8083
+ url?: string | undefined;
8084
+ image?: string | undefined;
7898
8085
  } | {
7899
8086
  chainId: number;
7900
8087
  action: "predictionMarketRedeem";
@@ -7910,6 +8097,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
7910
8097
  icon?: string | undefined;
7911
8098
  eventSlug?: string | undefined;
7912
8099
  slug?: string | undefined;
8100
+ url?: string | undefined;
7913
8101
  }[];
7914
8102
  } | {
7915
8103
  chainId: number;
@@ -8012,6 +8200,8 @@ export declare const PendingToolCallSchema: z.ZodObject<{
8012
8200
  shares: string;
8013
8201
  usdcAmount: string;
8014
8202
  currentPrice: string;
8203
+ url?: string | undefined;
8204
+ image?: string | undefined;
8015
8205
  } | {
8016
8206
  chainId: number;
8017
8207
  action: "predictionMarketRedeem";
@@ -8027,6 +8217,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
8027
8217
  icon?: string | undefined;
8028
8218
  eventSlug?: string | undefined;
8029
8219
  slug?: string | undefined;
8220
+ url?: string | undefined;
8030
8221
  }[];
8031
8222
  } | {
8032
8223
  chainId: number;
@@ -8147,6 +8338,8 @@ export declare const PendingToolCallSchema: z.ZodObject<{
8147
8338
  shares: string;
8148
8339
  usdcAmount: string;
8149
8340
  currentPrice: string;
8341
+ url?: string | undefined;
8342
+ image?: string | undefined;
8150
8343
  } | {
8151
8344
  chainId: number;
8152
8345
  action: "predictionMarketRedeem";
@@ -8162,6 +8355,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
8162
8355
  icon?: string | undefined;
8163
8356
  eventSlug?: string | undefined;
8164
8357
  slug?: string | undefined;
8358
+ url?: string | undefined;
8165
8359
  }[];
8166
8360
  } | {
8167
8361
  chainId: number;
@@ -8266,6 +8460,8 @@ export declare const PendingToolCallSchema: z.ZodObject<{
8266
8460
  shares: string;
8267
8461
  usdcAmount: string;
8268
8462
  currentPrice: string;
8463
+ url?: string | undefined;
8464
+ image?: string | undefined;
8269
8465
  } | {
8270
8466
  chainId: number;
8271
8467
  action: "predictionMarketRedeem";
@@ -8281,6 +8477,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
8281
8477
  icon?: string | undefined;
8282
8478
  eventSlug?: string | undefined;
8283
8479
  slug?: string | undefined;
8480
+ url?: string | undefined;
8284
8481
  }[];
8285
8482
  } | {
8286
8483
  chainId: number;
@@ -8383,6 +8580,8 @@ export declare const PendingToolCallSchema: z.ZodObject<{
8383
8580
  shares: string;
8384
8581
  usdcAmount: string;
8385
8582
  currentPrice: string;
8583
+ url?: string | undefined;
8584
+ image?: string | undefined;
8386
8585
  } | {
8387
8586
  chainId: number;
8388
8587
  action: "predictionMarketRedeem";
@@ -8398,6 +8597,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
8398
8597
  icon?: string | undefined;
8399
8598
  eventSlug?: string | undefined;
8400
8599
  slug?: string | undefined;
8600
+ url?: string | undefined;
8401
8601
  }[];
8402
8602
  } | {
8403
8603
  chainId: number;
@@ -8518,6 +8718,8 @@ export declare const PendingToolCallSchema: z.ZodObject<{
8518
8718
  shares: string;
8519
8719
  usdcAmount: string;
8520
8720
  currentPrice: string;
8721
+ url?: string | undefined;
8722
+ image?: string | undefined;
8521
8723
  } | {
8522
8724
  chainId: number;
8523
8725
  action: "predictionMarketRedeem";
@@ -8533,6 +8735,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
8533
8735
  icon?: string | undefined;
8534
8736
  eventSlug?: string | undefined;
8535
8737
  slug?: string | undefined;
8738
+ url?: string | undefined;
8536
8739
  }[];
8537
8740
  } | {
8538
8741
  chainId: number;
@@ -8627,6 +8830,8 @@ export declare const PendingToolCallSchema: z.ZodObject<{
8627
8830
  shares: string;
8628
8831
  usdcAmount: string;
8629
8832
  currentPrice: string;
8833
+ url?: string | undefined;
8834
+ image?: string | undefined;
8630
8835
  } | {
8631
8836
  chainId: number;
8632
8837
  action: "predictionMarketRedeem";
@@ -8642,6 +8847,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
8642
8847
  icon?: string | undefined;
8643
8848
  eventSlug?: string | undefined;
8644
8849
  slug?: string | undefined;
8850
+ url?: string | undefined;
8645
8851
  }[];
8646
8852
  } | {
8647
8853
  chainId: number;