Unmarshal is a Decentralized network of blockchain data indexers and transforming tools to power DeFi applications on any chain
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
BEP20.constructor(string,string,uint8).name (#693) shadows:
- ERC20.name() (#331-333) (function)
BEP20.constructor(string,string,uint8).decimals (#695) shadows:
- ERC20.decimals() (#356-358) (function)
BEP20.constructor(string,string,uint8).symbol (#694) shadows:
- ERC20.symbol() (#339-341) (function)
Rename the local variables that shadow another component.
Additional information: link
Misc.isContract(address) (#666-675) uses assembly
- INLINE ASM (#673)
Do not use evm assembly.
Additional information: link
Different versions of Solidity are used:
- Version used: ['0.7.5', '>=0.6.0<0.8.0']
- >=0.6.0<0.8.0 (#5)
- >=0.6.0<0.8.0 (#31)
- >=0.6.0<0.8.0 (#110)
- >=0.6.0<0.8.0 (#271)
- >=0.6.0<0.8.0 (#578)
- 0.7.5 (#646)
- 0.7.5 (#684)
Use one Solidity version.
Additional information: link
Contract ownership is semi-renounced (passed to a contract)
Redundant expression "this (#23)" inContext (#17-26)
Remove redundant statements if they congest code but offer no value.
Additional information: link
SafeMath.mul(uint256,uint256) (#184-196) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#262-265) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#226-232) is never used and should be removed
Context._msgData() (#22-25) is never used and should be removed
SafeMath.mod(uint256,uint256) (#246-248) is never used and should be removed
SafeMath.div(uint256,uint256) (#210-212) is never used and should be removed
ERC20._beforeTokenTransfer(address,address,uint256) (#572) is never used and should be removed
Remove unused functions.
Additional information: link
Pragma version>=0.6.0<0.8.0 (#271) is too complex
Pragma version>=0.6.0<0.8.0 (#110) is too complex
Pragma version>=0.6.0<0.8.0 (#5) is too complex
Pragma version>=0.6.0<0.8.0 (#578) is too complex
Pragma version>=0.6.0<0.8.0 (#31) is too complex
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.
Additional information: link
Low level call in BEP20.transferAndCall(address,uint256,bytes) (#736-749):
- (success) = to.call(abi.encodeWithSelector(START_UNLOCK_FUNCTION,msg.sender,amount)) (#740)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#419-423)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#628-631)
decimals() should be declared external:
- ERC20.decimals() (#356-358)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#456-459)
symbol() should be declared external:
- ERC20.symbol() (#339-341)
balanceOf(address) should be declared external:
- ERC20.balanceOf(address) (#370-372)
owner() should be declared external:
- Ownable.owner() (#609-611)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#437-440)
burn(uint256) should be declared external:
- BEP20.burn(uint256) (#716-720)
mint(address,uint256) should be declared external:
- BEP20.mint(address,uint256) (#705-710)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#637-641)
name() should be declared external:
- ERC20.name() (#331-333)
totalSupply() should be declared external:
- ERC20.totalSupply() (#363-365)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#401-404)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#390-392)
Use the external attribute for functions never called from the contract.
Additional information: link
Twitter account link seems to be invalid
Unable to find Youtube account