@uniswap/client-data-api 0.0.159 → 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 +22 -0
- package/dist/data/v2/api_pb.js +2 -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";
|
|
@@ -1131,6 +1141,18 @@ export declare class ListLaunchesRequest extends Message<ListLaunchesRequest> {
|
|
|
1131
1141
|
* @generated from field: optional bool ascending = 7;
|
|
1132
1142
|
*/
|
|
1133
1143
|
ascending?: boolean;
|
|
1144
|
+
/**
|
|
1145
|
+
* Launchpad search: keep only launches whose token name OR
|
|
1146
|
+
* symbol starts with this string, compared case-insensitively (prefix
|
|
1147
|
+
* match only — no fuzzy/substring matching). LIKE metacharacters in the
|
|
1148
|
+
* query are treated literally. Ranking is orthogonal: sort_by/ascending
|
|
1149
|
+
* order the filtered results exactly as they do the unfiltered list.
|
|
1150
|
+
* Whitespace-only queries are treated as absent; input is trimmed,
|
|
1151
|
+
* whitespace-collapsed, and capped at 100 characters server-side.
|
|
1152
|
+
*
|
|
1153
|
+
* @generated from field: optional string query = 8;
|
|
1154
|
+
*/
|
|
1155
|
+
query?: string;
|
|
1134
1156
|
constructor(data?: PartialMessage<ListLaunchesRequest>);
|
|
1135
1157
|
static readonly runtime: typeof proto3;
|
|
1136
1158
|
static readonly typeName = "data.v2.ListLaunchesRequest";
|
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
|
|
@@ -1469,6 +1470,7 @@ ListLaunchesRequest.fields = proto3.util.newFieldList(() => [
|
|
|
1469
1470
|
{ no: 5, name: "launchpad_ids", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
|
|
1470
1471
|
{ no: 6, name: "filter", kind: "message", T: LaunchListFilter, opt: true },
|
|
1471
1472
|
{ no: 7, name: "ascending", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
1473
|
+
{ no: 8, name: "query", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
1472
1474
|
]);
|
|
1473
1475
|
/**
|
|
1474
1476
|
* @generated from message data.v2.ListLaunchesResponse
|