├── .gitignore ├── .vscode └── settings.json ├── README.md ├── src ├── evm.py └── lib.py └── test └── tests.json /.gitignore: -------------------------------------------------------------------------------- 1 | src/__pycache__ 2 | 3 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xmonsoon/evm-from-scratch/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xmonsoon/evm-from-scratch/HEAD/README.md -------------------------------------------------------------------------------- /src/evm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xmonsoon/evm-from-scratch/HEAD/src/evm.py -------------------------------------------------------------------------------- /src/lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xmonsoon/evm-from-scratch/HEAD/src/lib.py -------------------------------------------------------------------------------- /test/tests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xmonsoon/evm-from-scratch/HEAD/test/tests.json --------------------------------------------------------------------------------