Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Contract locking ether found:
Contract DogeUnchained (#725-1506) has payable functions:
- DogeUnchained.receive() (#1118)
But does not have a function to withdraw the ether
Remove the payable attribute or add a withdraw function.
Additional information: link
DogeUnchained.setAutoSellAddress(address).autoSellAddress (#1085) lacks a zero-check on :
- _autoSellAddie = autoSellAddress (#1086)
Check that the address is not zero.
Additional information: link
DogeUnchained.addLiquidity(uint256,uint256) (#1414-1430) ignores return value by uniswapV2Router.addLiquidity(address(this),address(_liquidityPairAddie),tokenAmount,token2Amount,0,0,_liquidityAddress,block.timestamp) (#1420-1429)
Ensure that all the return values of the function calls are used.
Additional information: link
DogeUnchained._approve(address,address,uint256).owner (#1247) shadows:
- Ownable.owner() (#666-668) (function)
Rename the local variables that shadow another component.
Additional information: link
DogeUnchained.setNumTokensSellToAddToLiquidity(uint256) (#1100-1103) should emit an event for:
- numTokensSellToAddToLiquidity = _numTokensSellToAddToLiquidity (#1102)
Emit an event for critical parameter changes.
Additional information: link
Reentrancy in DogeUnchained.swapAndLiquify(uint256) (#1344-1384):
External calls:
- swapTokensForTokens(communityAmount,_communityAddress,_autoSellAddie) (#1351)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,to,block.timestamp) (#1406-1411)
- swapTokensForTokens(charityAmount,_charityAddress,_autoSellAddie) (#1361)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,to,block.timestamp) (#1406-1411)
State variables written after the call(s):
- _tokenTransfer(address(this),_burnAddress,burnAmount,false) (#1370)
- _burnFee = _previousburnFee (#1240)
- _burnFee = 0 (#1216)
- _tokenTransfer(address(this),_burnAddress,burnAmount,false) (#1370)
- _charityFee = _previousCharityFee (#1238)
- _charityFee = 0 (#1214)
- _tokenTransfer(address(this),_burnAddress,burnAmount,false) (#1370)
- _communityFee = _previousCommunityFee (#1239)
- _communityFee = 0 (#1215)
- _tokenTransfer(address(this),_burnAddress,burnAmount,false) (#1370)
- _liquidityFee = _previousLiquidityFee (#1237)
- _liquidityFee = 0 (#1213)
- _tokenTransfer(address(this),_burnAddress,burnAmount,false) (#1370)
- _previousCharityFee = _charityFee (#1208)
- _tokenTransfer(address(this),_burnAddress,burnAmount,false) (#1370)
- _previousCommunityFee = _communityFee (#1209)
- _tokenTransfer(address(this),_burnAddress,burnAmount,false) (#1370)
- _previousLiquidityFee = _liquidityFee (#1207)
- _tokenTransfer(address(this),_burnAddress,burnAmount,false) (#1370)
- _previousTaxFee = _taxFee (#1206)
- _tokenTransfer(address(this),_burnAddress,burnAmount,false) (#1370)
- _previousburnFee = _burnFee (#1210)
- _tokenTransfer(address(this),_burnAddress,burnAmount,false) (#1370)
- _rOwned[address(this)] = _rOwned[address(this)].add(rFeeToTake) (#1179)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1459)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1470)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1483)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1498)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1460)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1472)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1484)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1500)
- _tokenTransfer(address(this),_burnAddress,burnAmount,false) (#1370)
- _rTotal = _rTotal.sub(rFee).sub(rBurn) (#1121)
- _tokenTransfer(address(this),_burnAddress,burnAmount,false) (#1370)
- _tBurnTotal = _tBurnTotal.add(tBurn) (#1123)
- _tokenTransfer(address(this),_burnAddress,burnAmount,false) (#1370)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1122)
- _tokenTransfer(address(this),_burnAddress,burnAmount,false) (#1370)
- _tOwned[address(this)] = _tOwned[address(this)].add(tFeeToTake) (#1181)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1482)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1497)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1471)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1499)
- _tokenTransfer(address(this),_burnAddress,burnAmount,false) (#1370)
- _tTotal = _tTotal.sub(tBurn) (#1124)
- _tokenTransfer(address(this),_burnAddress,burnAmount,false) (#1370)
- _taxFee = _previousTaxFee (#1236)
- _taxFee = 0 (#1212)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in DogeUnchained.transferFrom(address,address,uint256) (#946-950):
External calls:
- _transfer(sender,recipient,amount) (#947)
- IERC20(_liquidityPairAddie).approve(address(uniswapV2Router),token2Amount) (#1417)
- uniswapV2Router.addLiquidity(address(this),address(_liquidityPairAddie),tokenAmount,token2Amount,0,0,_liquidityAddress,block.timestamp) (#1420-1429)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,to,block.timestamp) (#1406-1411)
- IForward(_swapForwardAddress).retrieve(_liquidityPairAddie) (#1379)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: amount exceeds allowance)) (#948)
- _allowances[owner][spender] = amount (#1251)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in DogeUnchained.transferFrom(address,address,uint256) (#946-950):
External calls:
- _transfer(sender,recipient,amount) (#947)
- IERC20(_liquidityPairAddie).approve(address(uniswapV2Router),token2Amount) (#1417)
- uniswapV2Router.addLiquidity(address(this),address(_liquidityPairAddie),tokenAmount,token2Amount,0,0,_liquidityAddress,block.timestamp) (#1420-1429)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,to,block.timestamp) (#1406-1411)
- IForward(_swapForwardAddress).retrieve(_liquidityPairAddie) (#1379)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1252)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: amount exceeds allowance)) (#948)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#713-718) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#715)
Avoid relying on block.timestamp.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#399-420) uses assembly
- INLINE ASM (#412-415)
Do not use evm assembly.
Additional information: link
SafeMath.mod(uint256,uint256,string) (#267-270) is never used and should be removed
Remove unused functions.
Additional information: link
DogeUnchained._previousCharityFee (#765) is set pre-construction with a non-constant function or state variable:
- _charityFee
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.
Additional information: link
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#399-420):
- (success,returndata) = target.call{value: weiValue}(data) (#403)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Variable DogeUnchained._maxTxAmount (#792) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#279)" inContext (#273-282)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable DogeUnchained._transferStandard(address,address,uint256).rTransferAmount (#1457) is too similar to DogeUnchained._getValues(uint256).tTransferAmount (#1131)
Prevent variables from having similar names.
Additional information: link
DogeUnchained.slitherConstructorVariables() (#725-1506) uses literals with too many digits:
- _burnAddress = 0x000000000000000000000000000000000000dEaD (#780)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
DogeUnchained._symbol (#745) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
triggerSwapAndLiquify(uint256) should be declared external:
- DogeUnchained.triggerSwapAndLiquify(uint256) (#1386-1395)
Use the external attribute for functions never called from the contract.
Additional information: link
Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.
Token is deployed only at one blockchain
Token has only one trading pair
Unable to find PancakeSwap trading pair to compute liquidity.
Unable to find PancakeSwap trading pair to compute volume.
Unable to find PancakeSwap trading pair to compute number of swaps.
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
Token was delisted (assigned to inactive / untracked listing) from 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 token/project description on the website or on BscScan, CoinHunt, CoinGecko, CoinMarketCap
Young tokens have high risks of price dump / death
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Telegram account link seems to be invalid
Twitter account link seems to be invalid
Unable to find Discord account