@fuul/mcp-server 1.11.0 → 1.12.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 (38) hide show
  1. package/dist/currencies/currency-handlers.d.ts +6 -0
  2. package/dist/currencies/currency-handlers.d.ts.map +1 -0
  3. package/dist/currencies/currency-handlers.js +59 -0
  4. package/dist/currencies/currency-handlers.js.map +1 -0
  5. package/dist/currencies/fetch-price-references.d.ts +11 -0
  6. package/dist/currencies/fetch-price-references.d.ts.map +1 -0
  7. package/dist/currencies/fetch-price-references.js +40 -0
  8. package/dist/currencies/fetch-price-references.js.map +1 -0
  9. package/dist/currencies/resolve-token-holder-price-reference.d.ts +26 -0
  10. package/dist/currencies/resolve-token-holder-price-reference.d.ts.map +1 -0
  11. package/dist/currencies/resolve-token-holder-price-reference.js +113 -0
  12. package/dist/currencies/resolve-token-holder-price-reference.js.map +1 -0
  13. package/dist/index.js +24 -3
  14. package/dist/index.js.map +1 -1
  15. package/dist/tools/tool-descriptions.d.ts +2 -0
  16. package/dist/tools/tool-descriptions.d.ts.map +1 -1
  17. package/dist/tools/tool-descriptions.js +20 -1
  18. package/dist/tools/tool-descriptions.js.map +1 -1
  19. package/dist/tools/tool-schemas.d.ts +291 -232
  20. package/dist/tools/tool-schemas.d.ts.map +1 -1
  21. package/dist/tools/tool-schemas.js +27 -0
  22. package/dist/tools/tool-schemas.js.map +1 -1
  23. package/dist/triggers/price-reference-guide.d.ts +38 -0
  24. package/dist/triggers/price-reference-guide.d.ts.map +1 -0
  25. package/dist/triggers/price-reference-guide.js +55 -0
  26. package/dist/triggers/price-reference-guide.js.map +1 -0
  27. package/dist/triggers/trigger-create-payload-guide.d.ts +26 -1
  28. package/dist/triggers/trigger-create-payload-guide.d.ts.map +1 -1
  29. package/dist/triggers/trigger-create-payload-guide.js +40 -7
  30. package/dist/triggers/trigger-create-payload-guide.js.map +1 -1
  31. package/dist/triggers/trigger-write-handlers.d.ts.map +1 -1
  32. package/dist/triggers/trigger-write-handlers.js +22 -1
  33. package/dist/triggers/trigger-write-handlers.js.map +1 -1
  34. package/dist/triggers/validate-token-holder-price-reference.d.ts +8 -0
  35. package/dist/triggers/validate-token-holder-price-reference.d.ts.map +1 -0
  36. package/dist/triggers/validate-token-holder-price-reference.js +49 -0
  37. package/dist/triggers/validate-token-holder-price-reference.js.map +1 -0
  38. package/package.json +1 -1
@@ -9,6 +9,65 @@ export declare const listProjectsInputSchema: z.ZodObject<{
9
9
  query?: string | undefined;
10
10
  page?: number | undefined;
11
11
  }>;
12
+ export declare const listPriceReferencesInputSchema: z.ZodObject<{
13
+ chain_identifier: z.ZodOptional<z.ZodString>;
14
+ }, "strip", z.ZodTypeAny, {
15
+ chain_identifier?: string | undefined;
16
+ }, {
17
+ chain_identifier?: string | undefined;
18
+ }>;
19
+ export type ListPriceReferencesInput = z.infer<typeof listPriceReferencesInputSchema>;
20
+ export declare const resolveTokenHolderPriceReferenceFieldsSchema: z.ZodObject<{
21
+ token_address: z.ZodString;
22
+ chain_identifier: z.ZodOptional<z.ZodString>;
23
+ chain_id: z.ZodOptional<z.ZodNumber>;
24
+ token_kind: z.ZodOptional<z.ZodEnum<["stablecoin", "variable"]>>;
25
+ decimals: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<6>, z.ZodLiteral<18>]>>;
26
+ }, "strip", z.ZodTypeAny, {
27
+ token_address: string;
28
+ chain_identifier?: string | undefined;
29
+ chain_id?: number | undefined;
30
+ token_kind?: "stablecoin" | "variable" | undefined;
31
+ decimals?: 6 | 18 | undefined;
32
+ }, {
33
+ token_address: string;
34
+ chain_identifier?: string | undefined;
35
+ chain_id?: number | undefined;
36
+ token_kind?: "stablecoin" | "variable" | undefined;
37
+ decimals?: 6 | 18 | undefined;
38
+ }>;
39
+ export declare const resolveTokenHolderPriceReferenceInputSchema: z.ZodEffects<z.ZodObject<{
40
+ token_address: z.ZodString;
41
+ chain_identifier: z.ZodOptional<z.ZodString>;
42
+ chain_id: z.ZodOptional<z.ZodNumber>;
43
+ token_kind: z.ZodOptional<z.ZodEnum<["stablecoin", "variable"]>>;
44
+ decimals: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<6>, z.ZodLiteral<18>]>>;
45
+ }, "strip", z.ZodTypeAny, {
46
+ token_address: string;
47
+ chain_identifier?: string | undefined;
48
+ chain_id?: number | undefined;
49
+ token_kind?: "stablecoin" | "variable" | undefined;
50
+ decimals?: 6 | 18 | undefined;
51
+ }, {
52
+ token_address: string;
53
+ chain_identifier?: string | undefined;
54
+ chain_id?: number | undefined;
55
+ token_kind?: "stablecoin" | "variable" | undefined;
56
+ decimals?: 6 | 18 | undefined;
57
+ }>, {
58
+ token_address: string;
59
+ chain_identifier?: string | undefined;
60
+ chain_id?: number | undefined;
61
+ token_kind?: "stablecoin" | "variable" | undefined;
62
+ decimals?: 6 | 18 | undefined;
63
+ }, {
64
+ token_address: string;
65
+ chain_identifier?: string | undefined;
66
+ chain_id?: number | undefined;
67
+ token_kind?: "stablecoin" | "variable" | undefined;
68
+ decimals?: 6 | 18 | undefined;
69
+ }>;
70
+ export type ResolveTokenHolderPriceReferenceInput = z.infer<typeof resolveTokenHolderPriceReferenceInputSchema>;
12
71
  export declare const projectIdParamSchema: z.ZodObject<{
13
72
  project_id: z.ZodString;
14
73
  }, "strip", z.ZodTypeAny, {
@@ -1227,31 +1286,31 @@ export declare const sendEventPayloadSchema: z.ZodObject<{
1227
1286
  identifier_type: z.ZodString;
1228
1287
  chain_identifier: z.ZodString;
1229
1288
  }, "strip", z.ZodTypeAny, {
1289
+ chain_identifier: string;
1230
1290
  identifier: string;
1231
1291
  identifier_type: string;
1232
- chain_identifier: string;
1233
1292
  }, {
1293
+ chain_identifier: string;
1234
1294
  identifier: string;
1235
1295
  identifier_type: string;
1236
- chain_identifier: string;
1237
1296
  }>]>;
1238
1297
  }, "strip", z.ZodTypeAny, {
1239
1298
  amount: string;
1240
1299
  currency: {
1241
1300
  name: string;
1242
1301
  } | {
1302
+ chain_identifier: string;
1243
1303
  identifier: string;
1244
1304
  identifier_type: string;
1245
- chain_identifier: string;
1246
1305
  };
1247
1306
  }, {
1248
1307
  amount: string;
1249
1308
  currency: {
1250
1309
  name: string;
1251
1310
  } | {
1311
+ chain_identifier: string;
1252
1312
  identifier: string;
1253
1313
  identifier_type: string;
1254
- chain_identifier: string;
1255
1314
  };
1256
1315
  }>>;
1257
1316
  revenue: z.ZodOptional<z.ZodObject<{
@@ -1267,31 +1326,31 @@ export declare const sendEventPayloadSchema: z.ZodObject<{
1267
1326
  identifier_type: z.ZodString;
1268
1327
  chain_identifier: z.ZodString;
1269
1328
  }, "strip", z.ZodTypeAny, {
1329
+ chain_identifier: string;
1270
1330
  identifier: string;
1271
1331
  identifier_type: string;
1272
- chain_identifier: string;
1273
1332
  }, {
1333
+ chain_identifier: string;
1274
1334
  identifier: string;
1275
1335
  identifier_type: string;
1276
- chain_identifier: string;
1277
1336
  }>]>;
1278
1337
  }, "strip", z.ZodTypeAny, {
1279
1338
  amount: string;
1280
1339
  currency: {
1281
1340
  name: string;
1282
1341
  } | {
1342
+ chain_identifier: string;
1283
1343
  identifier: string;
1284
1344
  identifier_type: string;
1285
- chain_identifier: string;
1286
1345
  };
1287
1346
  }, {
1288
1347
  amount: string;
1289
1348
  currency: {
1290
1349
  name: string;
1291
1350
  } | {
1351
+ chain_identifier: string;
1292
1352
  identifier: string;
1293
1353
  identifier_type: string;
1294
- chain_identifier: string;
1295
1354
  };
1296
1355
  }>>;
1297
1356
  }, "strip", z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, z.objectOutputType<{
@@ -1308,31 +1367,31 @@ export declare const sendEventPayloadSchema: z.ZodObject<{
1308
1367
  identifier_type: z.ZodString;
1309
1368
  chain_identifier: z.ZodString;
1310
1369
  }, "strip", z.ZodTypeAny, {
1370
+ chain_identifier: string;
1311
1371
  identifier: string;
1312
1372
  identifier_type: string;
1313
- chain_identifier: string;
1314
1373
  }, {
1374
+ chain_identifier: string;
1315
1375
  identifier: string;
1316
1376
  identifier_type: string;
1317
- chain_identifier: string;
1318
1377
  }>]>;
1319
1378
  }, "strip", z.ZodTypeAny, {
1320
1379
  amount: string;
1321
1380
  currency: {
1322
1381
  name: string;
1323
1382
  } | {
1383
+ chain_identifier: string;
1324
1384
  identifier: string;
1325
1385
  identifier_type: string;
1326
- chain_identifier: string;
1327
1386
  };
1328
1387
  }, {
1329
1388
  amount: string;
1330
1389
  currency: {
1331
1390
  name: string;
1332
1391
  } | {
1392
+ chain_identifier: string;
1333
1393
  identifier: string;
1334
1394
  identifier_type: string;
1335
- chain_identifier: string;
1336
1395
  };
1337
1396
  }>>;
1338
1397
  revenue: z.ZodOptional<z.ZodObject<{
@@ -1348,31 +1407,31 @@ export declare const sendEventPayloadSchema: z.ZodObject<{
1348
1407
  identifier_type: z.ZodString;
1349
1408
  chain_identifier: z.ZodString;
1350
1409
  }, "strip", z.ZodTypeAny, {
1410
+ chain_identifier: string;
1351
1411
  identifier: string;
1352
1412
  identifier_type: string;
1353
- chain_identifier: string;
1354
1413
  }, {
1414
+ chain_identifier: string;
1355
1415
  identifier: string;
1356
1416
  identifier_type: string;
1357
- chain_identifier: string;
1358
1417
  }>]>;
1359
1418
  }, "strip", z.ZodTypeAny, {
1360
1419
  amount: string;
1361
1420
  currency: {
1362
1421
  name: string;
1363
1422
  } | {
1423
+ chain_identifier: string;
1364
1424
  identifier: string;
1365
1425
  identifier_type: string;
1366
- chain_identifier: string;
1367
1426
  };
1368
1427
  }, {
1369
1428
  amount: string;
1370
1429
  currency: {
1371
1430
  name: string;
1372
1431
  } | {
1432
+ chain_identifier: string;
1373
1433
  identifier: string;
1374
1434
  identifier_type: string;
1375
- chain_identifier: string;
1376
1435
  };
1377
1436
  }>>;
1378
1437
  }, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, "strip">, z.objectInputType<{
@@ -1389,31 +1448,31 @@ export declare const sendEventPayloadSchema: z.ZodObject<{
1389
1448
  identifier_type: z.ZodString;
1390
1449
  chain_identifier: z.ZodString;
1391
1450
  }, "strip", z.ZodTypeAny, {
1451
+ chain_identifier: string;
1392
1452
  identifier: string;
1393
1453
  identifier_type: string;
1394
- chain_identifier: string;
1395
1454
  }, {
1455
+ chain_identifier: string;
1396
1456
  identifier: string;
1397
1457
  identifier_type: string;
1398
- chain_identifier: string;
1399
1458
  }>]>;
1400
1459
  }, "strip", z.ZodTypeAny, {
1401
1460
  amount: string;
1402
1461
  currency: {
1403
1462
  name: string;
1404
1463
  } | {
1464
+ chain_identifier: string;
1405
1465
  identifier: string;
1406
1466
  identifier_type: string;
1407
- chain_identifier: string;
1408
1467
  };
1409
1468
  }, {
1410
1469
  amount: string;
1411
1470
  currency: {
1412
1471
  name: string;
1413
1472
  } | {
1473
+ chain_identifier: string;
1414
1474
  identifier: string;
1415
1475
  identifier_type: string;
1416
- chain_identifier: string;
1417
1476
  };
1418
1477
  }>>;
1419
1478
  revenue: z.ZodOptional<z.ZodObject<{
@@ -1429,31 +1488,31 @@ export declare const sendEventPayloadSchema: z.ZodObject<{
1429
1488
  identifier_type: z.ZodString;
1430
1489
  chain_identifier: z.ZodString;
1431
1490
  }, "strip", z.ZodTypeAny, {
1491
+ chain_identifier: string;
1432
1492
  identifier: string;
1433
1493
  identifier_type: string;
1434
- chain_identifier: string;
1435
1494
  }, {
1495
+ chain_identifier: string;
1436
1496
  identifier: string;
1437
1497
  identifier_type: string;
1438
- chain_identifier: string;
1439
1498
  }>]>;
1440
1499
  }, "strip", z.ZodTypeAny, {
1441
1500
  amount: string;
1442
1501
  currency: {
1443
1502
  name: string;
1444
1503
  } | {
1504
+ chain_identifier: string;
1445
1505
  identifier: string;
1446
1506
  identifier_type: string;
1447
- chain_identifier: string;
1448
1507
  };
1449
1508
  }, {
1450
1509
  amount: string;
1451
1510
  currency: {
1452
1511
  name: string;
1453
1512
  } | {
1513
+ chain_identifier: string;
1454
1514
  identifier: string;
1455
1515
  identifier_type: string;
1456
- chain_identifier: string;
1457
1516
  };
1458
1517
  }>>;
1459
1518
  }, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, "strip">>>;
@@ -1477,31 +1536,31 @@ export declare const sendEventPayloadSchema: z.ZodObject<{
1477
1536
  identifier_type: z.ZodString;
1478
1537
  chain_identifier: z.ZodString;
1479
1538
  }, "strip", z.ZodTypeAny, {
1539
+ chain_identifier: string;
1480
1540
  identifier: string;
1481
1541
  identifier_type: string;
1482
- chain_identifier: string;
1483
1542
  }, {
1543
+ chain_identifier: string;
1484
1544
  identifier: string;
1485
1545
  identifier_type: string;
1486
- chain_identifier: string;
1487
1546
  }>]>;
1488
1547
  }, "strip", z.ZodTypeAny, {
1489
1548
  amount: string;
1490
1549
  currency: {
1491
1550
  name: string;
1492
1551
  } | {
1552
+ chain_identifier: string;
1493
1553
  identifier: string;
1494
1554
  identifier_type: string;
1495
- chain_identifier: string;
1496
1555
  };
1497
1556
  }, {
1498
1557
  amount: string;
1499
1558
  currency: {
1500
1559
  name: string;
1501
1560
  } | {
1561
+ chain_identifier: string;
1502
1562
  identifier: string;
1503
1563
  identifier_type: string;
1504
- chain_identifier: string;
1505
1564
  };
1506
1565
  }>>;
1507
1566
  revenue: z.ZodOptional<z.ZodObject<{
@@ -1517,31 +1576,31 @@ export declare const sendEventPayloadSchema: z.ZodObject<{
1517
1576
  identifier_type: z.ZodString;
1518
1577
  chain_identifier: z.ZodString;
1519
1578
  }, "strip", z.ZodTypeAny, {
1579
+ chain_identifier: string;
1520
1580
  identifier: string;
1521
1581
  identifier_type: string;
1522
- chain_identifier: string;
1523
1582
  }, {
1583
+ chain_identifier: string;
1524
1584
  identifier: string;
1525
1585
  identifier_type: string;
1526
- chain_identifier: string;
1527
1586
  }>]>;
1528
1587
  }, "strip", z.ZodTypeAny, {
1529
1588
  amount: string;
1530
1589
  currency: {
1531
1590
  name: string;
1532
1591
  } | {
1592
+ chain_identifier: string;
1533
1593
  identifier: string;
1534
1594
  identifier_type: string;
1535
- chain_identifier: string;
1536
1595
  };
1537
1596
  }, {
1538
1597
  amount: string;
1539
1598
  currency: {
1540
1599
  name: string;
1541
1600
  } | {
1601
+ chain_identifier: string;
1542
1602
  identifier: string;
1543
1603
  identifier_type: string;
1544
- chain_identifier: string;
1545
1604
  };
1546
1605
  }>>;
1547
1606
  }, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, "strip"> | undefined;
@@ -1565,31 +1624,31 @@ export declare const sendEventPayloadSchema: z.ZodObject<{
1565
1624
  identifier_type: z.ZodString;
1566
1625
  chain_identifier: z.ZodString;
1567
1626
  }, "strip", z.ZodTypeAny, {
1627
+ chain_identifier: string;
1568
1628
  identifier: string;
1569
1629
  identifier_type: string;
1570
- chain_identifier: string;
1571
1630
  }, {
1631
+ chain_identifier: string;
1572
1632
  identifier: string;
1573
1633
  identifier_type: string;
1574
- chain_identifier: string;
1575
1634
  }>]>;
1576
1635
  }, "strip", z.ZodTypeAny, {
1577
1636
  amount: string;
1578
1637
  currency: {
1579
1638
  name: string;
1580
1639
  } | {
1640
+ chain_identifier: string;
1581
1641
  identifier: string;
1582
1642
  identifier_type: string;
1583
- chain_identifier: string;
1584
1643
  };
1585
1644
  }, {
1586
1645
  amount: string;
1587
1646
  currency: {
1588
1647
  name: string;
1589
1648
  } | {
1649
+ chain_identifier: string;
1590
1650
  identifier: string;
1591
1651
  identifier_type: string;
1592
- chain_identifier: string;
1593
1652
  };
1594
1653
  }>>;
1595
1654
  revenue: z.ZodOptional<z.ZodObject<{
@@ -1605,31 +1664,31 @@ export declare const sendEventPayloadSchema: z.ZodObject<{
1605
1664
  identifier_type: z.ZodString;
1606
1665
  chain_identifier: z.ZodString;
1607
1666
  }, "strip", z.ZodTypeAny, {
1667
+ chain_identifier: string;
1608
1668
  identifier: string;
1609
1669
  identifier_type: string;
1610
- chain_identifier: string;
1611
1670
  }, {
1671
+ chain_identifier: string;
1612
1672
  identifier: string;
1613
1673
  identifier_type: string;
1614
- chain_identifier: string;
1615
1674
  }>]>;
1616
1675
  }, "strip", z.ZodTypeAny, {
1617
1676
  amount: string;
1618
1677
  currency: {
1619
1678
  name: string;
1620
1679
  } | {
1680
+ chain_identifier: string;
1621
1681
  identifier: string;
1622
1682
  identifier_type: string;
1623
- chain_identifier: string;
1624
1683
  };
1625
1684
  }, {
1626
1685
  amount: string;
1627
1686
  currency: {
1628
1687
  name: string;
1629
1688
  } | {
1689
+ chain_identifier: string;
1630
1690
  identifier: string;
1631
1691
  identifier_type: string;
1632
- chain_identifier: string;
1633
1692
  };
1634
1693
  }>>;
1635
1694
  }, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, "strip"> | undefined;
@@ -1660,31 +1719,31 @@ export declare const sendEventFieldsSchema: z.ZodObject<{
1660
1719
  identifier_type: z.ZodString;
1661
1720
  chain_identifier: z.ZodString;
1662
1721
  }, "strip", z.ZodTypeAny, {
1722
+ chain_identifier: string;
1663
1723
  identifier: string;
1664
1724
  identifier_type: string;
1665
- chain_identifier: string;
1666
1725
  }, {
1726
+ chain_identifier: string;
1667
1727
  identifier: string;
1668
1728
  identifier_type: string;
1669
- chain_identifier: string;
1670
1729
  }>]>;
1671
1730
  }, "strip", z.ZodTypeAny, {
1672
1731
  amount: string;
1673
1732
  currency: {
1674
1733
  name: string;
1675
1734
  } | {
1735
+ chain_identifier: string;
1676
1736
  identifier: string;
1677
1737
  identifier_type: string;
1678
- chain_identifier: string;
1679
1738
  };
1680
1739
  }, {
1681
1740
  amount: string;
1682
1741
  currency: {
1683
1742
  name: string;
1684
1743
  } | {
1744
+ chain_identifier: string;
1685
1745
  identifier: string;
1686
1746
  identifier_type: string;
1687
- chain_identifier: string;
1688
1747
  };
1689
1748
  }>>;
1690
1749
  revenue: z.ZodOptional<z.ZodObject<{
@@ -1700,31 +1759,31 @@ export declare const sendEventFieldsSchema: z.ZodObject<{
1700
1759
  identifier_type: z.ZodString;
1701
1760
  chain_identifier: z.ZodString;
1702
1761
  }, "strip", z.ZodTypeAny, {
1762
+ chain_identifier: string;
1703
1763
  identifier: string;
1704
1764
  identifier_type: string;
1705
- chain_identifier: string;
1706
1765
  }, {
1766
+ chain_identifier: string;
1707
1767
  identifier: string;
1708
1768
  identifier_type: string;
1709
- chain_identifier: string;
1710
1769
  }>]>;
1711
1770
  }, "strip", z.ZodTypeAny, {
1712
1771
  amount: string;
1713
1772
  currency: {
1714
1773
  name: string;
1715
1774
  } | {
1775
+ chain_identifier: string;
1716
1776
  identifier: string;
1717
1777
  identifier_type: string;
1718
- chain_identifier: string;
1719
1778
  };
1720
1779
  }, {
1721
1780
  amount: string;
1722
1781
  currency: {
1723
1782
  name: string;
1724
1783
  } | {
1784
+ chain_identifier: string;
1725
1785
  identifier: string;
1726
1786
  identifier_type: string;
1727
- chain_identifier: string;
1728
1787
  };
1729
1788
  }>>;
1730
1789
  }, "strip", z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, z.objectOutputType<{
@@ -1741,31 +1800,31 @@ export declare const sendEventFieldsSchema: z.ZodObject<{
1741
1800
  identifier_type: z.ZodString;
1742
1801
  chain_identifier: z.ZodString;
1743
1802
  }, "strip", z.ZodTypeAny, {
1803
+ chain_identifier: string;
1744
1804
  identifier: string;
1745
1805
  identifier_type: string;
1746
- chain_identifier: string;
1747
1806
  }, {
1807
+ chain_identifier: string;
1748
1808
  identifier: string;
1749
1809
  identifier_type: string;
1750
- chain_identifier: string;
1751
1810
  }>]>;
1752
1811
  }, "strip", z.ZodTypeAny, {
1753
1812
  amount: string;
1754
1813
  currency: {
1755
1814
  name: string;
1756
1815
  } | {
1816
+ chain_identifier: string;
1757
1817
  identifier: string;
1758
1818
  identifier_type: string;
1759
- chain_identifier: string;
1760
1819
  };
1761
1820
  }, {
1762
1821
  amount: string;
1763
1822
  currency: {
1764
1823
  name: string;
1765
1824
  } | {
1825
+ chain_identifier: string;
1766
1826
  identifier: string;
1767
1827
  identifier_type: string;
1768
- chain_identifier: string;
1769
1828
  };
1770
1829
  }>>;
1771
1830
  revenue: z.ZodOptional<z.ZodObject<{
@@ -1781,31 +1840,31 @@ export declare const sendEventFieldsSchema: z.ZodObject<{
1781
1840
  identifier_type: z.ZodString;
1782
1841
  chain_identifier: z.ZodString;
1783
1842
  }, "strip", z.ZodTypeAny, {
1843
+ chain_identifier: string;
1784
1844
  identifier: string;
1785
1845
  identifier_type: string;
1786
- chain_identifier: string;
1787
1846
  }, {
1847
+ chain_identifier: string;
1788
1848
  identifier: string;
1789
1849
  identifier_type: string;
1790
- chain_identifier: string;
1791
1850
  }>]>;
1792
1851
  }, "strip", z.ZodTypeAny, {
1793
1852
  amount: string;
1794
1853
  currency: {
1795
1854
  name: string;
1796
1855
  } | {
1856
+ chain_identifier: string;
1797
1857
  identifier: string;
1798
1858
  identifier_type: string;
1799
- chain_identifier: string;
1800
1859
  };
1801
1860
  }, {
1802
1861
  amount: string;
1803
1862
  currency: {
1804
1863
  name: string;
1805
1864
  } | {
1865
+ chain_identifier: string;
1806
1866
  identifier: string;
1807
1867
  identifier_type: string;
1808
- chain_identifier: string;
1809
1868
  };
1810
1869
  }>>;
1811
1870
  }, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, "strip">, z.objectInputType<{
@@ -1822,31 +1881,31 @@ export declare const sendEventFieldsSchema: z.ZodObject<{
1822
1881
  identifier_type: z.ZodString;
1823
1882
  chain_identifier: z.ZodString;
1824
1883
  }, "strip", z.ZodTypeAny, {
1884
+ chain_identifier: string;
1825
1885
  identifier: string;
1826
1886
  identifier_type: string;
1827
- chain_identifier: string;
1828
1887
  }, {
1888
+ chain_identifier: string;
1829
1889
  identifier: string;
1830
1890
  identifier_type: string;
1831
- chain_identifier: string;
1832
1891
  }>]>;
1833
1892
  }, "strip", z.ZodTypeAny, {
1834
1893
  amount: string;
1835
1894
  currency: {
1836
1895
  name: string;
1837
1896
  } | {
1897
+ chain_identifier: string;
1838
1898
  identifier: string;
1839
1899
  identifier_type: string;
1840
- chain_identifier: string;
1841
1900
  };
1842
1901
  }, {
1843
1902
  amount: string;
1844
1903
  currency: {
1845
1904
  name: string;
1846
1905
  } | {
1906
+ chain_identifier: string;
1847
1907
  identifier: string;
1848
1908
  identifier_type: string;
1849
- chain_identifier: string;
1850
1909
  };
1851
1910
  }>>;
1852
1911
  revenue: z.ZodOptional<z.ZodObject<{
@@ -1862,31 +1921,31 @@ export declare const sendEventFieldsSchema: z.ZodObject<{
1862
1921
  identifier_type: z.ZodString;
1863
1922
  chain_identifier: z.ZodString;
1864
1923
  }, "strip", z.ZodTypeAny, {
1924
+ chain_identifier: string;
1865
1925
  identifier: string;
1866
1926
  identifier_type: string;
1867
- chain_identifier: string;
1868
1927
  }, {
1928
+ chain_identifier: string;
1869
1929
  identifier: string;
1870
1930
  identifier_type: string;
1871
- chain_identifier: string;
1872
1931
  }>]>;
1873
1932
  }, "strip", z.ZodTypeAny, {
1874
1933
  amount: string;
1875
1934
  currency: {
1876
1935
  name: string;
1877
1936
  } | {
1937
+ chain_identifier: string;
1878
1938
  identifier: string;
1879
1939
  identifier_type: string;
1880
- chain_identifier: string;
1881
1940
  };
1882
1941
  }, {
1883
1942
  amount: string;
1884
1943
  currency: {
1885
1944
  name: string;
1886
1945
  } | {
1946
+ chain_identifier: string;
1887
1947
  identifier: string;
1888
1948
  identifier_type: string;
1889
- chain_identifier: string;
1890
1949
  };
1891
1950
  }>>;
1892
1951
  }, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, "strip">>>;
@@ -1913,31 +1972,31 @@ export declare const sendEventFieldsSchema: z.ZodObject<{
1913
1972
  identifier_type: z.ZodString;
1914
1973
  chain_identifier: z.ZodString;
1915
1974
  }, "strip", z.ZodTypeAny, {
1975
+ chain_identifier: string;
1916
1976
  identifier: string;
1917
1977
  identifier_type: string;
1918
- chain_identifier: string;
1919
1978
  }, {
1979
+ chain_identifier: string;
1920
1980
  identifier: string;
1921
1981
  identifier_type: string;
1922
- chain_identifier: string;
1923
1982
  }>]>;
1924
1983
  }, "strip", z.ZodTypeAny, {
1925
1984
  amount: string;
1926
1985
  currency: {
1927
1986
  name: string;
1928
1987
  } | {
1988
+ chain_identifier: string;
1929
1989
  identifier: string;
1930
1990
  identifier_type: string;
1931
- chain_identifier: string;
1932
1991
  };
1933
1992
  }, {
1934
1993
  amount: string;
1935
1994
  currency: {
1936
1995
  name: string;
1937
1996
  } | {
1997
+ chain_identifier: string;
1938
1998
  identifier: string;
1939
1999
  identifier_type: string;
1940
- chain_identifier: string;
1941
2000
  };
1942
2001
  }>>;
1943
2002
  revenue: z.ZodOptional<z.ZodObject<{
@@ -1953,31 +2012,31 @@ export declare const sendEventFieldsSchema: z.ZodObject<{
1953
2012
  identifier_type: z.ZodString;
1954
2013
  chain_identifier: z.ZodString;
1955
2014
  }, "strip", z.ZodTypeAny, {
2015
+ chain_identifier: string;
1956
2016
  identifier: string;
1957
2017
  identifier_type: string;
1958
- chain_identifier: string;
1959
2018
  }, {
2019
+ chain_identifier: string;
1960
2020
  identifier: string;
1961
2021
  identifier_type: string;
1962
- chain_identifier: string;
1963
2022
  }>]>;
1964
2023
  }, "strip", z.ZodTypeAny, {
1965
2024
  amount: string;
1966
2025
  currency: {
1967
2026
  name: string;
1968
2027
  } | {
2028
+ chain_identifier: string;
1969
2029
  identifier: string;
1970
2030
  identifier_type: string;
1971
- chain_identifier: string;
1972
2031
  };
1973
2032
  }, {
1974
2033
  amount: string;
1975
2034
  currency: {
1976
2035
  name: string;
1977
2036
  } | {
2037
+ chain_identifier: string;
1978
2038
  identifier: string;
1979
2039
  identifier_type: string;
1980
- chain_identifier: string;
1981
2040
  };
1982
2041
  }>>;
1983
2042
  }, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, "strip"> | undefined;
@@ -2004,31 +2063,31 @@ export declare const sendEventFieldsSchema: z.ZodObject<{
2004
2063
  identifier_type: z.ZodString;
2005
2064
  chain_identifier: z.ZodString;
2006
2065
  }, "strip", z.ZodTypeAny, {
2066
+ chain_identifier: string;
2007
2067
  identifier: string;
2008
2068
  identifier_type: string;
2009
- chain_identifier: string;
2010
2069
  }, {
2070
+ chain_identifier: string;
2011
2071
  identifier: string;
2012
2072
  identifier_type: string;
2013
- chain_identifier: string;
2014
2073
  }>]>;
2015
2074
  }, "strip", z.ZodTypeAny, {
2016
2075
  amount: string;
2017
2076
  currency: {
2018
2077
  name: string;
2019
2078
  } | {
2079
+ chain_identifier: string;
2020
2080
  identifier: string;
2021
2081
  identifier_type: string;
2022
- chain_identifier: string;
2023
2082
  };
2024
2083
  }, {
2025
2084
  amount: string;
2026
2085
  currency: {
2027
2086
  name: string;
2028
2087
  } | {
2088
+ chain_identifier: string;
2029
2089
  identifier: string;
2030
2090
  identifier_type: string;
2031
- chain_identifier: string;
2032
2091
  };
2033
2092
  }>>;
2034
2093
  revenue: z.ZodOptional<z.ZodObject<{
@@ -2044,31 +2103,31 @@ export declare const sendEventFieldsSchema: z.ZodObject<{
2044
2103
  identifier_type: z.ZodString;
2045
2104
  chain_identifier: z.ZodString;
2046
2105
  }, "strip", z.ZodTypeAny, {
2106
+ chain_identifier: string;
2047
2107
  identifier: string;
2048
2108
  identifier_type: string;
2049
- chain_identifier: string;
2050
2109
  }, {
2110
+ chain_identifier: string;
2051
2111
  identifier: string;
2052
2112
  identifier_type: string;
2053
- chain_identifier: string;
2054
2113
  }>]>;
2055
2114
  }, "strip", z.ZodTypeAny, {
2056
2115
  amount: string;
2057
2116
  currency: {
2058
2117
  name: string;
2059
2118
  } | {
2119
+ chain_identifier: string;
2060
2120
  identifier: string;
2061
2121
  identifier_type: string;
2062
- chain_identifier: string;
2063
2122
  };
2064
2123
  }, {
2065
2124
  amount: string;
2066
2125
  currency: {
2067
2126
  name: string;
2068
2127
  } | {
2128
+ chain_identifier: string;
2069
2129
  identifier: string;
2070
2130
  identifier_type: string;
2071
- chain_identifier: string;
2072
2131
  };
2073
2132
  }>>;
2074
2133
  }, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, "strip"> | undefined;
@@ -2098,31 +2157,31 @@ export declare const sendEventInputSchema: z.ZodObject<{
2098
2157
  identifier_type: z.ZodString;
2099
2158
  chain_identifier: z.ZodString;
2100
2159
  }, "strip", z.ZodTypeAny, {
2160
+ chain_identifier: string;
2101
2161
  identifier: string;
2102
2162
  identifier_type: string;
2103
- chain_identifier: string;
2104
2163
  }, {
2164
+ chain_identifier: string;
2105
2165
  identifier: string;
2106
2166
  identifier_type: string;
2107
- chain_identifier: string;
2108
2167
  }>]>;
2109
2168
  }, "strip", z.ZodTypeAny, {
2110
2169
  amount: string;
2111
2170
  currency: {
2112
2171
  name: string;
2113
2172
  } | {
2173
+ chain_identifier: string;
2114
2174
  identifier: string;
2115
2175
  identifier_type: string;
2116
- chain_identifier: string;
2117
2176
  };
2118
2177
  }, {
2119
2178
  amount: string;
2120
2179
  currency: {
2121
2180
  name: string;
2122
2181
  } | {
2182
+ chain_identifier: string;
2123
2183
  identifier: string;
2124
2184
  identifier_type: string;
2125
- chain_identifier: string;
2126
2185
  };
2127
2186
  }>>;
2128
2187
  revenue: z.ZodOptional<z.ZodObject<{
@@ -2138,31 +2197,31 @@ export declare const sendEventInputSchema: z.ZodObject<{
2138
2197
  identifier_type: z.ZodString;
2139
2198
  chain_identifier: z.ZodString;
2140
2199
  }, "strip", z.ZodTypeAny, {
2200
+ chain_identifier: string;
2141
2201
  identifier: string;
2142
2202
  identifier_type: string;
2143
- chain_identifier: string;
2144
2203
  }, {
2204
+ chain_identifier: string;
2145
2205
  identifier: string;
2146
2206
  identifier_type: string;
2147
- chain_identifier: string;
2148
2207
  }>]>;
2149
2208
  }, "strip", z.ZodTypeAny, {
2150
2209
  amount: string;
2151
2210
  currency: {
2152
2211
  name: string;
2153
2212
  } | {
2213
+ chain_identifier: string;
2154
2214
  identifier: string;
2155
2215
  identifier_type: string;
2156
- chain_identifier: string;
2157
2216
  };
2158
2217
  }, {
2159
2218
  amount: string;
2160
2219
  currency: {
2161
2220
  name: string;
2162
2221
  } | {
2222
+ chain_identifier: string;
2163
2223
  identifier: string;
2164
2224
  identifier_type: string;
2165
- chain_identifier: string;
2166
2225
  };
2167
2226
  }>>;
2168
2227
  }, "strip", z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, z.objectOutputType<{
@@ -2179,31 +2238,31 @@ export declare const sendEventInputSchema: z.ZodObject<{
2179
2238
  identifier_type: z.ZodString;
2180
2239
  chain_identifier: z.ZodString;
2181
2240
  }, "strip", z.ZodTypeAny, {
2241
+ chain_identifier: string;
2182
2242
  identifier: string;
2183
2243
  identifier_type: string;
2184
- chain_identifier: string;
2185
2244
  }, {
2245
+ chain_identifier: string;
2186
2246
  identifier: string;
2187
2247
  identifier_type: string;
2188
- chain_identifier: string;
2189
2248
  }>]>;
2190
2249
  }, "strip", z.ZodTypeAny, {
2191
2250
  amount: string;
2192
2251
  currency: {
2193
2252
  name: string;
2194
2253
  } | {
2254
+ chain_identifier: string;
2195
2255
  identifier: string;
2196
2256
  identifier_type: string;
2197
- chain_identifier: string;
2198
2257
  };
2199
2258
  }, {
2200
2259
  amount: string;
2201
2260
  currency: {
2202
2261
  name: string;
2203
2262
  } | {
2263
+ chain_identifier: string;
2204
2264
  identifier: string;
2205
2265
  identifier_type: string;
2206
- chain_identifier: string;
2207
2266
  };
2208
2267
  }>>;
2209
2268
  revenue: z.ZodOptional<z.ZodObject<{
@@ -2219,31 +2278,31 @@ export declare const sendEventInputSchema: z.ZodObject<{
2219
2278
  identifier_type: z.ZodString;
2220
2279
  chain_identifier: z.ZodString;
2221
2280
  }, "strip", z.ZodTypeAny, {
2281
+ chain_identifier: string;
2222
2282
  identifier: string;
2223
2283
  identifier_type: string;
2224
- chain_identifier: string;
2225
2284
  }, {
2285
+ chain_identifier: string;
2226
2286
  identifier: string;
2227
2287
  identifier_type: string;
2228
- chain_identifier: string;
2229
2288
  }>]>;
2230
2289
  }, "strip", z.ZodTypeAny, {
2231
2290
  amount: string;
2232
2291
  currency: {
2233
2292
  name: string;
2234
2293
  } | {
2294
+ chain_identifier: string;
2235
2295
  identifier: string;
2236
2296
  identifier_type: string;
2237
- chain_identifier: string;
2238
2297
  };
2239
2298
  }, {
2240
2299
  amount: string;
2241
2300
  currency: {
2242
2301
  name: string;
2243
2302
  } | {
2303
+ chain_identifier: string;
2244
2304
  identifier: string;
2245
2305
  identifier_type: string;
2246
- chain_identifier: string;
2247
2306
  };
2248
2307
  }>>;
2249
2308
  }, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, "strip">, z.objectInputType<{
@@ -2260,31 +2319,31 @@ export declare const sendEventInputSchema: z.ZodObject<{
2260
2319
  identifier_type: z.ZodString;
2261
2320
  chain_identifier: z.ZodString;
2262
2321
  }, "strip", z.ZodTypeAny, {
2322
+ chain_identifier: string;
2263
2323
  identifier: string;
2264
2324
  identifier_type: string;
2265
- chain_identifier: string;
2266
2325
  }, {
2326
+ chain_identifier: string;
2267
2327
  identifier: string;
2268
2328
  identifier_type: string;
2269
- chain_identifier: string;
2270
2329
  }>]>;
2271
2330
  }, "strip", z.ZodTypeAny, {
2272
2331
  amount: string;
2273
2332
  currency: {
2274
2333
  name: string;
2275
2334
  } | {
2335
+ chain_identifier: string;
2276
2336
  identifier: string;
2277
2337
  identifier_type: string;
2278
- chain_identifier: string;
2279
2338
  };
2280
2339
  }, {
2281
2340
  amount: string;
2282
2341
  currency: {
2283
2342
  name: string;
2284
2343
  } | {
2344
+ chain_identifier: string;
2285
2345
  identifier: string;
2286
2346
  identifier_type: string;
2287
- chain_identifier: string;
2288
2347
  };
2289
2348
  }>>;
2290
2349
  revenue: z.ZodOptional<z.ZodObject<{
@@ -2300,31 +2359,31 @@ export declare const sendEventInputSchema: z.ZodObject<{
2300
2359
  identifier_type: z.ZodString;
2301
2360
  chain_identifier: z.ZodString;
2302
2361
  }, "strip", z.ZodTypeAny, {
2362
+ chain_identifier: string;
2303
2363
  identifier: string;
2304
2364
  identifier_type: string;
2305
- chain_identifier: string;
2306
2365
  }, {
2366
+ chain_identifier: string;
2307
2367
  identifier: string;
2308
2368
  identifier_type: string;
2309
- chain_identifier: string;
2310
2369
  }>]>;
2311
2370
  }, "strip", z.ZodTypeAny, {
2312
2371
  amount: string;
2313
2372
  currency: {
2314
2373
  name: string;
2315
2374
  } | {
2375
+ chain_identifier: string;
2316
2376
  identifier: string;
2317
2377
  identifier_type: string;
2318
- chain_identifier: string;
2319
2378
  };
2320
2379
  }, {
2321
2380
  amount: string;
2322
2381
  currency: {
2323
2382
  name: string;
2324
2383
  } | {
2384
+ chain_identifier: string;
2325
2385
  identifier: string;
2326
2386
  identifier_type: string;
2327
- chain_identifier: string;
2328
2387
  };
2329
2388
  }>>;
2330
2389
  }, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, "strip">>>;
@@ -2351,31 +2410,31 @@ export declare const sendEventInputSchema: z.ZodObject<{
2351
2410
  identifier_type: z.ZodString;
2352
2411
  chain_identifier: z.ZodString;
2353
2412
  }, "strip", z.ZodTypeAny, {
2413
+ chain_identifier: string;
2354
2414
  identifier: string;
2355
2415
  identifier_type: string;
2356
- chain_identifier: string;
2357
2416
  }, {
2417
+ chain_identifier: string;
2358
2418
  identifier: string;
2359
2419
  identifier_type: string;
2360
- chain_identifier: string;
2361
2420
  }>]>;
2362
2421
  }, "strip", z.ZodTypeAny, {
2363
2422
  amount: string;
2364
2423
  currency: {
2365
2424
  name: string;
2366
2425
  } | {
2426
+ chain_identifier: string;
2367
2427
  identifier: string;
2368
2428
  identifier_type: string;
2369
- chain_identifier: string;
2370
2429
  };
2371
2430
  }, {
2372
2431
  amount: string;
2373
2432
  currency: {
2374
2433
  name: string;
2375
2434
  } | {
2435
+ chain_identifier: string;
2376
2436
  identifier: string;
2377
2437
  identifier_type: string;
2378
- chain_identifier: string;
2379
2438
  };
2380
2439
  }>>;
2381
2440
  revenue: z.ZodOptional<z.ZodObject<{
@@ -2391,31 +2450,31 @@ export declare const sendEventInputSchema: z.ZodObject<{
2391
2450
  identifier_type: z.ZodString;
2392
2451
  chain_identifier: z.ZodString;
2393
2452
  }, "strip", z.ZodTypeAny, {
2453
+ chain_identifier: string;
2394
2454
  identifier: string;
2395
2455
  identifier_type: string;
2396
- chain_identifier: string;
2397
2456
  }, {
2457
+ chain_identifier: string;
2398
2458
  identifier: string;
2399
2459
  identifier_type: string;
2400
- chain_identifier: string;
2401
2460
  }>]>;
2402
2461
  }, "strip", z.ZodTypeAny, {
2403
2462
  amount: string;
2404
2463
  currency: {
2405
2464
  name: string;
2406
2465
  } | {
2466
+ chain_identifier: string;
2407
2467
  identifier: string;
2408
2468
  identifier_type: string;
2409
- chain_identifier: string;
2410
2469
  };
2411
2470
  }, {
2412
2471
  amount: string;
2413
2472
  currency: {
2414
2473
  name: string;
2415
2474
  } | {
2475
+ chain_identifier: string;
2416
2476
  identifier: string;
2417
2477
  identifier_type: string;
2418
- chain_identifier: string;
2419
2478
  };
2420
2479
  }>>;
2421
2480
  }, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, "strip"> | undefined;
@@ -2442,31 +2501,31 @@ export declare const sendEventInputSchema: z.ZodObject<{
2442
2501
  identifier_type: z.ZodString;
2443
2502
  chain_identifier: z.ZodString;
2444
2503
  }, "strip", z.ZodTypeAny, {
2504
+ chain_identifier: string;
2445
2505
  identifier: string;
2446
2506
  identifier_type: string;
2447
- chain_identifier: string;
2448
2507
  }, {
2508
+ chain_identifier: string;
2449
2509
  identifier: string;
2450
2510
  identifier_type: string;
2451
- chain_identifier: string;
2452
2511
  }>]>;
2453
2512
  }, "strip", z.ZodTypeAny, {
2454
2513
  amount: string;
2455
2514
  currency: {
2456
2515
  name: string;
2457
2516
  } | {
2517
+ chain_identifier: string;
2458
2518
  identifier: string;
2459
2519
  identifier_type: string;
2460
- chain_identifier: string;
2461
2520
  };
2462
2521
  }, {
2463
2522
  amount: string;
2464
2523
  currency: {
2465
2524
  name: string;
2466
2525
  } | {
2526
+ chain_identifier: string;
2467
2527
  identifier: string;
2468
2528
  identifier_type: string;
2469
- chain_identifier: string;
2470
2529
  };
2471
2530
  }>>;
2472
2531
  revenue: z.ZodOptional<z.ZodObject<{
@@ -2482,31 +2541,31 @@ export declare const sendEventInputSchema: z.ZodObject<{
2482
2541
  identifier_type: z.ZodString;
2483
2542
  chain_identifier: z.ZodString;
2484
2543
  }, "strip", z.ZodTypeAny, {
2544
+ chain_identifier: string;
2485
2545
  identifier: string;
2486
2546
  identifier_type: string;
2487
- chain_identifier: string;
2488
2547
  }, {
2548
+ chain_identifier: string;
2489
2549
  identifier: string;
2490
2550
  identifier_type: string;
2491
- chain_identifier: string;
2492
2551
  }>]>;
2493
2552
  }, "strip", z.ZodTypeAny, {
2494
2553
  amount: string;
2495
2554
  currency: {
2496
2555
  name: string;
2497
2556
  } | {
2557
+ chain_identifier: string;
2498
2558
  identifier: string;
2499
2559
  identifier_type: string;
2500
- chain_identifier: string;
2501
2560
  };
2502
2561
  }, {
2503
2562
  amount: string;
2504
2563
  currency: {
2505
2564
  name: string;
2506
2565
  } | {
2566
+ chain_identifier: string;
2507
2567
  identifier: string;
2508
2568
  identifier_type: string;
2509
- chain_identifier: string;
2510
2569
  };
2511
2570
  }>>;
2512
2571
  }, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, "strip"> | undefined;
@@ -2538,31 +2597,31 @@ export declare const sendBatchEventsFieldsSchema: z.ZodObject<{
2538
2597
  identifier_type: z.ZodString;
2539
2598
  chain_identifier: z.ZodString;
2540
2599
  }, "strip", z.ZodTypeAny, {
2600
+ chain_identifier: string;
2541
2601
  identifier: string;
2542
2602
  identifier_type: string;
2543
- chain_identifier: string;
2544
2603
  }, {
2604
+ chain_identifier: string;
2545
2605
  identifier: string;
2546
2606
  identifier_type: string;
2547
- chain_identifier: string;
2548
2607
  }>]>;
2549
2608
  }, "strip", z.ZodTypeAny, {
2550
2609
  amount: string;
2551
2610
  currency: {
2552
2611
  name: string;
2553
2612
  } | {
2613
+ chain_identifier: string;
2554
2614
  identifier: string;
2555
2615
  identifier_type: string;
2556
- chain_identifier: string;
2557
2616
  };
2558
2617
  }, {
2559
2618
  amount: string;
2560
2619
  currency: {
2561
2620
  name: string;
2562
2621
  } | {
2622
+ chain_identifier: string;
2563
2623
  identifier: string;
2564
2624
  identifier_type: string;
2565
- chain_identifier: string;
2566
2625
  };
2567
2626
  }>>;
2568
2627
  revenue: z.ZodOptional<z.ZodObject<{
@@ -2578,31 +2637,31 @@ export declare const sendBatchEventsFieldsSchema: z.ZodObject<{
2578
2637
  identifier_type: z.ZodString;
2579
2638
  chain_identifier: z.ZodString;
2580
2639
  }, "strip", z.ZodTypeAny, {
2640
+ chain_identifier: string;
2581
2641
  identifier: string;
2582
2642
  identifier_type: string;
2583
- chain_identifier: string;
2584
2643
  }, {
2644
+ chain_identifier: string;
2585
2645
  identifier: string;
2586
2646
  identifier_type: string;
2587
- chain_identifier: string;
2588
2647
  }>]>;
2589
2648
  }, "strip", z.ZodTypeAny, {
2590
2649
  amount: string;
2591
2650
  currency: {
2592
2651
  name: string;
2593
2652
  } | {
2653
+ chain_identifier: string;
2594
2654
  identifier: string;
2595
2655
  identifier_type: string;
2596
- chain_identifier: string;
2597
2656
  };
2598
2657
  }, {
2599
2658
  amount: string;
2600
2659
  currency: {
2601
2660
  name: string;
2602
2661
  } | {
2662
+ chain_identifier: string;
2603
2663
  identifier: string;
2604
2664
  identifier_type: string;
2605
- chain_identifier: string;
2606
2665
  };
2607
2666
  }>>;
2608
2667
  }, "strip", z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, z.objectOutputType<{
@@ -2619,31 +2678,31 @@ export declare const sendBatchEventsFieldsSchema: z.ZodObject<{
2619
2678
  identifier_type: z.ZodString;
2620
2679
  chain_identifier: z.ZodString;
2621
2680
  }, "strip", z.ZodTypeAny, {
2681
+ chain_identifier: string;
2622
2682
  identifier: string;
2623
2683
  identifier_type: string;
2624
- chain_identifier: string;
2625
2684
  }, {
2685
+ chain_identifier: string;
2626
2686
  identifier: string;
2627
2687
  identifier_type: string;
2628
- chain_identifier: string;
2629
2688
  }>]>;
2630
2689
  }, "strip", z.ZodTypeAny, {
2631
2690
  amount: string;
2632
2691
  currency: {
2633
2692
  name: string;
2634
2693
  } | {
2694
+ chain_identifier: string;
2635
2695
  identifier: string;
2636
2696
  identifier_type: string;
2637
- chain_identifier: string;
2638
2697
  };
2639
2698
  }, {
2640
2699
  amount: string;
2641
2700
  currency: {
2642
2701
  name: string;
2643
2702
  } | {
2703
+ chain_identifier: string;
2644
2704
  identifier: string;
2645
2705
  identifier_type: string;
2646
- chain_identifier: string;
2647
2706
  };
2648
2707
  }>>;
2649
2708
  revenue: z.ZodOptional<z.ZodObject<{
@@ -2659,31 +2718,31 @@ export declare const sendBatchEventsFieldsSchema: z.ZodObject<{
2659
2718
  identifier_type: z.ZodString;
2660
2719
  chain_identifier: z.ZodString;
2661
2720
  }, "strip", z.ZodTypeAny, {
2721
+ chain_identifier: string;
2662
2722
  identifier: string;
2663
2723
  identifier_type: string;
2664
- chain_identifier: string;
2665
2724
  }, {
2725
+ chain_identifier: string;
2666
2726
  identifier: string;
2667
2727
  identifier_type: string;
2668
- chain_identifier: string;
2669
2728
  }>]>;
2670
2729
  }, "strip", z.ZodTypeAny, {
2671
2730
  amount: string;
2672
2731
  currency: {
2673
2732
  name: string;
2674
2733
  } | {
2734
+ chain_identifier: string;
2675
2735
  identifier: string;
2676
2736
  identifier_type: string;
2677
- chain_identifier: string;
2678
2737
  };
2679
2738
  }, {
2680
2739
  amount: string;
2681
2740
  currency: {
2682
2741
  name: string;
2683
2742
  } | {
2743
+ chain_identifier: string;
2684
2744
  identifier: string;
2685
2745
  identifier_type: string;
2686
- chain_identifier: string;
2687
2746
  };
2688
2747
  }>>;
2689
2748
  }, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, "strip">, z.objectInputType<{
@@ -2700,31 +2759,31 @@ export declare const sendBatchEventsFieldsSchema: z.ZodObject<{
2700
2759
  identifier_type: z.ZodString;
2701
2760
  chain_identifier: z.ZodString;
2702
2761
  }, "strip", z.ZodTypeAny, {
2762
+ chain_identifier: string;
2703
2763
  identifier: string;
2704
2764
  identifier_type: string;
2705
- chain_identifier: string;
2706
2765
  }, {
2766
+ chain_identifier: string;
2707
2767
  identifier: string;
2708
2768
  identifier_type: string;
2709
- chain_identifier: string;
2710
2769
  }>]>;
2711
2770
  }, "strip", z.ZodTypeAny, {
2712
2771
  amount: string;
2713
2772
  currency: {
2714
2773
  name: string;
2715
2774
  } | {
2775
+ chain_identifier: string;
2716
2776
  identifier: string;
2717
2777
  identifier_type: string;
2718
- chain_identifier: string;
2719
2778
  };
2720
2779
  }, {
2721
2780
  amount: string;
2722
2781
  currency: {
2723
2782
  name: string;
2724
2783
  } | {
2784
+ chain_identifier: string;
2725
2785
  identifier: string;
2726
2786
  identifier_type: string;
2727
- chain_identifier: string;
2728
2787
  };
2729
2788
  }>>;
2730
2789
  revenue: z.ZodOptional<z.ZodObject<{
@@ -2740,31 +2799,31 @@ export declare const sendBatchEventsFieldsSchema: z.ZodObject<{
2740
2799
  identifier_type: z.ZodString;
2741
2800
  chain_identifier: z.ZodString;
2742
2801
  }, "strip", z.ZodTypeAny, {
2802
+ chain_identifier: string;
2743
2803
  identifier: string;
2744
2804
  identifier_type: string;
2745
- chain_identifier: string;
2746
2805
  }, {
2806
+ chain_identifier: string;
2747
2807
  identifier: string;
2748
2808
  identifier_type: string;
2749
- chain_identifier: string;
2750
2809
  }>]>;
2751
2810
  }, "strip", z.ZodTypeAny, {
2752
2811
  amount: string;
2753
2812
  currency: {
2754
2813
  name: string;
2755
2814
  } | {
2815
+ chain_identifier: string;
2756
2816
  identifier: string;
2757
2817
  identifier_type: string;
2758
- chain_identifier: string;
2759
2818
  };
2760
2819
  }, {
2761
2820
  amount: string;
2762
2821
  currency: {
2763
2822
  name: string;
2764
2823
  } | {
2824
+ chain_identifier: string;
2765
2825
  identifier: string;
2766
2826
  identifier_type: string;
2767
- chain_identifier: string;
2768
2827
  };
2769
2828
  }>>;
2770
2829
  }, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, "strip">>>;
@@ -2788,31 +2847,31 @@ export declare const sendBatchEventsFieldsSchema: z.ZodObject<{
2788
2847
  identifier_type: z.ZodString;
2789
2848
  chain_identifier: z.ZodString;
2790
2849
  }, "strip", z.ZodTypeAny, {
2850
+ chain_identifier: string;
2791
2851
  identifier: string;
2792
2852
  identifier_type: string;
2793
- chain_identifier: string;
2794
2853
  }, {
2854
+ chain_identifier: string;
2795
2855
  identifier: string;
2796
2856
  identifier_type: string;
2797
- chain_identifier: string;
2798
2857
  }>]>;
2799
2858
  }, "strip", z.ZodTypeAny, {
2800
2859
  amount: string;
2801
2860
  currency: {
2802
2861
  name: string;
2803
2862
  } | {
2863
+ chain_identifier: string;
2804
2864
  identifier: string;
2805
2865
  identifier_type: string;
2806
- chain_identifier: string;
2807
2866
  };
2808
2867
  }, {
2809
2868
  amount: string;
2810
2869
  currency: {
2811
2870
  name: string;
2812
2871
  } | {
2872
+ chain_identifier: string;
2813
2873
  identifier: string;
2814
2874
  identifier_type: string;
2815
- chain_identifier: string;
2816
2875
  };
2817
2876
  }>>;
2818
2877
  revenue: z.ZodOptional<z.ZodObject<{
@@ -2828,31 +2887,31 @@ export declare const sendBatchEventsFieldsSchema: z.ZodObject<{
2828
2887
  identifier_type: z.ZodString;
2829
2888
  chain_identifier: z.ZodString;
2830
2889
  }, "strip", z.ZodTypeAny, {
2890
+ chain_identifier: string;
2831
2891
  identifier: string;
2832
2892
  identifier_type: string;
2833
- chain_identifier: string;
2834
2893
  }, {
2894
+ chain_identifier: string;
2835
2895
  identifier: string;
2836
2896
  identifier_type: string;
2837
- chain_identifier: string;
2838
2897
  }>]>;
2839
2898
  }, "strip", z.ZodTypeAny, {
2840
2899
  amount: string;
2841
2900
  currency: {
2842
2901
  name: string;
2843
2902
  } | {
2903
+ chain_identifier: string;
2844
2904
  identifier: string;
2845
2905
  identifier_type: string;
2846
- chain_identifier: string;
2847
2906
  };
2848
2907
  }, {
2849
2908
  amount: string;
2850
2909
  currency: {
2851
2910
  name: string;
2852
2911
  } | {
2912
+ chain_identifier: string;
2853
2913
  identifier: string;
2854
2914
  identifier_type: string;
2855
- chain_identifier: string;
2856
2915
  };
2857
2916
  }>>;
2858
2917
  }, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, "strip"> | undefined;
@@ -2876,31 +2935,31 @@ export declare const sendBatchEventsFieldsSchema: z.ZodObject<{
2876
2935
  identifier_type: z.ZodString;
2877
2936
  chain_identifier: z.ZodString;
2878
2937
  }, "strip", z.ZodTypeAny, {
2938
+ chain_identifier: string;
2879
2939
  identifier: string;
2880
2940
  identifier_type: string;
2881
- chain_identifier: string;
2882
2941
  }, {
2942
+ chain_identifier: string;
2883
2943
  identifier: string;
2884
2944
  identifier_type: string;
2885
- chain_identifier: string;
2886
2945
  }>]>;
2887
2946
  }, "strip", z.ZodTypeAny, {
2888
2947
  amount: string;
2889
2948
  currency: {
2890
2949
  name: string;
2891
2950
  } | {
2951
+ chain_identifier: string;
2892
2952
  identifier: string;
2893
2953
  identifier_type: string;
2894
- chain_identifier: string;
2895
2954
  };
2896
2955
  }, {
2897
2956
  amount: string;
2898
2957
  currency: {
2899
2958
  name: string;
2900
2959
  } | {
2960
+ chain_identifier: string;
2901
2961
  identifier: string;
2902
2962
  identifier_type: string;
2903
- chain_identifier: string;
2904
2963
  };
2905
2964
  }>>;
2906
2965
  revenue: z.ZodOptional<z.ZodObject<{
@@ -2916,31 +2975,31 @@ export declare const sendBatchEventsFieldsSchema: z.ZodObject<{
2916
2975
  identifier_type: z.ZodString;
2917
2976
  chain_identifier: z.ZodString;
2918
2977
  }, "strip", z.ZodTypeAny, {
2978
+ chain_identifier: string;
2919
2979
  identifier: string;
2920
2980
  identifier_type: string;
2921
- chain_identifier: string;
2922
2981
  }, {
2982
+ chain_identifier: string;
2923
2983
  identifier: string;
2924
2984
  identifier_type: string;
2925
- chain_identifier: string;
2926
2985
  }>]>;
2927
2986
  }, "strip", z.ZodTypeAny, {
2928
2987
  amount: string;
2929
2988
  currency: {
2930
2989
  name: string;
2931
2990
  } | {
2991
+ chain_identifier: string;
2932
2992
  identifier: string;
2933
2993
  identifier_type: string;
2934
- chain_identifier: string;
2935
2994
  };
2936
2995
  }, {
2937
2996
  amount: string;
2938
2997
  currency: {
2939
2998
  name: string;
2940
2999
  } | {
3000
+ chain_identifier: string;
2941
3001
  identifier: string;
2942
3002
  identifier_type: string;
2943
- chain_identifier: string;
2944
3003
  };
2945
3004
  }>>;
2946
3005
  }, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, "strip"> | undefined;
@@ -2966,31 +3025,31 @@ export declare const sendBatchEventsFieldsSchema: z.ZodObject<{
2966
3025
  identifier_type: z.ZodString;
2967
3026
  chain_identifier: z.ZodString;
2968
3027
  }, "strip", z.ZodTypeAny, {
3028
+ chain_identifier: string;
2969
3029
  identifier: string;
2970
3030
  identifier_type: string;
2971
- chain_identifier: string;
2972
3031
  }, {
3032
+ chain_identifier: string;
2973
3033
  identifier: string;
2974
3034
  identifier_type: string;
2975
- chain_identifier: string;
2976
3035
  }>]>;
2977
3036
  }, "strip", z.ZodTypeAny, {
2978
3037
  amount: string;
2979
3038
  currency: {
2980
3039
  name: string;
2981
3040
  } | {
3041
+ chain_identifier: string;
2982
3042
  identifier: string;
2983
3043
  identifier_type: string;
2984
- chain_identifier: string;
2985
3044
  };
2986
3045
  }, {
2987
3046
  amount: string;
2988
3047
  currency: {
2989
3048
  name: string;
2990
3049
  } | {
3050
+ chain_identifier: string;
2991
3051
  identifier: string;
2992
3052
  identifier_type: string;
2993
- chain_identifier: string;
2994
3053
  };
2995
3054
  }>>;
2996
3055
  revenue: z.ZodOptional<z.ZodObject<{
@@ -3006,31 +3065,31 @@ export declare const sendBatchEventsFieldsSchema: z.ZodObject<{
3006
3065
  identifier_type: z.ZodString;
3007
3066
  chain_identifier: z.ZodString;
3008
3067
  }, "strip", z.ZodTypeAny, {
3068
+ chain_identifier: string;
3009
3069
  identifier: string;
3010
3070
  identifier_type: string;
3011
- chain_identifier: string;
3012
3071
  }, {
3072
+ chain_identifier: string;
3013
3073
  identifier: string;
3014
3074
  identifier_type: string;
3015
- chain_identifier: string;
3016
3075
  }>]>;
3017
3076
  }, "strip", z.ZodTypeAny, {
3018
3077
  amount: string;
3019
3078
  currency: {
3020
3079
  name: string;
3021
3080
  } | {
3081
+ chain_identifier: string;
3022
3082
  identifier: string;
3023
3083
  identifier_type: string;
3024
- chain_identifier: string;
3025
3084
  };
3026
3085
  }, {
3027
3086
  amount: string;
3028
3087
  currency: {
3029
3088
  name: string;
3030
3089
  } | {
3090
+ chain_identifier: string;
3031
3091
  identifier: string;
3032
3092
  identifier_type: string;
3033
- chain_identifier: string;
3034
3093
  };
3035
3094
  }>>;
3036
3095
  }, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, "strip"> | undefined;
@@ -3059,31 +3118,31 @@ export declare const sendBatchEventsFieldsSchema: z.ZodObject<{
3059
3118
  identifier_type: z.ZodString;
3060
3119
  chain_identifier: z.ZodString;
3061
3120
  }, "strip", z.ZodTypeAny, {
3121
+ chain_identifier: string;
3062
3122
  identifier: string;
3063
3123
  identifier_type: string;
3064
- chain_identifier: string;
3065
3124
  }, {
3125
+ chain_identifier: string;
3066
3126
  identifier: string;
3067
3127
  identifier_type: string;
3068
- chain_identifier: string;
3069
3128
  }>]>;
3070
3129
  }, "strip", z.ZodTypeAny, {
3071
3130
  amount: string;
3072
3131
  currency: {
3073
3132
  name: string;
3074
3133
  } | {
3134
+ chain_identifier: string;
3075
3135
  identifier: string;
3076
3136
  identifier_type: string;
3077
- chain_identifier: string;
3078
3137
  };
3079
3138
  }, {
3080
3139
  amount: string;
3081
3140
  currency: {
3082
3141
  name: string;
3083
3142
  } | {
3143
+ chain_identifier: string;
3084
3144
  identifier: string;
3085
3145
  identifier_type: string;
3086
- chain_identifier: string;
3087
3146
  };
3088
3147
  }>>;
3089
3148
  revenue: z.ZodOptional<z.ZodObject<{
@@ -3099,31 +3158,31 @@ export declare const sendBatchEventsFieldsSchema: z.ZodObject<{
3099
3158
  identifier_type: z.ZodString;
3100
3159
  chain_identifier: z.ZodString;
3101
3160
  }, "strip", z.ZodTypeAny, {
3161
+ chain_identifier: string;
3102
3162
  identifier: string;
3103
3163
  identifier_type: string;
3104
- chain_identifier: string;
3105
3164
  }, {
3165
+ chain_identifier: string;
3106
3166
  identifier: string;
3107
3167
  identifier_type: string;
3108
- chain_identifier: string;
3109
3168
  }>]>;
3110
3169
  }, "strip", z.ZodTypeAny, {
3111
3170
  amount: string;
3112
3171
  currency: {
3113
3172
  name: string;
3114
3173
  } | {
3174
+ chain_identifier: string;
3115
3175
  identifier: string;
3116
3176
  identifier_type: string;
3117
- chain_identifier: string;
3118
3177
  };
3119
3178
  }, {
3120
3179
  amount: string;
3121
3180
  currency: {
3122
3181
  name: string;
3123
3182
  } | {
3183
+ chain_identifier: string;
3124
3184
  identifier: string;
3125
3185
  identifier_type: string;
3126
- chain_identifier: string;
3127
3186
  };
3128
3187
  }>>;
3129
3188
  }, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, "strip"> | undefined;
@@ -3158,31 +3217,31 @@ export declare const sendBatchEventsInputSchema: z.ZodObject<{
3158
3217
  identifier_type: z.ZodString;
3159
3218
  chain_identifier: z.ZodString;
3160
3219
  }, "strip", z.ZodTypeAny, {
3220
+ chain_identifier: string;
3161
3221
  identifier: string;
3162
3222
  identifier_type: string;
3163
- chain_identifier: string;
3164
3223
  }, {
3224
+ chain_identifier: string;
3165
3225
  identifier: string;
3166
3226
  identifier_type: string;
3167
- chain_identifier: string;
3168
3227
  }>]>;
3169
3228
  }, "strip", z.ZodTypeAny, {
3170
3229
  amount: string;
3171
3230
  currency: {
3172
3231
  name: string;
3173
3232
  } | {
3233
+ chain_identifier: string;
3174
3234
  identifier: string;
3175
3235
  identifier_type: string;
3176
- chain_identifier: string;
3177
3236
  };
3178
3237
  }, {
3179
3238
  amount: string;
3180
3239
  currency: {
3181
3240
  name: string;
3182
3241
  } | {
3242
+ chain_identifier: string;
3183
3243
  identifier: string;
3184
3244
  identifier_type: string;
3185
- chain_identifier: string;
3186
3245
  };
3187
3246
  }>>;
3188
3247
  revenue: z.ZodOptional<z.ZodObject<{
@@ -3198,31 +3257,31 @@ export declare const sendBatchEventsInputSchema: z.ZodObject<{
3198
3257
  identifier_type: z.ZodString;
3199
3258
  chain_identifier: z.ZodString;
3200
3259
  }, "strip", z.ZodTypeAny, {
3260
+ chain_identifier: string;
3201
3261
  identifier: string;
3202
3262
  identifier_type: string;
3203
- chain_identifier: string;
3204
3263
  }, {
3264
+ chain_identifier: string;
3205
3265
  identifier: string;
3206
3266
  identifier_type: string;
3207
- chain_identifier: string;
3208
3267
  }>]>;
3209
3268
  }, "strip", z.ZodTypeAny, {
3210
3269
  amount: string;
3211
3270
  currency: {
3212
3271
  name: string;
3213
3272
  } | {
3273
+ chain_identifier: string;
3214
3274
  identifier: string;
3215
3275
  identifier_type: string;
3216
- chain_identifier: string;
3217
3276
  };
3218
3277
  }, {
3219
3278
  amount: string;
3220
3279
  currency: {
3221
3280
  name: string;
3222
3281
  } | {
3282
+ chain_identifier: string;
3223
3283
  identifier: string;
3224
3284
  identifier_type: string;
3225
- chain_identifier: string;
3226
3285
  };
3227
3286
  }>>;
3228
3287
  }, "strip", z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, z.objectOutputType<{
@@ -3239,31 +3298,31 @@ export declare const sendBatchEventsInputSchema: z.ZodObject<{
3239
3298
  identifier_type: z.ZodString;
3240
3299
  chain_identifier: z.ZodString;
3241
3300
  }, "strip", z.ZodTypeAny, {
3301
+ chain_identifier: string;
3242
3302
  identifier: string;
3243
3303
  identifier_type: string;
3244
- chain_identifier: string;
3245
3304
  }, {
3305
+ chain_identifier: string;
3246
3306
  identifier: string;
3247
3307
  identifier_type: string;
3248
- chain_identifier: string;
3249
3308
  }>]>;
3250
3309
  }, "strip", z.ZodTypeAny, {
3251
3310
  amount: string;
3252
3311
  currency: {
3253
3312
  name: string;
3254
3313
  } | {
3314
+ chain_identifier: string;
3255
3315
  identifier: string;
3256
3316
  identifier_type: string;
3257
- chain_identifier: string;
3258
3317
  };
3259
3318
  }, {
3260
3319
  amount: string;
3261
3320
  currency: {
3262
3321
  name: string;
3263
3322
  } | {
3323
+ chain_identifier: string;
3264
3324
  identifier: string;
3265
3325
  identifier_type: string;
3266
- chain_identifier: string;
3267
3326
  };
3268
3327
  }>>;
3269
3328
  revenue: z.ZodOptional<z.ZodObject<{
@@ -3279,31 +3338,31 @@ export declare const sendBatchEventsInputSchema: z.ZodObject<{
3279
3338
  identifier_type: z.ZodString;
3280
3339
  chain_identifier: z.ZodString;
3281
3340
  }, "strip", z.ZodTypeAny, {
3341
+ chain_identifier: string;
3282
3342
  identifier: string;
3283
3343
  identifier_type: string;
3284
- chain_identifier: string;
3285
3344
  }, {
3345
+ chain_identifier: string;
3286
3346
  identifier: string;
3287
3347
  identifier_type: string;
3288
- chain_identifier: string;
3289
3348
  }>]>;
3290
3349
  }, "strip", z.ZodTypeAny, {
3291
3350
  amount: string;
3292
3351
  currency: {
3293
3352
  name: string;
3294
3353
  } | {
3354
+ chain_identifier: string;
3295
3355
  identifier: string;
3296
3356
  identifier_type: string;
3297
- chain_identifier: string;
3298
3357
  };
3299
3358
  }, {
3300
3359
  amount: string;
3301
3360
  currency: {
3302
3361
  name: string;
3303
3362
  } | {
3363
+ chain_identifier: string;
3304
3364
  identifier: string;
3305
3365
  identifier_type: string;
3306
- chain_identifier: string;
3307
3366
  };
3308
3367
  }>>;
3309
3368
  }, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, "strip">, z.objectInputType<{
@@ -3320,31 +3379,31 @@ export declare const sendBatchEventsInputSchema: z.ZodObject<{
3320
3379
  identifier_type: z.ZodString;
3321
3380
  chain_identifier: z.ZodString;
3322
3381
  }, "strip", z.ZodTypeAny, {
3382
+ chain_identifier: string;
3323
3383
  identifier: string;
3324
3384
  identifier_type: string;
3325
- chain_identifier: string;
3326
3385
  }, {
3386
+ chain_identifier: string;
3327
3387
  identifier: string;
3328
3388
  identifier_type: string;
3329
- chain_identifier: string;
3330
3389
  }>]>;
3331
3390
  }, "strip", z.ZodTypeAny, {
3332
3391
  amount: string;
3333
3392
  currency: {
3334
3393
  name: string;
3335
3394
  } | {
3395
+ chain_identifier: string;
3336
3396
  identifier: string;
3337
3397
  identifier_type: string;
3338
- chain_identifier: string;
3339
3398
  };
3340
3399
  }, {
3341
3400
  amount: string;
3342
3401
  currency: {
3343
3402
  name: string;
3344
3403
  } | {
3404
+ chain_identifier: string;
3345
3405
  identifier: string;
3346
3406
  identifier_type: string;
3347
- chain_identifier: string;
3348
3407
  };
3349
3408
  }>>;
3350
3409
  revenue: z.ZodOptional<z.ZodObject<{
@@ -3360,31 +3419,31 @@ export declare const sendBatchEventsInputSchema: z.ZodObject<{
3360
3419
  identifier_type: z.ZodString;
3361
3420
  chain_identifier: z.ZodString;
3362
3421
  }, "strip", z.ZodTypeAny, {
3422
+ chain_identifier: string;
3363
3423
  identifier: string;
3364
3424
  identifier_type: string;
3365
- chain_identifier: string;
3366
3425
  }, {
3426
+ chain_identifier: string;
3367
3427
  identifier: string;
3368
3428
  identifier_type: string;
3369
- chain_identifier: string;
3370
3429
  }>]>;
3371
3430
  }, "strip", z.ZodTypeAny, {
3372
3431
  amount: string;
3373
3432
  currency: {
3374
3433
  name: string;
3375
3434
  } | {
3435
+ chain_identifier: string;
3376
3436
  identifier: string;
3377
3437
  identifier_type: string;
3378
- chain_identifier: string;
3379
3438
  };
3380
3439
  }, {
3381
3440
  amount: string;
3382
3441
  currency: {
3383
3442
  name: string;
3384
3443
  } | {
3444
+ chain_identifier: string;
3385
3445
  identifier: string;
3386
3446
  identifier_type: string;
3387
- chain_identifier: string;
3388
3447
  };
3389
3448
  }>>;
3390
3449
  }, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, "strip">>>;
@@ -3408,31 +3467,31 @@ export declare const sendBatchEventsInputSchema: z.ZodObject<{
3408
3467
  identifier_type: z.ZodString;
3409
3468
  chain_identifier: z.ZodString;
3410
3469
  }, "strip", z.ZodTypeAny, {
3470
+ chain_identifier: string;
3411
3471
  identifier: string;
3412
3472
  identifier_type: string;
3413
- chain_identifier: string;
3414
3473
  }, {
3474
+ chain_identifier: string;
3415
3475
  identifier: string;
3416
3476
  identifier_type: string;
3417
- chain_identifier: string;
3418
3477
  }>]>;
3419
3478
  }, "strip", z.ZodTypeAny, {
3420
3479
  amount: string;
3421
3480
  currency: {
3422
3481
  name: string;
3423
3482
  } | {
3483
+ chain_identifier: string;
3424
3484
  identifier: string;
3425
3485
  identifier_type: string;
3426
- chain_identifier: string;
3427
3486
  };
3428
3487
  }, {
3429
3488
  amount: string;
3430
3489
  currency: {
3431
3490
  name: string;
3432
3491
  } | {
3492
+ chain_identifier: string;
3433
3493
  identifier: string;
3434
3494
  identifier_type: string;
3435
- chain_identifier: string;
3436
3495
  };
3437
3496
  }>>;
3438
3497
  revenue: z.ZodOptional<z.ZodObject<{
@@ -3448,31 +3507,31 @@ export declare const sendBatchEventsInputSchema: z.ZodObject<{
3448
3507
  identifier_type: z.ZodString;
3449
3508
  chain_identifier: z.ZodString;
3450
3509
  }, "strip", z.ZodTypeAny, {
3510
+ chain_identifier: string;
3451
3511
  identifier: string;
3452
3512
  identifier_type: string;
3453
- chain_identifier: string;
3454
3513
  }, {
3514
+ chain_identifier: string;
3455
3515
  identifier: string;
3456
3516
  identifier_type: string;
3457
- chain_identifier: string;
3458
3517
  }>]>;
3459
3518
  }, "strip", z.ZodTypeAny, {
3460
3519
  amount: string;
3461
3520
  currency: {
3462
3521
  name: string;
3463
3522
  } | {
3523
+ chain_identifier: string;
3464
3524
  identifier: string;
3465
3525
  identifier_type: string;
3466
- chain_identifier: string;
3467
3526
  };
3468
3527
  }, {
3469
3528
  amount: string;
3470
3529
  currency: {
3471
3530
  name: string;
3472
3531
  } | {
3532
+ chain_identifier: string;
3473
3533
  identifier: string;
3474
3534
  identifier_type: string;
3475
- chain_identifier: string;
3476
3535
  };
3477
3536
  }>>;
3478
3537
  }, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, "strip"> | undefined;
@@ -3496,31 +3555,31 @@ export declare const sendBatchEventsInputSchema: z.ZodObject<{
3496
3555
  identifier_type: z.ZodString;
3497
3556
  chain_identifier: z.ZodString;
3498
3557
  }, "strip", z.ZodTypeAny, {
3558
+ chain_identifier: string;
3499
3559
  identifier: string;
3500
3560
  identifier_type: string;
3501
- chain_identifier: string;
3502
3561
  }, {
3562
+ chain_identifier: string;
3503
3563
  identifier: string;
3504
3564
  identifier_type: string;
3505
- chain_identifier: string;
3506
3565
  }>]>;
3507
3566
  }, "strip", z.ZodTypeAny, {
3508
3567
  amount: string;
3509
3568
  currency: {
3510
3569
  name: string;
3511
3570
  } | {
3571
+ chain_identifier: string;
3512
3572
  identifier: string;
3513
3573
  identifier_type: string;
3514
- chain_identifier: string;
3515
3574
  };
3516
3575
  }, {
3517
3576
  amount: string;
3518
3577
  currency: {
3519
3578
  name: string;
3520
3579
  } | {
3580
+ chain_identifier: string;
3521
3581
  identifier: string;
3522
3582
  identifier_type: string;
3523
- chain_identifier: string;
3524
3583
  };
3525
3584
  }>>;
3526
3585
  revenue: z.ZodOptional<z.ZodObject<{
@@ -3536,31 +3595,31 @@ export declare const sendBatchEventsInputSchema: z.ZodObject<{
3536
3595
  identifier_type: z.ZodString;
3537
3596
  chain_identifier: z.ZodString;
3538
3597
  }, "strip", z.ZodTypeAny, {
3598
+ chain_identifier: string;
3539
3599
  identifier: string;
3540
3600
  identifier_type: string;
3541
- chain_identifier: string;
3542
3601
  }, {
3602
+ chain_identifier: string;
3543
3603
  identifier: string;
3544
3604
  identifier_type: string;
3545
- chain_identifier: string;
3546
3605
  }>]>;
3547
3606
  }, "strip", z.ZodTypeAny, {
3548
3607
  amount: string;
3549
3608
  currency: {
3550
3609
  name: string;
3551
3610
  } | {
3611
+ chain_identifier: string;
3552
3612
  identifier: string;
3553
3613
  identifier_type: string;
3554
- chain_identifier: string;
3555
3614
  };
3556
3615
  }, {
3557
3616
  amount: string;
3558
3617
  currency: {
3559
3618
  name: string;
3560
3619
  } | {
3620
+ chain_identifier: string;
3561
3621
  identifier: string;
3562
3622
  identifier_type: string;
3563
- chain_identifier: string;
3564
3623
  };
3565
3624
  }>>;
3566
3625
  }, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, "strip"> | undefined;
@@ -3586,31 +3645,31 @@ export declare const sendBatchEventsInputSchema: z.ZodObject<{
3586
3645
  identifier_type: z.ZodString;
3587
3646
  chain_identifier: z.ZodString;
3588
3647
  }, "strip", z.ZodTypeAny, {
3648
+ chain_identifier: string;
3589
3649
  identifier: string;
3590
3650
  identifier_type: string;
3591
- chain_identifier: string;
3592
3651
  }, {
3652
+ chain_identifier: string;
3593
3653
  identifier: string;
3594
3654
  identifier_type: string;
3595
- chain_identifier: string;
3596
3655
  }>]>;
3597
3656
  }, "strip", z.ZodTypeAny, {
3598
3657
  amount: string;
3599
3658
  currency: {
3600
3659
  name: string;
3601
3660
  } | {
3661
+ chain_identifier: string;
3602
3662
  identifier: string;
3603
3663
  identifier_type: string;
3604
- chain_identifier: string;
3605
3664
  };
3606
3665
  }, {
3607
3666
  amount: string;
3608
3667
  currency: {
3609
3668
  name: string;
3610
3669
  } | {
3670
+ chain_identifier: string;
3611
3671
  identifier: string;
3612
3672
  identifier_type: string;
3613
- chain_identifier: string;
3614
3673
  };
3615
3674
  }>>;
3616
3675
  revenue: z.ZodOptional<z.ZodObject<{
@@ -3626,31 +3685,31 @@ export declare const sendBatchEventsInputSchema: z.ZodObject<{
3626
3685
  identifier_type: z.ZodString;
3627
3686
  chain_identifier: z.ZodString;
3628
3687
  }, "strip", z.ZodTypeAny, {
3688
+ chain_identifier: string;
3629
3689
  identifier: string;
3630
3690
  identifier_type: string;
3631
- chain_identifier: string;
3632
3691
  }, {
3692
+ chain_identifier: string;
3633
3693
  identifier: string;
3634
3694
  identifier_type: string;
3635
- chain_identifier: string;
3636
3695
  }>]>;
3637
3696
  }, "strip", z.ZodTypeAny, {
3638
3697
  amount: string;
3639
3698
  currency: {
3640
3699
  name: string;
3641
3700
  } | {
3701
+ chain_identifier: string;
3642
3702
  identifier: string;
3643
3703
  identifier_type: string;
3644
- chain_identifier: string;
3645
3704
  };
3646
3705
  }, {
3647
3706
  amount: string;
3648
3707
  currency: {
3649
3708
  name: string;
3650
3709
  } | {
3710
+ chain_identifier: string;
3651
3711
  identifier: string;
3652
3712
  identifier_type: string;
3653
- chain_identifier: string;
3654
3713
  };
3655
3714
  }>>;
3656
3715
  }, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, "strip"> | undefined;
@@ -3679,31 +3738,31 @@ export declare const sendBatchEventsInputSchema: z.ZodObject<{
3679
3738
  identifier_type: z.ZodString;
3680
3739
  chain_identifier: z.ZodString;
3681
3740
  }, "strip", z.ZodTypeAny, {
3741
+ chain_identifier: string;
3682
3742
  identifier: string;
3683
3743
  identifier_type: string;
3684
- chain_identifier: string;
3685
3744
  }, {
3745
+ chain_identifier: string;
3686
3746
  identifier: string;
3687
3747
  identifier_type: string;
3688
- chain_identifier: string;
3689
3748
  }>]>;
3690
3749
  }, "strip", z.ZodTypeAny, {
3691
3750
  amount: string;
3692
3751
  currency: {
3693
3752
  name: string;
3694
3753
  } | {
3754
+ chain_identifier: string;
3695
3755
  identifier: string;
3696
3756
  identifier_type: string;
3697
- chain_identifier: string;
3698
3757
  };
3699
3758
  }, {
3700
3759
  amount: string;
3701
3760
  currency: {
3702
3761
  name: string;
3703
3762
  } | {
3763
+ chain_identifier: string;
3704
3764
  identifier: string;
3705
3765
  identifier_type: string;
3706
- chain_identifier: string;
3707
3766
  };
3708
3767
  }>>;
3709
3768
  revenue: z.ZodOptional<z.ZodObject<{
@@ -3719,31 +3778,31 @@ export declare const sendBatchEventsInputSchema: z.ZodObject<{
3719
3778
  identifier_type: z.ZodString;
3720
3779
  chain_identifier: z.ZodString;
3721
3780
  }, "strip", z.ZodTypeAny, {
3781
+ chain_identifier: string;
3722
3782
  identifier: string;
3723
3783
  identifier_type: string;
3724
- chain_identifier: string;
3725
3784
  }, {
3785
+ chain_identifier: string;
3726
3786
  identifier: string;
3727
3787
  identifier_type: string;
3728
- chain_identifier: string;
3729
3788
  }>]>;
3730
3789
  }, "strip", z.ZodTypeAny, {
3731
3790
  amount: string;
3732
3791
  currency: {
3733
3792
  name: string;
3734
3793
  } | {
3794
+ chain_identifier: string;
3735
3795
  identifier: string;
3736
3796
  identifier_type: string;
3737
- chain_identifier: string;
3738
3797
  };
3739
3798
  }, {
3740
3799
  amount: string;
3741
3800
  currency: {
3742
3801
  name: string;
3743
3802
  } | {
3803
+ chain_identifier: string;
3744
3804
  identifier: string;
3745
3805
  identifier_type: string;
3746
- chain_identifier: string;
3747
3806
  };
3748
3807
  }>>;
3749
3808
  }, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, "strip"> | undefined;