pub fn decode_sequence<T: SolParamsDecode>(data: &[u8]) -> Result<T, Error>
Expand description
Solidity ABI decode the given data as a parameter sequence.
ยงNote
T
must be a tuple type where each member implementsSolDecode
.- See notes for
encode_sequence
for the difference between this function andSolDecode::decode
for the given tuple.