ABI.TypeDecoder.decode_raw
You're seeing just the function
decode_raw
, go back to ABI.TypeDecoder module for more information.
Link to this function
decode_raw(binary_data, types)
Similar to ABI.TypeDecoder.decode/2
except accepts a list of types instead
of a function selector.
Examples
iex> ABI.TypeEncoder.encode([{"awesome", true}], [{:tuple, [:string, :bool]}])
...> |> ABI.TypeDecoder.decode_raw([{:tuple, [:string, :bool]}])
[{"awesome", true}]