Giter Site home page Giter Site logo

manniru / evm-from-scratch Goto Github PK

View Code? Open in Web Editor NEW

This project forked from w1nt3r-eth/evm-from-scratch

0.0 1.0 0.0 242 KB

Super secret 100% practical EVM course. Please do not share

JavaScript 56.89% Python 7.84% Go 14.00% Rust 15.47% TypeScript 5.80%

evm-from-scratch's Introduction

EVM From Scratch

EVM From Scratch

Welcome to EVM From Scratch! It's a 100% practical course that will help you better understand the inner workings of the Ethereum Virtual Machine. During this course, we'll implement EVM in your favorite programming language.

Getting Started

Clone the repo:

$ git clone https://github.com/w1nt3r-eth/evm-from-scratch

This repository contains evm.json file with more than 100 test cases. Your goal is to create an implementation in any programming language of your choice that passes all tests.

The test cases are organized by complexity: they start with the simplest opcodes and gradually progress to advanced. Each test case has a name, code and expectation. The code is provided as a human-readable instructions list (asm) and machine-readable bytecode encoded in hex (bin). Your implementation should only look at bin, the asm is provided to make unit tests more readable.

The repository contains templates for JavaScript, TypeScript, Python and Go. Feel free to create your own.

Tips:

  1. Focus on a single test case at a time
  2. Don't worry about getting the architecture right from the first attempt. You can always refactor your code
  3. As you progress through the unit tests, you'll notice that there are test cases that require you to pass more than just the bytecode to your EVM implementation. Feel free to change the evm function signature to accommodate for that.
  4. Use the EVM Playground if you get stuck.

Resources

This course is a 100% practical course. As such, it doesn't try to explain EVM. Instead, it provides a guide rail for you to explore EVM step-by-step.

Here are a few links that you might find helpful:

  1. Ethereum Yellow Paper: the original specification for Ethereum blockchain and EVM. Its style is formal academic, which could be challenging to read.

  2. evm.codes is a reference for each EVM bytecode. Check out the website's about section for a general EVM overview and EVM Playground for an interactive debugger.

  3. Stack Machine: EVM is technically a stack-based virtual machine, so all the basics still apply!

  4. A Virtual Machine from "Crafting Interpreters" a very detailed explanation about building a stack based virtual machine in C.

  5. Building a Virtual Machine (YouTube) a video explanation of how stack-based virtual machines work.

FAQ

Q: Do I need to fully understand how EVM works to get started?
A: No! Start simple and focus on fixing one unit test at a time.

Q: Can I use external libraries?
A: Yes. For example, packages for keccak256 or 256-bit integers are fine. Please avoid libraries that already implement subsets of EVM.

Contributing

If you'd like to contribute, open an issue or a pull request.

The top priorities are:

  • Adding templates for the most popular programming languages
  • Adding more EVM unit tests

Adding templates

You can check out the existing templates to see the general structure. Requirements for the templates:

  • Minimal dependencies on tools and libraries
  • Initial code should not have more scaffolding than necessary to pass the first dozen tests
  • The tests should run sequentially and bail as soon as at least one test fails. It helps the students focus on one thing at a time
  • The tests should provide a sense of progress, e.g. displaying "test 3 of 100" in the output
  • When a test fails, print the assembly code, expected results and actual results

Please add a template only if you are very familiar with the programming language. Use TIOBE Index to get a sense of which languages to add.

Adding unit tests

The source code of the unit tests is stored in scripts/evm.yaml. YAML is much easier to write than JSON, but JSON is much easier to consume from a wide range of programming languages.

The code in scripts is used to transform YAML to JSON. All numbers and addresses are stored as strings to avoid parsing issues (many programming languages by default parse numbers into int64 or even floats, which can't handle uint256 used by the EVM). Note that we append n to decimal and hexadecimal numbers to avoid YAML treating them as numbers (and overflowing).

During this process, we also compile assembly instructions into bytecode.

To build evm.json from evm.yaml:

$ cd scripts
$ yarn install
$ node index.js

Currently there's no reference implementation. The plan is to use Ethereum's official EVM implementation to verify the unit tests are valid.

Credits

All the materials in the repository are made by w1nt3r.eth.

evm-from-scratch's People

Contributors

w1nt3r-eth avatar wp-lai avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.