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
As in issue title I could not recover the function names of smart contracts written in Solidity 0.5.4
First I tried with my own complex smart contracts, but in all cases only one 'function' - 0x40 was recognised even if smart contract had multiple functions.
I went for a simpler contract
contract SimpleStore {
function set(uint _value) public {
value = _value;
}
function get() public view returns (uint) {
return value;
}
uint value;
}
As in issue title I could not recover the function names of smart contracts written in Solidity 0.5.4
First I tried with my own complex smart contracts, but in all cases only one 'function' - 0x40 was recognised even if smart contract had multiple functions.
I went for a simpler contract
Bytecode:
And the result was the same - functions
setandgetwere not recognised.I'm operating on OSX version of binary ninja.