EVMC – Ethereum Client-VM Connector API https://evmc.ethereum.org
Go to file
Paweł Bylica c243d0b24b
wip
2019-12-11 15:25:32 +01:00
bindings rust: version dependencies 2019-12-04 13:24:33 +01:00
cmake Update Hunter to v0.23.214 2019-11-11 13:38:53 +01:00
docs Rename evmc_instance -> evmc_vm 2019-09-25 21:30:32 +02:00
examples cmake: Add evmc::evmc_cpp INTERFACE library for evmc.hpp 2019-11-29 11:55:51 +01:00
include/evmc cpp: Add all comparison operators for address and bytes32 2019-12-05 11:53:40 +01:00
lib cmake: Add evmc::evmc_cpp INTERFACE library for evmc.hpp 2019-11-29 11:55:51 +01:00
test ci: Enable code coverage for evmc tool 2019-12-10 11:29:35 +01:00
tools wip 2019-12-11 15:25:32 +01:00
.bumpversion.cfg EVMC 7.2.0-alpha.0 2019-12-04 10:02:20 +01:00
.clang-format ci: Upgrade clang-format to version 9 2019-09-25 13:51:24 +02:00
.clang-tidy Add clang-tidy config 2019-11-21 11:23:34 +01:00
.codespell-whitelist rust: Add helpers for execution result handling 2019-03-19 15:09:43 -04:00
.gitignore Add workspace Cargo file 2019-03-13 15:54:22 +01:00
.travis.yml CI: Run ctest tests in parallel, in random order 2019-04-02 14:41:31 +02:00
AUTHORS.md Introduce AUTHORS file 2018-08-21 09:39:42 +02:00
CHANGELOG.md changelog: Add entry about evmc run 2019-12-10 13:06:34 +01:00
CMakeLists.txt tools: Add evmc tool main file 2019-12-09 12:59:04 +01:00
CNAME Add CNAME for evmc.ethereum.org alias 2019-09-07 11:40:30 +01:00
Cargo.toml rust: Procedural macro for automatic VM declaration 2019-06-04 16:18:23 +01:00
Doxyfile examples: Move example_vm into the examples/example_vm subdirectory 2019-07-23 12:16:44 +01:00
LICENSE Change license to Apache 2.0 2018-08-22 13:54:30 +02:00
README.md Initial implementation of Java bindings 2019-12-03 13:21:57 +01:00
appveyor.yml ci: Add VS 2019 build on AppVeyor 2019-09-26 16:28:49 +02:00
circle.yml ci: Enable code coverage for evmc tool 2019-12-10 11:29:35 +01:00
codecov.yml ci: Disable codecov status reporting 2019-12-10 11:44:39 +01:00

README.md

EVMC

chat: on gitter readme style: standard

Ethereum Client-VM Connector API

The EVMC is the low-level ABI between Ethereum Virtual Machines (EVMs) and Ethereum Clients. On the EVM side it supports classic EVM1 and ewasm. On the Client-side it defines the interface for EVM implementations to access Ethereum environment and state.

Usage

Documentation

Please visit the documentation.

Languages support

Language Supported Versions Supported Compilers
C C99, C11 GCC 6+, clang 3.8+, MSVC 2015+
C++ C++11, C++14, C++17 GCC 6+, clang 3.8+, MSVC 2015+
Go (bindings) 1.9 - 1.12
Rust (bindings)¹ 2018 edition 1.37.0 and newer
Java (bindings) 11

1. Rust support is limited and not complete yet, but it is mostly functional already. Breaking changes are possible at this stage.

Testing tools

  • evmc-vmtester (test/vmtester) — can test any EVM implementation for compatibility with EVMC.
  • evm-test (evmone → test/unittests) — allows running the collection of evmone's unit tests on any EVMC-compatible EVM implementation.
  • evmone-fuzzer (evmone → test/fuzzer) — differential fuzzer for EVMC-compatible EVM implementations.

EVMs

Clients

Maintainers

See also the list of EVMC Authors.

Contributing

chat: on gitter

Talk with us on the EVMC Gitter chat.

License

Licensed under the MIT License.

Internal

Making new release

  1. Update CHANGELOG.md, put the release date, update release link.
  2. git add CHANGELOG.md.
  3. Tag new release: bumpversion --allow-dirty prerel.
  4. Prepare CHANGELOG for next release: add unreleased section and link.
  5. git add CHANGELOG.md.
  6. Start new release series: bumpversion --allow-dirty --no-tag minor.