lido
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Owners
        • Signed-in users
        • Everyone
        Owners Signed-in users Everyone
      • Write
        • Owners
        • Signed-in users
        • Everyone
        Owners Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
      • Invitee
    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Engagement control
    • Transfer ownership
    • Delete this note
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Sharing URL Help
Menu
Options
Versions and GitHub Sync Engagement control Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Owners
  • Owners
  • Signed-in users
  • Everyone
Owners Signed-in users Everyone
Write
Owners
  • Owners
  • Signed-in users
  • Everyone
Owners Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
Invitee
Publish Note

Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

Your note will be visible on your profile and discoverable by anyone.
Your note is now live.
This note is visible on your profile and discoverable online.
Everyone on the web can find and read all notes of this public team.
See published notes
Unpublish note
Please check the box to agree to the Community Guidelines.
View profile
Engagement control
Commenting
Permission
Disabled Forbidden Owners Signed-in users Everyone
Enable
Permission
  • Forbidden
  • Owners
  • Signed-in users
  • Everyone
Suggest edit
Permission
Disabled Forbidden Owners Signed-in users Everyone
Enable
Permission
  • Forbidden
  • Owners
  • Signed-in users
Emoji Reply
Enable
Import from Dropbox Google Drive Gist Clipboard
   owned this note    owned this note      
Published Linked with GitHub
Subscribed
  • Any changes
    Be notified of any changes
  • Mention me
    Be notified of mention me
  • Unsubscribe
Subscribe
### Preface There are essentially 2 types of withdrawals: a full and a partial one. In the former case the network checks that the validator's withdrawal epoch has been reached and the validator's balance is non-zero. The latter case assumes, the validator's balance is above maximum effective balance for the validator, so the surplus can be withdrawn. For CSM we expect a node operator / our bot brings a proof of a withdrawal to the module to settle the node operators' bond funds after exiting a validator. Since anyone can bring a proof, it's required to distringuish two types of withdrawals described above, because it's mistakenly to accept a partial withdrawal as an indicator of a withdrawal balance of a validator. The simplest approach is to check the conditions applicable to determine a withdrawal type on-chain. But there's one issue: there is no way to distinguish two sequential full withdrawals in case of any. ### Problem statement A validator become ineligible for receiving rewards for all its duties but sync committee participation. This specific duty is highly rewardable (and penalized at the same time) and all validators with this duty may get rewards nevertheless their status at the moment. It means that even if a validator is exited and withdrawn, it still can get some rewards. It's possible because a sync committee assembled by the network at the epoch N becomes active at epoch `N + 256` for the next 256 epochs. ![image](https://hackmd.io/_uploads/HyAHt-5jp.png) So it requires to wait up to 512 epochs after a validator's exit to make sure it won't receive any rewards afterwards. Now, let's imagine a case: ![image](https://hackmd.io/_uploads/HyY8FbciT.png) a validator is assigned to a sync committee bound to some interval **B**. If this validators exits unslashed at some epoch **e**, its withdrawable epoch will be set to some epoch inside the interval **B** (since the minimum delay is 256 epochs). Then, if the network withdraws this validator within some interval **W**, which starts with the validator's withdrawable epoch and ends at last but one epoch of the interval **B**, there's a possibilty for the validator to receive a reward for sync committee participation **after** the withdrawal. If it happens, the validator will be "fully withdrawn" once again in the future. It's not an issue in most of the cases, because - sync committee participation for a given validator is pretty [rare](https://eth2book.info/capella/part2/incentives/rewards/#sync-committee-rewards), - validator should exit before it's sync participation committee becomes active, - it should be withdrawn before the end of the sync committee period, - validator shouldn't be shut down after exit/withdrawal. But is there any case on the mainnet? Here they are: ```sql SELECT f_validator_index, f_balance, f_effective_balance FROM `high-hue-328212.chaind.t_validator_balances` WHERE f_epoch > 74240 AND f_effective_balance = 0 AND f_balance > 0; ``` ```csv f_validator_index,f_balance,f_effective_balance 102888,12922648,0 114440,8230095,0 120514,83540119,0 128064,66826537,0 152092,27306605,0 33812,3793432,0 39639,64759802,0 47626,55658804,0 499679,57090240,0 524573,18153155,0 603031,91031300,0 623262,22772972,0 70974,69082975,0 72868,4022346,0 767043,8309011,0 767472,7715467,0 91713,55511645,0 ``` Here we can see that `effective_balance` is zero, while the `balance` remains positive, if we look into beaconcha.in and check some of these validators, we can find that it was withdrawn 2 times after `withdrawable_epoch` ([link](https://beaconcha.in/validator/623262#withdrawals)): ![image](https://hackmd.io/_uploads/HyDDtWqjp.png) It means, there is an open vector for a griefing attack to a node operator: someone can bring a proof of a "full" withdrawal after the withdrawable epoch. The question is how can we assess this issue. ### Proposed solution The possible solution is to differentiate the value of a withdrawal. For a slashed validator arbitrarily balance can be reported, since all the rewards and penalties will be acquired to the moment of the withdrawal. The reason for that is that its `withdrawable_epoch` will be at least for 8192 epochs after the validator becomes inactive. For a non-slashed validator's withdrawal we can check the `amount` of the withdrawal to be greater than some treshold amount. We can determine the value of the threshold based on the following statements: 1. The threshold should be low enough to cover a case of a validator being exited by the network with too low effective balance (16 ethers). 2. The threshold should be great enough to cover the case if a validator receives rewards for a sync committee participation after a full withdrawl, as described above. As shown in the [research](https://hackmd.io/@dgusakov/H1ENnM5j6) the maximum value of rewards an exited validator may get for a sync committee participation is a square root of the sum of effective balances of all validators. It means, we may expect double in rewards if the total staked ether grows at least 4 times. Given the current conditions a validator can get around 0.18 ether for a whole sync committee interval. A validator can't be chosen for more than 1 interval following its withdrawable epoch. It means we can safely assume it's unlikely to get 1 ether in rewards for a sync commmittee participation in the near future, since it will require at least 915'000'000 more ether to be staked. Non-slashed validator's exit balance can be lower than 16 ethers because of penalties it will receive for missing attestations and sync committee non-participation. Penalties for a sync committee duties is equal to rewards, so given the previous considerations, we can assume the penalties unlikely to be greater than 1 ether. Attestation penalties can be ommited because they're 100 times lower the penalties for a sync committee duties. Given all of that we can choose a threshold somewhere in the following range [1;15] ethers, and hence it's proposed to choose **8 ethers** as the value. Below is presented pseudocode describing a flow of accepting a withdrawal. ```python def submit_full_withdrawal(validator, withdrawal): if (validator.withdrawable_epoch <= withdrawal.epoch): if validator.slashed: accept(withdrawal) and return elif withdrawal.amount > 8 ether: accept(withdrawal) and return raise InvalidWithdrawal() ``` ### Credits - @vladimir-g for the initial heads-up. - @dgusakov for the max sync committee participation rewards estimation.

Import from clipboard

Paste your markdown or webpage here...

Advanced permission required

Your current role can only read. Ask the system administrator to acquire write and comment permission.

This team is disabled

Sorry, this team is disabled. You can't edit this note.

This note is locked

Sorry, only owner can edit this note.

Reach the limit

Sorry, you've reached the max length this note can be.
Please reduce the content or divide it to more notes, thank you!

Import from Gist

Import from Snippet

or

Export to Snippet

Are you sure?

Do you really want to delete this note?
All users will lose their connection.

Create a note from template

Create a note from template

Oops...
This template has been removed or transferred.
Upgrade
All
  • All
  • Team
No template.

Create a template

Upgrade

Delete template

Do you really want to delete this template?
Turn this template into a regular note and keep its content, versions, and comments.

This page need refresh

You have an incompatible client version.
Refresh to update.
New version available!
See releases notes here
Refresh to enjoy new features.
Your user state has changed.
Refresh to load new user state.

Sign in

Forgot password

or

By clicking below, you agree to our terms of service.

Sign in via Facebook Sign in via Twitter Sign in via GitHub Sign in via Dropbox Sign in with Wallet
Wallet ( )
Connect another wallet

New to HackMD? Sign up

Help

  • English
  • 中文
  • Français
  • Deutsch
  • 日本語
  • Español
  • Català
  • Ελληνικά
  • Português
  • italiano
  • Türkçe
  • Русский
  • Nederlands
  • hrvatski jezik
  • język polski
  • Українська
  • हिन्दी
  • svenska
  • Esperanto
  • dansk

Documents

Help & Tutorial

How to use Book mode

Slide Example

API Docs

Edit in VSCode

Install browser extension

Contacts

Feedback

Discord

Send us email

Resources

Releases

Pricing

Blog

Policy

Terms

Privacy

Cheatsheet

Syntax Example Reference
# Header Header 基本排版
- Unordered List
  • Unordered List
1. Ordered List
  1. Ordered List
- [ ] Todo List
  • Todo List
> Blockquote
Blockquote
**Bold font** Bold font
*Italics font* Italics font
~~Strikethrough~~ Strikethrough
19^th^ 19th
H~2~O H2O
++Inserted text++ Inserted text
==Marked text== Marked text
[link text](https:// "title") Link
![image alt](https:// "title") Image
`Code` Code 在筆記中貼入程式碼
```javascript
var i = 0;
```
var i = 0;
:smile: :smile: Emoji list
{%youtube youtube_id %} Externals
$L^aT_eX$ LaTeX
:::info
This is a alert area.
:::

This is a alert area.

Versions and GitHub Sync
Get Full History Access

  • Edit version name
  • Delete

revision author avatar     named on  

More Less

Note content is identical to the latest version.
Compare
    Choose a version
    No search result
    Version not found
Sign in to link this note to GitHub
Learn more
This note is not linked with GitHub
 

Feedback

Submission failed, please try again

Thanks for your support.

On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

Please give us some advice and help us improve HackMD.

 

Thanks for your feedback

Remove version name

Do you want to remove this version name and description?

Transfer ownership

Transfer to
    Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

      Link with GitHub

      Please authorize HackMD on GitHub
      • Please sign in to GitHub and install the HackMD app on your GitHub repo.
      • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
      Learn more  Sign in to GitHub

      Push the note to GitHub Push to GitHub Pull a file from GitHub

        Authorize again
       

      Choose which file to push to

      Select repo
      Refresh Authorize more repos
      Select branch
      Select file
      Select branch
      Choose version(s) to push
      • Save a new version and push
      • Choose from existing versions
      Include title and tags
      Available push count

      Pull from GitHub

       
      File from GitHub
      File from HackMD

      GitHub Link Settings

      File linked

      Linked by
      File path
      Last synced branch
      Available push count

      Danger Zone

      Unlink
      You will no longer receive notification when GitHub file changes after unlink.

      Syncing

      Push failed

      Push successfully