New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

remix-debugger

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

remix-debugger

Ethereum IDE and tools for the web

  • 0.1.9
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
12
decreased by-45.45%
Maintainers
1
Weekly downloads
 
Created
Source

remix-debugger

(Remix debugger has been deprecated and is not maintained anymore - the remix-debug module can be used to build your own debugger)

The Remix Debugger is a webapp to debug the Ethereum VM and transactions.

  • Installation
  • Development
  • First steps
  • Tests

Installation

Make sure Node is installed on your setup, and that a local geth/eth node is running.

git clone https://github.com/ethereum/remix
cd remix/remix-debugger
npm install

This will build the debugger. Start it by opening index.html in your browser.

Development

Run npm run start_dev to start a local webserver, accessible at http://127.0.0.1:8080. Your browser will reload when files are updated.

First steps

Once Remix is connected to a node, you will be able to debug transactions.

You can do that:

  • using a block number and a transaction index.
  • using a transaction hash.

After loading the transaction succeeded, the hash, from and to field will show up. The VM trace is then loaded.

The debugger itself contains several controls that allow stepping over the trace and seing the current state of a selected step:

Slider and Stepping action

The slider allows to move quickly from a state to another.

Stepping actions are:

  • Step Into Back
  • Step Over Back
  • Step Over Forward
  • Step Into Forward
  • Jump Next Call: this will select the next state that refers to a context changes - CALL, CALLCODE, DELEGATECALL, CREATE.
State Viewer

The upper right panel contains basic informations about the current step:

  • VMTraceStep: the index in the trace of the current step.
  • Step
  • Add memory
  • Gas: gas used by this step
  • Remaining gas: gas left
  • Loaded address: the current code loaded, refers to the executing code.

The other 6 panels describe the current selected state:

  • Instructions list: list of all the instruction that defines the current executing code.
  • Stack
  • Storage Changes
  • Memory
  • Call Data$
  • Call Stack

Tests

  • To run unit tests, run npm test.

  • For local headless browser tests:

    • To install selenium: npm run selenium-install
    • Every time you want to run local browser tests, run: npm run test-browser

FAQs

Package last updated on 12 Jun 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc