static fun decodeUnsignedBigIntegerList(source: Bytes, bitLength: Int): MutableList<BigInteger> (source)
Read a list of unsigned big integer values from the SSZ source.
source - the SSZ encoded bytes
bitLength - the bit length of the integers to read (a multiple of 8)
InvalidSSZTypeException - if the next SSZ value is not a list, or there are insufficient encoded bytes for the desired bit length of any value in the list
EndOfSSZException - if there are no more SSZ values to read
Return
a list of ints