@uniswap/client-liquidity 1.0.3 → 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
@@ -533,6 +533,10 @@ export declare class PoolSummary extends Message<PoolSummary> {
533
533
  * @generated from field: optional uniswap.liquidity.v2.TokenMetadata token1_metadata = 15;
534
534
  */
535
535
  token1Metadata?: TokenMetadata;
536
+ /**
537
+ * @generated from field: optional int32 tick_spacing = 16;
538
+ */
539
+ tickSpacing?: number;
536
540
  constructor(data?: PartialMessage<PoolSummary>);
537
541
  static readonly runtime: typeof proto3;
538
542
  static readonly typeName = "uniswap.liquidity.v2.PoolSummary";
@@ -746,6 +746,7 @@ PoolSummary.fields = proto3.util.newFieldList(() => [
746
746
  { no: 13, name: "hook_address", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
747
747
  { no: 14, name: "token0_metadata", kind: "message", T: TokenMetadata, opt: true },
748
748
  { no: 15, name: "token1_metadata", kind: "message", T: TokenMetadata, opt: true },
749
+ { no: 16, name: "tick_spacing", kind: "scalar", T: 5 /* ScalarType.INT32 */, opt: true },
749
750
  ]);
750
751
  /**
751
752
  * @generated from message uniswap.liquidity.v2.PoolListCursor
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniswap/client-liquidity",
3
- "version": "1.0.3",
3
+ "version": "1.0.5",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },