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

fix: typo & update faq #163

Merged
merged 1 commit into from
Feb 5, 2025
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
2 changes: 1 addition & 1 deletion faq/keys-13.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: What is the CSM Stake Share Limit?
anchor: stake-share-limit
---

The stake share limit is a parameter defined for each Staking Module based on its risk profile. It determines the percentage of the total stake in the Lido Protocol that can be allocated to the module. Currently, the stake share limit for CSM is set at 1%, with [discussions underway to potentially increase this limit to 2%](https://research.lido.fi/t/community-staking-module/5917/75?u=aleksandra_g). Once CSM reaches its stake share limit, new keys can still be uploaded, but deposits to these keys may take a very long time (e.g. months), if they are deposited to at all. These factors affect the possibility of new deposits to your uploaded keys:
The stake share limit is a parameter defined for each Staking Module based on its risk profile. It determines the percentage of the total stake in the Lido Protocol that can be allocated to the module. Currently, the stake share limit for CSM is set at 2%. Once CSM reaches its stake share limit, new keys can still be uploaded, but deposits to these keys may take a very long time (e.g. months), if they are deposited to at all. These factors affect the possibility of new deposits to your uploaded keys:

- The number of keys already in the deposit queue, and the position of your keys in this queue
- The number of keys that will exit from CSM
Expand Down
2 changes: 1 addition & 1 deletion shared/hook-form/validation/validate-bond-amount.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export const validateBondAmount = ({
if (tokenBalance?.lt(bondAmount))
throw new ValidationError(
'bondAmount',
`Not enought balance of ${getTokenDisplayName(token)}`,
`Not enough balance of ${getTokenDisplayName(token)}`,
);
}
};
Loading