Crates.io | revme |
lib.rs | revme |
version | 2.1.0 |
source | src |
created_at | 2021-12-18 15:39:05.784929 |
updated_at | 2024-11-06 12:02:34.64474 |
description | Rust Ethereum Virtual Machine Executable |
homepage | |
repository | https://github.com/bluealloy/revm |
max_upload_size | |
id | 500045 |
size | 154,911 |
revme
is a binary crate to execute the evm in multiple ways.
Currently it is mainly used to run ethereum tests with the statetest
subcommand.
statetest
takes a path to the directory where ethereum statetest json can be found.
It recursively parses all json files in the specified directory and executes them.
Running all ethereum tests checks that revm is compliant to the ethereum specs.
To run ethereum tests locally, clone the tests repository and provide the
test directory. Below, we clone the repo and execute the GeneralStateTests
suite of
tests.
git clone https://github.com/ethereum/tests
cargo run -p revme statetest tests/GeneralStateTests
Notice, in the .gitignore
, the bins/revme/tests
directory
is ignored so it won't be checked into git.