14 releases (7 breaking)

0.8.0 Aug 28, 2024
0.7.0 Aug 21, 2024
0.6.1 Aug 15, 2024
0.5.3 Aug 14, 2024
0.1.1 Jul 26, 2024

#457 in Magic Beans

Download history 245/week @ 2024-07-25 476/week @ 2024-08-01 357/week @ 2024-08-08 617/week @ 2024-08-15 194/week @ 2024-08-22 115/week @ 2024-08-29

1,295 downloads per month

MIT/Apache and AGPL-3.0

570KB
3K SLoC

Trevm

⚠️ Trevm is experimental software and not considered ready for production use. ⚠️

Trevm is a typestate API wrapper for revm. It provides an ergonomic way to interact with the revm API, shortcuts for common tasks, and straightforward API extensibility. Trevm does NOT try to provide low-level EVM management, but rather to shortcut and simplify common tasks like simulating transactions.

Trevm is NOT a replacement for revm. It is a wrapper around the revm API. It is NOT a drop-in upgrade, integrating trevm into your project will require changes to your code.

See the documentation on docs.rs for information on usage.

Why use Trevm?

Trevm is for building complex high-level flows on top of the low-level revm API. It provides a state machine that ensures you can only take actions that are valid in the current state. This makes it easier to reason about the state of your EVM instance and ensures you don't make mistakes.

Trevm is useful for:

  • full node implementations
  • block builders
  • searchers
  • any other transaction simulation usecase

Limitations

Trevm is a work in progress and is not feature complete. In particular, trevm does not currently have lifecycle support for blocks before Shanghai. This means it cannot produce correct post-block states for blocks before Shanghai.

The Trevm State Machine

Trevm provides a state machine that represents the internal state of a revm EVM instance. It ensures that at each step you can only take actions that are valid in the current state. This is done by using the typestate pattern.

As you progress between states, the API will change to reflect the available operations. For example, you can't call open_block() on a EvmNeedsTx state, as the block is already open. You can't call close_block() on a EvmReady state, without explicitly clearing or running the transaction that has been ready.

typestates are cool

Dependencies

~44MB
~796K SLoC