remix-project mirror
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
remix-project/libs/remix-debug/README.md

152 lines
5.5 KiB

## Remix Debug`
[![npm version](https://badge.fury.io/js/%40remix-project%2Fremix-debug.svg)](https://www.npmjs.com/package/@remix-project/remix-debug)
[![npm](https://img.shields.io/npm/dt/@remix-project/remix-debug.svg?label=Total%20Downloads)](https://www.npmjs.com/package/@remix-project/remix-debug)
[![npm](https://img.shields.io/npm/dw/@remix-project/remix-debug.svg)](https://www.npmjs.com/package/@remix-project/remix-debug)
[![GitHub](https://img.shields.io/github/license/mashape/apistatus.svg)](https://github.com/ethereum/remix-project/tree/master/libs/remix-debug)
[![contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)](https://github.com/ethereum/remix-project/issues)
7 years ago
`@remix-project/remix-debug` is a tool to debug Ethereum transactions on different Remix environments (VM, testnet etc.). It works underneath Remix IDE "DEBUGGER" plugin which is used to analyse step-to-step executioon of a transaction to debug it.
7 years ago
### Installation
`@remix-project/remix-debug` is an NPM package and can be installed using NPM as:
7 years ago
2 years ago
`yarn add @remix-project/remix-debug`
7 years ago
### How to use
7 years ago
`@remix-project/remix-debug` can be used as:
7 years ago
```ts
7 years ago
var Debugger = require('remix-debug').EthDebugger
var BreakpointManager = require('remix-debug').BreakpointManager
7 years ago
var debugger = new Debugger({
compilationResult: () => {
return compilationResult // that helps resolving source location
}
})
6 years ago
debugger.addProvider(web3, 'web3')
7 years ago
debugger.switchProvider('web3')
var breakPointManager = new remixCore.code.BreakpointManager(this.debugger, (sourceLocation) => {
// return offsetToLineColumn
})
debugger.setBreakpointManager(breakPointManager)
breakPointManager.add({fileName, row})
breakPointManager.add({fileName, row})
debugger.debug(<tx_hash>)
// this.traceManager.getCurrentCalledAddressAt
debugger.event.register('newTraceLoaded', () => {
// start doing basic stuff like retrieving step details
debugger.traceManager.getCallStackAt(34, (error, callstack) => {})
})
debugger.callTree.register('callTreeReady', () => {
// start doing more complex stuff like resolvng local variables
breakPointManager.jumpNextBreakpoint(true)
var storageView = debugger.storageViewAt(38, <contract address>,
storageView.storageSlot(0, (error, storage) => {})
storageView.storageRange(error, storage) => {}) // retrieve 0 => 1000 slots
debugger.extractStateAt(23, (error, state) => {
debugger.decodeStateAt(23, state, (error, decodedState) => {})
})
debugger.sourceLocationFromVMTraceIndex(<contract address>, 23, (error, location) => {
debugger.decodeLocalsAt(23, location, (error, decodedlocals) => {})
})
7 years ago
debugger.extractLocalsAt(23, (null, locals) => {})
7 years ago
})
7 years ago
```
6 years ago
It exports:
6 years ago
```javascript
{
init,
traceHelper,
sourceMappingDecoder,
EthDebugger,
TransactionDebugger,
BreakpointManager,
SolidityDecoder,
storage: {
StorageViewer: StorageViewer,
StorageResolver: StorageResolver
},
CmdLine
6 years ago
}
```
Some of the class details are as:
6 years ago
- - - -
6 years ago
**BreakpointManager**
6 years ago
`constructor({ traceManager, callTree, solidityProxy, locationToRowConverter })` : create new instance
6 years ago
`jumpNextBreakpoint(defaultToLimit)` : start looking for the next breakpoint
6 years ago
`jumpPreviousBreakpoint(defaultToLimit)` : start looking for the previous breakpoint
6 years ago
`jump(direction, defaultToLimit)` : start looking for the previous or next breakpoint
6 years ago
`hasBreakpointAtLine((fileIndex, line)` : check the given pair fileIndex/line against registered breakpoints
6 years ago
`hasBreakpoint()` : return true if current manager has breakpoint
6 years ago
`add(sourceLocation)` : add a new breakpoint to the manager
6 years ago
`remove(sourceLocation)` : remove a breakpoint from the manager
6 years ago
- - - -
**StorageViewer**
6 years ago
`constructor (_context, _storageResolver, _traceManager)` : create new instance
6 years ago
`storageRange(defaultToLimit)` : return the storage for the current context (address and vm trace index)
6 years ago
`storageSlot(defaultToLimit)` : return a slot value for the current context (address and vm trace index)
6 years ago
`isComplete(direction, defaultToLimit)` : return True if the storage at @arg address is complete
6 years ago
`initialMappingsLocation((fileIndex, line)` : return all the possible mappings locations for the current context (cached) do not return state changes during the current transaction
6 years ago
`mappingsLocation()` : return all the possible mappings locations for the current context (cached) and current mapping slot. returns state changes during the current transaction
6 years ago
`extractMappingsLocationChanges(sourceLocation)` : retrieve mapping location changes from the storage changes.
6 years ago
- - - -
**StorageResolver**
6 years ago
`constructor (options)` : create new instance
6 years ago
`storageRange(tx, stepIndex, address, callback)` : return the storage for the current context (address and vm trace index)
6 years ago
`initialPreimagesMappings(tx, stepIndex, address, callback)` : return a slot value for the current context (address and vm trace index)
6 years ago
`storageSlot(slot, tx, stepIndex, address, callback)` : return True if the storage at @arg address is complete
6 years ago
`isComplete(address)` : return all the possible mappings locations for the current context (cached) do not return state changes during the current transaction
6 years ago
### Contribute
6 years ago
Please feel free to open an issue or a pull request.
6 years ago
In case you want to add some code, do have a look to our contribution guidelnes [here](https://github.com/ethereum/remix-project/blob/master/CONTRIBUTING.md). Reach us on [Gitter](https://gitter.im/ethereum/remix) in case of any queries.
6 years ago
### License
MIT © 2018-21 Remix Team
6 years ago