@uniswap/client-liquidity 1.4.9 → 1.4.10
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.
|
@@ -734,6 +734,35 @@ export declare class PoolSummary extends Message<PoolSummary> {
|
|
|
734
734
|
* @generated from field: optional string total_supply = 19;
|
|
735
735
|
*/
|
|
736
736
|
totalSupply?: string;
|
|
737
|
+
/**
|
|
738
|
+
* Spot USD price per token (from current_token_prices). Decimal strings.
|
|
739
|
+
*
|
|
740
|
+
* @generated from field: optional string token0_price_usd = 20;
|
|
741
|
+
*/
|
|
742
|
+
token0PriceUsd?: string;
|
|
743
|
+
/**
|
|
744
|
+
* @generated from field: optional string token1_price_usd = 21;
|
|
745
|
+
*/
|
|
746
|
+
token1PriceUsd?: string;
|
|
747
|
+
/**
|
|
748
|
+
* Per-token amount locked in the pool (uint256 decimal strings): token0/1
|
|
749
|
+
* total value locked for V3/V4, reserves for V2. With the prices above, drives
|
|
750
|
+
* the PDP token-composition split (tvlToken0/tvlToken1).
|
|
751
|
+
*
|
|
752
|
+
* @generated from field: optional string token0_supply = 22;
|
|
753
|
+
*/
|
|
754
|
+
token0Supply?: string;
|
|
755
|
+
/**
|
|
756
|
+
* @generated from field: optional string token1_supply = 23;
|
|
757
|
+
*/
|
|
758
|
+
token1Supply?: string;
|
|
759
|
+
/**
|
|
760
|
+
* V4 pools with a dynamic fee hook (fee tier == 0x800000). Always false for
|
|
761
|
+
* V2/V3.
|
|
762
|
+
*
|
|
763
|
+
* @generated from field: optional bool is_dynamic_fee = 24;
|
|
764
|
+
*/
|
|
765
|
+
isDynamicFee?: boolean;
|
|
737
766
|
constructor(data?: PartialMessage<PoolSummary>);
|
|
738
767
|
static readonly runtime: typeof proto3;
|
|
739
768
|
static readonly typeName = "uniswap.liquidity.v2.PoolSummary";
|
|
@@ -971,6 +971,11 @@ PoolSummary.fields = proto3.util.newFieldList(() => [
|
|
|
971
971
|
{ no: 17, name: "reserve0", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
972
972
|
{ no: 18, name: "reserve1", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
973
973
|
{ no: 19, name: "total_supply", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
974
|
+
{ no: 20, name: "token0_price_usd", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
975
|
+
{ no: 21, name: "token1_price_usd", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
976
|
+
{ no: 22, name: "token0_supply", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
977
|
+
{ no: 23, name: "token1_supply", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
978
|
+
{ no: 24, name: "is_dynamic_fee", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
974
979
|
]);
|
|
975
980
|
/**
|
|
976
981
|
* @generated from message uniswap.liquidity.v2.PoolListCursor
|