@uniswap/client-liquidity 1.0.4 → 1.0.5

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.
@@ -772,6 +772,13 @@ export declare class ListPoolsRequest extends Message<ListPoolsRequest> {
772
772
  * @generated from field: optional uniswap.liquidity.v2.PoolListCursor cursor = 8;
773
773
  */
774
774
  cursor?: PoolListCursor;
775
+ /**
776
+ * When true, exclude pools where either token is flagged as spam/unsafe
777
+ * (canonical safety verdict not BENIGN). Defaults to false.
778
+ *
779
+ * @generated from field: optional bool filter_spam = 9;
780
+ */
781
+ filterSpam?: boolean;
775
782
  constructor(data?: PartialMessage<ListPoolsRequest>);
776
783
  static readonly runtime: typeof proto3;
777
784
  static readonly typeName = "uniswap.liquidity.v2.ListPoolsRequest";
@@ -745,6 +745,7 @@ ListPoolsRequest.fields = proto3.util.newFieldList(() => [
745
745
  { no: 6, name: "ascending", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
746
746
  { no: 7, name: "limit", kind: "scalar", T: 5 /* ScalarType.INT32 */, opt: true },
747
747
  { no: 8, name: "cursor", kind: "message", T: PoolListCursor, opt: true },
748
+ { no: 9, name: "filter_spam", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
748
749
  ]);
749
750
  /**
750
751
  * @generated from message uniswap.liquidity.v2.ListPoolsResponse
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniswap/client-liquidity",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },