From 6dffe9c019e63d5c92fcb1c6c0961229a86b4cb2 Mon Sep 17 00:00:00 2001 From: "m.ray" <16125548+MadalinaRaicu@users.noreply.github.com> Date: Mon, 21 Nov 2022 05:30:38 -0500 Subject: [PATCH] chore(#2151): rename market valuation entry and change tooltips on LP table (#2181) * chore(#2151): rename market valuation entry and change tooltips on LP table * chore(#2159): rename to Market valuation at entry --- libs/liquidity/src/lib/liquidity-table.spec.tsx | 2 +- libs/liquidity/src/lib/liquidity-table.tsx | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/libs/liquidity/src/lib/liquidity-table.spec.tsx b/libs/liquidity/src/lib/liquidity-table.spec.tsx index 80897b884..1e88e43f6 100644 --- a/libs/liquidity/src/lib/liquidity-table.spec.tsx +++ b/libs/liquidity/src/lib/liquidity-table.spec.tsx @@ -43,7 +43,7 @@ describe('LiquidityTable', () => { 'Commitment ()', 'Share', 'Proposed fee', - 'Average entry valuation', + 'Market valuation at entry', 'Obligation', 'Supplied', 'Status', diff --git a/libs/liquidity/src/lib/liquidity-table.tsx b/libs/liquidity/src/lib/liquidity-table.tsx index b8bdf85d0..fe431db76 100644 --- a/libs/liquidity/src/lib/liquidity-table.tsx +++ b/libs/liquidity/src/lib/liquidity-table.tsx @@ -94,7 +94,7 @@ export const LiquidityTable = forwardRef( field="equityLikeShare" type="rightAligned" headerTooltip={t( - 'The equity-like share of liquidity of the market, specific to each liquidity provider.' + 'The equity-like share of liquidity of the market used to determine allocation of LP fees. Calculated based on share of total liquidity, with a premium added for length of commitment.' )} valueFormatter={percentageFormatter} /> @@ -108,11 +108,11 @@ export const LiquidityTable = forwardRef( valueFormatter={percentageFormatter} /> ( field="commitmentAmount" type="rightAligned" headerTooltip={t( - 'The liquidity provider’s obligation to the market, calculated as the liquidity commitment amount multiplied by the value of the stake_to_ccy_siskas network parameter.' + `The liquidity provider's obligation to the market, calculated as the liquidity commitment amount multiplied by the value of the stake_to_ccy_siskas network parameter to convert into units of liquidity volume. The obligation can be met by a combination of LP orders and limit orders on the order book.` )} valueFormatter={stakeToCcySiskasFormatter} />