An enterprise-grade Java-based, Apache 2.0 licensed Ethereum client https://wiki.hyperledger.org/display/besu
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
besu/ethereum/evmtool
Sally MacFarlane f0e9f409e6
Copyright Besu (#7768)
1 month ago
..
src Copyright Besu (#7768) 1 month ago
README.md Evm tool readme update (#7274) 5 months ago
build.gradle Reintroduce engine get client version v1 with commit in manifest (#7548) 3 months ago
txs.rlp Promote segmented storage (#5700) 1 year ago

README.md

EVM Tool

EVM Tool is a stand alone EVM executor and test execution tool. The principal purpose of the tool is for testing and validation of the EVM and enclosing data structures.

Using EVM Tool in execution-specification-tests

Building Execution Tests on macOS

Current as of 26 Jun 2024.

MacOS users will typically encounter two problems,one relating to the version of Python used and one relating to zsh.

Homebrew will only install the most recent version of Python as python3, and that is 3.11. The execution tests require 3.10. The solution is to use a 3.10 version of python to set up the virtual environment.

python3.10 -m venv ./venv/

Zsh requires braces to be escaped in the command line, so the step to install python packages needs to escape the brackets

pip install -e .\[docs,lint,test\]

An all-in-one script, using homebrew, would look like

brew install ethereum solidity
git clone https://github.com/ethereum/execution-spec-tests
cd execution-spec-tests
python3 -m venv ./venv/
source ./venv/bin/activate
pip install -e .\[docs,lint,test\]

Building EvmTool on macOS

First you need a Java 21+ JDK installed, if not already installed.

It is recommended you install SDKMAN to manage the jvm install.

sdk install java 21.0.3-tem 
sdk use java 21.0.3-tem

Once a JVM is installed you use the gradle target:

./gradlew installDist -x test

The resulting binary is build/install/besu/bin/evmtool

If the testing repository and besu are installed in the same parent directory, the command to run the execution tests is

fill -v tests --evm-bin ../besu/build/install/besu/bin/evmtool 

Assuming homebrew and SDKMan are both installed, the complete script is

sdk install java 21.0.3-tem 
sdk use java 21.0.3-tem
git clone https://github.com/hyperledger/besu
cd besu
./gradlew installDist -x test
cd ..

brew install ethereum solidity
solc-select install latest
solc-select use latest
git clone https://github.com/ethereum/execution-spec-tests
cd execution-spec-tests
python3 -m venv ./venv/
source ./venv/bin/activate
pip install -e .\[docs,lint,test\]

fill -v tests --evm-bin ../besu/build/install/besu/bin/evmtool