Skip to content

replay a historical tx using a web3 provider as a data source

Notifications You must be signed in to change notification settings

kumavis/eth-tx-summary

Folders and files

NameName
Last commit message
Last commit date

Latest commit

2be5993 · Mar 26, 2018

History

56 Commits
Jun 29, 2016
Jun 5, 2016
Jun 5, 2016
Jun 5, 2016
Oct 25, 2017
Jan 18, 2017
Oct 27, 2017
Oct 25, 2017
Oct 27, 2017
Oct 25, 2017
Jan 26, 2017
Mar 26, 2018
Mar 26, 2018
Oct 27, 2017

Repository files navigation

eth-tx-summary

replay a historical tx using a web3 provider as a data source

generateTxSummary(provider, targetTx, function(err, summary){
  if (err) throw err

  summary.codePath.forEach(function(step, index){
    var stepNumber = index+1
    console.log(`[${stepNumber}] ${step.pc}: ${step.opcode.name}`)
  })
  console.log(summary.results)

})

outputs

[1] 0: PUSH1
[2] 2: PUSH1
[3] 4: MSTORE
[4] 5: CALLDATASIZE
[5] 6: ISZERO
[6] 7: PUSH2
[7] 10: JUMPI
[8] 11: PUSH1
[9] 13: PUSH1
[10] 15: EXP
[11] 16: PUSH1
[12] 18: CALLDATALOAD
[13] 19: DIV
...
[322] 3776: ISZERO
[323] 3777: PUSH2
[324] 3780: JUMPI
[325] 3781: PUSH2
[326] 3784: JUMP
{ gasUsed: <BN: 249f0>,
  createdAddress: undefined,
  vm: 
   { suicides: {},
     suicideTo: undefined,
     exception: 0,
     exceptionError: 'invalid JUMP',
     logs: [],
     gas: <BN: 1ef27>,
     return: <Buffer >,
     gasUsed: <BN: 1f598> },
  bloom: { bitvector: <Buffer 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... > },
  amountSpent: <BN: b30e8870ae000> }

About

replay a historical tx using a web3 provider as a data source

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published