Update

In this newest Submission 3, we added support for all Ethereum pre-compiles (including alt-bn128 EC curve operations) and confirmed that it passes all Ethereum tests that are not limited by EOSIO memory limits!

Inspiration

As a former Ethereum developer, this challenge was the perfect test of my knowledge to a new and exciting problem. I have been developing on EOSIO for over 2 years now, and the progress of development in the software base continues to amaze me. The recent advancements of EOSVM have been crucial in the development of eosio.evm and the fast execution times achieved by this rendition of the EVM.

What it does

eosio.evm is a Ethereum virtual machine inside the EOSIO WASM virtual machine (VMception!)

It supports all opcodes as specified in the Ethereum Yellow Paper, and those not in the paper yet (introduced in Istanbul Hard Fork), such as SHL Shift left, SHR Shift Right and SAR int256 shift right.

On a fast machine running EOSIO 2 with EOSVM and OC settings, it can execute entire ERC20 contract deployment + initialization + signature recovery in just 750μs, and ERC20 transfers in 500μs

How I built it

eosio.evm is built using the EOSIO Contract Development Kit (CDT), with testing done in both the EOSIO Native Tester suite and JS tests.

The main five stages for the development of the EVM consisted of:

  1. Support for EOSIO actions/tables
  2. Opcode support (matching Istanbul HF)
  3. REVERT support (full exception handling without eosio::check)
  4. Testing harness and validation testing
  5. Developing Javascript SDK

Challenges I ran into

The two largest challenges faced in the development of eosio.evm were:

1: Support for recovering Ethereum addresses from Ethereum signatures (v,r,s) was challenging due to the lack of support for decompressing ECC keys in EOSIO. This challenge was overcome by importing a select few functions from the uECC open-source library. In the future, I look forward to EOSIO supporting intrinsics for the decompression of public keys!

2: REVERT opcode support. As described by the Ethereum Yellow paper, all sub-actions in transactions can revert to their original state through the use of the REVERT opcode. In EOSIO, an exception reverts all actions and state changes within the transaction. To overcome this challenge, eosio.evm uses a robust error management system, which ensures no usage of eosio::check after the transaction has been validated and nonce has been incremented.

Accomplishments that I'm proud of

  • Full Javascript SDK for deploying, executing and querying contracts
  • 100% Success on Ethereum Transaction Tests
  • 100% Success on Ethereum RLP Tests
  • Full precompile support
  • REVERT support (challenging on EOS as it requires no use of eosio::check after nonce increment)
  • Istanbul support
  • Full gas cost calculations (not billed to sender)
  • Web3-similar call support (query view functions with no state modifications)
  • All transactions under 1ms with fast machine and eos-vm-oc

What I learned

This challenge has pushed me to learn the Ethereum Virtual Machine inside out, including scouring through dozens of EIPs and previous implementations to develop a deep understanding of the EVM. My understanding of EOSIO has further solidified, building my largest contract to date and applying innovative techniques such as eosio exceptions to emulate Ethereum Web3 calls.

What's next for eosio.evm

  • optimize execution times, especially for Zero Knowledge proof operations
  • explore experimental support for IBCTRANSFER and IBCBALANCE opcode to transfer EOSIO balance directly from EVM execution
  • explore compatibility with Ethereum 2.0

Built With

+ 1 more
Share this project:

Updates