@uniswap/client-data-api 0.0.193 → 0.0.196

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.
@@ -1195,6 +1195,29 @@ export declare class ListLaunchesRequest extends Message<ListLaunchesRequest> {
1195
1195
  * @generated from field: optional string creator_address = 9;
1196
1196
  */
1197
1197
  creatorAddress?: string;
1198
+ /**
1199
+ * "Linked X": keep only launches that serve Launch.x_handle — i.e. whose
1200
+ * creator-declared X handle passed its inline-at-ingest Ed25519
1201
+ * verification (launched_tokens.x_handle_status = 'passed' with a
1202
+ * non-empty handle). Exactly the rows the response decorates with
1203
+ * x_handle, but filtered IN the ranked query before pagination, so the
1204
+ * result is the top launches with a linked X across ALL launches — not a
1205
+ * client-side pass over one pre-cut page. False/absent applies no filter.
1206
+ *
1207
+ * Coverage is the Uniswap launchpads only (uniswap-cca crowd-launch
1208
+ * auctions + uniswap-bonding-curve instant launches): x_handle is only
1209
+ * ever attested for factory launches, so third-party-launchpad launches —
1210
+ * which never serve x_handle — are dropped from a filtered read and
1211
+ * nothing filterable is lost.
1212
+ *
1213
+ * Not supported with sort_by = TRENDING: that ranking is built from a
1214
+ * candidate scan with no X-handle column, so the combination is rejected
1215
+ * with INVALID_ARGUMENT rather than served unfiltered or silently
1216
+ * re-sorted. Composes with every other sort, VOLUME_1D included.
1217
+ *
1218
+ * @generated from field: optional bool linked_x_only = 10;
1219
+ */
1220
+ linkedXOnly?: boolean;
1198
1221
  constructor(data?: PartialMessage<ListLaunchesRequest>);
1199
1222
  static readonly runtime: typeof proto3;
1200
1223
  static readonly typeName = "data.v2.ListLaunchesRequest";
@@ -1480,6 +1480,7 @@ ListLaunchesRequest.fields = proto3.util.newFieldList(() => [
1480
1480
  { no: 7, name: "ascending", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
1481
1481
  { no: 8, name: "query", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
1482
1482
  { no: 9, name: "creator_address", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
1483
+ { no: 10, name: "linked_x_only", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
1483
1484
  ]);
1484
1485
  /**
1485
1486
  * @generated from message data.v2.ListLaunchesResponse
@@ -265,7 +265,7 @@ export declare enum PoolsOrderBy {
265
265
  */
266
266
  VOLUME_30D = 3,
267
267
  /**
268
- * fee revenue / TVL; excludes reward_apr
268
+ * ranks on total_apr (fee apr + live reward apr); fee apr alone when incentive data is unavailable
269
269
  *
270
270
  * @generated from enum value: POOLS_ORDER_BY_APR = 4;
271
271
  */
@@ -337,7 +337,7 @@ export var PoolsOrderBy;
337
337
  */
338
338
  PoolsOrderBy[PoolsOrderBy["VOLUME_30D"] = 3] = "VOLUME_30D";
339
339
  /**
340
- * fee revenue / TVL; excludes reward_apr
340
+ * ranks on total_apr (fee apr + live reward apr); fee apr alone when incentive data is unavailable
341
341
  *
342
342
  * @generated from enum value: POOLS_ORDER_BY_APR = 4;
343
343
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniswap/client-data-api",
3
- "version": "0.0.193",
3
+ "version": "0.0.196",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },