Skip to content

Releases: Jon-Becker/heimdall-rs

0.3.0

Choose a tag to compare

@Jon-Becker Jon-Becker released this 02 Feb 00:45
2085eeb
  • Introduces the cfg module, which generates the control-flow graph for contract bytecode. [ #46 ]
  • Workspace improvements for contributors. [ #47 ]
  • Linting fixes & optimizations. [ #48, #50 ]
  • Remove regex backtracing for loop detection. Switch to symbolic stack loop detection (thanks plotchy), which both improves runtime and removes the branch limit of 1000. [ #51 ]
    • Fully resolves #30

    • Runtime reduced significantly.

      Benchmarks image

0.2.5

Choose a tag to compare

@Jon-Becker Jon-Becker released this 23 Jan 17:05
be45e91
  • Major decompilation optimizations, reducing runtime exponentially. [ #45 ]

0.2.4

Choose a tag to compare

@Jon-Becker Jon-Becker released this 19 Jan 18:15
ad93f27
  • Fixes a panic on unwrapping invalid conditional. [ #40 ]
  • Fixes event resolution. [ #43 ]

0.2.3

Choose a tag to compare

@Jon-Becker Jon-Becker released this 29 Dec 20:27
8157fae
  • Introduces the decompile library, which allows for use of heimdall-rs' decompile module in other rust projects. <@perama-v>
    • Documentation can be found in the wiki.

0.2.2

Choose a tag to compare

@Jon-Becker Jon-Becker released this 28 Dec 19:40
4e901eb
  • Fixes an issue with unwrapping a None event when analyzing traces. [ #33 ]

0.2.1

Choose a tag to compare

@Jon-Becker Jon-Becker released this 28 Dec 19:46
664dd40
  • Limit branches to 1000 branches. This is a patch for backtrack limit exceeded, as well as infinite branch recursion. [ #30 ]
    • Requires further patching, but for now this will ensure all contracts can be partially decompiled. Functions will stop tracing for new branches when reaching the limit.
  • Implement natspec comments for deubgging
    • Argument natspec include potential types, in order of confidence.

0.2.0

Choose a tag to compare

@Jon-Becker Jon-Becker released this 28 Dec 19:37
a6cb572
  • Decompiled solidity output is enabled through optional flag --include-sol <@Jon-Becker>
  • Multithreaded signature lookup <@Jon-Becker>
  • Efficient event signature lookup <@danyalprout>

0.1.8

Choose a tag to compare

@Jon-Becker Jon-Becker released this 15 Nov 21:49
e3bf939
  • Fixes dependency issues with unstable features on ethers

0.1.7

Choose a tag to compare

@Jon-Becker Jon-Becker released this 01 Nov 23:26
f0383ca
  • This release includes improvements for bifrost, including:
    • New -B / --binary flag to install heimdall from a precompiled binary attached to each release.

0.1.6

Choose a tag to compare

@Jon-Becker Jon-Becker released this 31 Oct 18:36
86bcde5
  • This release includes improvements for bifrost, including:
    • New -u / --update flag to update the bifrost binary
    • New -b / --bench flag to run benchmarks
    • New -t / --test flag to run tests
    • Enables LTO on installation for improved perfomance. Slows compile time.