@pmxt/mcp 2.32.3 → 2.33.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/generated/tools.js +347 -22
- package/package.json +1 -1
package/dist/generated/tools.js
CHANGED
|
@@ -20,7 +20,8 @@ export const TOOLS = [
|
|
|
20
20
|
"opinion",
|
|
21
21
|
"metaculus",
|
|
22
22
|
"smarkets",
|
|
23
|
-
"polymarket_us"
|
|
23
|
+
"polymarket_us",
|
|
24
|
+
"router"
|
|
24
25
|
],
|
|
25
26
|
"description": "The prediction market exchange to target."
|
|
26
27
|
},
|
|
@@ -142,7 +143,8 @@ export const TOOLS = [
|
|
|
142
143
|
"opinion",
|
|
143
144
|
"metaculus",
|
|
144
145
|
"smarkets",
|
|
145
|
-
"polymarket_us"
|
|
146
|
+
"polymarket_us",
|
|
147
|
+
"router"
|
|
146
148
|
],
|
|
147
149
|
"description": "The prediction market exchange to target."
|
|
148
150
|
},
|
|
@@ -199,6 +201,56 @@ export const TOOLS = [
|
|
|
199
201
|
}
|
|
200
202
|
]
|
|
201
203
|
},
|
|
204
|
+
{
|
|
205
|
+
"name": "compareMarketPrices",
|
|
206
|
+
"description": "Compare prices across venues for identity matches of a market.",
|
|
207
|
+
"inputSchema": {
|
|
208
|
+
"type": "object",
|
|
209
|
+
"properties": {
|
|
210
|
+
"exchange": {
|
|
211
|
+
"type": "string",
|
|
212
|
+
"enum": [
|
|
213
|
+
"polymarket",
|
|
214
|
+
"kalshi",
|
|
215
|
+
"kalshi-demo",
|
|
216
|
+
"limitless",
|
|
217
|
+
"probable",
|
|
218
|
+
"baozi",
|
|
219
|
+
"myriad",
|
|
220
|
+
"opinion",
|
|
221
|
+
"metaculus",
|
|
222
|
+
"smarkets",
|
|
223
|
+
"polymarket_us",
|
|
224
|
+
"router"
|
|
225
|
+
],
|
|
226
|
+
"description": "The prediction market exchange to target."
|
|
227
|
+
},
|
|
228
|
+
"params": {
|
|
229
|
+
"type": "object"
|
|
230
|
+
},
|
|
231
|
+
"verbose": {
|
|
232
|
+
"type": "boolean",
|
|
233
|
+
"description": "Return full uncompacted response. Default false returns a compact, agent-friendly summary."
|
|
234
|
+
}
|
|
235
|
+
},
|
|
236
|
+
"required": [
|
|
237
|
+
"exchange",
|
|
238
|
+
"params"
|
|
239
|
+
]
|
|
240
|
+
},
|
|
241
|
+
"annotations": {
|
|
242
|
+
"readOnlyHint": true
|
|
243
|
+
},
|
|
244
|
+
"method": "compareMarketPrices",
|
|
245
|
+
"args": [
|
|
246
|
+
{
|
|
247
|
+
"name": "params",
|
|
248
|
+
"kind": "object",
|
|
249
|
+
"optional": false,
|
|
250
|
+
"flatten": false
|
|
251
|
+
}
|
|
252
|
+
]
|
|
253
|
+
},
|
|
202
254
|
{
|
|
203
255
|
"name": "createOrder",
|
|
204
256
|
"description": "Place a new order on the exchange.",
|
|
@@ -218,7 +270,8 @@ export const TOOLS = [
|
|
|
218
270
|
"opinion",
|
|
219
271
|
"metaculus",
|
|
220
272
|
"smarkets",
|
|
221
|
-
"polymarket_us"
|
|
273
|
+
"polymarket_us",
|
|
274
|
+
"router"
|
|
222
275
|
],
|
|
223
276
|
"description": "The prediction market exchange to target."
|
|
224
277
|
},
|
|
@@ -339,7 +392,8 @@ export const TOOLS = [
|
|
|
339
392
|
"opinion",
|
|
340
393
|
"metaculus",
|
|
341
394
|
"smarkets",
|
|
342
|
-
"polymarket_us"
|
|
395
|
+
"polymarket_us",
|
|
396
|
+
"router"
|
|
343
397
|
],
|
|
344
398
|
"description": "The prediction market exchange to target."
|
|
345
399
|
},
|
|
@@ -414,6 +468,61 @@ export const TOOLS = [
|
|
|
414
468
|
}
|
|
415
469
|
]
|
|
416
470
|
},
|
|
471
|
+
{
|
|
472
|
+
"name": "fetchArbitrage",
|
|
473
|
+
"description": "Scan for arbitrage opportunities across identity matches.",
|
|
474
|
+
"inputSchema": {
|
|
475
|
+
"type": "object",
|
|
476
|
+
"properties": {
|
|
477
|
+
"exchange": {
|
|
478
|
+
"type": "string",
|
|
479
|
+
"enum": [
|
|
480
|
+
"polymarket",
|
|
481
|
+
"kalshi",
|
|
482
|
+
"kalshi-demo",
|
|
483
|
+
"limitless",
|
|
484
|
+
"probable",
|
|
485
|
+
"baozi",
|
|
486
|
+
"myriad",
|
|
487
|
+
"opinion",
|
|
488
|
+
"metaculus",
|
|
489
|
+
"smarkets",
|
|
490
|
+
"polymarket_us",
|
|
491
|
+
"router"
|
|
492
|
+
],
|
|
493
|
+
"description": "The prediction market exchange to target."
|
|
494
|
+
},
|
|
495
|
+
"minSpread": {
|
|
496
|
+
"type": "number"
|
|
497
|
+
},
|
|
498
|
+
"category": {
|
|
499
|
+
"type": "string"
|
|
500
|
+
},
|
|
501
|
+
"limit": {
|
|
502
|
+
"type": "number"
|
|
503
|
+
},
|
|
504
|
+
"verbose": {
|
|
505
|
+
"type": "boolean",
|
|
506
|
+
"description": "Return full uncompacted response. Default false returns a compact, agent-friendly summary."
|
|
507
|
+
}
|
|
508
|
+
},
|
|
509
|
+
"required": [
|
|
510
|
+
"exchange"
|
|
511
|
+
]
|
|
512
|
+
},
|
|
513
|
+
"annotations": {
|
|
514
|
+
"readOnlyHint": true
|
|
515
|
+
},
|
|
516
|
+
"method": "fetchArbitrage",
|
|
517
|
+
"args": [
|
|
518
|
+
{
|
|
519
|
+
"name": "params",
|
|
520
|
+
"kind": "object",
|
|
521
|
+
"optional": true,
|
|
522
|
+
"flatten": true
|
|
523
|
+
}
|
|
524
|
+
]
|
|
525
|
+
},
|
|
417
526
|
{
|
|
418
527
|
"name": "fetchBalance",
|
|
419
528
|
"description": "Fetch account balances.",
|
|
@@ -433,7 +542,8 @@ export const TOOLS = [
|
|
|
433
542
|
"opinion",
|
|
434
543
|
"metaculus",
|
|
435
544
|
"smarkets",
|
|
436
|
-
"polymarket_us"
|
|
545
|
+
"polymarket_us",
|
|
546
|
+
"router"
|
|
437
547
|
],
|
|
438
548
|
"description": "The prediction market exchange to target."
|
|
439
549
|
},
|
|
@@ -508,7 +618,8 @@ export const TOOLS = [
|
|
|
508
618
|
"opinion",
|
|
509
619
|
"metaculus",
|
|
510
620
|
"smarkets",
|
|
511
|
-
"polymarket_us"
|
|
621
|
+
"polymarket_us",
|
|
622
|
+
"router"
|
|
512
623
|
],
|
|
513
624
|
"description": "The prediction market exchange to target."
|
|
514
625
|
},
|
|
@@ -602,7 +713,8 @@ export const TOOLS = [
|
|
|
602
713
|
"opinion",
|
|
603
714
|
"metaculus",
|
|
604
715
|
"smarkets",
|
|
605
|
-
"polymarket_us"
|
|
716
|
+
"polymarket_us",
|
|
717
|
+
"router"
|
|
606
718
|
],
|
|
607
719
|
"description": "The prediction market exchange to target."
|
|
608
720
|
},
|
|
@@ -695,6 +807,70 @@ export const TOOLS = [
|
|
|
695
807
|
}
|
|
696
808
|
]
|
|
697
809
|
},
|
|
810
|
+
{
|
|
811
|
+
"name": "fetchEventMatches",
|
|
812
|
+
"description": "Fetch cross-venue matches for a given event.",
|
|
813
|
+
"inputSchema": {
|
|
814
|
+
"type": "object",
|
|
815
|
+
"properties": {
|
|
816
|
+
"exchange": {
|
|
817
|
+
"type": "string",
|
|
818
|
+
"enum": [
|
|
819
|
+
"polymarket",
|
|
820
|
+
"kalshi",
|
|
821
|
+
"kalshi-demo",
|
|
822
|
+
"limitless",
|
|
823
|
+
"probable",
|
|
824
|
+
"baozi",
|
|
825
|
+
"myriad",
|
|
826
|
+
"opinion",
|
|
827
|
+
"metaculus",
|
|
828
|
+
"smarkets",
|
|
829
|
+
"polymarket_us",
|
|
830
|
+
"router"
|
|
831
|
+
],
|
|
832
|
+
"description": "The prediction market exchange to target."
|
|
833
|
+
},
|
|
834
|
+
"eventId": {
|
|
835
|
+
"type": "string"
|
|
836
|
+
},
|
|
837
|
+
"slug": {
|
|
838
|
+
"type": "string"
|
|
839
|
+
},
|
|
840
|
+
"relation": {
|
|
841
|
+
"$ref": "#/components/schemas/MatchRelation"
|
|
842
|
+
},
|
|
843
|
+
"minConfidence": {
|
|
844
|
+
"type": "number"
|
|
845
|
+
},
|
|
846
|
+
"limit": {
|
|
847
|
+
"type": "number"
|
|
848
|
+
},
|
|
849
|
+
"includePrices": {
|
|
850
|
+
"type": "boolean"
|
|
851
|
+
},
|
|
852
|
+
"verbose": {
|
|
853
|
+
"type": "boolean",
|
|
854
|
+
"description": "Return full uncompacted response. Default false returns a compact, agent-friendly summary."
|
|
855
|
+
}
|
|
856
|
+
},
|
|
857
|
+
"required": [
|
|
858
|
+
"exchange"
|
|
859
|
+
]
|
|
860
|
+
},
|
|
861
|
+
"annotations": {
|
|
862
|
+
"readOnlyHint": true
|
|
863
|
+
},
|
|
864
|
+
"method": "fetchEventMatches",
|
|
865
|
+
"args": [
|
|
866
|
+
{
|
|
867
|
+
"name": "params",
|
|
868
|
+
"kind": "object",
|
|
869
|
+
"optional": false,
|
|
870
|
+
"flatten": true
|
|
871
|
+
}
|
|
872
|
+
]
|
|
873
|
+
},
|
|
698
874
|
{
|
|
699
875
|
"name": "fetchEvents",
|
|
700
876
|
"description": "Fetch events with optional keyword search. Events group related markets together (e.g., \"Who will be Fed Chair?\" contains multiple candidate markets).",
|
|
@@ -714,7 +890,8 @@ export const TOOLS = [
|
|
|
714
890
|
"opinion",
|
|
715
891
|
"metaculus",
|
|
716
892
|
"smarkets",
|
|
717
|
-
"polymarket_us"
|
|
893
|
+
"polymarket_us",
|
|
894
|
+
"router"
|
|
718
895
|
],
|
|
719
896
|
"description": "The prediction market exchange to target."
|
|
720
897
|
},
|
|
@@ -807,6 +984,73 @@ export const TOOLS = [
|
|
|
807
984
|
}
|
|
808
985
|
]
|
|
809
986
|
},
|
|
987
|
+
{
|
|
988
|
+
"name": "fetchHedges",
|
|
989
|
+
"description": "Find hedging opportunities via subset/superset matches across venues.",
|
|
990
|
+
"inputSchema": {
|
|
991
|
+
"type": "object",
|
|
992
|
+
"properties": {
|
|
993
|
+
"exchange": {
|
|
994
|
+
"type": "string",
|
|
995
|
+
"enum": [
|
|
996
|
+
"polymarket",
|
|
997
|
+
"kalshi",
|
|
998
|
+
"kalshi-demo",
|
|
999
|
+
"limitless",
|
|
1000
|
+
"probable",
|
|
1001
|
+
"baozi",
|
|
1002
|
+
"myriad",
|
|
1003
|
+
"opinion",
|
|
1004
|
+
"metaculus",
|
|
1005
|
+
"smarkets",
|
|
1006
|
+
"polymarket_us",
|
|
1007
|
+
"router"
|
|
1008
|
+
],
|
|
1009
|
+
"description": "The prediction market exchange to target."
|
|
1010
|
+
},
|
|
1011
|
+
"marketId": {
|
|
1012
|
+
"type": "string"
|
|
1013
|
+
},
|
|
1014
|
+
"slug": {
|
|
1015
|
+
"type": "string"
|
|
1016
|
+
},
|
|
1017
|
+
"url": {
|
|
1018
|
+
"type": "string"
|
|
1019
|
+
},
|
|
1020
|
+
"relation": {
|
|
1021
|
+
"$ref": "#/components/schemas/MatchRelation"
|
|
1022
|
+
},
|
|
1023
|
+
"minConfidence": {
|
|
1024
|
+
"type": "number"
|
|
1025
|
+
},
|
|
1026
|
+
"limit": {
|
|
1027
|
+
"type": "number"
|
|
1028
|
+
},
|
|
1029
|
+
"includePrices": {
|
|
1030
|
+
"type": "boolean"
|
|
1031
|
+
},
|
|
1032
|
+
"verbose": {
|
|
1033
|
+
"type": "boolean",
|
|
1034
|
+
"description": "Return full uncompacted response. Default false returns a compact, agent-friendly summary."
|
|
1035
|
+
}
|
|
1036
|
+
},
|
|
1037
|
+
"required": [
|
|
1038
|
+
"exchange"
|
|
1039
|
+
]
|
|
1040
|
+
},
|
|
1041
|
+
"annotations": {
|
|
1042
|
+
"readOnlyHint": true
|
|
1043
|
+
},
|
|
1044
|
+
"method": "fetchHedges",
|
|
1045
|
+
"args": [
|
|
1046
|
+
{
|
|
1047
|
+
"name": "params",
|
|
1048
|
+
"kind": "object",
|
|
1049
|
+
"optional": false,
|
|
1050
|
+
"flatten": true
|
|
1051
|
+
}
|
|
1052
|
+
]
|
|
1053
|
+
},
|
|
810
1054
|
{
|
|
811
1055
|
"name": "fetchMarket",
|
|
812
1056
|
"description": "Fetch a single market by lookup parameters. Convenience wrapper around fetchMarkets() that returns a single result or throws MarketNotFound.",
|
|
@@ -826,7 +1070,8 @@ export const TOOLS = [
|
|
|
826
1070
|
"opinion",
|
|
827
1071
|
"metaculus",
|
|
828
1072
|
"smarkets",
|
|
829
|
-
"polymarket_us"
|
|
1073
|
+
"polymarket_us",
|
|
1074
|
+
"router"
|
|
830
1075
|
],
|
|
831
1076
|
"description": "The prediction market exchange to target."
|
|
832
1077
|
},
|
|
@@ -935,7 +1180,8 @@ export const TOOLS = [
|
|
|
935
1180
|
"opinion",
|
|
936
1181
|
"metaculus",
|
|
937
1182
|
"smarkets",
|
|
938
|
-
"polymarket_us"
|
|
1183
|
+
"polymarket_us",
|
|
1184
|
+
"router"
|
|
939
1185
|
],
|
|
940
1186
|
"description": "The prediction market exchange to target."
|
|
941
1187
|
},
|
|
@@ -1044,7 +1290,8 @@ export const TOOLS = [
|
|
|
1044
1290
|
"opinion",
|
|
1045
1291
|
"metaculus",
|
|
1046
1292
|
"smarkets",
|
|
1047
|
-
"polymarket_us"
|
|
1293
|
+
"polymarket_us",
|
|
1294
|
+
"router"
|
|
1048
1295
|
],
|
|
1049
1296
|
"description": "The prediction market exchange to target."
|
|
1050
1297
|
},
|
|
@@ -1079,6 +1326,73 @@ export const TOOLS = [
|
|
|
1079
1326
|
}
|
|
1080
1327
|
]
|
|
1081
1328
|
},
|
|
1329
|
+
{
|
|
1330
|
+
"name": "fetchMatches",
|
|
1331
|
+
"description": "Fetch cross-venue matches for a given market.",
|
|
1332
|
+
"inputSchema": {
|
|
1333
|
+
"type": "object",
|
|
1334
|
+
"properties": {
|
|
1335
|
+
"exchange": {
|
|
1336
|
+
"type": "string",
|
|
1337
|
+
"enum": [
|
|
1338
|
+
"polymarket",
|
|
1339
|
+
"kalshi",
|
|
1340
|
+
"kalshi-demo",
|
|
1341
|
+
"limitless",
|
|
1342
|
+
"probable",
|
|
1343
|
+
"baozi",
|
|
1344
|
+
"myriad",
|
|
1345
|
+
"opinion",
|
|
1346
|
+
"metaculus",
|
|
1347
|
+
"smarkets",
|
|
1348
|
+
"polymarket_us",
|
|
1349
|
+
"router"
|
|
1350
|
+
],
|
|
1351
|
+
"description": "The prediction market exchange to target."
|
|
1352
|
+
},
|
|
1353
|
+
"marketId": {
|
|
1354
|
+
"type": "string"
|
|
1355
|
+
},
|
|
1356
|
+
"slug": {
|
|
1357
|
+
"type": "string"
|
|
1358
|
+
},
|
|
1359
|
+
"url": {
|
|
1360
|
+
"type": "string"
|
|
1361
|
+
},
|
|
1362
|
+
"relation": {
|
|
1363
|
+
"$ref": "#/components/schemas/MatchRelation"
|
|
1364
|
+
},
|
|
1365
|
+
"minConfidence": {
|
|
1366
|
+
"type": "number"
|
|
1367
|
+
},
|
|
1368
|
+
"limit": {
|
|
1369
|
+
"type": "number"
|
|
1370
|
+
},
|
|
1371
|
+
"includePrices": {
|
|
1372
|
+
"type": "boolean"
|
|
1373
|
+
},
|
|
1374
|
+
"verbose": {
|
|
1375
|
+
"type": "boolean",
|
|
1376
|
+
"description": "Return full uncompacted response. Default false returns a compact, agent-friendly summary."
|
|
1377
|
+
}
|
|
1378
|
+
},
|
|
1379
|
+
"required": [
|
|
1380
|
+
"exchange"
|
|
1381
|
+
]
|
|
1382
|
+
},
|
|
1383
|
+
"annotations": {
|
|
1384
|
+
"readOnlyHint": true
|
|
1385
|
+
},
|
|
1386
|
+
"method": "fetchMatches",
|
|
1387
|
+
"args": [
|
|
1388
|
+
{
|
|
1389
|
+
"name": "params",
|
|
1390
|
+
"kind": "object",
|
|
1391
|
+
"optional": false,
|
|
1392
|
+
"flatten": true
|
|
1393
|
+
}
|
|
1394
|
+
]
|
|
1395
|
+
},
|
|
1082
1396
|
{
|
|
1083
1397
|
"name": "fetchMyTrades",
|
|
1084
1398
|
"description": "Fetch My Trades",
|
|
@@ -1098,7 +1412,8 @@ export const TOOLS = [
|
|
|
1098
1412
|
"opinion",
|
|
1099
1413
|
"metaculus",
|
|
1100
1414
|
"smarkets",
|
|
1101
|
-
"polymarket_us"
|
|
1415
|
+
"polymarket_us",
|
|
1416
|
+
"router"
|
|
1102
1417
|
],
|
|
1103
1418
|
"description": "The prediction market exchange to target."
|
|
1104
1419
|
},
|
|
@@ -1196,7 +1511,8 @@ export const TOOLS = [
|
|
|
1196
1511
|
"opinion",
|
|
1197
1512
|
"metaculus",
|
|
1198
1513
|
"smarkets",
|
|
1199
|
-
"polymarket_us"
|
|
1514
|
+
"polymarket_us",
|
|
1515
|
+
"router"
|
|
1200
1516
|
],
|
|
1201
1517
|
"description": "The prediction market exchange to target."
|
|
1202
1518
|
},
|
|
@@ -1277,7 +1593,8 @@ export const TOOLS = [
|
|
|
1277
1593
|
"opinion",
|
|
1278
1594
|
"metaculus",
|
|
1279
1595
|
"smarkets",
|
|
1280
|
-
"polymarket_us"
|
|
1596
|
+
"polymarket_us",
|
|
1597
|
+
"router"
|
|
1281
1598
|
],
|
|
1282
1599
|
"description": "The prediction market exchange to target."
|
|
1283
1600
|
},
|
|
@@ -1352,7 +1669,8 @@ export const TOOLS = [
|
|
|
1352
1669
|
"opinion",
|
|
1353
1670
|
"metaculus",
|
|
1354
1671
|
"smarkets",
|
|
1355
|
-
"polymarket_us"
|
|
1672
|
+
"polymarket_us",
|
|
1673
|
+
"router"
|
|
1356
1674
|
],
|
|
1357
1675
|
"description": "The prediction market exchange to target."
|
|
1358
1676
|
},
|
|
@@ -1428,7 +1746,8 @@ export const TOOLS = [
|
|
|
1428
1746
|
"opinion",
|
|
1429
1747
|
"metaculus",
|
|
1430
1748
|
"smarkets",
|
|
1431
|
-
"polymarket_us"
|
|
1749
|
+
"polymarket_us",
|
|
1750
|
+
"router"
|
|
1432
1751
|
],
|
|
1433
1752
|
"description": "The prediction market exchange to target."
|
|
1434
1753
|
},
|
|
@@ -1477,7 +1796,8 @@ export const TOOLS = [
|
|
|
1477
1796
|
"opinion",
|
|
1478
1797
|
"metaculus",
|
|
1479
1798
|
"smarkets",
|
|
1480
|
-
"polymarket_us"
|
|
1799
|
+
"polymarket_us",
|
|
1800
|
+
"router"
|
|
1481
1801
|
],
|
|
1482
1802
|
"description": "The prediction market exchange to target."
|
|
1483
1803
|
},
|
|
@@ -1552,7 +1872,8 @@ export const TOOLS = [
|
|
|
1552
1872
|
"opinion",
|
|
1553
1873
|
"metaculus",
|
|
1554
1874
|
"smarkets",
|
|
1555
|
-
"polymarket_us"
|
|
1875
|
+
"polymarket_us",
|
|
1876
|
+
"router"
|
|
1556
1877
|
],
|
|
1557
1878
|
"description": "The prediction market exchange to target."
|
|
1558
1879
|
},
|
|
@@ -1621,7 +1942,8 @@ export const TOOLS = [
|
|
|
1621
1942
|
"opinion",
|
|
1622
1943
|
"metaculus",
|
|
1623
1944
|
"smarkets",
|
|
1624
|
-
"polymarket_us"
|
|
1945
|
+
"polymarket_us",
|
|
1946
|
+
"router"
|
|
1625
1947
|
],
|
|
1626
1948
|
"description": "The prediction market exchange to target."
|
|
1627
1949
|
},
|
|
@@ -1726,7 +2048,8 @@ export const TOOLS = [
|
|
|
1726
2048
|
"opinion",
|
|
1727
2049
|
"metaculus",
|
|
1728
2050
|
"smarkets",
|
|
1729
|
-
"polymarket_us"
|
|
2051
|
+
"polymarket_us",
|
|
2052
|
+
"router"
|
|
1730
2053
|
],
|
|
1731
2054
|
"description": "The prediction market exchange to target."
|
|
1732
2055
|
},
|
|
@@ -1831,7 +2154,8 @@ export const TOOLS = [
|
|
|
1831
2154
|
"opinion",
|
|
1832
2155
|
"metaculus",
|
|
1833
2156
|
"smarkets",
|
|
1834
|
-
"polymarket_us"
|
|
2157
|
+
"polymarket_us",
|
|
2158
|
+
"router"
|
|
1835
2159
|
],
|
|
1836
2160
|
"description": "The prediction market exchange to target."
|
|
1837
2161
|
},
|
|
@@ -1907,7 +2231,8 @@ export const TOOLS = [
|
|
|
1907
2231
|
"opinion",
|
|
1908
2232
|
"metaculus",
|
|
1909
2233
|
"smarkets",
|
|
1910
|
-
"polymarket_us"
|
|
2234
|
+
"polymarket_us",
|
|
2235
|
+
"router"
|
|
1911
2236
|
],
|
|
1912
2237
|
"description": "The prediction market exchange to target."
|
|
1913
2238
|
},
|