0.5.59 • Published 8 months ago

@remix-project/remix-debug v0.5.59

Weekly downloads
64
License
MIT
Repository
github
Last release
8 months ago

Remix Debug`

npm version npm npm GitHub contributions welcome

@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 execution of a transaction to debug it.

Installation

@remix-project/remix-debug is an NPM package and can be installed using NPM as:

yarn add @remix-project/remix-debug

How to use

@remix-project/remix-debug can be used as:

var Debugger = require('remix-debug').EthDebugger
var BreakpointManager = require('remix-debug').BreakpointManager

var debugger = new Debugger({
  compilationResult: () => {
    return compilationResult // that helps resolving source location
  }
})

debugger.addProvider(web3, 'web3')
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) => {})
  })
  
  debugger.extractLocalsAt(23, (null, locals) => {})
  
})

It exports:

{
  init,
  traceHelper,
  sourceMappingDecoder,
  EthDebugger,
  TransactionDebugger,
  BreakpointManager,
  SolidityDecoder,
  storage: {
    StorageViewer: StorageViewer,
    StorageResolver: StorageResolver
  },
  CmdLine
}

Some of the class details are as:


BreakpointManager

constructor({ traceManager, callTree, solidityProxy, locationToRowConverter }) : create new instance

jumpNextBreakpoint(defaultToLimit) : start looking for the next breakpoint

jumpPreviousBreakpoint(defaultToLimit) : start looking for the previous breakpoint

jump(direction, defaultToLimit) : start looking for the previous or next breakpoint

hasBreakpointAtLine((fileIndex, line) : check the given pair fileIndex/line against registered breakpoints

hasBreakpoint() : return true if current manager has breakpoint

add(sourceLocation) : add a new breakpoint to the manager

remove(sourceLocation) : remove a breakpoint from the manager


StorageViewer

constructor (_context, _storageResolver, _traceManager) : create new instance

storageRange(defaultToLimit) : return the storage for the current context (address and vm trace index)

storageSlot(defaultToLimit) : return a slot value for the current context (address and vm trace index)

isComplete(direction, defaultToLimit) : return True if the storage at @arg address is complete

initialMappingsLocation((fileIndex, line) : return all the possible mappings locations for the current context (cached) do not return state changes during the current transaction

mappingsLocation() : return all the possible mappings locations for the current context (cached) and current mapping slot. returns state changes during the current transaction

extractMappingsLocationChanges(sourceLocation) : retrieve mapping location changes from the storage changes.


StorageResolver

constructor (options) : create new instance

storageRange(tx, stepIndex, address, callback) : return the storage for the current context (address and vm trace index)

initialPreimagesMappings(tx, stepIndex, address, callback) : return a slot value for the current context (address and vm trace index)

storageSlot(slot, tx, stepIndex, address, callback) : return True if the storage at @arg address is complete

isComplete(address) : return all the possible mappings locations for the current context (cached) do not return state changes during the current transaction

Contribute

Please feel free to open an issue or a pull request.

In case you want to add some code, do have a look at our contribution guidelines here. Reach us on Gitter in case of any queries.

License

MIT © 2018-21 Remix Team

0.5.59

8 months ago

0.5.58

8 months ago

0.5.57

9 months ago

0.5.54

10 months ago

0.5.55

10 months ago

0.5.52

12 months ago

0.5.53

11 months ago

0.5.50

1 year ago

0.5.51

12 months ago

0.5.56

10 months ago

0.5.49

1 year ago

0.5.48

1 year ago

0.5.47

1 year ago

0.5.46

1 year ago

0.5.45

1 year ago

0.5.44

1 year ago

0.5.43

1 year ago

0.5.42

1 year ago

0.5.41

1 year ago

0.5.40

1 year ago

0.5.39

1 year ago

0.5.38

1 year ago

0.5.32

2 years ago

0.5.33

2 years ago

0.5.30

2 years ago

0.5.31

2 years ago

0.5.36

2 years ago

0.5.37

2 years ago

0.5.34

2 years ago

0.5.35

2 years ago

0.5.29

2 years ago

0.5.28

2 years ago

0.5.26

2 years ago

0.5.25-alpha.14

2 years ago

0.5.25-alpha.15

2 years ago

0.5.25-alpha.12

2 years ago

0.5.25-alpha.13

2 years ago

0.5.25-alpha.10

2 years ago

0.5.25-alpha.11

2 years ago

0.5.25-alpha.16

2 years ago

0.5.25-alpha.17

2 years ago

0.5.25-alpha.0

2 years ago

0.5.25-alpha.1

2 years ago

0.5.25-alpha.2

2 years ago

0.5.25

2 years ago

0.5.25-alpha.7

2 years ago

0.5.25-alpha.8

2 years ago

0.5.25-alpha.9

2 years ago

0.5.25-alpha.3

2 years ago

0.5.25-alpha.4

2 years ago

0.5.25-alpha.5

2 years ago

0.5.25-alpha.6

2 years ago

0.5.24

2 years ago

0.5.22

2 years ago

0.5.23

2 years ago

0.5.21

2 years ago

0.5.22-alpha.0

2 years ago

0.5.22-alpha.1

2 years ago

0.5.22-alpha.4

2 years ago

0.5.22-alpha.5

2 years ago

0.5.22-alpha.2

2 years ago

0.5.22-alpha.3

2 years ago

0.5.18

3 years ago

0.5.19

3 years ago

0.5.17

3 years ago

0.5.20

3 years ago

0.5.16

3 years ago

0.5.16-alpha.0

3 years ago

0.5.15

3 years ago

0.5.14

3 years ago

0.5.12

3 years ago

0.5.13

3 years ago

0.5.11

3 years ago

0.5.10

3 years ago

0.5.9

4 years ago

0.5.8

4 years ago

0.5.7

4 years ago

0.5.6

4 years ago

0.5.5

4 years ago

0.5.4

4 years ago

0.5.3

4 years ago

0.5.2

4 years ago

0.5.1

4 years ago

0.5.0

4 years ago

0.4.10

4 years ago

0.4.9

4 years ago

0.4.8

5 years ago

0.4.7

5 years ago

0.4.6

5 years ago