-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Beacon Node Refactorization #781
Comments
I think there's excellent value for a pure beacon chain implementation with a solid APIs, no premade assumptions, excellent documentation. Whoever wants to use beacon-node-as-a-service can just launch that |
With the merging of the two states, we can simplify a lot of the things in our implementation. Now block processing only affects certain parts of the state, and with this would be a good time to also consider @rawfalafel proposal to merge in the casper package. Although if we do go down that path, I would rather Another thing this would simplify would be our blockchain service routine, instead of updating both active and crystallized we can just do it with one state, it simplifies state transitions also where we had transitions for both active and crystallized and now it can be done with one go. Agree, on having a pure beacon-chain implementation without bringing in any other assumptions |
This can be closed after now that we have our state transition function and have deleted deprecated code paths in our repo :) |
With the finished replacement of active and crystallized state with single state, we can begin to refactor beacon node to adopt these changes. The updates will touch base across multiple packages including core, DB, casper, types and will open up many design questions. Let's use this as a mega issue to track the overall progress, discuss the design questions, and document the design decisions. Everyone please provide your inputs here
The text was updated successfully, but these errors were encountered: