diff --git a/apps/explorer/src/app/components/markets/market-details.tsx b/apps/explorer/src/app/components/markets/market-details.tsx index 1d38f65c9..fff83a7ef 100644 --- a/apps/explorer/src/app/components/markets/market-details.tsx +++ b/apps/explorer/src/app/components/markets/market-details.tsx @@ -184,9 +184,8 @@ export const MarketDetails = ({ content: ( <>
- {`For liquidity orders count towards a commitment they have to be - within either the liquidity or price monitoring bounds (whichever is - tighter).`} + {`For liquidity orders to count towards a commitment, they must be + within the liquidity monitoring bounds.`}
{`The liquidity price range is a ${liquidityPriceRange} difference from the mid diff --git a/libs/assets/src/lib/asset-details-dialog.tsx b/libs/assets/src/lib/asset-details-dialog.tsx index 4c581df8f..13a91d23f 100644 --- a/libs/assets/src/lib/asset-details-dialog.tsx +++ b/libs/assets/src/lib/asset-details-dialog.tsx @@ -98,7 +98,7 @@ export const AssetDetailsDialog = ({ }} > {content} -
+
{t( 'There is 1 unit of the settlement asset (%s) to every 1 quote unit.', [assetSymbol] diff --git a/libs/market-info/src/components/market-info/info-market.tsx b/libs/market-info/src/components/market-info/info-market.tsx index adaf87513..d8a549452 100644 --- a/libs/market-info/src/components/market-info/info-market.tsx +++ b/libs/market-info/src/components/market-info/info-market.tsx @@ -145,7 +145,7 @@ export const Info = ({ market, onSelect }: InfoProps) => { }} decimalPlaces={market.decimalPlaces} /> -
+
{t( 'There is 1 unit of the settlement asset (%s) to every 1 quote unit (%s).', [assetSymbol, quoteUnit] @@ -249,7 +249,7 @@ export const Info = ({ market, onSelect }: InfoProps) => { dtClassName="text-black dark:text-white text-ui !px-0 !font-normal" ddClassName="text-black dark:text-white text-ui !px-0 !font-normal max-w-full" /> -
+
{t(
'There is 1 unit of the settlement asset (%s) to every 1 quote unit (%s).',
[assetSymbol, quoteUnit]
@@ -309,27 +309,42 @@ export const Info = ({ market, onSelect }: InfoProps) => {
),
},
...(market.priceMonitoringSettings?.parameters?.triggers || []).map(
- (trigger, i) => ({
- title: t(`Price monitoring trigger ${i + 1}`),
- content:
+ {t('%s% probability of trading', [ + formatNumber(trigger.probability * 100), + formatNumber(trigger.horizonSecs), + ])} +
++ {t('Within %s seconds', [formatNumber(trigger.horizonSecs)])} +
+- {`For liquidity orders count towards a commitment they have to be - within either the liquidity or price monitoring bounds (whichever is - tighter).`} + {`For liquidity orders to count towards a commitment, they must be + within the liquidity monitoring bounds.`}
{`The liquidity price range is a ${liquidityPriceRange} difference from the mid price.`}
-