@uniswap/client-data-api 0.0.163 → 0.0.164
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.
- package/dist/data/v2/types_pb.d.ts +13 -1
- package/dist/data/v2/types_pb.js +13 -0
- package/package.json +1 -1
|
@@ -352,7 +352,19 @@ export declare enum LaunchesOrderBy {
|
|
|
352
352
|
/**
|
|
353
353
|
* @generated from enum value: LAUNCHES_ORDER_BY_PRICE_CHANGE_1D = 5;
|
|
354
354
|
*/
|
|
355
|
-
PRICE_CHANGE_1D = 5
|
|
355
|
+
PRICE_CHANGE_1D = 5,
|
|
356
|
+
/**
|
|
357
|
+
* Trending: launches with recent buy-side momentum. Candidates are tokens
|
|
358
|
+
* with buy activity in the trailing hour REGARDLESS of launch age; gated
|
|
359
|
+
* (non-negative 1h price change, minimum FDV, minimum distinct 1h buyers)
|
|
360
|
+
* and scored by volume/buyer acceleration vs the preceding hours, with the
|
|
361
|
+
* remainder of the page backfilled by 24h volume so the module never
|
|
362
|
+
* renders empty. Needs no LaunchListFilter.window — any window filter is
|
|
363
|
+
* ignored under this sort.
|
|
364
|
+
*
|
|
365
|
+
* @generated from enum value: LAUNCHES_ORDER_BY_TRENDING = 6;
|
|
366
|
+
*/
|
|
367
|
+
TRENDING = 6
|
|
356
368
|
}
|
|
357
369
|
/**
|
|
358
370
|
* Launch-recency window for ListLaunches. UNSPECIFIED applies no window (all
|
package/dist/data/v2/types_pb.js
CHANGED
|
@@ -450,6 +450,18 @@ export var LaunchesOrderBy;
|
|
|
450
450
|
* @generated from enum value: LAUNCHES_ORDER_BY_PRICE_CHANGE_1D = 5;
|
|
451
451
|
*/
|
|
452
452
|
LaunchesOrderBy[LaunchesOrderBy["PRICE_CHANGE_1D"] = 5] = "PRICE_CHANGE_1D";
|
|
453
|
+
/**
|
|
454
|
+
* Trending: launches with recent buy-side momentum. Candidates are tokens
|
|
455
|
+
* with buy activity in the trailing hour REGARDLESS of launch age; gated
|
|
456
|
+
* (non-negative 1h price change, minimum FDV, minimum distinct 1h buyers)
|
|
457
|
+
* and scored by volume/buyer acceleration vs the preceding hours, with the
|
|
458
|
+
* remainder of the page backfilled by 24h volume so the module never
|
|
459
|
+
* renders empty. Needs no LaunchListFilter.window — any window filter is
|
|
460
|
+
* ignored under this sort.
|
|
461
|
+
*
|
|
462
|
+
* @generated from enum value: LAUNCHES_ORDER_BY_TRENDING = 6;
|
|
463
|
+
*/
|
|
464
|
+
LaunchesOrderBy[LaunchesOrderBy["TRENDING"] = 6] = "TRENDING";
|
|
453
465
|
})(LaunchesOrderBy || (LaunchesOrderBy = {}));
|
|
454
466
|
// Retrieve enum metadata with: proto3.getEnumType(LaunchesOrderBy)
|
|
455
467
|
proto3.util.setEnumType(LaunchesOrderBy, "data.v2.LaunchesOrderBy", [
|
|
@@ -459,6 +471,7 @@ proto3.util.setEnumType(LaunchesOrderBy, "data.v2.LaunchesOrderBy", [
|
|
|
459
471
|
{ no: 3, name: "LAUNCHES_ORDER_BY_TVL" },
|
|
460
472
|
{ no: 4, name: "LAUNCHES_ORDER_BY_PRICE_CHANGE_1H" },
|
|
461
473
|
{ no: 5, name: "LAUNCHES_ORDER_BY_PRICE_CHANGE_1D" },
|
|
474
|
+
{ no: 6, name: "LAUNCHES_ORDER_BY_TRENDING" },
|
|
462
475
|
]);
|
|
463
476
|
/**
|
|
464
477
|
* Launch-recency window for ListLaunches. UNSPECIFIED applies no window (all
|