feat(evm): driver skeleton, StateDelta, keys and EIP-712#1853
Open
atharrva01 wants to merge 4 commits into
Open
feat(evm): driver skeleton, StateDelta, keys and EIP-712#1853atharrva01 wants to merge 4 commits into
atharrva01 wants to merge 4 commits into
Conversation
Phase 1.1: package tree, keccak/sha256 helpers, local Address/Hash types, go-ethereum depguard. Signed-off-by: atharrva01 <atharvaborade568@gmail.com>
Integration module was missing dgraph-io/badger entries added to the main module; restores its build. Signed-off-by: atharrva01 <atharvaborade568@gmail.com>
driver.Network stub with config-based routing, EVMClient interface, and the evmdlog SDK module (view-only) registering the driver. Signed-off-by: atharrva01 <atharvaborade568@gmail.com>
One-list StateDelta; keccak bytes32 key derivations incl. content-bound OutputSNMarker; EIP-712 digest, ethers-validated. Golden vectors + fixture locked. Signed-off-by: atharrva01 <atharvaborade568@gmail.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Second part of the EVM driver, on top of #1850.
This adds the driver skeleton and the core data model. The driver registers and routes fine, but the methods are still no-ops on purpose. The goal here is just to lock down the shapes everything else builds on before I start on the contracts and the translator.
What's in it:
No contracts, translator, signer, endorsement or finality yet, those come in follow-ups.
Stacked on #1850, so the two commits to look at are the top ones. go-ethereum stays out, with a build guard to keep it that way.