fix: DEVOPS-371 correct staking FAQ inaccuracies#210
Merged
Conversation
Verified each FAQ entry against on-chain getters and the official blog instead of stale frontend constants: - Minimum delegation: reword to clarify 100 ZIL is the per-deposit minimum (getMinDelegation), not a balance floor (positions can be lower after a partial unstake) - Wallets: list all 8 supported connectors; rename ZilPay to Bearby Wallet (rebrand) - Unstaking time: 461,680 blocks (~6 days) from on-chain withdrawalPeriod, replacing the wrong 1,209,600 blocks / 14 days - Gas troubleshooting: keep the 200,000 gas limit (the 2,000,000 constant is a UI fee-display value, not a tx gas limit); align the buffer to 450 ZIL per the official blog - Tutorial link: fix 404 (how-to-restake -> how-to-stake)
chetan-zilliqa
approved these changes
Jun 8, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Audited all 10 entries in the staking FAQ (
src/components/faqModal.tsx) and corrected the inaccurate ones. Each claim was verified against on-chain getters / the official blog, not the frontend constants (several of which are stale snapshots or display-only values).Changes
getMinDelegation()gates the deposit, not the standing balance (a 50 ZIL position exists in r3to post partial-unstake)chainConfig.tsconfigures 8 wallets; ZilPay rebranded to BearbywithdrawalPeriod()+ live block timing0x1e8480n(2,000,000) constant is a UI fee-display value (getGasCostInZil), not a tx gas limit…/how-to-restake-…(HTTP 404)…/how-to-stake-…(HTTP 200)Unchanged because verified accurate: reward cycle, contact, "why can't I unstake", liquid vs non-liquid, redelegation.
Notes
oneWeekInMinutes(7 days) and never readswithdrawalPeriod(), so the in-app figure is ~1 day off; worth sourcing from chain separately.