vbot
    • Create new note
    • Create a note from template
      • 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
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Write
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
    • Invite by email
      Invitee

      This note has no invitees

    • 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
    • Note Insights New
    • Engagement control
    • Make a copy
    • Transfer ownership
    • Delete this note
    • Save as template
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Note Insights Versions and GitHub Sync Sharing URL Create Help
Create Create new note Create a note from template
Menu
Options
Engagement control Make a copy 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
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Write
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
  • Invite by email
    Invitee

    This note has no invitees

  • 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
    • Any changes
      Be notified of any changes
    • Mention me
      Be notified of mention me
    • Unsubscribe
    # Baking nonces rework design ## Structure Nonces are stored in a persistent file so that bakers are still able to reveal their nonces when the time comes even if they shutdown their bakers. In order to simplify and optimize nonce revelations, we need to store extra informations: - The nonce (pre-image of the hash) itself (necessary) - The nonce hash that was published in the block (optional: metadata/UX) - The level of the block where the nonce was produced (necessary) - optimises query to find block - The block hash where the nonce was produced - optimises query to check if block is in cannonical chain - The cycle to which the nonce was produced (optional: it could be derived from the level) - optimises query to check if nonce is relevant - A _state_ ## State In order to easily determine what needs to be done with a nonce, we define possible states. A nonce has five possible states: - ~~Published <publish_level>~~ Committed: the nonce was produced and its hash published in a block at level `publish_level` - Injected <injection_level, op_hash>: the nonce revelation operation was injected in the network (`injection_level` is the head level) ~~- Noticed <notice_level>: the nonce revelation operation was found in a block at level `notice_level`~~ ~~- Finalized: the nonce revelation was confirmed as part of the canonical chain~~ ~~- Deletion: the block where the nonce's hash was published isn't part of the canonical chain and should be deleted~~ N.b. the last two states allow a safe nonce deletion hence those two states could be left for UX purposed and cleaned-up later or discarded entirely along with the nonce. Both are reasonable. ### Transitions (Outdated. See Architecture) The state automaton's transitions are described as follow: (initial state) `Published <publish_level>` We created a nonce hash for a block at level `publish_level` `Published <publish_level> -> Deletion (final state)` When receiving a block at level `publish_level + 5` if the block at `publish_level` isn't the one for which we produced the nonce then the block is not finalized and the nonce is "orphan". It is safe to delete it. `Published <published_level> -> Injected <injection_level>` We entered the cycle following the one where the nonce's hash was found in a block **and** the current head's level is _greater than_ `publish_level + 5`. We inject the nonce and remember the level (`injection_level`) where we injected it. `Injected <injection_level> -> Noticed <notice_level>` While monitoring new arriving blocks, we notice that our operation is part of one of them. We remember the level of the block (`notice_level`) that contains our nonce revelation operation `Injected <injection_level> -> Injected <injection_level>` When receiving a block at level `injection_level + 5` (arbitrary but must be >=2) , if we did not notice any block that contained our nonce reveleation operation, it means that our revelation was either lost or part of a reorganized block. We reinject it and update its `injection_level` to the current head. `Noticed <notice_level> -> Finalized (final state)` When receiving a block at level `notice_level + 5` (arbitrary but must be >=2) , if the last finalized block's context confirms that our nonce was successfully revealed then the nonce is considered as finalized and can be safely discarded. `Noticed <notice_level> -> Injection <injection_level>` When receiving a block at level `notice_level + 5` (arbitrary but must be >=2), if the last finalized block's context **and** the current's head context **does not** confirm that our nonce was successfully revealed then we reinject it at `injection_level`. `Noticed <notice_level> -> Notice <notice_level>` When receiving a block at level `notice_level + 5` (arbitrary but must be >=2) new blocks past our `notice_level`, if the last finalized block's context **does not** confirm that our nonce was successfully revealed **but** the current's head context confirms it then we update our notice level. ### Architecture More formally, the `nonce_data` and `nonce_state` are approximated in the types below. ``` (* [nonce_data] associates nonce with the block where it was committed in. [block_hash], [level], [round] and [cycle] are used to skip querying the block store where possible *) type nonce_data = { nonce: Nonce.t nonce_hash: Nonce_hash.t block_hash: Block_hash.t; level: Level.t; cycle: Cycle.t; type nonce_state = | Committed (* Nonce was committed: - If baker in current cycle: do nothing - If baker in cycle + 1: - If block with commitment is part of the cannonical chain: then transition to injected - else: safe to delete - If current cycle > cycle + 1: too stale, so safe to delete *) | Injected of { injected_level: Level.t; op_hash: Block_hash.t } (* Nonce was injected: - At each level, get the last finalized block (level - 2) - If the revelation operation found in that block: nonce is safe to delete - If not found: - If pass `re_injection_threshold`: - consider revelation operation lost, so re-inject - transition to injected with updated level - If pass `nonce_revelation_threshold`: - missed out revelation operation, so delete - else: do nothing *) type nonce = { data: nonce_data; state: nonce_state } ``` Change to existing code: 1. ~~`Baking_nonces.state` will keep track of nonce states~~ `nonces` will map `nonce_hash` to `nonce_data` 2. On startup, baker will load both legacy and new format with new format taking precedence. For nonces only found in legacy format, routine will make best effort to port legacy nonces to the new format. `save` will write to both legacy and new format (already implemented). * Alternatively, the baker will fail if the startup routine cannot port all legacy nonces, the routine will ask the user for more block history (We could consider a `octez-client port legacy nonces` capability or some kind of interactive populate). There will be a flag `--ignore-legacy-orphaned-nonces` that could be configured to raise a warning instead of failing. At this point, `Baking_nonces.state` is pre-populated with actively tracked nonces or empty if there are none. 5. On new proposal, filter out nonces into 3 buckets - current (this cycle), stale (too old), pending (to be processed). Process pending nonces by returning new set of nonces with updated state. If deleted, we don't include in the new set. Due to the small number of operations to inject , (worst case: 24576/192=128), it should be fine to inject operation synchronously, which is generally quite low cost anyway. 6. Update `save` to store new format with state 7. On state transition, appropriate side effects need to take place. These are either inject or delete - similar to what happens now. ## Sanity check At the baker launch, each nonce's state needs to be updated so that we are able to determine/update the nonce's state. (TODO)

    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