Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/cleanpegasus/evm-from-scratch-rust
- Owner: CleanPegasus
- Created: 2024-07-14T17:18:09.000Z (6 months ago)
- Default Branch: master
- Last Pushed: 2024-08-09T05:50:18.000Z (5 months ago)
- Last Synced: 2024-08-09T11:30:36.460Z (5 months ago)
- Language: Rust
- Homepage:
- Size: 27.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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