Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: MM linked pool doc adjustment #7324

Merged
merged 2 commits into from
Jul 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ export default function SwapModalFooter({
</Text>
:{' '}
{t(
'PancakeSwap does not charge any fees for trades. However, the market makers charge an implied fee of 0.05% (non-stablecoin) / 0.01% (stablecoin) factored into the quotes provided by them.',
'PancakeSwap does not charge any fees for trades. However, the market makers charge an implied fee of 0.05% - 0.25% (non-stablecoin) / 0.01% (stablecoin) factored into the quotes provided by them.',
)}
</Text>
</>
Expand Down
8 changes: 6 additions & 2 deletions apps/web/src/views/Swap/components/AdvancedSwapDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,11 @@ export const TradeSummary = memo(function TradeSummary({
style={{ display: 'inline' }}
ml="4px"
external
href="https://docs.pancakeswap.finance/products/pancakeswap-exchange/faq#what-will-be-the-trading-fee-breakdown-for-v3-exchange"
href={
isMM
? 'https://docs.pancakeswap.finance/products/pancakeswap-exchange/market-maker-integration#fees'
: 'https://docs.pancakeswap.finance/products/pancakeswap-exchange/faq#what-will-be-the-trading-fee-breakdown-for-v3-exchange'
}
>
{t('Fee Breakdown and Tokenomics')}
</Link>
Expand All @@ -125,7 +129,7 @@ export const TradeSummary = memo(function TradeSummary({
</Text>
:{' '}
{t(
'PancakeSwap does not charge any fees for trades. However, the market makers charge an implied fee of 0.05% (non-stablecoin) / 0.01% (stablecoin) factored into the quotes provided by them.',
'PancakeSwap does not charge any fees for trades. However, the market makers charge an implied fee of 0.05% - 0.25% (non-stablecoin) / 0.01% (stablecoin) factored into the quotes provided by them.',
)}
</Text>
</>
Expand Down
2 changes: 1 addition & 1 deletion packages/localization/src/config/translations.json
Original file line number Diff line number Diff line change
Expand Up @@ -2143,7 +2143,7 @@
"MM": "MM",
"Amount of Liquidity to Remove": "Amount of Liquidity to Remove",
"No slippage against quote from market maker": "No slippage against quote from market maker",
"PancakeSwap does not charge any fees for trades. However, the market makers charge an implied fee of 0.05% (non-stablecoin) / 0.01% (stablecoin) factored into the quotes provided by them.": "PancakeSwap does not charge any fees for trades. However, the market makers charge an implied fee of 0.05% (non-stablecoin) / 0.01% (stablecoin) factored into the quotes provided by them.",
"PancakeSwap does not charge any fees for trades. However, the market makers charge an implied fee of 0.05% - 0.25% (non-stablecoin) / 0.01% (stablecoin) factored into the quotes provided by them.": "PancakeSwap does not charge any fees for trades. However, the market makers charge an implied fee of 0.05% - 0.25% (non-stablecoin) / 0.01% (stablecoin) factored into the quotes provided by them.",
"Trading Fee": "Trading Fee",
"MM Linked Pool": "MM Linked Pool",
"Trade through the market makers if they provide better deal": "Trade through the market makers if they provide better deal",
Expand Down
Loading