0.1.11 • Published 3 years ago

bytecode-debugger v0.1.11

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

EVM Bytecode Debugger

This utility allows you to take bytecode and abi output from solc and step through the byte code.

Quick Start

# Download the sample contract from github
curl https://rawcdn.githack.com/statechannels/bytecode-debugger/836be299d2a9977fd78ca132dbb73a24090007cd/contracts/sample.sol -o ./sample.sol
# Build the bytecode and abi from the contract
solc  sample.sol --bin-runtime --abi -o .
# Debug the bytecode
npx bytecode-debugger -b ./Sample.bin-runtime -a ./Sample.abi

Simple demo