Solidity-RLP
Solidity-RLP copied to clipboard
A solidity library for Ethereum's RLP decoding
Results
3
Solidity-RLP issues
Sort by
recently updated
recently updated
newest added
Is there a technical limitation that prevents this library from supporting Solidity 0.8.0?
The following code ```solidity bytes memory data = hex"c0c000880000000000000000"; RLPReader.RLPItem memory RLPData = RLPReader.toRlpItem(data); RLPReader.RLPItem[] memory arguments = RLPReader.toList(RLPData); ``` Does not revert where it should because this is not...