@uniswap/client-data-api 0.0.165 → 0.0.167

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.
@@ -1123,7 +1123,14 @@ export declare class ListLaunchesRequest extends Message<ListLaunchesRequest> {
1123
1123
  */
1124
1124
  page?: PageRequest;
1125
1125
  /**
1126
- * empty = all launchpads
1126
+ * Launchpads to serve. Empty = the server-side default scope (the
1127
+ * listable set plus uniswap-cca), so clients don't have to pre-scope with
1128
+ * ListLaunchpads. The Uniswap brand spans two ids behind one "Uniswap"
1129
+ * filter — uniswap-bonding-curve (instant launches) and uniswap-cca (CCA
1130
+ * crowd-launch auctions) — so an explicit filter naming either id expands
1131
+ * to the full brand set (both ids); there is no mechanism-scoped opt-out.
1132
+ * If a consumer ever needs one, the expansion moves client-side (the
1133
+ * filter chip sends both ids itself).
1127
1134
  *
1128
1135
  * @generated from field: repeated string launchpad_ids = 5;
1129
1136
  */
@@ -1440,7 +1440,14 @@ export class ListLaunchesRequest extends Message {
1440
1440
  */
1441
1441
  this.sortBy = LaunchesOrderBy.UNSPECIFIED;
1442
1442
  /**
1443
- * empty = all launchpads
1443
+ * Launchpads to serve. Empty = the server-side default scope (the
1444
+ * listable set plus uniswap-cca), so clients don't have to pre-scope with
1445
+ * ListLaunchpads. The Uniswap brand spans two ids behind one "Uniswap"
1446
+ * filter — uniswap-bonding-curve (instant launches) and uniswap-cca (CCA
1447
+ * crowd-launch auctions) — so an explicit filter naming either id expands
1448
+ * to the full brand set (both ids); there is no mechanism-scoped opt-out.
1449
+ * If a consumer ever needs one, the expansion moves client-side (the
1450
+ * filter chip sends both ids itself).
1444
1451
  *
1445
1452
  * @generated from field: repeated string launchpad_ids = 5;
1446
1453
  */
@@ -525,6 +525,16 @@ export declare class TokenListFilter extends Message<TokenListFilter> {
525
525
  * @generated from field: optional bool apply_top_level_filters = 4;
526
526
  */
527
527
  applyTopLevelFilters?: boolean;
528
+ /**
529
+ * Currently ignored (may be honored in the future): ListTokens always
530
+ * drops tokenized real-world assets — ListRwas / ListRwaTokens serve them
531
+ * instead. An asset is dropped if any of its chain deployments is known to
532
+ * be an RWA; assets not yet classified are kept. EVM only — Solana RWAs
533
+ * are not yet flagged.
534
+ *
535
+ * @generated from field: optional bool exclude_rwas = 5;
536
+ */
537
+ excludeRwas?: boolean;
528
538
  constructor(data?: PartialMessage<TokenListFilter>);
529
539
  static readonly runtime: typeof proto3;
530
540
  static readonly typeName = "data.v2.TokenListFilter";
@@ -627,6 +627,7 @@ TokenListFilter.fields = proto3.util.newFieldList(() => [
627
627
  { no: 2, name: "min_volume_1d_usd", kind: "scalar", T: 1 /* ScalarType.DOUBLE */, opt: true },
628
628
  { no: 3, name: "min_tvl_usd", kind: "scalar", T: 1 /* ScalarType.DOUBLE */, opt: true },
629
629
  { no: 4, name: "apply_top_level_filters", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
630
+ { no: 5, name: "exclude_rwas", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
630
631
  ]);
631
632
  /**
632
633
  * @generated from message data.v2.FiatAmount
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniswap/client-data-api",
3
- "version": "0.0.165",
3
+ "version": "0.0.167",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },