ABI Type Check
ABI type check feature warns you if any non-allowed data types are used as an input into a function, or a return value from a function. Certain types are blocked from being called from outside the contract to increase the security and consistency of the network.
Return Type Error
Only specific variable types can be used as return data from a public
function. The following function will cause the plugin to show an error:
Argument Type Error
Only specific variable types can be used as argument data from a public
function. The following function will cause the plugin to show an error:
Private Functions
Restricted variable types (those not listed in the Variable Types section) can be used freely between private
functions, and can be fed into public
functions.