Python bindings for the Ethereum Client-VM Connector API.
From Python, use any Ethereum VM implementation that implements EVMC.
Make sure Cython is installed:
pip install cython
Sync the evmc
submodule:
git submodule init && git submodule update
Build pyevmc:
python3 setup.py build_ext -i
First build evmone, and then run the unit testing suite:
EVMC_MODULE=../evmone/build/lib/libevmone.so python3 test.py
Set the EVMC_MODULE
environment variable to the location of your combine evmone module.
Thanks for the authors of evmc and evmone.
MIT License