@uniswap/client-data-api 0.0.175 → 0.0.177

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.
@@ -1038,6 +1038,14 @@ export declare class ListTopAuctionsRequest extends Message<ListTopAuctionsReque
1038
1038
  * @generated from field: bool live_only = 3;
1039
1039
  */
1040
1040
  liveOnly: boolean;
1041
+ /**
1042
+ * When true, serve only quick (crowd) launches — auctions whose persisted
1043
+ * is_quick_launch marker is true. Absent and false are the same request:
1044
+ * no filter, so the shared Explore surface keeps seeing every auction.
1045
+ *
1046
+ * @generated from field: bool quick_launch_only = 4;
1047
+ */
1048
+ quickLaunchOnly: boolean;
1041
1049
  constructor(data?: PartialMessage<ListTopAuctionsRequest>);
1042
1050
  static readonly runtime: typeof proto3;
1043
1051
  static readonly typeName = "data.v1.ListTopAuctionsRequest";
@@ -1260,6 +1260,14 @@ export class ListTopAuctionsRequest extends Message {
1260
1260
  * @generated from field: bool live_only = 3;
1261
1261
  */
1262
1262
  this.liveOnly = false;
1263
+ /**
1264
+ * When true, serve only quick (crowd) launches — auctions whose persisted
1265
+ * is_quick_launch marker is true. Absent and false are the same request:
1266
+ * no filter, so the shared Explore surface keeps seeing every auction.
1267
+ *
1268
+ * @generated from field: bool quick_launch_only = 4;
1269
+ */
1270
+ this.quickLaunchOnly = false;
1263
1271
  proto3.util.initPartial(data, this);
1264
1272
  }
1265
1273
  static fromBinary(bytes, options) {
@@ -1281,6 +1289,7 @@ ListTopAuctionsRequest.fields = proto3.util.newFieldList(() => [
1281
1289
  { no: 1, name: "page_size", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
1282
1290
  { no: 2, name: "chain_ids", kind: "scalar", T: 5 /* ScalarType.INT32 */, repeated: true },
1283
1291
  { no: 3, name: "live_only", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
1292
+ { no: 4, name: "quick_launch_only", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
1284
1293
  ]);
1285
1294
  /**
1286
1295
  * An auction with its total bid volume stats.
@@ -562,6 +562,21 @@ export declare class GetTokenTradesRequest extends Message<GetTokenTradesRequest
562
562
  * @generated from field: optional string wallet = 3;
563
563
  */
564
564
  wallet?: string;
565
+ /**
566
+ * Minimum trade size: keep only trades whose amount_usd is >= this
567
+ * threshold. Trades with no known USD amount are excluded when set (they
568
+ * cannot be proven to clear the bar). Omitted or 0 = no filtering; negative
569
+ * or non-finite values are rejected. Applied before the page cut, so a page
570
+ * holds up to page_size MATCHING trades — but the server bounds how far it
571
+ * scans per request, so a page may come back short of page_size while
572
+ * next_page_token is still set; presence of next_page_token, not page
573
+ * fullness, signals more data under this filter. Like wallet, page_token
574
+ * carries only a keyset position — the client must resend the same
575
+ * min_amount_usd on every page.
576
+ *
577
+ * @generated from field: optional double min_amount_usd = 4;
578
+ */
579
+ minAmountUsd?: number;
565
580
  constructor(data?: PartialMessage<GetTokenTradesRequest>);
566
581
  static readonly runtime: typeof proto3;
567
582
  static readonly typeName = "data.v2.GetTokenTradesRequest";
@@ -683,6 +683,7 @@ GetTokenTradesRequest.fields = proto3.util.newFieldList(() => [
683
683
  { no: 1, name: "token", kind: "message", T: TokenIdentifier },
684
684
  { no: 2, name: "page", kind: "message", T: PageRequest, opt: true },
685
685
  { no: 3, name: "wallet", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
686
+ { no: 4, name: "min_amount_usd", kind: "scalar", T: 1 /* ScalarType.DOUBLE */, opt: true },
686
687
  ]);
687
688
  /**
688
689
  * @generated from message data.v2.GetTokenTradesResponse
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniswap/client-data-api",
3
- "version": "0.0.175",
3
+ "version": "0.0.177",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },