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: More over subscribed fixes #2094

Merged
merged 2 commits into from
Apr 22, 2024
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
1 change: 0 additions & 1 deletion src/config/help.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,6 @@ export const HelpConfig: HelpItems = [
'Self Stake',
'Nominator Stake',
'Commission',
'Over Subscribed',
'Blocked Nominations',
'Rewards By Country And Network',
],
Expand Down
4 changes: 0 additions & 4 deletions src/library/ListItem/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,6 @@ export interface NominationStatusProps {
noMargin?: boolean;
}

export interface OversubscribedProps {
address: MaybeAddress;
}

export interface SelectProps {
item: {
address: string;
Expand Down
7 changes: 2 additions & 5 deletions src/locale/cn/help.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@
[
"在一个Era中为保持活跃提名的所需的{NETWORK_UNIT}数量.",
"适用于提名人和提名池. 对于提名池情况来说, 在加入池时重要的是池的总质押金额不能低于该值.",
"高于这个标准能保证可以一直在这个Era的活跃提名人名单中. 但这数额不保证能得到奖励,因为您的活跃提名人有超额认选的可能.",
"在{NETWORK_NAME},只有前{MAX_EXPOSURE_PAGE_SIZE}名提名人才能获得每个验证人的奖励. 确保您的活跃度质押金额高于此阈值将增加获得奖励的机会.",
"高于这个标准能保证可以一直在这个Era的活跃提名人名单中.",
"可以从页面中追踪这些指标, 并在必要时执行抵押操作如增加{NETWORK_UNIT}或更改提名或加入其它提名池."
]
],
Expand Down Expand Up @@ -195,9 +194,7 @@
[
"当前的抵押状态.",
"当这些提名人中没有一个是在当前活跃验证人群内(被选择用于验证网络的验证人群体)时,这组提名将处于非活跃状态.",
"当您的被提名人中至少有一人是活跃时,此提名状态将显示为活跃提名-但这仍然不能保证奖励.",
"每个活跃验证人的前{MAX_EXPOSURE_PAGE_SIZE}提名人可获得{NETWORK_NAME}奖励。因此,如果被提名人活跃且超额认购,您必须是{MAX_EXPOSURE_PAGE_SIZE}最高质押提名人里的一员才能获得奖励.",
"如果一位活跃的被提名人没有超额认购,您将获得奖励."
"当您的被提名人中至少有一人是活跃时,此提名状态将显示为活跃提名."
]
],
"nominations": [
Expand Down
7 changes: 2 additions & 5 deletions src/locale/en/help.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@
[
"The amount of {NETWORK_UNIT} needed to be actively nominating in an era.",
"This value applies to nominators and for pools. In the pool's case, it is important to join a pool with a total bond amount of at least this value.",
"Being above this metric simply guarantees that you will be present in the active nominator set for the era. This amount still does not guarantee rewards, as your active nominations may still be over-subscribed.",
"Only the top {MAX_EXPOSURE_PAGE_SIZE} nominators are rewarded per validator in {NETWORK_NAME}. Ensuring your active bond is above this threshold will increase your chances of rewards.",
"Being above this metric simply guarantees that you will be present in the active nominator set for the era.",
"You can keep track of these metrics from the dashboard and amend your staking position if necessary, whether increasing your bonded {NETWORK_UNIT}, changing your nominations, or joining another pool."
]
],
Expand Down Expand Up @@ -196,9 +195,7 @@
[
"The status of your nominations at a glance.",
"A set of nominations will be inactive when none of those nominees are participating in the current validator set (the set of validators currently elected to validate the network).",
"When at least one of your nominees are active, this nomination status will display as actively nominating - but this still does not guarantee rewards.",
"The top {MAX_EXPOSURE_PAGE_SIZE} nominators of each active validator receive rewards on {NETWORK_NAME}. So if a nominee is active and over-subscribed, you must be a part of the {MAX_EXPOSURE_PAGE_SIZE} highest bonded nominators to receive rewards.",
"If an active nominee is not over-subscribed, you will receive rewards."
"When at least one of your nominees are active, this nomination status will display as actively nominating."
]
],
"nominations": [
Expand Down
Loading