@uniswap/client-data-api 0.0.145 → 0.0.147

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.
@@ -1456,6 +1456,82 @@ export declare class Launch extends Message<Launch> {
1456
1456
  * @generated from field: optional data.v2.BondingCurveInfo bonding_curve = 11;
1457
1457
  */
1458
1458
  bondingCurve?: BondingCurveInfo;
1459
+ /**
1460
+ * Launchpad token metadata (12-15), joined from launched_tokens — present
1461
+ * only for launches whose token was created via the Uniswap token factory
1462
+ * (CCA and bonding-curve launches); other launchpads' tokens have no row
1463
+ * and serve unset. Verification gating mirrors v1 GetAuction
1464
+ * (AuctionsBL.enrichWithLaunchpadMetadata): the description is on-chain
1465
+ * creator text at the same trust level as name/symbol, served ungated.
1466
+ *
1467
+ * @generated from field: optional string token_description = 12;
1468
+ */
1469
+ tokenDescription?: string;
1470
+ /**
1471
+ * The launch tx's from address (launched_tokens.creator_wallet),
1472
+ * EIP-55 checksummed. Public on-chain data, served ungated.
1473
+ *
1474
+ * @generated from field: optional string creator_address = 13;
1475
+ */
1476
+ creatorAddress?: string;
1477
+ /**
1478
+ * Creator-declared project website. Served only once website verification
1479
+ * passes; verification is deferred today (status stays 'pending', same
1480
+ * rule that keeps the token mirror's homepageUrl null), so this stays
1481
+ * unset until that ships.
1482
+ *
1483
+ * @generated from field: optional string website_url = 14;
1484
+ */
1485
+ websiteUrl?: string;
1486
+ /**
1487
+ * X handle, only when its inline-at-ingest Ed25519 verification passed.
1488
+ *
1489
+ * @generated from field: optional string x_handle = 15;
1490
+ */
1491
+ xHandle?: string;
1492
+ /**
1493
+ * Bonding-curve launches only (16-17): distinct wallets (swap tx senders)
1494
+ * that bought the launch token on its curve pool — all-time and trailing
1495
+ * hour. Served from ClickHouse v4 swaps; absent (never 0) when the stats
1496
+ * source fails or for non-curve launches, so clients can tell degraded
1497
+ * from a real zero.
1498
+ *
1499
+ * @generated from field: optional int32 unique_buyer_count = 16;
1500
+ */
1501
+ uniqueBuyerCount?: number;
1502
+ /**
1503
+ * @generated from field: optional int32 buyers_last_1h = 17;
1504
+ */
1505
+ buyersLast1h?: number;
1506
+ /**
1507
+ * Exact on-chain holder count of the launch token, computed at query time
1508
+ * over the raw launch-transfers feed (ClickHouse, reorg-excluded):
1509
+ * addresses with a positive net balance, contracts included, burn sinks
1510
+ * like 0x…dEaD included while they hold a balance — raw Etherscan-style
1511
+ * semantics. Present only for tokens created via the Uniswap token
1512
+ * factory (CCA + bonding-curve launches, whose transfers the feed
1513
+ * whitelists); absent — never 0 — while the token has no ingested
1514
+ * transfers or when the enrichment fails.
1515
+ *
1516
+ * @generated from field: optional int32 holder_count = 18;
1517
+ */
1518
+ holderCount?: number;
1519
+ /**
1520
+ * Cumulative burned amount of the launch token, split by burn sink and
1521
+ * computed from the same transfer feed. Raw uint256 base units as decimal
1522
+ * strings; total burned = burned_to_zero + burned_to_dead. Because burn
1523
+ * addresses never spend, a holders-excluding-burn count is
1524
+ * client-derivable as holder_count - (burned_to_dead > 0 ? 1 : 0). Same
1525
+ * presence rule as holder_count (absent without ingested transfers), but
1526
+ * once the token has transfers a genuine "0" is served.
1527
+ *
1528
+ * @generated from field: optional string burned_to_zero = 19;
1529
+ */
1530
+ burnedToZero?: string;
1531
+ /**
1532
+ * @generated from field: optional string burned_to_dead = 20;
1533
+ */
1534
+ burnedToDead?: string;
1459
1535
  constructor(data?: PartialMessage<Launch>);
1460
1536
  static readonly runtime: typeof proto3;
1461
1537
  static readonly typeName = "data.v2.Launch";
@@ -1646,6 +1646,15 @@ Launch.fields = proto3.util.newFieldList(() => [
1646
1646
  { no: 9, name: "auction_end_block", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
1647
1647
  { no: 10, name: "bidder_count", kind: "scalar", T: 5 /* ScalarType.INT32 */, opt: true },
1648
1648
  { no: 11, name: "bonding_curve", kind: "message", T: BondingCurveInfo, opt: true },
1649
+ { no: 12, name: "token_description", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
1650
+ { no: 13, name: "creator_address", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
1651
+ { no: 14, name: "website_url", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
1652
+ { no: 15, name: "x_handle", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
1653
+ { no: 16, name: "unique_buyer_count", kind: "scalar", T: 5 /* ScalarType.INT32 */, opt: true },
1654
+ { no: 17, name: "buyers_last_1h", kind: "scalar", T: 5 /* ScalarType.INT32 */, opt: true },
1655
+ { no: 18, name: "holder_count", kind: "scalar", T: 5 /* ScalarType.INT32 */, opt: true },
1656
+ { no: 19, name: "burned_to_zero", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
1657
+ { no: 20, name: "burned_to_dead", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
1649
1658
  ]);
1650
1659
  /**
1651
1660
  * Bonding-curve lifecycle overlay for launches attributed to the Uniswap
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniswap/client-data-api",
3
- "version": "0.0.145",
3
+ "version": "0.0.147",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },