You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A request that I think/hope would be pretty easy, but would make the decompiled code a lot more readable: inferring a use for each imported type + using the short name for types in argument names etc (e.g., can write f(s: String) instead of f(s: 0x1::string::String). The disassembler logic around module_aliases does something similar to this if it's helpful https://github.com/move-language/move-sui/blob/main/crates/move-disassembler/src/disassembler.rs
The text was updated successfully, but these errors were encountered:
A request that I think/hope would be pretty easy, but would make the decompiled code a lot more readable: inferring a
use
for each imported type + using the short name for types in argument names etc (e.g., can writef(s: String)
instead off(s: 0x1::string::String)
. The disassembler logic aroundmodule_aliases
does something similar to this if it's helpful https://github.com/move-language/move-sui/blob/main/crates/move-disassembler/src/disassembler.rsThe text was updated successfully, but these errors were encountered: