Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Contract ownership is not renounced (belongs to a wallet)
PIGHERO.startAirdrop(uint256,uint256,uint256,uint256) (#708-714) should emit an event for:
- aSBlock = _aSBlock (#709)
- aEBlock = _aEBlock (#710)
- aAmt = _aAmt (#711)
- aCap = _aCap (#712)
PIGHERO.startSale(uint256,uint256,uint256,uint256,uint256) (#715-722) should emit an event for:
- sSBlock = _sSBlock (#716)
- sEBlock = _sEBlock (#717)
- sChunk = _sChunk (#718)
- sPrice = _sPrice (#719)
- sCap = _sCap (#720)
Emit an event for critical parameter changes.
Additional information: link
PIGHERO.clear(uint256)._owner (#726) lacks a zero-check on :
- _owner.transfer(amount) (#727)
Check that the address is not zero.
Additional information: link
Different versions of Solidity is used:
- Version used: ['^0.8.0', '^0.8.4']
- ^0.8.4 (#9)
- ^0.8.0 (#88)
- ^0.8.0 (#117)
- ^0.8.0 (#144)
- ^0.8.0 (#450)
- ^0.8.0 (#492)
- ^0.8.0 (#584)
- ^0.8.0 (#652)
Use one Solidity version.
Additional information: link
Context._msgData() (#134-137) is never used and should be removed
Pausable._pause() (#562-565) is never used and should be removed
Pausable._unpause() (#574-577) is never used and should be removed
Remove unused functions.
Additional information: link
Pragma version^0.8.0 (#88) allows old versions
Pragma version^0.8.0 (#117) allows old versions
Pragma version^0.8.0 (#144) allows old versions
Pragma version^0.8.0 (#450) allows old versions
Pragma version^0.8.0 (#492) allows old versions
Pragma version^0.8.0 (#584) allows old versions
Pragma version^0.8.0 (#652) allows old versions
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
PIGHERO.clear(uint256)._owner (#726) shadows:
- Ownable._owner (#599) (state variable)
Rename the local variables that shadow another component.
Additional information: link
Parameter PIGHERO.getAirdrop(address)._refer (#674) is not in mixedCase
Parameter PIGHERO.tokenSale(address)._refer (#685) is not in mixedCase
Parameter PIGHERO.startAirdrop(uint256,uint256,uint256,uint256)._aSBlock (#708) is not in mixedCase
Parameter PIGHERO.startAirdrop(uint256,uint256,uint256,uint256)._aEBlock (#708) is not in mixedCase
Parameter PIGHERO.startAirdrop(uint256,uint256,uint256,uint256)._aAmt (#708) is not in mixedCase
Parameter PIGHERO.startAirdrop(uint256,uint256,uint256,uint256)._aCap (#708) is not in mixedCase
Parameter PIGHERO.startSale(uint256,uint256,uint256,uint256,uint256)._sSBlock (#715) is not in mixedCase
Parameter PIGHERO.startSale(uint256,uint256,uint256,uint256,uint256)._sEBlock (#715) is not in mixedCase
Parameter PIGHERO.startSale(uint256,uint256,uint256,uint256,uint256)._sChunk (#715) is not in mixedCase
Parameter PIGHERO.startSale(uint256,uint256,uint256,uint256,uint256)._sPrice (#715) is not in mixedCase
Parameter PIGHERO.startSale(uint256,uint256,uint256,uint256,uint256)._sCap (#715) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#135)" inContext (#129-138)
Remove redundant statements if they congest code but offer no value.
Additional information: link
PIGHERO.constructor() (#665-670) uses literals with too many digits:
- _mint(msg.sender,250000000000 * 10 ** decimals()) (#666)
PIGHERO.constructor() (#665-670) uses literals with too many digits:
- _mint(address(this),4750000000000 * 10 ** decimals()) (#667)
PIGHERO.constructor() (#665-670) uses literals with too many digits:
- startSale(block.number,999999999,0,3000000000 * 10 ** decimals(),2000000000000) (#668)
PIGHERO.constructor() (#665-670) uses literals with too many digits:
- startAirdrop(block.number,999999999,3000000 * 10 ** decimals(),2000000000000) (#669)
PIGHERO.getAirdrop(address) (#674-683) uses literals with too many digits:
- msg.sender != _refer && balanceOf(_refer) != 0 && _refer != 0x0000000000000000000000000000000000000000 (#678)
PIGHERO.tokenSale(address) (#685-699) uses literals with too many digits:
- msg.sender != _refer && balanceOf(_refer) != 0 && _refer != 0x0000000000000000000000000000000000000000 (#692)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
name() should be declared external:
- ERC20.name() (#200-202)
symbol() should be declared external:
- ERC20.symbol() (#208-210)
totalSupply() should be declared external:
- ERC20.totalSupply() (#232-234)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#251-254)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#270-273)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#288-296)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#310-313)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#329-335)
burn(uint256) should be declared external:
- ERC20Burnable.burn(uint256) (#465-467)
burnFrom(address,uint256) should be declared external:
- ERC20Burnable.burnFrom(address,uint256) (#480-485)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#634-637)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#643-647)
getAirdrop(address) should be declared external:
- PIGHERO.getAirdrop(address) (#674-683)
tokenSale(address) should be declared external:
- PIGHERO.tokenSale(address) (#685-699)
viewAirdrop() should be declared external:
- PIGHERO.viewAirdrop() (#701-703)
viewSale() should be declared external:
- PIGHERO.viewSale() (#704-706)
clear(uint256) should be declared external:
- PIGHERO.clear(uint256) (#725-728)
Use the external attribute for functions never called from the contract.
Additional information: link
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find token on CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
Unable to find token/project description on the website or on BscScan, CoinMarketCap
Unable to find token contract audit
Unable to find audit link on the website
Unable to find whitepaper link on the website
Unable to find token on CoinHunt
Additional information: link
Unable to find code repository for the project
Token is marked as scam (rug pull, honeypot, phishing, etc.)
Additional information: link
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Last post in Twitter was more than 180 days ago
Telegram account has relatively few subscribers
Twitter account has relatively few followers
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account
Twitter account has few posts