@uniswap/client-data-api 0.0.209 → 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.
@@ -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. One
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 -> LAUNCHED_AT
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. Ranking is orthogonal: sort_by/ascending
1172
- * order the filtered results exactly as they do the unfiltered list.
1173
- * Whitespace-only queries are treated as absent; input is trimmed,
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;
@@ -1911,6 +1918,17 @@ export declare class GetTokenTopTradersRequest extends Message<GetTokenTopTrader
1911
1918
  * @generated from field: optional int32 limit = 3;
1912
1919
  */
1913
1920
  limit?: number;
1921
+ /**
1922
+ * Per-wallet lookup (LP-1558): serve only this wallet's row, covering ANY
1923
+ * wallet in the token's history — the full cached ranking first, and past
1924
+ * its cap the row comes from the same uncapped fold the ranking is cut
1925
+ * from (server-cached per wallet). Unset/empty serves the ranked
1926
+ * leaderboard as before. A wallet with no row (never traded or claimed
1927
+ * the token) serves an empty list, never an error.
1928
+ *
1929
+ * @generated from field: optional string wallet_address = 4;
1930
+ */
1931
+ walletAddress?: string;
1914
1932
  constructor(data?: PartialMessage<GetTokenTopTradersRequest>);
1915
1933
  static readonly runtime: typeof proto3;
1916
1934
  static readonly typeName = "data.v2.GetTokenTopTradersRequest";
@@ -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. One
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 -> LAUNCHED_AT
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
  */
@@ -2174,6 +2179,7 @@ GetTokenTopTradersRequest.fields = proto3.util.newFieldList(() => [
2174
2179
  { no: 1, name: "chain_id", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
2175
2180
  { no: 2, name: "token_address", kind: "scalar", T: 9 /* ScalarType.STRING */ },
2176
2181
  { no: 3, name: "limit", kind: "scalar", T: 5 /* ScalarType.INT32 */, opt: true },
2182
+ { no: 4, name: "wallet_address", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
2177
2183
  ]);
2178
2184
  /**
2179
2185
  * One wallet's aggregate position on the token, derived from a
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniswap/client-data-api",
3
- "version": "0.0.209",
3
+ "version": "0.0.212",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },