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