https://github.com/aurora-is-near/aurora-evm
Aurora EVM – a high-performance, pure Rust implementation of the Ethereum Virtual Machine (EVM). Designed for security, efficiency, and full Ethereum compatibility.
https://github.com/aurora-is-near/aurora-evm
aurora aurora-evm blockhain ethereum evm rust
Last synced: 10 months ago
JSON representation
Aurora EVM – a high-performance, pure Rust implementation of the Ethereum Virtual Machine (EVM). Designed for security, efficiency, and full Ethereum compatibility.
- Host: GitHub
- URL: https://github.com/aurora-is-near/aurora-evm
- Owner: aurora-is-near
- License: mit
- Created: 2021-03-05T12:40:34.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2025-06-14T00:08:41.000Z (about 1 year ago)
- Last Synced: 2025-06-14T01:20:51.517Z (about 1 year ago)
- Topics: aurora, aurora-evm, blockhain, ethereum, evm, rust
- Language: Rust
- Homepage:
- Size: 7.97 MB
- Stars: 25
- Watchers: 3
- Forks: 9
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](sLICENSE)
[](https://github.com/aurora-is-near/aurora-evm/actions/workflows/lint.yml)
[](https://github.com/aurora-is-near/aurora-evm/actions/workflows/rust.yml)
[](https://crates.io/crates/aurora-evm)
[](https://crates.io/crates/aurora-evm)
Aurora EVM
A blazing fast 🚀, pure Rust implementation of the Ethereum Virtual Machine (EVM)
-----
## Features
* **Standalone** - can be launched as an independent process or integrated into other apps
* **Universal** - production ready for any EVM-compatible chain
* **Stateless** - only an execution environment connected to independent State storage
* **Fast** - main focus is on performance
## Status
Production ready. Supported by [Aurora Labs](https://github.com/aurora-is-near/)
and used in production.
Supported Ethereum hard forks:
- [x] Frontier
- [x] Homestead
- [x] Tangerine Whistle
- [x] Spurious Dragon
- [x] Byzantium
- [x] Constantinople
- [x] Istanbul
- [x] Berlin
- [x] London
- [x] Paris (The Merge)
- [x] Shanghai
- [x] Cancun
- [x] Prague
## Ethereum tests supported
- 100% supports of [Ethereum tests](https://github.com/ethereum/tests)
- 100% supports of [Ethereum Execution Spec Tests](https://github.com/ethereum/execution-spec-tests)
## Getting started
To get started, add the following dependency to your `Cargo.toml`:
```toml
[dependencies]
aurora-evm = "2.0"
```
## License: [MIT](LICENSE)