@uniswap/client-data-api 0.0.156 → 0.0.157

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.
@@ -1069,6 +1069,18 @@ export declare class AuctionWithStats extends Message<AuctionWithStats> {
1069
1069
  * @generated from field: optional double bid_volume_usd_last_1h = 4;
1070
1070
  */
1071
1071
  bidVolumeUsdLast1h?: number;
1072
+ /**
1073
+ * Current token holders of the launched token, all-time as of the latest
1074
+ * ingested transfer. Burn-dust is settled server-side: a counted dEaD burn
1075
+ * row whose balance is dust (under half a whole token) is subtracted, so
1076
+ * the value matches the GetLaunchHolders-derived display after the
1077
+ * client's dust rule (LP-1312). Optional for explicit presence: unset
1078
+ * until the launch has holder data — pre-graduation rows stay bidder-only
1079
+ * (unique_bidder_count is the participation stat there).
1080
+ *
1081
+ * @generated from field: optional int32 holder_count = 5;
1082
+ */
1083
+ holderCount?: number;
1072
1084
  constructor(data?: PartialMessage<AuctionWithStats>);
1073
1085
  static readonly runtime: typeof proto3;
1074
1086
  static readonly typeName = "data.v1.AuctionWithStats";
@@ -1305,6 +1305,7 @@ AuctionWithStats.fields = proto3.util.newFieldList(() => [
1305
1305
  { no: 2, name: "total_bid_volume", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1306
1306
  { no: 3, name: "unique_bidder_count", kind: "scalar", T: 5 /* ScalarType.INT32 */, opt: true },
1307
1307
  { no: 4, name: "bid_volume_usd_last_1h", kind: "scalar", T: 1 /* ScalarType.DOUBLE */, opt: true },
1308
+ { no: 5, name: "holder_count", kind: "scalar", T: 5 /* ScalarType.INT32 */, opt: true },
1308
1309
  ]);
1309
1310
  /**
1310
1311
  * Response containing top auctions ordered by total bid volume.
@@ -1260,10 +1260,10 @@ export declare class GetLaunchHoldersResponse extends Message<GetLaunchHoldersRe
1260
1260
  */
1261
1261
  holderCountTrend: TimestampedValue[];
1262
1262
  /**
1263
- * Share of minted_supply held by the top 10 NON-burn holder rows, percent
1264
- * in [0, 100]. Burned tokens can never concentrate, so they are excluded
1265
- * here (unlike the rows above); the locked LP position is NOT excluded —
1266
- * clients that label it can recompute from the raw rows.
1263
+ * Share of minted_supply held by the top 10 holder rows that are neither
1264
+ * burn sinks nor the pool's custody row (LaunchHolder.is_pool_address),
1265
+ * percent in [0, 100]. Burned tokens can never concentrate and the pool
1266
+ * is the market itself, so both are excluded here (unlike the rows above).
1267
1267
  *
1268
1268
  * @generated from field: optional double top10_supply_pct = 5;
1269
1269
  */
@@ -1687,6 +1687,17 @@ export declare class LaunchHolder extends Message<LaunchHolder> {
1687
1687
  * @generated from field: bool is_burn_address = 4;
1688
1688
  */
1689
1689
  isBurnAddress: boolean;
1690
+ /**
1691
+ * True for the launch pool's custody row — the chain's v4 PoolManager
1692
+ * singleton, which holds the pool's token-side balance (the LP NFT sits
1693
+ * in the FeeSplitter, the ERC-20 supply does not). Served in the list so
1694
+ * clients can label it, but excluded from top10_supply_pct like burn rows
1695
+ * (the pool is the market, not a dumpable holder); it stays inside
1696
+ * holder_count.
1697
+ *
1698
+ * @generated from field: bool is_pool_address = 5;
1699
+ */
1700
+ isPoolAddress: boolean;
1690
1701
  constructor(data?: PartialMessage<LaunchHolder>);
1691
1702
  static readonly runtime: typeof proto3;
1692
1703
  static readonly typeName = "data.v2.LaunchHolder";
@@ -1803,6 +1803,17 @@ export class LaunchHolder extends Message {
1803
1803
  * @generated from field: bool is_burn_address = 4;
1804
1804
  */
1805
1805
  this.isBurnAddress = false;
1806
+ /**
1807
+ * True for the launch pool's custody row — the chain's v4 PoolManager
1808
+ * singleton, which holds the pool's token-side balance (the LP NFT sits
1809
+ * in the FeeSplitter, the ERC-20 supply does not). Served in the list so
1810
+ * clients can label it, but excluded from top10_supply_pct like burn rows
1811
+ * (the pool is the market, not a dumpable holder); it stays inside
1812
+ * holder_count.
1813
+ *
1814
+ * @generated from field: bool is_pool_address = 5;
1815
+ */
1816
+ this.isPoolAddress = false;
1806
1817
  proto3.util.initPartial(data, this);
1807
1818
  }
1808
1819
  static fromBinary(bytes, options) {
@@ -1825,6 +1836,7 @@ LaunchHolder.fields = proto3.util.newFieldList(() => [
1825
1836
  { no: 2, name: "balance", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1826
1837
  { no: 3, name: "supply_pct", kind: "scalar", T: 1 /* ScalarType.DOUBLE */ },
1827
1838
  { no: 4, name: "is_burn_address", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
1839
+ { no: 5, name: "is_pool_address", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
1828
1840
  ]);
1829
1841
  /**
1830
1842
  * Overlay for launches of the Uniswap direct-launch launchpad (launchpad_id
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniswap/client-data-api",
3
- "version": "0.0.156",
3
+ "version": "0.0.157",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },