Dink Doink is a community Meme token forked from Australian Safe Shepherd ($ASS). Dink Doink is blurring the lines between entertainment and crypto. The token was fair launched, and every trade contributes toward automatically generating liquidity locked inside of PancakeSwap's liquidity pool. Holders are rewarded by earning passive rewards through static reflection!
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Reentrancy in DinkDoinkToken._transfer(address,address,uint256) (#1009-1053):
External calls:
- swapAndLiquify(contractTokenBalance) (#1040)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1101-1108)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1087-1093)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1040)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1101-1108)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1052)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#965)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1143)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1134)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#881)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1135)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1154)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1145)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1155)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#883)
- _tokenTransfer(from,to,amount,takeFee) (#1052)
- _rTotal = _rTotal.sub(rFee) (#920)
- _tokenTransfer(from,to,amount,takeFee) (#1052)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#967)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1153)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#880)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1144)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#882)
Apply the check-effects-interactions pattern.
Additional information: link
DinkDoinkToken.addLiquidity(uint256,uint256) (#1096-1109) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1101-1108)
Ensure that all the return values of the function calls are used.
Additional information: link
DinkDoinkToken._approve(address,address,uint256).owner (#1001) shadows:
- Ownable.owner() (#433-435) (function)
Rename the local variables that shadow another component.
Additional information: link
DinkDoinkToken.setMaxTxPercent(uint256) (#905-909) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#906-908)
Emit an event for critical parameter changes.
Additional information: link
Reentrancy in DinkDoinkToken.transferFrom(address,address,uint256) (#806-810):
External calls:
- _transfer(sender,recipient,amount) (#807)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1101-1108)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1087-1093)
External calls sending eth:
- _transfer(sender,recipient,amount) (#807)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1101-1108)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#808)
- _allowances[owner][spender] = amount (#1005)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in DinkDoinkToken.transferFrom(address,address,uint256) (#806-810):
External calls:
- _transfer(sender,recipient,amount) (#807)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1101-1108)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1087-1093)
External calls sending eth:
- _transfer(sender,recipient,amount) (#807)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1101-1108)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1006)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#808)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#480-485) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#482)
Avoid relying on block.timestamp.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#378-399) uses assembly
- INLINE ASM (#391-394)
Do not use evm assembly.
Additional information: link
SafeMath.mod(uint256,uint256,string) (#246-249) is never used and should be removed
Remove unused functions.
Additional information: link
DinkDoinkToken._previousLiquidityFee (#728) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
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) (#378-399):
- (success,returndata) = target.call{value: weiValue}(data) (#382)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Variable DinkDoinkToken._maxTxAmount (#736) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#258)" inContext (#252-261)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable DinkDoinkToken.reflectionFromToken(uint256,bool).rTransferAmount (#845) is too similar to DinkDoinkToken._getTValues(uint256).tTransferAmount (#933)
Prevent variables from having similar names.
Additional information: link
DinkDoinkToken.slitherConstructorVariables() (#702-1161) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 3000000000000 * 10 ** 1 * 10 ** 9 (#737)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
DinkDoinkToken.numTokensSellToAddToLiquidity (#737) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
isExcludedFromFee(address) should be declared external:
- DinkDoinkToken.isExcludedFromFee(address) (#997-999)
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
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 Telegram link on the website
Unable to find token on CoinHunt
Additional information: link
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Token has no active CoinMarketCap listing / rank
Token has a considerable age, but social accounts / website are missing or have few users
Token has a considerable age, but average PancakeSwap 30d trading volume is low
Young tokens have high risks of price dump / death
Token has relatively low CoinGecko rank
Telegram account link seems to be invalid
Twitter account link seems to be invalid
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account