@uniswap/client-data-api 0.0.230 → 0.0.232

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.
@@ -364,7 +364,18 @@ export declare enum LaunchesOrderBy {
364
364
  *
365
365
  * @generated from enum value: LAUNCHES_ORDER_BY_TRENDING = 6;
366
366
  */
367
- TRENDING = 6
367
+ TRENDING = 6,
368
+ /**
369
+ * Fully-diluted valuation, descending by default. Served from the RANKED
370
+ * launch_tokens read (the live attribution scan has no FDV engine), which
371
+ * every non-LAUNCHED_AT sort already routes to. Unlike TRENDING, a
372
+ * LaunchListFilter.window IS applied under this sort: the launch-age floor
373
+ * reaches both arms, so FDV + LAST_24H ranks by FDV among launches inside
374
+ * that window rather than across all launches.
375
+ *
376
+ * @generated from enum value: LAUNCHES_ORDER_BY_FDV = 7;
377
+ */
378
+ FDV = 7
368
379
  }
369
380
  /**
370
381
  * Launch-recency window for ListLaunches. UNSPECIFIED applies no window (all
@@ -462,6 +462,17 @@ export var LaunchesOrderBy;
462
462
  * @generated from enum value: LAUNCHES_ORDER_BY_TRENDING = 6;
463
463
  */
464
464
  LaunchesOrderBy[LaunchesOrderBy["TRENDING"] = 6] = "TRENDING";
465
+ /**
466
+ * Fully-diluted valuation, descending by default. Served from the RANKED
467
+ * launch_tokens read (the live attribution scan has no FDV engine), which
468
+ * every non-LAUNCHED_AT sort already routes to. Unlike TRENDING, a
469
+ * LaunchListFilter.window IS applied under this sort: the launch-age floor
470
+ * reaches both arms, so FDV + LAST_24H ranks by FDV among launches inside
471
+ * that window rather than across all launches.
472
+ *
473
+ * @generated from enum value: LAUNCHES_ORDER_BY_FDV = 7;
474
+ */
475
+ LaunchesOrderBy[LaunchesOrderBy["FDV"] = 7] = "FDV";
465
476
  })(LaunchesOrderBy || (LaunchesOrderBy = {}));
466
477
  // Retrieve enum metadata with: proto3.getEnumType(LaunchesOrderBy)
467
478
  proto3.util.setEnumType(LaunchesOrderBy, "data.v2.LaunchesOrderBy", [
@@ -472,6 +483,7 @@ proto3.util.setEnumType(LaunchesOrderBy, "data.v2.LaunchesOrderBy", [
472
483
  { no: 4, name: "LAUNCHES_ORDER_BY_PRICE_CHANGE_1H" },
473
484
  { no: 5, name: "LAUNCHES_ORDER_BY_PRICE_CHANGE_1D" },
474
485
  { no: 6, name: "LAUNCHES_ORDER_BY_TRENDING" },
486
+ { no: 7, name: "LAUNCHES_ORDER_BY_FDV" },
475
487
  ]);
476
488
  /**
477
489
  * Launch-recency window for ListLaunches. UNSPECIFIED applies no window (all
@@ -231,6 +231,24 @@ export declare class ListLaunchesRequest extends Message<ListLaunchesRequest> {
231
231
  * @generated from field: repeated string token_addresses = 11;
232
232
  */
233
233
  tokenAddresses: string[];
234
+ /**
235
+ * "Fees paid to me": keep only launches whose CURRENT fee beneficiary is
236
+ * this address — the holder of the launch's BeneficiaryVault NFT, as
237
+ * served on BondingCurve.fee_beneficiary. Any case accepted; a non-address
238
+ * fails with INVALID_ARGUMENT. Empty/absent applies no filter.
239
+ *
240
+ * Separate from creator_address, not OR'd with it: the beneficiary is a
241
+ * payee that moves with the NFT, the creator is the immutable launch-tx
242
+ * sender. Callers wanting both issue both reads.
243
+ *
244
+ * Coverage is uniswap-bonding-curve ONLY — a uniswap-cca launch mints its
245
+ * vault NFT lazily from the creator's later claim, so it has no
246
+ * launch-anchored beneficiary and serves no fee_beneficiary. Rejected with
247
+ * sort_by = TRENDING, same contract as creator_address.
248
+ *
249
+ * @generated from field: optional string fee_beneficiary = 12;
250
+ */
251
+ feeBeneficiary?: string;
234
252
  constructor(data?: PartialMessage<ListLaunchesRequest>);
235
253
  static readonly runtime: typeof proto3;
236
254
  static readonly typeName = "launches.v1.ListLaunchesRequest";
@@ -232,6 +232,7 @@ ListLaunchesRequest.fields = proto3.util.newFieldList(() => [
232
232
  { no: 9, name: "creator_address", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
233
233
  { no: 10, name: "linked_x_only", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
234
234
  { no: 11, name: "token_addresses", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
235
+ { no: 12, name: "fee_beneficiary", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
235
236
  ]);
236
237
  /**
237
238
  * @generated from message launches.v1.ListLaunchesResponse
@@ -41,7 +41,18 @@ export declare enum LaunchesOrderBy {
41
41
  *
42
42
  * @generated from enum value: LAUNCHES_ORDER_BY_TRENDING = 6;
43
43
  */
44
- TRENDING = 6
44
+ TRENDING = 6,
45
+ /**
46
+ * Fully-diluted valuation, descending by default. Served from the RANKED
47
+ * launch_tokens read (the live attribution scan has no FDV engine), which
48
+ * every non-LAUNCHED_AT sort already routes to. Unlike TRENDING, a
49
+ * LaunchListFilter.window IS applied under this sort: the launch-age floor
50
+ * reaches both arms, so FDV + LAST_24H ranks by FDV among launches inside
51
+ * that window rather than across all launches.
52
+ *
53
+ * @generated from enum value: LAUNCHES_ORDER_BY_FDV = 7;
54
+ */
55
+ FDV = 7
45
56
  }
46
57
  /**
47
58
  * Launch-recency window for ListLaunches. UNSPECIFIED applies no window (all
@@ -46,6 +46,17 @@ export var LaunchesOrderBy;
46
46
  * @generated from enum value: LAUNCHES_ORDER_BY_TRENDING = 6;
47
47
  */
48
48
  LaunchesOrderBy[LaunchesOrderBy["TRENDING"] = 6] = "TRENDING";
49
+ /**
50
+ * Fully-diluted valuation, descending by default. Served from the RANKED
51
+ * launch_tokens read (the live attribution scan has no FDV engine), which
52
+ * every non-LAUNCHED_AT sort already routes to. Unlike TRENDING, a
53
+ * LaunchListFilter.window IS applied under this sort: the launch-age floor
54
+ * reaches both arms, so FDV + LAST_24H ranks by FDV among launches inside
55
+ * that window rather than across all launches.
56
+ *
57
+ * @generated from enum value: LAUNCHES_ORDER_BY_FDV = 7;
58
+ */
59
+ LaunchesOrderBy[LaunchesOrderBy["FDV"] = 7] = "FDV";
49
60
  })(LaunchesOrderBy || (LaunchesOrderBy = {}));
50
61
  // Retrieve enum metadata with: proto3.getEnumType(LaunchesOrderBy)
51
62
  proto3.util.setEnumType(LaunchesOrderBy, "launches.v1.LaunchesOrderBy", [
@@ -56,6 +67,7 @@ proto3.util.setEnumType(LaunchesOrderBy, "launches.v1.LaunchesOrderBy", [
56
67
  { no: 4, name: "LAUNCHES_ORDER_BY_PRICE_CHANGE_1H" },
57
68
  { no: 5, name: "LAUNCHES_ORDER_BY_PRICE_CHANGE_1D" },
58
69
  { no: 6, name: "LAUNCHES_ORDER_BY_TRENDING" },
70
+ { no: 7, name: "LAUNCHES_ORDER_BY_FDV" },
59
71
  ]);
60
72
  /**
61
73
  * Launch-recency window for ListLaunches. UNSPECIFIED applies no window (all
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniswap/client-data-api",
3
- "version": "0.0.230",
3
+ "version": "0.0.232",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },