Codebase is not using SafeERC20
Description
The codebase is using transferFrom() and transfer() which revert for weird ERC20 tokens. It should not happen as the MetaZero token implements the standard correctly.
Recommendation
Use SafeERC20::safeTransferFrom() and SafeERC20::safeTransfer() instead.
Status
Acknowledged