Skip to content

Instantly share code, notes, and snippets.

@yondonfu
Created April 20, 2018 14:54
Show Gist options
  • Save yondonfu/4ae24fcbf29d6657f6b01867eeae08ad to your computer and use it in GitHub Desktop.
Save yondonfu/4ae24fcbf29d6657f6b01867eeae08ad to your computer and use it in GitHub Desktop.
const abiDecoder = require("abi-decoder")
const ABI = require("./JobsManager.json")
const main = async data => {
abiDecoder.addABI(ABI)
const decoded = abiDecoder.decodeMethod(data)
console.log(decoded)
}
main(process.argv[2])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment