This repository has been archived by the owner on Oct 4, 2019. It is now read-only.
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.
Version 0.11
What's new?
Network support
As of Version 0.11 SputnikVM passes every test in the ETH test suit up to Constantinople hard-fork,
which essentially means that it can be used with the ETH network.
Related Pull Requests:
Changes:
API
SputnikVM API is now more agile then ever: the new DynamicPatch API enables the patch-based configuration
to be performed at runtime, as opposed to static patches that were based on using the static generic types.
This change is particularly useful for multi-chain clients like multi-geth that cooperates with SputnikVM over
an FFI boundary. Now it may configure SputnikVM feature-wise in runtime, and not rely on a pre-defined set of network and fork specific constructors.
All that with keeping overhead as low as possible and completely zero-copy!
Therefore, we recommend switching to evm-network crate as a foundation for
Patch
-building,evm-network-*
crates are considered deprecated and may not be supported in the future releases.Related Pull Requests:
Changes:
Patch
andDynamicPatch
APIs.Patch
trait and related codeTesting
Testing framework for the JsonTests (VMTests from ETH Test Suite) have been majorly reworked,
now it generates a separate native Rust test for each testcase in the Json files, for debugging and subset runs convenience.
Related Pull Requests:
Changes:
Documentation
Other changes
rust-secp256k1
feature is enabled by defaultethereumproject
under the nameevm-rs
.evm
andevm-*
for related projects.Related projects
evm-ffi
received support of theDynamicPatch
API.deprecated
inevm-ffi
and are going to be removed in the future releases.Closes #32