@uniswap/client-data-api 0.0.211 → 0.0.212
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/api_pb.d.ts +12 -5
- package/dist/data/v2/api_pb.js +7 -2
- package/package.json +1 -1
package/dist/data/v2/api_pb.d.ts
CHANGED
|
@@ -1108,7 +1108,8 @@ export declare class ListLaunchpadsResponse extends Message<ListLaunchpadsRespon
|
|
|
1108
1108
|
static equals(a: ListLaunchpadsResponse | PlainMessage<ListLaunchpadsResponse> | undefined, b: ListLaunchpadsResponse | PlainMessage<ListLaunchpadsResponse> | undefined): boolean;
|
|
1109
1109
|
}
|
|
1110
1110
|
/**
|
|
1111
|
-
* Token launches aggregated across launchpads, newest first by default
|
|
1111
|
+
* Token launches aggregated across launchpads, newest first by default
|
|
1112
|
+
* (searched requests default to FDV instead — see sort_by and query). One
|
|
1112
1113
|
* entry per (token, launchpad) — the earliest pool wins when a launchpad
|
|
1113
1114
|
* creates several pools for the same token.
|
|
1114
1115
|
*
|
|
@@ -1129,7 +1130,11 @@ export declare class ListLaunchesRequest extends Message<ListLaunchesRequest> {
|
|
|
1129
1130
|
*/
|
|
1130
1131
|
chainIds: number[];
|
|
1131
1132
|
/**
|
|
1132
|
-
* UNSPECIFIED ->
|
|
1133
|
+
* UNSPECIFIED resolves server-side: with a window -> VOLUME_1D, else with
|
|
1134
|
+
* a query -> FDV descending (largest matches first, with the first page
|
|
1135
|
+
* led by a small newest-first block of matches launched in the trailing
|
|
1136
|
+
* hour so a just-launched token stays findable by its creator), else
|
|
1137
|
+
* LAUNCHED_AT (newest first). An explicit value always wins.
|
|
1133
1138
|
*
|
|
1134
1139
|
* @generated from field: data.v2.LaunchesOrderBy sort_by = 3;
|
|
1135
1140
|
*/
|
|
@@ -1168,9 +1173,11 @@ export declare class ListLaunchesRequest extends Message<ListLaunchesRequest> {
|
|
|
1168
1173
|
* Launchpad search: keep only launches whose token name OR
|
|
1169
1174
|
* symbol starts with this string, compared case-insensitively (prefix
|
|
1170
1175
|
* match only — no fuzzy/substring matching). LIKE metacharacters in the
|
|
1171
|
-
* query are treated literally.
|
|
1172
|
-
*
|
|
1173
|
-
*
|
|
1176
|
+
* query are treated literally. An EXPLICIT sort_by/ascending orders the
|
|
1177
|
+
* filtered results exactly as it does the unfiltered list; with sort_by
|
|
1178
|
+
* UNSPECIFIED a searched request ranks by FDV descending (see sort_by) so
|
|
1179
|
+
* the launch a name is actually looking for outranks whatever launched
|
|
1180
|
+
* since. Whitespace-only queries are treated as absent; input is trimmed,
|
|
1174
1181
|
* whitespace-collapsed, and capped at 100 characters server-side.
|
|
1175
1182
|
*
|
|
1176
1183
|
* @generated from field: optional string query = 8;
|
package/dist/data/v2/api_pb.js
CHANGED
|
@@ -1420,7 +1420,8 @@ ListLaunchpadsResponse.fields = proto3.util.newFieldList(() => [
|
|
|
1420
1420
|
{ no: 1, name: "launchpads", kind: "message", T: Launchpad, repeated: true },
|
|
1421
1421
|
]);
|
|
1422
1422
|
/**
|
|
1423
|
-
* Token launches aggregated across launchpads, newest first by default
|
|
1423
|
+
* Token launches aggregated across launchpads, newest first by default
|
|
1424
|
+
* (searched requests default to FDV instead — see sort_by and query). One
|
|
1424
1425
|
* entry per (token, launchpad) — the earliest pool wins when a launchpad
|
|
1425
1426
|
* creates several pools for the same token.
|
|
1426
1427
|
*
|
|
@@ -1436,7 +1437,11 @@ export class ListLaunchesRequest extends Message {
|
|
|
1436
1437
|
*/
|
|
1437
1438
|
this.chainIds = [];
|
|
1438
1439
|
/**
|
|
1439
|
-
* UNSPECIFIED ->
|
|
1440
|
+
* UNSPECIFIED resolves server-side: with a window -> VOLUME_1D, else with
|
|
1441
|
+
* a query -> FDV descending (largest matches first, with the first page
|
|
1442
|
+
* led by a small newest-first block of matches launched in the trailing
|
|
1443
|
+
* hour so a just-launched token stays findable by its creator), else
|
|
1444
|
+
* LAUNCHED_AT (newest first). An explicit value always wins.
|
|
1440
1445
|
*
|
|
1441
1446
|
* @generated from field: data.v2.LaunchesOrderBy sort_by = 3;
|
|
1442
1447
|
*/
|