@uniswap/client-data-api 0.0.198 → 0.0.199

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.
@@ -1218,6 +1218,31 @@ export declare class ListLaunchesRequest extends Message<ListLaunchesRequest> {
1218
1218
  * @generated from field: optional bool linked_x_only = 10;
1219
1219
  */
1220
1220
  linkedXOnly?: boolean;
1221
+ /**
1222
+ * Launch lookup by token: keep only launches of these token addresses.
1223
+ * Any casing is accepted (the server EIP-55-checksums and dedupes before
1224
+ * comparing); a non-address entry fails the request with INVALID_ARGUMENT.
1225
+ * Empty/absent applies no filter. At most 100 entries.
1226
+ *
1227
+ * Built for token pages resolving a launch by address — e.g. an instant
1228
+ * launch that has aged off the newest-100 feed window — so it composes
1229
+ * with launchpad_ids/chain_ids and serves the same row shape and stats
1230
+ * sources as the unfiltered feed.
1231
+ *
1232
+ * Coverage is the Uniswap launchpads only (uniswap-cca crowd-launch
1233
+ * auctions + uniswap-bonding-curve instant launches): neither
1234
+ * third-party-launchpad read can express a token predicate, so that arm
1235
+ * is dropped from a token-filtered read rather than served unfiltered.
1236
+ * Not supported with sort_by = TRENDING (rejected), same contract as
1237
+ * creator_address.
1238
+ *
1239
+ * CCA rows additionally inherit the crowd-launch feed's
1240
+ * `is_quick_launch = true` gate; an unclassified or institutional
1241
+ * auction will not match.
1242
+ *
1243
+ * @generated from field: repeated string token_addresses = 11;
1244
+ */
1245
+ tokenAddresses: string[];
1221
1246
  constructor(data?: PartialMessage<ListLaunchesRequest>);
1222
1247
  static readonly runtime: typeof proto3;
1223
1248
  static readonly typeName = "data.v2.ListLaunchesRequest";
@@ -1453,6 +1453,31 @@ export class ListLaunchesRequest extends Message {
1453
1453
  * @generated from field: repeated string launchpad_ids = 5;
1454
1454
  */
1455
1455
  this.launchpadIds = [];
1456
+ /**
1457
+ * Launch lookup by token: keep only launches of these token addresses.
1458
+ * Any casing is accepted (the server EIP-55-checksums and dedupes before
1459
+ * comparing); a non-address entry fails the request with INVALID_ARGUMENT.
1460
+ * Empty/absent applies no filter. At most 100 entries.
1461
+ *
1462
+ * Built for token pages resolving a launch by address — e.g. an instant
1463
+ * launch that has aged off the newest-100 feed window — so it composes
1464
+ * with launchpad_ids/chain_ids and serves the same row shape and stats
1465
+ * sources as the unfiltered feed.
1466
+ *
1467
+ * Coverage is the Uniswap launchpads only (uniswap-cca crowd-launch
1468
+ * auctions + uniswap-bonding-curve instant launches): neither
1469
+ * third-party-launchpad read can express a token predicate, so that arm
1470
+ * is dropped from a token-filtered read rather than served unfiltered.
1471
+ * Not supported with sort_by = TRENDING (rejected), same contract as
1472
+ * creator_address.
1473
+ *
1474
+ * CCA rows additionally inherit the crowd-launch feed's
1475
+ * `is_quick_launch = true` gate; an unclassified or institutional
1476
+ * auction will not match.
1477
+ *
1478
+ * @generated from field: repeated string token_addresses = 11;
1479
+ */
1480
+ this.tokenAddresses = [];
1456
1481
  proto3.util.initPartial(data, this);
1457
1482
  }
1458
1483
  static fromBinary(bytes, options) {
@@ -1481,6 +1506,7 @@ ListLaunchesRequest.fields = proto3.util.newFieldList(() => [
1481
1506
  { no: 8, name: "query", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
1482
1507
  { no: 9, name: "creator_address", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
1483
1508
  { no: 10, name: "linked_x_only", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
1509
+ { no: 11, name: "token_addresses", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
1484
1510
  ]);
1485
1511
  /**
1486
1512
  * @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.198",
3
+ "version": "0.0.199",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },