@uniswap/client-data-api 0.0.160 → 0.0.161

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.
@@ -552,6 +552,16 @@ export declare class GetTokenTradesRequest extends Message<GetTokenTradesRequest
552
552
  * @generated from field: optional data.v2.PageRequest page = 2;
553
553
  */
554
554
  page?: PageRequest;
555
+ /**
556
+ * Restrict the feed to one trader: matches the trade's wallet (the tx
557
+ * sender, not the router). Any casing accepted. Omitted = all traders.
558
+ * page_token carries only a keyset position, not this filter — the client
559
+ * must resend the same wallet on every page; omitting or changing it
560
+ * resumes from that position under different filter semantics.
561
+ *
562
+ * @generated from field: optional string wallet = 3;
563
+ */
564
+ wallet?: string;
555
565
  constructor(data?: PartialMessage<GetTokenTradesRequest>);
556
566
  static readonly runtime: typeof proto3;
557
567
  static readonly typeName = "data.v2.GetTokenTradesRequest";
@@ -682,6 +682,7 @@ GetTokenTradesRequest.typeName = "data.v2.GetTokenTradesRequest";
682
682
  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
+ { no: 3, name: "wallet", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
685
686
  ]);
686
687
  /**
687
688
  * @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.160",
3
+ "version": "0.0.161",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },