@uniswap/client-data-api 0.0.188 → 0.0.189

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.
@@ -1088,6 +1088,20 @@ export declare class Pool extends Message<Pool> {
1088
1088
  * @generated from field: optional string liquidity = 12;
1089
1089
  */
1090
1090
  liquidity?: string;
1091
+ /**
1092
+ * Protocol fee (pips): additive on top of the LP fee for V4, a carve-out
1093
+ * of the fee tier for V2/V3. Unset when unavailable.
1094
+ *
1095
+ * @generated from field: optional uint32 protocol_fee = 13;
1096
+ */
1097
+ protocolFee?: number;
1098
+ /**
1099
+ * Effective (all-in) fee (pips): V4 fee_tier + protocol_fee; V2/V3 the fee
1100
+ * tier. Unset when protocol_fee is unavailable (incl. V4 dynamic-fee).
1101
+ *
1102
+ * @generated from field: optional uint32 effective_fee = 14;
1103
+ */
1104
+ effectiveFee?: number;
1091
1105
  constructor(data?: PartialMessage<Pool>);
1092
1106
  static readonly runtime: typeof proto3;
1093
1107
  static readonly typeName = "data.v2.Pool";
@@ -1214,6 +1214,8 @@ Pool.fields = proto3.util.newFieldList(() => [
1214
1214
  { no: 10, name: "current_tick", kind: "scalar", T: 5 /* ScalarType.INT32 */, opt: true },
1215
1215
  { no: 11, name: "sqrt_price_x96", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
1216
1216
  { no: 12, name: "liquidity", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
1217
+ { no: 13, name: "protocol_fee", kind: "scalar", T: 13 /* ScalarType.UINT32 */, opt: true },
1218
+ { no: 14, name: "effective_fee", kind: "scalar", T: 13 /* ScalarType.UINT32 */, opt: true },
1217
1219
  ]);
1218
1220
  /**
1219
1221
  * @generated from message data.v2.PoolTokenFilter
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniswap/client-data-api",
3
- "version": "0.0.188",
3
+ "version": "0.0.189",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },