ABI.FunctionSelector.decode_type
You're seeing just the function
decode_type
, go back to ABI.FunctionSelector module for more information.
Link to this function
decode_type(single_type)
Decodes the given type-string as a single type.
Examples
iex> ABI.FunctionSelector.decode_type("uint256")
{:uint, 256}
iex> ABI.FunctionSelector.decode_type("(bool,address)")
{:tuple, [:bool, :address]}
iex> ABI.FunctionSelector.decode_type("address[][3]")
{:array, {:array, :address}, 3}