Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/cleanpegasus/evm-from-scratch-rust

A rust implementation of the Ethereum Virtual Machine from scratch
https://github.com/cleanpegasus/evm-from-scratch-rust

Last synced: about 1 month ago
JSON representation

A rust implementation of the Ethereum Virtual Machine from scratch

Awesome Lists containing this project

README

        

# EVM from scratch in Rust (Work in Progress)

This repository is inspired by [shafu0x](https://github.com/shafu0x)'s python implementation of the EVM.
You can find his docs [here](https://evm-from-scratch.xyz/content/01_intro)

### Implemented Opcodes

- STOP
- PUSH1
- ADD
- SUB
- MUL
- DIV
- SDIV
- ADDMOD
- MULMOD
- EXP
- SIGNEXTEND
- LT
- GT
- SLT
- SGT
- EQ
- ISZERO
- AND
- OR
- XOR
- NOT
- BYTE
- SHL
- SHR
- SAR