@uniswap/client-data-api 0.0.211 → 0.0.213
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 +17 -8
- package/dist/data/v2/api_pb.js +7 -2
- package/package.json +1 -1
package/dist/data/v2/api_pb.d.ts
CHANGED
|
@@ -571,9 +571,11 @@ export declare class GetTokenTradesRequest extends Message<GetTokenTradesRequest
|
|
|
571
571
|
* holds up to page_size MATCHING trades — but the server bounds how far it
|
|
572
572
|
* scans per request, so a page may come back short of page_size while
|
|
573
573
|
* next_page_token is still set; presence of next_page_token, not page
|
|
574
|
-
* fullness, signals more data under this filter.
|
|
575
|
-
*
|
|
576
|
-
*
|
|
574
|
+
* fullness, signals more data under this filter. Deep scans also terminate
|
|
575
|
+
* after a bounded total: once a walk has scanned a server-defined number of
|
|
576
|
+
* rows (currently 5,000) the server stops issuing next_page_token and the
|
|
577
|
+
* feed ends early. Like wallet, page_token carries only the walk position —
|
|
578
|
+
* the client must resend the same min_amount_usd on every page.
|
|
577
579
|
*
|
|
578
580
|
* @generated from field: optional double min_amount_usd = 4;
|
|
579
581
|
*/
|
|
@@ -1108,7 +1110,8 @@ export declare class ListLaunchpadsResponse extends Message<ListLaunchpadsRespon
|
|
|
1108
1110
|
static equals(a: ListLaunchpadsResponse | PlainMessage<ListLaunchpadsResponse> | undefined, b: ListLaunchpadsResponse | PlainMessage<ListLaunchpadsResponse> | undefined): boolean;
|
|
1109
1111
|
}
|
|
1110
1112
|
/**
|
|
1111
|
-
* Token launches aggregated across launchpads, newest first by default
|
|
1113
|
+
* Token launches aggregated across launchpads, newest first by default
|
|
1114
|
+
* (searched requests default to FDV instead — see sort_by and query). One
|
|
1112
1115
|
* entry per (token, launchpad) — the earliest pool wins when a launchpad
|
|
1113
1116
|
* creates several pools for the same token.
|
|
1114
1117
|
*
|
|
@@ -1129,7 +1132,11 @@ export declare class ListLaunchesRequest extends Message<ListLaunchesRequest> {
|
|
|
1129
1132
|
*/
|
|
1130
1133
|
chainIds: number[];
|
|
1131
1134
|
/**
|
|
1132
|
-
* UNSPECIFIED ->
|
|
1135
|
+
* UNSPECIFIED resolves server-side: with a window -> VOLUME_1D, else with
|
|
1136
|
+
* a query -> FDV descending (largest matches first, with the first page
|
|
1137
|
+
* led by a small newest-first block of matches launched in the trailing
|
|
1138
|
+
* hour so a just-launched token stays findable by its creator), else
|
|
1139
|
+
* LAUNCHED_AT (newest first). An explicit value always wins.
|
|
1133
1140
|
*
|
|
1134
1141
|
* @generated from field: data.v2.LaunchesOrderBy sort_by = 3;
|
|
1135
1142
|
*/
|
|
@@ -1168,9 +1175,11 @@ export declare class ListLaunchesRequest extends Message<ListLaunchesRequest> {
|
|
|
1168
1175
|
* Launchpad search: keep only launches whose token name OR
|
|
1169
1176
|
* symbol starts with this string, compared case-insensitively (prefix
|
|
1170
1177
|
* match only — no fuzzy/substring matching). LIKE metacharacters in the
|
|
1171
|
-
* query are treated literally.
|
|
1172
|
-
*
|
|
1173
|
-
*
|
|
1178
|
+
* query are treated literally. An EXPLICIT sort_by/ascending orders the
|
|
1179
|
+
* filtered results exactly as it does the unfiltered list; with sort_by
|
|
1180
|
+
* UNSPECIFIED a searched request ranks by FDV descending (see sort_by) so
|
|
1181
|
+
* the launch a name is actually looking for outranks whatever launched
|
|
1182
|
+
* since. Whitespace-only queries are treated as absent; input is trimmed,
|
|
1174
1183
|
* whitespace-collapsed, and capped at 100 characters server-side.
|
|
1175
1184
|
*
|
|
1176
1185
|
* @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
|
*/
|