From 57e7ce314bd8013f2a6fe9e1195419491cb5d969 Mon Sep 17 00:00:00 2001 From: Vitalis Salis Date: Wed, 21 Aug 2024 18:35:27 +0300 Subject: [PATCH] fixes --- src/app/components/FAQ/data/questions.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/components/FAQ/data/questions.ts b/src/app/components/FAQ/data/questions.ts index ac040634..c07f4044 100644 --- a/src/app/components/FAQ/data/questions.ts +++ b/src/app/components/FAQ/data/questions.ts @@ -16,7 +16,7 @@ export const questions = ( content: `

Babylon is a suite of security-sharing protocols that bring Bitcoin\’s unparalleled security to the decentralized world. The latest protocol, Bitcoin Staking, enables Bitcoin holders to stake their Bitcoin to provide crypto-economic security to PoS (proof-of-stake) systems in a trustless and self-custodial way.

`, }, { - title: "How does Bitcoin Staking Work?", + title: "How does Bitcoin Staking work?", content: `

${coinName} holders lock their ${coinName} using the trustless and self-custodial Bitcoin Staking script for a predetermined time (timelock) in exchange for voting power in an underlying PoS protocol. In return, Bitcoin holders will earn PoS staking rewards.


Finality providers perform the voting. A ${coinName} staker can create a finality provider by itself and self-delegate or delegate its voting power to a third-party finality provider.


If a finality provider attacks the PoS system, the ${coinName}s behind the voting powers delegated to it will be subject to protocol slashing. This deters ${coinName} stakers and finality providers from attacking the PoS system.

@@ -52,10 +52,10 @@ export const questions = ( }, { title: "How long will it take for my stake to become active?", - content: `

A stake’s status demonstrates the current stage of the staking process. All stake starts in a Pending state which denotes that the ${coinName} Staking transaction does not yet have sufficient ${coinName} block confirmations. As soon as it receives ${confirmationDepth || 10} ${coinName} block confirmations, the status transitions to Overflow or Active.


+ content: `

A stake’s status demonstrates the current stage of the staking process. All stake starts in a Pending state, which denotes that the ${coinName} Staking transaction does not yet have sufficient ${coinName} block confirmations. As soon as it receives ${confirmationDepth || 10} ${coinName} block confirmations, the status transitions to Overflow or Active.


-

In an amount-based cap, A stake is Overflow if the system has already accumulated the maximum amount of ${coinName} it can accept.


-

In a time-based cap, where there is a starting block height and ending block height, a stake is Overflow if it is included in a ${coinName} block that is newer than the ending block.


+

In an amount-based cap, a stake is Overflow if the system has already accumulated the maximum amount of ${coinName} it can accept.


+

In a time-based cap, where there is a starting block height and an ending block height, a stake is Overflow if it is included in a ${coinName} block that is newer than the ending block.


Otherwise, the stake is Active.


You should unbond and withdraw a stake that is Overflow.

`, },