@uniswap/client-liquidity 1.4.3 → 1.4.4

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.
@@ -583,6 +583,12 @@ export declare class PoolSummary extends Message<PoolSummary> {
583
583
  */
584
584
  feeTier: number;
585
585
  /**
586
+ * Pool TVL in USD. For V4 pools this derives from cumulative event
587
+ * accounting (summed modify_liquidity/swap deltas) and can drift high on
588
+ * high-activity pools pending reconciliation — swap deltas are
589
+ * fee-inclusive while fee collection books zero (CONS-969). V2/V3 values
590
+ * come from on-chain state snapshots and do not drift.
591
+ *
586
592
  * @generated from field: double tvl_usd = 7;
587
593
  */
588
594
  tvlUsd: number;
@@ -591,6 +597,10 @@ export declare class PoolSummary extends Message<PoolSummary> {
591
597
  */
592
598
  volumeUsd1d: number;
593
599
  /**
600
+ * Fee APR (volume * fee * 365 / TVL). For V4 pools the TVL denominator
601
+ * inherits the drift described on tvl_usd, so V4 APR can read low on
602
+ * high-activity pools pending reconciliation (CONS-969).
603
+ *
594
604
  * @generated from field: optional double apr = 9;
595
605
  */
596
606
  apr?: number;
@@ -817,6 +817,12 @@ export class PoolSummary extends Message {
817
817
  */
818
818
  this.feeTier = 0;
819
819
  /**
820
+ * Pool TVL in USD. For V4 pools this derives from cumulative event
821
+ * accounting (summed modify_liquidity/swap deltas) and can drift high on
822
+ * high-activity pools pending reconciliation — swap deltas are
823
+ * fee-inclusive while fee collection books zero (CONS-969). V2/V3 values
824
+ * come from on-chain state snapshots and do not drift.
825
+ *
820
826
  * @generated from field: double tvl_usd = 7;
821
827
  */
822
828
  this.tvlUsd = 0;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniswap/client-liquidity",
3
- "version": "1.4.3",
3
+ "version": "1.4.4",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },