Interprets a Uint8List as a signed integer and returns a BigInt. Assumes 256-bit numbers.
BigInt fromSigned(Uint8List signedInt) { return decodeBigInt(signedInt).toSigned(256); }