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
ABIs with "Operation" functions that have no output ("outputs": []) do not show up in Operations tab. Possibly bug applies to only "nonpayable" stateMutability, but might include other states ("view" state shows the function, haven't checked others)
Workaround: Add "constant" : false to the ABI's functions that do not show up in "Operations" tab. JustSmartContracts will now show the operation in the Operations tab
ABIs with "Operation" functions that have no output (
"outputs": []
) do not show up in Operations tab. Possibly bug applies to only "nonpayable" stateMutability, but might include other states ("view" state shows the function, haven't checked others)Workaround: Add
"constant" : false
to the ABI's functions that do not show up in "Operations" tab. JustSmartContracts will now show the operation in the Operations tabThe "constant" key in the ABI spec is now deprecated and removed since Solidity v0.6. See https://docs.soliditylang.org/en/v0.5.14/abi-spec.html under "Warning" section.
The text was updated successfully, but these errors were encountered: