DogeMania aims to make a big DAO community of all crypto-doge-lovers.
We are very impressed by movements of different Doge communities and want to help them all by uniting at the craziest event of finance world — DOGECON!
🐕DOGECON🐕
The crypto-DOGE show. The main goal is to unite Dogecoin and Doge-like tokens communities and developers in one big and united community that will blow up the bankers mind and banking system at all!
We want to build many useful tools for the communities and developers of Doge-like token and Dogecoin itself.
Our Toolsverse:
⚙️🔒Locker - the first developer tool is the free-of-charge locker of any tokens.
-
⚙️🎭NFT Meme Creation Tool - this tool will help to create a good DOGE meme and mint it in NFT!
-
⚙️🌉BRIDOGE - any Doge-like token will have ability to become multi-chain token.
-
⚙️🐕DAO Charity Wallet - the community of token hodlers will become a part of our DAO and will gain ability to suggest and vote for any charity transfer.
♻️♻️♻️♻️♻️♻️♻️♻️♻️♻️♻️♻️♻️♻️♻️
But that’s not all. We’ll build much more different useful tools for Doge communities and developers. In future, when our DAO will be strong enough, we are planning to hire more developers to make this process faster.
DogeManiaToken.swapAndLiquify(uint256) (#585-598) sends eth to arbitrary user
Dangerous calls:
- marketingAddress.transfer(initialBalance) (#590)
DogeManiaToken.addLiquidity(uint256,uint256) (#640-651) sends eth to arbitrary user
Dangerous calls:
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#643-650)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in DogeManiaToken._transfer(address,address,uint256) (#564-583):
External calls:
- swapAndLiquify(contractTokenBalance) (#579)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#643-650)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#607-613)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#579)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#643-650)
- marketingAddress.transfer(initialBalance) (#590)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#582)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#532)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#681)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#682)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#690)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#701)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#711)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#692)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#702)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#713)
- _tokenTransfer(from,to,amount,takeFee) (#582)
- _rTotal = _rTotal.sub(rFee) (#486)
- _tokenTransfer(from,to,amount,takeFee) (#582)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#534)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#700)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#710)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#691)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#712)
Apply the check-effects-interactions pattern.
Additional information: link
DogeManiaToken.lockTokens(address,uint256,uint256) (#740-768) ignores return value by IBEP20(tokenAddress).transferFrom(msg.sender,lockerUnitAddr,amount) (#759)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
Combination 2: Unchecked transfer + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.
Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.
Combination 1: Reentrancy vulnerabilities + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.
Reentrancy in DogeManiaToken.lockTokens(address,uint256,uint256) (#740-768):
External calls:
- IBEP20(tokenAddress).transferFrom(msg.sender,lockerUnitAddr,amount) (#759)
State variables written after the call(s):
- isExcludedFromFee[lockerUnitAddr] = true (#762)
- isExcludedFromFee[msg.sender] = false (#764)
Reentrancy in DogeManiaToken.unlockTokens(address) (#770-786):
External calls:
- LockerUnit(_lockerUnitAddr).withdraw(lockerUnitsTokens[_lockerUnitAddr],msg.sender) (#779)
State variables written after the call(s):
- isExcludedFromFee[msg.sender] = false (#781)
- delete lockerUnitsTimer[msg.sender][_lockerUnitAddr] (#784)
- delete lockerUnitsTokens[_lockerUnitAddr] (#785)
Apply the check-effects-interactions pattern.
Additional information: link
DogeManiaToken._getValues(uint256).rFees (#491) is a local variable never initialized
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.
Additional information: link
DogeManiaToken.addLiquidity(uint256,uint256) (#640-651) ignores return value by pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#643-650)
DogeManiaToken.buybackDogeManiaForToken(address) (#719-734) ignores return value by IBEP20(token).approve(address(pancakeswapV2Router),IBEP20(token).balanceOf(address(this))) (#726)
Ensure that all the return values of the function calls are used.
Additional information: link
DogeManiaToken.allowance(address,address).owner (#407) shadows:
- Ownable.owner() (#226-228) (function)
DogeManiaToken._approve(address,address,uint256).owner (#556) shadows:
- Ownable.owner() (#226-228) (function)
Rename the local variables that shadow another component.
Additional information: link
Ownable.constructor().msgSender (#221) lacks a zero-check on :
- _owner = msgSender (#222)
DogeManiaToken.constructor(address,address,address,string,string,string,string)._marketingAddress (#373) lacks a zero-check on :
- marketingAddress = address(_marketingAddress) (#377)
DogeManiaToken.constructor(address,address,address,string,string,string,string)._charityWallet (#373) lacks a zero-check on :
- charityWallet = address(_charityWallet) (#378)
DogeManiaToken.setMarketingAddress(address)._marketingAddress (#616) lacks a zero-check on :
- marketingAddress = address(_marketingAddress) (#617)
DogeManiaToken.setCharityWallet(address)._charityWallet (#620) lacks a zero-check on :
- charityWallet = address(_charityWallet) (#621)
Check that the address is not zero.
Additional information: link
Reentrancy in DogeManiaToken._transfer(address,address,uint256) (#564-583):
External calls:
- swapAndLiquify(contractTokenBalance) (#579)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#643-650)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#607-613)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#579)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#643-650)
- marketingAddress.transfer(initialBalance) (#590)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#582)
- Fees._taxFee = 5 (#552)
- Fees._liquidityFee = 3 (#553)
- Fees._taxFee = 0 (#547)
- Fees._liquidityFee = 0 (#548)
- _tokenTransfer(from,to,amount,takeFee) (#582)
- _tFeeTotal = _tFeeTotal.add(tFee) (#487)
Reentrancy in DogeManiaToken.constructor(address,address,address,string,string,string,string) (#373-391):
External calls:
- pancakeswapV2Pair = IPancakeswapV2Factory(_pancakeswapV2Router.factory()).createPair(address(this),_pancakeswapV2Router.WETH()) (#380)
State variables written after the call(s):
- Instagram = _instagram (#386)
- Telegram = _telegram (#384)
- Twitter = _twitter (#385)
- WebSite = _webSite (#383)
- isExcludedFromFee[owner()] = true (#387)
- isExcludedFromFee[address(this)] = true (#388)
- isExcludedFromReward[deadAddress] = true (#389)
- pancakeswapV2Router = _pancakeswapV2Router (#382)
Reentrancy in DogeManiaToken.lockTokens(address,uint256,uint256) (#740-768):
External calls:
- IBEP20(tokenAddress).transferFrom(msg.sender,lockerUnitAddr,amount) (#759)
State variables written after the call(s):
- lockerUnitsTimer[msg.sender][lockerUnitAddr] = block.timestamp + lockTime (#760)
- lockerUnitsTokens[lockerUnitAddr] = tokenAddress (#761)
Reentrancy in DogeManiaToken.swapAndLiquify(uint256) (#585-598):
External calls:
- swapTokensForEth(half) (#593)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#607-613)
- addLiquidity(otherHalf,newBalance) (#595)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#643-650)
External calls sending eth:
- marketingAddress.transfer(initialBalance) (#590)
- addLiquidity(otherHalf,newBalance) (#595)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#643-650)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#595)
- _allowances[owner][spender] = amount (#560)
Reentrancy in DogeManiaToken.transferFrom(address,address,uint256) (#416-421):
External calls:
- _transfer(sender,recipient,amount) (#417)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#643-650)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#607-613)
External calls sending eth:
- _transfer(sender,recipient,amount) (#417)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#643-650)
- marketingAddress.transfer(initialBalance) (#590)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#418)
- _allowances[owner][spender] = amount (#560)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in DogeManiaToken._transfer(address,address,uint256) (#564-583):
External calls:
- swapAndLiquify(contractTokenBalance) (#579)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#643-650)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#607-613)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#579)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#643-650)
- marketingAddress.transfer(initialBalance) (#590)
Event emitted after the call(s):
- Burn(sender,amount.mul(2).div(100)) (#659)
- _tokenTransfer(from,to,amount,takeFee) (#582)
- Transfer(sender,recipient,tTransferAmount) (#685)
- _tokenTransfer(from,to,amount,takeFee) (#582)
- Transfer(sender,recipient,tTransferAmount) (#705)
- _tokenTransfer(from,to,amount,takeFee) (#582)
- Transfer(sender,recipient,tTransferAmount) (#695)
- _tokenTransfer(from,to,amount,takeFee) (#582)
- Transfer(sender,recipient,tTransferAmount) (#716)
- _tokenTransfer(from,to,amount,takeFee) (#582)
Reentrancy in DogeManiaToken.constructor(address,address,address,string,string,string,string) (#373-391):
External calls:
- pancakeswapV2Pair = IPancakeswapV2Factory(_pancakeswapV2Router.factory()).createPair(address(this),_pancakeswapV2Router.WETH()) (#380)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#390)
Reentrancy in DogeManiaToken.lockTokens(address,uint256,uint256) (#740-768):
External calls:
- IBEP20(tokenAddress).transferFrom(msg.sender,lockerUnitAddr,amount) (#759)
Event emitted after the call(s):
- NewLockDeployed(lockerUnitAddr,tokenAddress,msg.sender,lockerUnitsTimer[msg.sender][lockerUnitAddr],amount) (#766)
Reentrancy in DogeManiaToken.swapAndLiquify(uint256) (#585-598):
External calls:
- swapTokensForEth(half) (#593)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#607-613)
- addLiquidity(otherHalf,newBalance) (#595)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#643-650)
External calls sending eth:
- marketingAddress.transfer(initialBalance) (#590)
- addLiquidity(otherHalf,newBalance) (#595)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#643-650)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#561)
- addLiquidity(otherHalf,newBalance) (#595)
- SwapAndLiquify(half,newBalance,otherHalf) (#597)
Reentrancy in DogeManiaToken.transferFrom(address,address,uint256) (#416-421):
External calls:
- _transfer(sender,recipient,amount) (#417)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#643-650)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#607-613)
External calls sending eth:
- _transfer(sender,recipient,amount) (#417)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#643-650)
- marketingAddress.transfer(initialBalance) (#590)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#561)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#418)
Reentrancy in DogeManiaToken.unlockTokens(address) (#770-786):
External calls:
- LockerUnit(_lockerUnitAddr).withdraw(lockerUnitsTokens[_lockerUnitAddr],msg.sender) (#779)
Event emitted after the call(s):
- SuccessfullUnlock(_lockerUnitAddr,lockerUnitsTokens[_lockerUnitAddr]) (#783)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#257-262) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,It's too early to unlock) (#259)
DogeManiaToken.unlockTokens(address) (#770-786) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(lockerUnitsTimer[msg.sender][_lockerUnitAddr] <= block.timestamp,Too early to withdraw) (#772)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#159-168) uses assembly
- INLINE ASM (#166)
Address._functionCallWithValue(address,bytes,uint256,string) (#193-210) uses assembly
- INLINE ASM (#202-205)
DogeManiaToken.lockTokens(address,uint256,uint256) (#740-768) uses assembly
- INLINE ASM (#753-758)
Do not use evm assembly.
Additional information: link
DogeManiaToken.includeInReward(address) (#462-473) has costly operations inside a loop:
- _excluded.pop() (#469)
Use a local variable to hold the loop computation result.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#193-210) is never used and should be removed
Address.functionCall(address,bytes) (#176-178) is never used and should be removed
Address.functionCall(address,bytes,string) (#180-182) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#184-186) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#188-191) is never used and should be removed
Address.isContract(address) (#159-168) is never used and should be removed
Address.sendValue(address,uint256) (#170-174) is never used and should be removed
Context._msgData() (#151-154) is never used and should be removed
SafeMath.mod(uint256,uint256) (#136-138) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#140-143) is never used and should be removed
Remove unused functions.
Additional information: link
Pragma version^0.8.10 (#72) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.10 is not recommended for deployment
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 Address.sendValue(address,uint256) (#170-174):
- (success) = recipient.call{value: amount}() (#172)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#193-210):
- (success,returndata) = target.call{value: weiValue}(data) (#197)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IPancakeswapV2Router01.WETH() (#272) is not in mixedCase
Parameter DogeManiaToken.calculateTaxFee(uint256)._amount (#537) is not in mixedCase
Parameter DogeManiaToken.calculateLiquidityFee(uint256)._amount (#541) is not in mixedCase
Parameter DogeManiaToken.setMarketingAddress(address)._marketingAddress (#616) is not in mixedCase
Parameter DogeManiaToken.setCharityWallet(address)._charityWallet (#620) is not in mixedCase
Parameter DogeManiaToken.setWebSite(string)._webSite (#624) is not in mixedCase
Parameter DogeManiaToken.setTelegram(string)._telegram (#628) is not in mixedCase
Parameter DogeManiaToken.setTwitter(string)._twitter (#632) is not in mixedCase
Parameter DogeManiaToken.setInstagram(string)._instagram (#636) is not in mixedCase
Parameter DogeManiaToken.updateLockerUnit(bytes)._lockerUnitCode (#736) is not in mixedCase
Parameter DogeManiaToken.unlockTokens(address)._lockerUnitAddr (#770) is not in mixedCase
Variable DogeManiaToken.WebSite (#312) is not in mixedCase
Variable DogeManiaToken.Telegram (#313) is not in mixedCase
Variable DogeManiaToken.Twitter (#314) is not in mixedCase
Variable DogeManiaToken.Instagram (#315) is not in mixedCase
Constant DogeManiaToken._tTotal (#332) is not in UPPER_CASE_WITH_UNDERSCORES
Constant DogeManiaToken.numTokensSellToAddToLiquidity (#333) is not in UPPER_CASE_WITH_UNDERSCORES
Variable DogeManiaToken.Fees (#342) is not in mixedCase
Constant DogeManiaToken.deadAddress (#352) is not in UPPER_CASE_WITH_UNDERSCORES
Variable DogeManiaToken.LockerUnitCode (#356) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#152)" inContext (#146-155)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in DogeManiaToken._transfer(address,address,uint256) (#564-583):
External calls:
- swapAndLiquify(contractTokenBalance) (#579)
- marketingAddress.transfer(initialBalance) (#590)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#579)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#643-650)
- marketingAddress.transfer(initialBalance) (#590)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#582)
- Fees._taxFee = 5 (#552)
- Fees._liquidityFee = 3 (#553)
- Fees._taxFee = 0 (#547)
- Fees._liquidityFee = 0 (#548)
- _tokenTransfer(from,to,amount,takeFee) (#582)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#532)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#681)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#682)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#690)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#701)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#711)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#692)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#702)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#713)
- _tokenTransfer(from,to,amount,takeFee) (#582)
- _rTotal = _rTotal.sub(rFee) (#486)
- _tokenTransfer(from,to,amount,takeFee) (#582)
- _tFeeTotal = _tFeeTotal.add(tFee) (#487)
- _tokenTransfer(from,to,amount,takeFee) (#582)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#534)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#700)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#710)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#691)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#712)
Event emitted after the call(s):
- Burn(sender,amount.mul(2).div(100)) (#659)
- _tokenTransfer(from,to,amount,takeFee) (#582)
- Transfer(sender,recipient,tTransferAmount) (#685)
- _tokenTransfer(from,to,amount,takeFee) (#582)
- Transfer(sender,recipient,tTransferAmount) (#695)
- _tokenTransfer(from,to,amount,takeFee) (#582)
- Transfer(sender,recipient,tTransferAmount) (#705)
- _tokenTransfer(from,to,amount,takeFee) (#582)
- Transfer(sender,recipient,tTransferAmount) (#716)
- _tokenTransfer(from,to,amount,takeFee) (#582)
Reentrancy in DogeManiaToken.swapAndLiquify(uint256) (#585-598):
External calls:
- marketingAddress.transfer(initialBalance) (#590)
State variables written after the call(s):
- swapTokensForEth(half) (#593)
- _allowances[owner][spender] = amount (#560)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#561)
- swapTokensForEth(half) (#593)
Reentrancy in DogeManiaToken.swapAndLiquify(uint256) (#585-598):
External calls:
- marketingAddress.transfer(initialBalance) (#590)
External calls sending eth:
- marketingAddress.transfer(initialBalance) (#590)
- addLiquidity(otherHalf,newBalance) (#595)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#643-650)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#595)
- _allowances[owner][spender] = amount (#560)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#561)
- addLiquidity(otherHalf,newBalance) (#595)
- SwapAndLiquify(half,newBalance,otherHalf) (#597)
Reentrancy in DogeManiaToken.transferFrom(address,address,uint256) (#416-421):
External calls:
- _transfer(sender,recipient,amount) (#417)
- marketingAddress.transfer(initialBalance) (#590)
External calls sending eth:
- _transfer(sender,recipient,amount) (#417)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#643-650)
- marketingAddress.transfer(initialBalance) (#590)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#418)
- _allowances[owner][spender] = amount (#560)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#561)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#418)
Apply the check-effects-interactions pattern.
Additional information: link
Variable DogeManiaToken._transferBothExcluded(address,address,uint256).rTransferAmount (#709) is too similar to DogeManiaToken._transferToExcluded(address,address,uint256).tTransferAmount (#689)
Variable DogeManiaToken._transferStandard(address,address,uint256).rTransferAmount (#680) is too similar to DogeManiaToken._transferFromExcluded(address,address,uint256).tTransferAmount (#699)
Variable DogeManiaToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#508) is too similar to DogeManiaToken._transferFromExcluded(address,address,uint256).tTransferAmount (#699)
Variable DogeManiaToken._transferStandard(address,address,uint256).rTransferAmount (#680) is too similar to DogeManiaToken._transferBothExcluded(address,address,uint256).tTransferAmount (#709)
Variable DogeManiaToken._transferToExcluded(address,address,uint256).rTransferAmount (#689) is too similar to DogeManiaToken._transferFromExcluded(address,address,uint256).tTransferAmount (#699)
Variable DogeManiaToken._transferStandard(address,address,uint256).rTransferAmount (#680) is too similar to DogeManiaToken._getTValues(uint256).tTransferAmount (#500)
Variable DogeManiaToken._transferFromExcluded(address,address,uint256).rTransferAmount (#699) is too similar to DogeManiaToken._transferFromExcluded(address,address,uint256).tTransferAmount (#699)
Variable DogeManiaToken._transferStandard(address,address,uint256).rTransferAmount (#680) is too similar to DogeManiaToken._transferToExcluded(address,address,uint256).tTransferAmount (#689)
Variable DogeManiaToken._transferStandard(address,address,uint256).rTransferAmount (#680) is too similar to DogeManiaToken._getValues(uint256).tTransferAmount (#492)
Variable DogeManiaToken._transferBothExcluded(address,address,uint256).rTransferAmount (#709) is too similar to DogeManiaToken._transferFromExcluded(address,address,uint256).tTransferAmount (#699)
Variable DogeManiaToken._transferToExcluded(address,address,uint256).rTransferAmount (#689) is too similar to DogeManiaToken._transferToExcluded(address,address,uint256).tTransferAmount (#689)
Variable DogeManiaToken._transferStandard(address,address,uint256).rTransferAmount (#680) is too similar to DogeManiaToken._transferStandard(address,address,uint256).tTransferAmount (#680)
Variable DogeManiaToken._transferBothExcluded(address,address,uint256).rTransferAmount (#709) is too similar to DogeManiaToken._transferBothExcluded(address,address,uint256).tTransferAmount (#709)
Variable DogeManiaToken.reflectionFromToken(uint256,bool).rTransferAmount (#439) is too similar to DogeManiaToken._transferFromExcluded(address,address,uint256).tTransferAmount (#699)
Variable DogeManiaToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#508) is too similar to DogeManiaToken._transferStandard(address,address,uint256).tTransferAmount (#680)
Variable DogeManiaToken._transferToExcluded(address,address,uint256).rTransferAmount (#689) is too similar to DogeManiaToken._getTValues(uint256).tTransferAmount (#500)
Variable DogeManiaToken._transferToExcluded(address,address,uint256).rTransferAmount (#689) is too similar to DogeManiaToken._getValues(uint256).tTransferAmount (#492)
Variable DogeManiaToken._transferToExcluded(address,address,uint256).rTransferAmount (#689) is too similar to DogeManiaToken._transferBothExcluded(address,address,uint256).tTransferAmount (#709)
Variable DogeManiaToken._transferFromExcluded(address,address,uint256).rTransferAmount (#699) is too similar to DogeManiaToken._transferToExcluded(address,address,uint256).tTransferAmount (#689)
Variable DogeManiaToken.reflectionFromToken(uint256,bool).rTransferAmount (#439) is too similar to DogeManiaToken._transferToExcluded(address,address,uint256).tTransferAmount (#689)
Variable DogeManiaToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#508) is too similar to DogeManiaToken._getTValues(uint256).tTransferAmount (#500)
Variable DogeManiaToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#508) is too similar to DogeManiaToken._getValues(uint256).tTransferAmount (#492)
Variable DogeManiaToken._transferFromExcluded(address,address,uint256).rTransferAmount (#699) is too similar to DogeManiaToken._transferStandard(address,address,uint256).tTransferAmount (#680)
Variable DogeManiaToken.reflectionFromToken(uint256,bool).rTransferAmount (#439) is too similar to DogeManiaToken._transferStandard(address,address,uint256).tTransferAmount (#680)
Variable DogeManiaToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#508) is too similar to DogeManiaToken._transferBothExcluded(address,address,uint256).tTransferAmount (#709)
Variable DogeManiaToken._transferBothExcluded(address,address,uint256).rTransferAmount (#709) is too similar to DogeManiaToken._transferStandard(address,address,uint256).tTransferAmount (#680)
Variable DogeManiaToken._transferFromExcluded(address,address,uint256).rTransferAmount (#699) is too similar to DogeManiaToken._getTValues(uint256).tTransferAmount (#500)
Variable DogeManiaToken._transferFromExcluded(address,address,uint256).rTransferAmount (#699) is too similar to DogeManiaToken._getValues(uint256).tTransferAmount (#492)
Variable DogeManiaToken.reflectionFromToken(uint256,bool).rTransferAmount (#439) is too similar to DogeManiaToken._getTValues(uint256).tTransferAmount (#500)
Variable DogeManiaToken.reflectionFromToken(uint256,bool).rTransferAmount (#439) is too similar to DogeManiaToken._getValues(uint256).tTransferAmount (#492)
Variable DogeManiaToken._transferFromExcluded(address,address,uint256).rTransferAmount (#699) is too similar to DogeManiaToken._transferBothExcluded(address,address,uint256).tTransferAmount (#709)
Variable DogeManiaToken._transferToExcluded(address,address,uint256).rTransferAmount (#689) is too similar to DogeManiaToken._transferStandard(address,address,uint256).tTransferAmount (#680)
Variable DogeManiaToken.reflectionFromToken(uint256,bool).rTransferAmount (#439) is too similar to DogeManiaToken._transferBothExcluded(address,address,uint256).tTransferAmount (#709)
Variable DogeManiaToken._transferBothExcluded(address,address,uint256).rTransferAmount (#709) is too similar to DogeManiaToken._getTValues(uint256).tTransferAmount (#500)
Variable DogeManiaToken._transferBothExcluded(address,address,uint256).rTransferAmount (#709) is too similar to DogeManiaToken._getValues(uint256).tTransferAmount (#492)
Variable DogeManiaToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#508) is too similar to DogeManiaToken._transferToExcluded(address,address,uint256).tTransferAmount (#689)
Prevent variables from having similar names.
Additional information: link
DogeManiaToken.slitherConstructorConstantVariables() (#309-788) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#352)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#235-238)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#240-244)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#246-248)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#250-255)
unlock() should be declared external:
- Ownable.unlock() (#257-262)
totalSupply() should be declared external:
- DogeManiaToken.totalSupply() (#393-395)
transfer(address,uint256) should be declared external:
- DogeManiaToken.transfer(address,uint256) (#402-405)
allowance(address,address) should be declared external:
- DogeManiaToken.allowance(address,address) (#407-409)
approve(address,uint256) should be declared external:
- DogeManiaToken.approve(address,uint256) (#411-414)
transferFrom(address,address,uint256) should be declared external:
- DogeManiaToken.transferFrom(address,address,uint256) (#416-421)
increaseAllowance(address,uint256) should be declared external:
- DogeManiaToken.increaseAllowance(address,uint256) (#423-426)
decreaseAllowance(address,uint256) should be declared external:
- DogeManiaToken.decreaseAllowance(address,uint256) (#428-431)
totalFees() should be declared external:
- DogeManiaToken.totalFees() (#433-435)
reflectionFromToken(uint256,bool) should be declared external:
- DogeManiaToken.reflectionFromToken(uint256,bool) (#437-445)
excludeFromReward(address) should be declared external:
- DogeManiaToken.excludeFromReward(address) (#453-460)
excludeFromFee(address) should be declared external:
- DogeManiaToken.excludeFromFee(address) (#475-477)
includeInFee(address) should be declared external:
- DogeManiaToken.includeInFee(address) (#479-481)
updateLockerUnit(bytes) should be declared external:
- DogeManiaToken.updateLockerUnit(bytes) (#736-738)
lockTokens(address,uint256,uint256) should be declared external:
- DogeManiaToken.lockTokens(address,uint256,uint256) (#740-768)
unlockTokens(address) should be declared external:
- DogeManiaToken.unlockTokens(address) (#770-786)
Use the external attribute for functions never called from the contract.
Additional information: link
Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.
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.
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
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 30 days ago
Unable to find Youtube account
Unable to find Discord account