16 releases (3 major breaking)

5.0.0 Aug 8, 2021
4.0.0 Jun 14, 2021
3.0.0 Apr 7, 2021
2.0.1 Jan 11, 2021
2.0.0-alpha.5 Mar 24, 2020

#43 in #evm

Download history 1/week @ 2024-02-19 35/week @ 2024-02-26 19/week @ 2024-03-04 18/week @ 2024-03-11 10/week @ 2024-03-18

82 downloads per month
Used in 4 crates

Apache-2.0

200KB
1.5K SLoC

EVM Module

The EVM module allows unmodified EVM code to be executed in a Substrate-based blockchain.

EVM Engine

The EVM module uses SputnikVM as the underlying EVM engine. The engine is overhauled so that it's modular.

Execution Lifecycle

There are a separate set of accounts managed by the EVM module. Substrate based accounts can call the EVM Module to deposit or withdraw balance from the Substrate base-currency into a different balance managed and used by the EVM module. Once a user has populated their balance, they can create and call smart contracts using this module.

There's one-to-one mapping from Substrate accounts and EVM external accounts that is defined by a conversion function.

EVM Module vs Ethereum Network

The EVM module should be able to produce nearly identical results compared to the Ethereum mainnet, including gas cost and balance changes.

Observable differences include:

  • The available length of block hashes may not be 256 depending on the configuration of the System module in the Substrate runtime.
  • Difficulty and coinbase, which do not make sense in this module and is currently hard coded to zero.

We currently do not aim to make unobservable behaviors, such as state root, to be the same. We also don't aim to follow the exact same transaction / receipt format. However, given one Ethereum transaction and one Substrate account's private key, one should be able to convert any Ethereum transaction into a transaction compatible with this module.

The gas configurations are configurable. Right now, a pre-defined Istanbul hard fork configuration option is provided.

License: Apache-2.0

Dependencies

~10–22MB
~300K SLoC