Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rust-blockchain/evm
Pure Rust implementation of Ethereum Virtual Machine
https://github.com/rust-blockchain/evm
Last synced: 26 days ago
JSON representation
Pure Rust implementation of Ethereum Virtual Machine
- Host: GitHub
- URL: https://github.com/rust-blockchain/evm
- Owner: rust-ethereum
- License: apache-2.0
- Created: 2017-12-05T05:24:39.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-08-16T07:36:31.000Z (6 months ago)
- Last Synced: 2024-10-29T15:38:41.598Z (4 months ago)
- Language: Rust
- Homepage:
- Size: 6.8 MB
- Stars: 1,178
- Watchers: 30
- Forks: 360
- Open Issues: 53
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Authors: AUTHORS
Awesome Lists containing this project
- Library-of-Ethereum - SputnikVM - Rust Ethereum Virtual Machine Implementation (EVM / Cairo)
README
# Rust EVM
[![Build Status](https://github.com/rust-ethereum/evm/workflows/Rust/badge.svg)](https://github.com/rust-ethereum/evm/actions?query=workflow%3ARust)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](./LICENSE)Rust EVM, also known as SputnikVM, is a flexible Ethereum Virtual Machine
interpreter that can be easily customized.## Status
The Rust EVM project has a long history dating back to the initial
implementation in 2017 (when it was called SputnikVM). It has gone through
multiple rewrites over the years to accommodate for different requirements,
when we successfully tested one integrating Geth to sync the mainnet.The current rewrite is used in production for the Frontier project (the
Ethereum-compatibility layer for Polkadot). However, we have not yet fully
tested it against Ethereum mainnet. If you have such requirements, PR for fixes
are welcomed.## Features
* **Standalone** - can be launched as an independent process or integrated into other apps.
* **Flexible** - can be customized and extended to support additional opcodes,
additional precompiles, different gasometers or other more exotic use cases.
* **Portable** - support `no_std`, and can be used in different environments
like in WebAssembly.
* **Fast** - we of course try to be fast!
* written in Rust, can be used as a binary, cargo crate or shared library.## Dependencies
Rust EVM requires at least `rustc 1.75`.
## Documentation
* [Latest release documentation](https://docs.rs/evm)
## License
Apache 2.0