@uniswap/client-data-api 0.0.179 → 0.0.180

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.
@@ -1019,8 +1019,9 @@ export declare class PoolRankStats extends Message<PoolRankStats> {
1019
1019
  static equals(a: PoolRankStats | PlainMessage<PoolRankStats> | undefined, b: PoolRankStats | PlainMessage<PoolRankStats> | undefined): boolean;
1020
1020
  }
1021
1021
  /**
1022
- * A pool's protocol identity, token pair, and current on-chain state. No
1023
- * pipeline-computed stats (TVL/volume/APR) those live on RankedPool.
1022
+ * A pool's protocol identity, token pair, and current on-chain state (state
1023
+ * fields are mirrored from the chain verbatim). No derived stats
1024
+ * (TVL/volume/APR) — those live on RankedPool.
1024
1025
  *
1025
1026
  * @generated from message data.v2.Pool
1026
1027
  */
@@ -1201,6 +1202,18 @@ export declare class PoolListFilter extends Message<PoolListFilter> {
1201
1202
  * @generated from field: repeated uint32 fee_tiers = 5;
1202
1203
  */
1203
1204
  feeTiers: number[];
1205
+ /**
1206
+ * exact match; never matches V2 pools
1207
+ *
1208
+ * @generated from field: optional int32 tick_spacing = 6;
1209
+ */
1210
+ tickSpacing?: number;
1211
+ /**
1212
+ * V4 hook address; the zero address matches hookless V4 pools; never matches V2/V3 pools
1213
+ *
1214
+ * @generated from field: optional string hooks = 7;
1215
+ */
1216
+ hooks?: string;
1204
1217
  constructor(data?: PartialMessage<PoolListFilter>);
1205
1218
  static readonly runtime: typeof proto3;
1206
1219
  static readonly typeName = "data.v2.PoolListFilter";
@@ -1155,8 +1155,9 @@ PoolRankStats.fields = proto3.util.newFieldList(() => [
1155
1155
  { no: 7, name: "volume_1d_tvl_ratio", kind: "scalar", T: 1 /* ScalarType.DOUBLE */, opt: true },
1156
1156
  ]);
1157
1157
  /**
1158
- * A pool's protocol identity, token pair, and current on-chain state. No
1159
- * pipeline-computed stats (TVL/volume/APR) those live on RankedPool.
1158
+ * A pool's protocol identity, token pair, and current on-chain state (state
1159
+ * fields are mirrored from the chain verbatim). No derived stats
1160
+ * (TVL/volume/APR) — those live on RankedPool.
1160
1161
  *
1161
1162
  * @generated from message data.v2.Pool
1162
1163
  */
@@ -1350,6 +1351,8 @@ PoolListFilter.fields = proto3.util.newFieldList(() => [
1350
1351
  { no: 3, name: "token_filter", kind: "message", T: PoolTokenFilter, opt: true },
1351
1352
  { no: 4, name: "stats_filter", kind: "message", T: PoolStatsFilter, opt: true },
1352
1353
  { no: 5, name: "fee_tiers", kind: "scalar", T: 13 /* ScalarType.UINT32 */, repeated: true },
1354
+ { no: 6, name: "tick_spacing", kind: "scalar", T: 5 /* ScalarType.INT32 */, opt: true },
1355
+ { no: 7, name: "hooks", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
1353
1356
  ]);
1354
1357
  /**
1355
1358
  * 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.179",
3
+ "version": "0.0.180",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },