Skip to content

Commit

Permalink
update faq text
Browse files Browse the repository at this point in the history
  • Loading branch information
groninge01 committed Jan 28, 2025
1 parent d4b520e commit e66420c
Showing 1 changed file with 70 additions and 12 deletions.
82 changes: 70 additions & 12 deletions apps/beets-frontend-v3/lib/modules/lst/components/LstFaq.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,38 +11,96 @@ import {
AccordionButton,
AccordionIcon,
AccordionPanel,
Text,
Link,
} from '@chakra-ui/react'

const FAQ_ITEMS = [
{
question: 'What is stS?',
answer:
'stS is a liquid-staked token that users receive when they stake $S on the Beets platform. The value of stS naturally appreciates in relation to $S thanks to native network staking rewards from validator delegation being automatically compounded within the token.',
answer: (
<Text variant="secondary">
stS is a liquid-staked token that users receive when they stake $S on the Beets platform.
The value of stS naturally appreciates in relation to $S thanks to native network staking
rewards from validator delegation being automatically compounded within the token.
</Text>
),
},
{
question: 'What are the stS fees?',
answer:
'Due to the management of underlying nodes, validators earn 15% of the overall stS staking rewards. Beets also takes a 10% protocol fee on the rewards after the validator fees. The APY displayed on the UI is the APY the user receives (all fees have been subtracted automatically).',
answer: (
<Text variant="secondary">
Due to the management of underlying nodes, validators earn 15% of the overall stS staking
rewards. Beets also takes a 10% protocol fee on the rewards after the validator fees. The
APY displayed on the UI is the APY the user receives (all fees have been subtracted
automatically).
</Text>
),
},
{
question: 'How do I get stS tokens?',
answer:
'To stake, users simply need to head to the stS page and select how much $S they wish to deposit. As an alternative to staking, users can swap into stS on DEXs by swapping their $S for stS on the Swap Page.',
answer: (
<Text variant="secondary">
To stake, users simply need to head to the stS page and select how much $S they wish to
deposit. As an alternative to staking, users can swap into stS on DEXs by swapping their $S
for stS on the Swap Page.
</Text>
),
},
{
question: 'How do I unstake stS for $S?',
answer:
'Unstaking stS involves a 14-day unbonding period aligned with staking on Sonic. After initiating the unstake, users will need to return to the UI after 14 days to claim $S. For instant liquidity, users can swap stS for $S directly on DEXs via the Swap Page. However, note that swapping may offer a less favorable exchange rate than unstaking, depending on the pool’s liquidity.',
answer: (
<Text variant="secondary">
Unstaking stS involves a 14-day unbonding period aligned with staking on Sonic. After
initiating the unstake, users will need to return to the UI after 14 days to claim $S. For
instant liquidity, users can swap stS for $S directly on DEXs via the Swap Page. However,
note that swapping may offer a less favorable exchange rate than unstaking, depending on the
pool’s liquidity.
</Text>
),
},
{
question: 'Where can I use stS tokens?',
answer:
'stS is fully liquid, meaning you can use stS seamlessly across DeFi and access lending markets, liquidity pools, and more without pausing your rewards.',
answer: (
<Text variant="secondary">
stS is fully liquid, meaning you can use stS seamlessly across DeFi and access lending
markets, liquidity pools, and more without pausing your rewards.
</Text>
),
},
{
question: 'What is the stS exchange rate and how does it change?',
answer:
'The stS token accrues staking rewards via delegating the underlying $S to trustworthy validators on the network. Every time staking rewards are added to the pool, the stS exchange rate to $S increases.',
answer: (
<Text variant="secondary">
The stS token accrues staking rewards via delegating the underlying $S to trustworthy
validators on the network. Every time staking rewards are added to the pool, the stS
exchange rate to $S increases.
</Text>
),
},
{
question:
'What steps have been taken to ensure the security and reliability of the stS smart contract code?',
answer: (
<Text variant="secondary">
To mitigate smart contract risks, the stS code has been thoroughly audited by leading
security firms, including{' '}
<Link
href="https://github.com/spearbit/portfolio/blob/master/pdfs/Beethoven-Sonic-Staking-Spearbit-Security-Review-December-2024.pdf"
target="_blank"
>
Spearbit
</Link>{' '}
and{' '}
<Link
href="https://github.com/trailofbits/publications/blob/master/reviews/2025-01-beethovenx-sonicstaking-securityreview.pdf"
target="_blank"
>
Trail of Bits
</Link>
.
</Text>
),
},
]

Expand Down

0 comments on commit e66420c

Please sign in to comment.