EVM: move basic,address,signatures to ethereum crate
Context
The end goal is to share as much code as possible between [evm_execution] and [kernel]. To go in this direction, my proposal is to structure the project as:
- evm_execution: everything related to SputnikVM and transaction execution
- ethereum: every types declarations needed for EVM (probably not wasm-pvm specific, i.e. no storage?)
- kernel: blockchain kernel
In a dependency graph you'll have:
kernel
/ \
/ \
evm_execution \
\ \
\ /
\ /
ethereum
It should not change semantics at all, it's just changing the structure.
Temporary ownership of this MR: @rodibozman
Manually testing the MR
CI
Checklist
-
Document the interface of any function added or modified (see the coding guidelines) -
Document any change to the user interface, including configuration parameters (see node configuration) -
Provide automatic testing (see the testing guide). -
For new features and bug fixes, add an item in the appropriate changelog ( docs/protocols/alpha.rstfor the protocol and the environment,CHANGES.rstat the root of the repository for everything else). -
Select suitable reviewers using the Reviewersfield below. -
Select as Assigneethe next person who should take action on that MR
Edited by Rodi-Can Bozman