@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.
- package/dist/data/v2/api_pb.d.ts +10 -0
- package/dist/data/v2/api_pb.js +1 -0
- package/package.json +1 -1
package/dist/data/v2/api_pb.d.ts
CHANGED
|
@@ -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";
|
package/dist/data/v2/api_pb.js
CHANGED
|
@@ -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
|