@uniswap/client-data-api 0.0.193 → 0.0.195
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 +23 -0
- package/dist/data/v2/api_pb.js +1 -0
- package/package.json +1 -1
package/dist/data/v2/api_pb.d.ts
CHANGED
|
@@ -1195,6 +1195,29 @@ export declare class ListLaunchesRequest extends Message<ListLaunchesRequest> {
|
|
|
1195
1195
|
* @generated from field: optional string creator_address = 9;
|
|
1196
1196
|
*/
|
|
1197
1197
|
creatorAddress?: string;
|
|
1198
|
+
/**
|
|
1199
|
+
* "Linked X": keep only launches that serve Launch.x_handle — i.e. whose
|
|
1200
|
+
* creator-declared X handle passed its inline-at-ingest Ed25519
|
|
1201
|
+
* verification (launched_tokens.x_handle_status = 'passed' with a
|
|
1202
|
+
* non-empty handle). Exactly the rows the response decorates with
|
|
1203
|
+
* x_handle, but filtered IN the ranked query before pagination, so the
|
|
1204
|
+
* result is the top launches with a linked X across ALL launches — not a
|
|
1205
|
+
* client-side pass over one pre-cut page. False/absent applies no filter.
|
|
1206
|
+
*
|
|
1207
|
+
* Coverage is the Uniswap launchpads only (uniswap-cca crowd-launch
|
|
1208
|
+
* auctions + uniswap-bonding-curve instant launches): x_handle is only
|
|
1209
|
+
* ever attested for factory launches, so third-party-launchpad launches —
|
|
1210
|
+
* which never serve x_handle — are dropped from a filtered read and
|
|
1211
|
+
* nothing filterable is lost.
|
|
1212
|
+
*
|
|
1213
|
+
* Not supported with sort_by = TRENDING: that ranking is built from a
|
|
1214
|
+
* candidate scan with no X-handle column, so the combination is rejected
|
|
1215
|
+
* with INVALID_ARGUMENT rather than served unfiltered or silently
|
|
1216
|
+
* re-sorted. Composes with every other sort, VOLUME_1D included.
|
|
1217
|
+
*
|
|
1218
|
+
* @generated from field: optional bool linked_x_only = 10;
|
|
1219
|
+
*/
|
|
1220
|
+
linkedXOnly?: boolean;
|
|
1198
1221
|
constructor(data?: PartialMessage<ListLaunchesRequest>);
|
|
1199
1222
|
static readonly runtime: typeof proto3;
|
|
1200
1223
|
static readonly typeName = "data.v2.ListLaunchesRequest";
|
package/dist/data/v2/api_pb.js
CHANGED
|
@@ -1480,6 +1480,7 @@ ListLaunchesRequest.fields = proto3.util.newFieldList(() => [
|
|
|
1480
1480
|
{ no: 7, name: "ascending", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
1481
1481
|
{ no: 8, name: "query", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
1482
1482
|
{ no: 9, name: "creator_address", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
1483
|
+
{ no: 10, name: "linked_x_only", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
1483
1484
|
]);
|
|
1484
1485
|
/**
|
|
1485
1486
|
* @generated from message data.v2.ListLaunchesResponse
|