| Name | Description | Crates.io | Documentation |
|--------------------|:---------------------------------------------:|:-------------------------------------------------------------------------------------------------------------------:|:----------------------------------------------------------------------------------------------------:|
| sputnikvm | Core library for the Ethereum Virtual Machine | |
|
| sputnikvm-stateful | Merkle Trie stateful wrapper for SputnikVM |
|
|
SputnikVM is an implementation of an Ethereum Virtual Machine. It aims to be an efficient, pluggable virtual machine for different Ethereum-based blockchains.
We encourage all Ethereum'esque blockchains to adopt SputnikVM, and to make use of SputnikVM's RFC governance project which governs the parameters of each blockchain's VM. This way we can draw from the experience of the community and learn from other proposed RFCs.
| Network | Crates.io | Documentation |
|------------------|:---------------------------------------------------------------------------------------------------------------------------------------:|:------------------------------------------------------------------------------------------------------------------------:|
| Ethereum Classic | |
|
| Ethereum |
|
|
| Ellaism |
|
|
| Ubiq |
|
|
| Expanse |
|
|
| Musicoin |
|
|
The core library has the initial four precompiled contracts embedded. To use the bn128 and modexp precompiled contracts introduced by the Byzantium hard fork, pull the following crates.
| Name | Description | Crates.io | Documentation |
|------------------------------|:----------------------------:|:---------------------------------------------------------------------------------------------------------------------------------------:|:------------------------------------------------------------------------------------------------------------------------:|
| sputnikvm-precompiled-bn128 | bn128 precompiled contracts | |
|
| sputnikvm-precompiled-modexp | modexp precompiled contracts |
|
|
Ensure you have at least rustc 1.26.2 (594fb253c 2018-06-01)
. Rust 1.25.0 and
before is not supported.
SputnikVM is written Rust. If you are not familiar with Rust please see the getting started guide.
To start working with SputnikVM you'll need to install rustup, then you can do:
bash
$ git clone git@github.com:ETCDEVTeam/sputnikvm.git
$ cd sputnikvm
$ cargo build --release --all
We currently use two ways to test SputnikVM and ensure its execution aligns with other Ethereum Virtual Machine implementations:
To learn more about building SputnikVM from source please read wiki page Building and Testing
Apache 2.0