@uniswap/client-liquidity 1.4.33 → 1.4.34

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.
@@ -819,6 +819,14 @@ export declare class PoolSummary extends Message<PoolSummary> {
819
819
  * @generated from field: optional double total_apr = 29;
820
820
  */
821
821
  totalApr?: number;
822
+ /**
823
+ * Protocol fee in pips (fee_tier's unit). Read against protocol_version: V2/V3
824
+ * carve it OUT of fee_tier (LPs earn fee_tier - protocol_fee); V4 charges it ON
825
+ * TOP (swappers pay fee_tier + protocol_fee). 0 = not turned on.
826
+ *
827
+ * @generated from field: optional uint32 protocol_fee = 30;
828
+ */
829
+ protocolFee?: number;
822
830
  constructor(data?: PartialMessage<PoolSummary>);
823
831
  static readonly runtime: typeof proto3;
824
832
  static readonly typeName = "uniswap.liquidity.v2.PoolSummary";
@@ -1012,6 +1012,7 @@ PoolSummary.fields = proto3.util.newFieldList(() => [
1012
1012
  { no: 27, name: "volume_usd_1d_change", kind: "scalar", T: 1 /* ScalarType.DOUBLE */, opt: true },
1013
1013
  { no: 28, name: "token_rewards", kind: "message", T: PoolTokenRewards, repeated: true },
1014
1014
  { no: 29, name: "total_apr", kind: "scalar", T: 1 /* ScalarType.DOUBLE */, opt: true },
1015
+ { no: 30, name: "protocol_fee", kind: "scalar", T: 13 /* ScalarType.UINT32 */, opt: true },
1015
1016
  ]);
1016
1017
  /**
1017
1018
  * A reward token's on-chain identity, so a client can interpret and format a
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniswap/client-liquidity",
3
- "version": "1.4.33",
3
+ "version": "1.4.34",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },