@uniswap/client-data-api 0.0.183 → 0.0.184

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.
@@ -1175,6 +1175,26 @@ export declare class ListLaunchesRequest extends Message<ListLaunchesRequest> {
1175
1175
  * @generated from field: optional string query = 8;
1176
1176
  */
1177
1177
  query?: string;
1178
+ /**
1179
+ * "My launches": keep only launches created by this wallet — the same
1180
+ * address served as Launch.creator_address (launched_tokens.creator_wallet,
1181
+ * the launch tx's from address). Any case is accepted; the server
1182
+ * EIP-55-checksums it before comparing, and rejects a non-address with
1183
+ * INVALID_ARGUMENT. Empty/absent applies no filter.
1184
+ *
1185
+ * Coverage is the Uniswap launchpads only (uniswap-cca crowd-launch
1186
+ * auctions + uniswap-bonding-curve instant launches). Third-party-launchpad
1187
+ * launches are served from a materialized table with no creator column and
1188
+ * are dropped from a creator-filtered read — they carry no
1189
+ * Launch.creator_address today either, so nothing filterable is lost.
1190
+ *
1191
+ * Not supported with sort_by = TRENDING: that ranking is built from a
1192
+ * candidate scan with no creator column, so the combination is rejected
1193
+ * rather than served unfiltered or silently re-sorted.
1194
+ *
1195
+ * @generated from field: optional string creator_address = 9;
1196
+ */
1197
+ creatorAddress?: string;
1178
1198
  constructor(data?: PartialMessage<ListLaunchesRequest>);
1179
1199
  static readonly runtime: typeof proto3;
1180
1200
  static readonly typeName = "data.v2.ListLaunchesRequest";
@@ -1479,6 +1479,7 @@ ListLaunchesRequest.fields = proto3.util.newFieldList(() => [
1479
1479
  { no: 6, name: "filter", kind: "message", T: LaunchListFilter, opt: true },
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
+ { no: 9, name: "creator_address", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
1482
1483
  ]);
1483
1484
  /**
1484
1485
  * @generated from message data.v2.ListLaunchesResponse
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniswap/client-data-api",
3
- "version": "0.0.183",
3
+ "version": "0.0.184",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },