https://github.com/ethereum/evmdasm
A lightweight ethereum evm bytecode instruction registry, disassembler and evmcode manipulation library
https://github.com/ethereum/evmdasm
blockchain disassembler ethereum ethereum-bytecode
Last synced: 3 months ago
JSON representation
A lightweight ethereum evm bytecode instruction registry, disassembler and evmcode manipulation library
- Host: GitHub
- URL: https://github.com/ethereum/evmdasm
- Owner: ethereum
- Created: 2018-10-05T17:30:36.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-06-09T08:31:16.000Z (almost 2 years ago)
- Last Synced: 2025-01-15T15:38:36.783Z (3 months ago)
- Topics: blockchain, disassembler, ethereum, ethereum-bytecode
- Language: Python
- Homepage:
- Size: 55.7 KB
- Stars: 54
- Watchers: 4
- Forks: 14
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-web3-tools-and-dapps - evmdasm - This library is designed to manage and manipulate Ethereum EVM bytecode instructions. It helps to disassemble and analyze the code. (dApps directory / Dissassemblers)
README
[](https://travis-ci.org/tintinweb/evmdasm/)
# evmdasm
*A lightweight ethereum evm bytecode instruction registry, disassembler and evmcode manipulation library.*This library is meant for providing a static interface and registry for EVM opcodes and instructions. The idea is to keep it as lightweight as possible especially when it comes to dependencies or high level features.
e.g. The [ethereum-dasm](https://github.com/tintinweb/ethereum-dasm) project - a kind of high level disassembler with static/dynamic analysis features - relies on the registry and base disassembling functionality provided by [evmdasm](https://github.com/tintinweb/evmdasm).
**More information** --> **[Wiki](https://github.com/tintinweb/evmdasm/wiki)**
Projects building on [evmdasm](https://github.com/tintinweb/evmdasm/):
* :trophy: https://github.com/ethereum/evmlab
* :trophy: https://github.com/tintinweb/ethereum-dasm
* :trophy: https://github.com/tintinweb/evmcodegen### Setup
##### from pypi
```
#> python3 -m pip install evmdasm
```##### from source
```
#> python3 setup.py install
```