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
I've been trying to use these tools to decompile smart contracts for Elrond blockchain network.
I'm getting pretty good results but I was wondering if some options can be sent to wasm-dis or wasm2js so that function names are replaced with actual names.
I get like function $23() and so on.
But somewhere in the file there is a mapping structure like this:
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi,
I've been trying to use these tools to decompile smart contracts for Elrond blockchain network.
I'm getting pretty good results but I was wondering if some options can be sent to wasm-dis or wasm2js so that function names are replaced with actual names.
I get like function $23() and so on.
But somewhere in the file there is a mapping structure like this:
return {
"memory": Object.create(Object.prototype, {
"grow": {
"value": __wasm_memory_grow
},
"buffer": {
"get": function () {
return buffer;
}
}
}),
"init": $23,
"getLockedEgldBalance": $24,
"getWrappedEgldTokenId": $25,
"unwrapEgld": $26,
"wrapEgld": $31,
"callBack": $33,
"__data_end": global$1,
"__heap_base": global$2
};
}
Beta Was this translation helpful? Give feedback.
All reactions