Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/CoinCulture/evm-tools
Ethereum Virtual Machine tools and guide
https://github.com/CoinCulture/evm-tools
ethereum evm
Last synced: 2 months ago
JSON representation
Ethereum Virtual Machine tools and guide
- Host: GitHub
- URL: https://github.com/CoinCulture/evm-tools
- Owner: CoinCulture
- License: gpl-3.0
- Created: 2016-07-02T18:26:15.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2021-06-26T14:54:30.000Z (over 3 years ago)
- Last Synced: 2024-08-02T12:22:49.886Z (5 months ago)
- Topics: ethereum, evm
- Language: Go
- Homepage:
- Size: 94.7 KB
- Stars: 442
- Watchers: 19
- Forks: 105
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- Library-of-Ethereum - EVM Tools - A collection of tools for working with the evm (EVM / Cairo)
- DeFi-Developer-Road-Map - EVM Tools
- On-Chain-Investigations-Tools-List - EVM Tools
README
# evm-tools
A collection of tools for working with the evm
Some of these tools (`evm`, `disasm`) are forked directly from
[go-ethereum](https://github.com/ethereum/go-ethereum),
though `evm` has been modified to support persistence.See the [analysis/guide.md](analysis/guide.md) for an extensive guide of the EVM using these tools.
# Install
Uses [`dep`](https://github.com/golang/dep) for dependencies and `make` to build
all tools:```
dep ensure
make
```See the [install instructions](INSTALL.md) for more details.