Skip to content

Release v2.5.9

Compare
Choose a tag to compare
@naddison36 naddison36 released this 15 Aug 05:19
· 33 commits to master since this release
0091b4a

Feature

  • Added -hx, --hideExpand <variables> option to storage command to not expand specified arrays, structs, strings or bytes.

Examples

# Implementation with all variables expanded
sol2uml storage 0x8a3b6D3739461137d20825c36ED6016803d3104F

Generalized4626Strategy

# Implementation with no expended _reserved, ______gap or __gap variables
sol2uml storage 0x8a3b6D3739461137d20825c36ED6016803d3104F --hideExpand _reserved,______gap,__gap

Generalized4626Strategy

# Proxy with data, no expended _reserved, ______gap or __gap variables
sol2uml storage 0x8a3b6D3739461137d20825c36ED6016803d3104F \
  -hx _reserved,______gap,__gap \
  --data --storage 0x6b69B755C629590eD59618A2712d8a2957CA98FC

Generalized4626Strategy