Several tokens incorrectly return a uint256. If this is the case, ensure the value returned is below 255. (See here)
- ERC20 decimals
- Decimals in Tokne Typically 18
- Return uint8
- uint256 -> Incorrect
- Return uint256 -> Check Value <= 255
Several tokens incorrectly return a uint256. If this is the case, ensure the value returned is below 255. (See here)