@uniswap/client-data-api 0.0.226 → 0.0.228

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.
@@ -1272,6 +1272,24 @@ export declare class ListLaunchesRequest extends Message<ListLaunchesRequest> {
1272
1272
  * @generated from field: repeated string token_addresses = 11;
1273
1273
  */
1274
1274
  tokenAddresses: string[];
1275
+ /**
1276
+ * "Fees paid to me": keep only launches whose CURRENT fee beneficiary is
1277
+ * this address — the holder of the launch's BeneficiaryVault NFT, as
1278
+ * served on BondingCurve.fee_beneficiary. Any case accepted; a non-address
1279
+ * fails with INVALID_ARGUMENT. Empty/absent applies no filter.
1280
+ *
1281
+ * Separate from creator_address, not OR'd with it: the beneficiary is a
1282
+ * payee that moves with the NFT, the creator is the immutable launch-tx
1283
+ * sender. Callers wanting both issue both reads.
1284
+ *
1285
+ * Coverage is uniswap-bonding-curve ONLY — a uniswap-cca launch mints its
1286
+ * vault NFT lazily from the creator's later claim, so it has no
1287
+ * launch-anchored beneficiary and serves no fee_beneficiary. Rejected with
1288
+ * sort_by = TRENDING, same contract as creator_address.
1289
+ *
1290
+ * @generated from field: optional string fee_beneficiary = 12;
1291
+ */
1292
+ feeBeneficiary?: string;
1275
1293
  constructor(data?: PartialMessage<ListLaunchesRequest>);
1276
1294
  static readonly runtime: typeof proto3;
1277
1295
  static readonly typeName = "data.v2.ListLaunchesRequest";
@@ -1517,6 +1517,7 @@ ListLaunchesRequest.fields = proto3.util.newFieldList(() => [
1517
1517
  { no: 9, name: "creator_address", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
1518
1518
  { no: 10, name: "linked_x_only", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
1519
1519
  { no: 11, name: "token_addresses", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
1520
+ { no: 12, name: "fee_beneficiary", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
1520
1521
  ]);
1521
1522
  /**
1522
1523
  * @generated from message data.v2.ListLaunchesResponse
@@ -1307,6 +1307,18 @@ export declare class PoolListFilter extends Message<PoolListFilter> {
1307
1307
  * @generated from field: optional bool apply_top_level_filters = 8;
1308
1308
  */
1309
1309
  applyTopLevelFilters?: boolean;
1310
+ /**
1311
+ * Restrict the listing to pools running a live allowlisted LP-incentive
1312
+ * campaign (Merkl). The campaign set is the row source; everything else —
1313
+ * spam, the quality gates above, attribute filters, sort, pagination —
1314
+ * behaves exactly as it does without this flag, so a caller wanting every
1315
+ * rewarded pool regardless of size sends include_spam true and
1316
+ * apply_top_level_filters false alongside it. Never matches V2 pools:
1317
+ * Merkl campaign types don't target them.
1318
+ *
1319
+ * @generated from field: optional bool rewards_only = 9;
1320
+ */
1321
+ rewardsOnly?: boolean;
1310
1322
  constructor(data?: PartialMessage<PoolListFilter>);
1311
1323
  static readonly runtime: typeof proto3;
1312
1324
  static readonly typeName = "data.v2.PoolListFilter";
@@ -1413,6 +1413,7 @@ PoolListFilter.fields = proto3.util.newFieldList(() => [
1413
1413
  { no: 6, name: "tick_spacing", kind: "scalar", T: 5 /* ScalarType.INT32 */, opt: true },
1414
1414
  { no: 7, name: "hooks", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
1415
1415
  { no: 8, name: "apply_top_level_filters", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
1416
+ { no: 9, name: "rewards_only", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
1416
1417
  ]);
1417
1418
  /**
1418
1419
  * Returned by ListPools — wraps a Pool with its ranking stats.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniswap/client-data-api",
3
- "version": "0.0.226",
3
+ "version": "0.0.228",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },