DogeRun is a Play to Earn game that incorporates the addictiveness of a run themed game while giving investors a chance to earn attractive profits.
It is based off timeless classic's such as mario run and geometry dash. Level one is fully playable at launch with the Play to Earn features and NFT collection coming soon
The goal of the game is to finish the level as quickly as possible while collecting coins and powerups while avoiding obstacles and enemies.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
DogeRun._swapContractToken(bool) (DogeRun_v2.sol#245-289) sends eth to arbitrary user
Dangerous calls:
- (sent,None) = marketingWallet.call{value: ContractBalance * 50 / 100}() (DogeRun_v2.sol#285)
- (sent,None) = gameDevWallet.call{value: ContractBalance * 25 / 100}() (DogeRun_v2.sol#286)
- (sent,None) = buyBackWallet.call{value: ContractBalance * 25 / 100}() (DogeRun_v2.sol#287)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in DogeRun._taxedTransfer(address,address,uint256) (DogeRun_v2.sol#134-173):
External calls:
- _swapContractToken(false) (DogeRun_v2.sol#156)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (DogeRun_v2.sol#309-316)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amount,0,path,address(this),block.timestamp) (DogeRun_v2.sol#297-304)
- (sent,None) = marketingWallet.call{value: ContractBalance * 50 / 100}() (DogeRun_v2.sol#285)
- (sent,None) = gameDevWallet.call{value: ContractBalance * 25 / 100}() (DogeRun_v2.sol#286)
- (sent,None) = buyBackWallet.call{value: ContractBalance * 25 / 100}() (DogeRun_v2.sol#287)
External calls sending eth:
- _swapContractToken(false) (DogeRun_v2.sol#156)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (DogeRun_v2.sol#309-316)
- (sent,None) = marketingWallet.call{value: ContractBalance * 50 / 100}() (DogeRun_v2.sol#285)
- (sent,None) = gameDevWallet.call{value: ContractBalance * 25 / 100}() (DogeRun_v2.sol#286)
- (sent,None) = buyBackWallet.call{value: ContractBalance * 25 / 100}() (DogeRun_v2.sol#287)
State variables written after the call(s):
- _balances[sender] -= amount (DogeRun_v2.sol#165)
- _balances[address(this)] += contractToken (DogeRun_v2.sol#167)
- _balances[gameRewardsWallet] += tokensForGameRewards (DogeRun_v2.sol#169)
- _balances[recipient] += taxedAmount (DogeRun_v2.sol#170)
Apply the check-effects-interactions pattern.
Additional information: link
DogeRun.LiquidityRelease() (DogeRun_v2.sol#387-401) ignores return value by liquidityToken.transfer(msg.sender,amount) (DogeRun_v2.sol#399)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
Too many vulnerabilities (Unchecked transfer, Reentrancy vulnerability, etc.). High risk of a scam. DYOR & manual audit are advised.
DogeRun._swapContractToken(bool).sent (DogeRun_v2.sol#283) is written in both
(sent,None) = marketingWallet.call{value: ContractBalance * 50 / 100}() (DogeRun_v2.sol#285)
(sent,None) = gameDevWallet.call{value: ContractBalance * 25 / 100}() (DogeRun_v2.sol#286)
DogeRun._swapContractToken(bool).sent (DogeRun_v2.sol#283) is written in both
(sent,None) = gameDevWallet.call{value: ContractBalance * 25 / 100}() (DogeRun_v2.sol#286)
(sent,None) = buyBackWallet.call{value: ContractBalance * 25 / 100}() (DogeRun_v2.sol#287)
DogeRun._swapContractToken(bool).sent (DogeRun_v2.sol#283) is written in both
(sent,None) = buyBackWallet.call{value: ContractBalance * 25 / 100}() (DogeRun_v2.sol#287)
sent = true (DogeRun_v2.sol#288)
Fix or remove the writes.
Additional information: link
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.
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.
DogeRun._swapContractToken(bool) (DogeRun_v2.sol#245-289) performs a multiplication on the result of a division:
-tokenToSwap = _balances[_pancakePairAddress] * swapTreshold / 1000 (DogeRun_v2.sol#249)
-tokenForLiquidity = (tokenToSwap * liquidityTax) / totalTax (DogeRun_v2.sol#262-264)
DogeRun._swapContractToken(bool) (DogeRun_v2.sol#245-289) performs a multiplication on the result of a division:
-tokenToSwap = _balances[_pancakePairAddress] * swapTreshold / 1000 (DogeRun_v2.sol#249)
-tokenForBuyBack = (tokenToSwap * buyBackTax) / totalTax (DogeRun_v2.sol#265)
DogeRun._swapContractToken(bool) (DogeRun_v2.sol#245-289) performs a multiplication on the result of a division:
-tokenToSwap = _balances[_pancakePairAddress] * swapTreshold / 1000 (DogeRun_v2.sol#249)
-tokenForGameDev = (tokenToSwap * gameDevTax) / totalTax (DogeRun_v2.sol#266)
DogeRun._swapContractToken(bool) (DogeRun_v2.sol#245-289) performs a multiplication on the result of a division:
-LiqHalf = tokenForLiquidity / 2 (DogeRun_v2.sol#269)
-liqBNB = (newBNB * LiqHalf) / swapToken (DogeRun_v2.sol#279)
Consider ordering multiplication before division.
Additional information: link
DogeRun._addLiquidity(uint256,uint256) (DogeRun_v2.sol#307-317) ignores return value by _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (DogeRun_v2.sol#309-316)
Ensure that all the return values of the function calls are used.
Additional information: link
DogeRun.allowance(address,address)._owner (DogeRun_v2.sol#438) shadows:
- Ownable._owner (Libraries.sol#47) (state variable)
DogeRun._approve(address,address,uint256).owner (DogeRun_v2.sol#446) shadows:
- Ownable.owner() (Libraries.sol#63-65) (function)
Rename the local variables that shadow another component.
Additional information: link
DogeRun.setSwapTreshold(uint256) (DogeRun_v2.sol#208-211) should emit an event for:
- swapTreshold = newSwapTresholdPermille (DogeRun_v2.sol#210)
DogeRun.SetOverLiquifiedTreshold(uint256) (DogeRun_v2.sol#214-217) should emit an event for:
- overLiquifyTreshold = newOverLiquifyTresholdPermille (DogeRun_v2.sol#216)
Emit an event for critical parameter changes.
Additional information: link
DogeRun.ChangeMarketingWallet(address).newWallet (DogeRun_v2.sol#53) lacks a zero-check on :
- marketingWallet = newWallet (DogeRun_v2.sol#55)
DogeRun.ChangeGameDevWallet(address).newWallet (DogeRun_v2.sol#59) lacks a zero-check on :
- gameDevWallet = newWallet (DogeRun_v2.sol#61)
DogeRun.ChangeBuyBackWallet(address).newWallet (DogeRun_v2.sol#65) lacks a zero-check on :
- buyBackWallet = newWallet (DogeRun_v2.sol#67)
DogeRun.ChangeGameRewardsWallet(address).newWallet (DogeRun_v2.sol#71) lacks a zero-check on :
- gameRewardsWallet = newWallet (DogeRun_v2.sol#73)
Check that the address is not zero.
Additional information: link
Reentrancy in DogeRun._swapContractToken(bool) (DogeRun_v2.sol#245-289):
External calls:
- _swapTokenForBNB(swapToken) (DogeRun_v2.sol#274)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amount,0,path,address(this),block.timestamp) (DogeRun_v2.sol#297-304)
- _addLiquidity(LiqHalf,liqBNB) (DogeRun_v2.sol#280)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (DogeRun_v2.sol#309-316)
External calls sending eth:
- _addLiquidity(LiqHalf,liqBNB) (DogeRun_v2.sol#280)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (DogeRun_v2.sol#309-316)
State variables written after the call(s):
- _addLiquidity(LiqHalf,liqBNB) (DogeRun_v2.sol#280)
- _allowances[owner][spender] = amount (DogeRun_v2.sol#450)
Reentrancy in DogeRun.constructor() (DogeRun_v2.sol#88-108):
External calls:
- _pancakePairAddress = IPancakeFactory(_pancakeRouter.factory()).createPair(address(this),_pancakeRouter.WETH()) (DogeRun_v2.sol#96)
State variables written after the call(s):
- buyBackWallet = msg.sender (DogeRun_v2.sol#102)
- excludedFromFees[msg.sender] = true (DogeRun_v2.sol#105)
- excludedFromFees[PancakeRouter] = true (DogeRun_v2.sol#106)
- excludedFromFees[address(this)] = true (DogeRun_v2.sol#107)
- gameDevWallet = msg.sender (DogeRun_v2.sol#101)
- gameRewardsWallet = msg.sender (DogeRun_v2.sol#103)
- isAMM[_pancakePairAddress] = true (DogeRun_v2.sol#97)
- marketingWallet = msg.sender (DogeRun_v2.sol#100)
Reentrancy in DogeRun.transferFrom(address,address,uint256) (DogeRun_v2.sol#454-462):
External calls:
- _transfer(sender,recipient,amount) (DogeRun_v2.sol#455)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (DogeRun_v2.sol#309-316)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amount,0,path,address(this),block.timestamp) (DogeRun_v2.sol#297-304)
- (sent,None) = marketingWallet.call{value: ContractBalance * 50 / 100}() (DogeRun_v2.sol#285)
- (sent,None) = gameDevWallet.call{value: ContractBalance * 25 / 100}() (DogeRun_v2.sol#286)
- (sent,None) = buyBackWallet.call{value: ContractBalance * 25 / 100}() (DogeRun_v2.sol#287)
External calls sending eth:
- _transfer(sender,recipient,amount) (DogeRun_v2.sol#455)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (DogeRun_v2.sol#309-316)
- (sent,None) = marketingWallet.call{value: ContractBalance * 50 / 100}() (DogeRun_v2.sol#285)
- (sent,None) = gameDevWallet.call{value: ContractBalance * 25 / 100}() (DogeRun_v2.sol#286)
- (sent,None) = buyBackWallet.call{value: ContractBalance * 25 / 100}() (DogeRun_v2.sol#287)
State variables written after the call(s):
- _approve(sender,msg.sender,currentAllowance - amount) (DogeRun_v2.sol#460)
- _allowances[owner][spender] = amount (DogeRun_v2.sol#450)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in DogeRun.LiquidityRelease() (DogeRun_v2.sol#387-401):
External calls:
- liquidityToken.transfer(msg.sender,amount) (DogeRun_v2.sol#399)
Event emitted after the call(s):
- OnReleaseLP() (DogeRun_v2.sol#400)
Reentrancy in DogeRun._swapContractToken(bool) (DogeRun_v2.sol#245-289):
External calls:
- _swapTokenForBNB(swapToken) (DogeRun_v2.sol#274)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amount,0,path,address(this),block.timestamp) (DogeRun_v2.sol#297-304)
- _addLiquidity(LiqHalf,liqBNB) (DogeRun_v2.sol#280)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (DogeRun_v2.sol#309-316)
External calls sending eth:
- _addLiquidity(LiqHalf,liqBNB) (DogeRun_v2.sol#280)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (DogeRun_v2.sol#309-316)
Event emitted after the call(s):
- Approval(owner,spender,amount) (DogeRun_v2.sol#451)
- _addLiquidity(LiqHalf,liqBNB) (DogeRun_v2.sol#280)
Reentrancy in DogeRun._taxedTransfer(address,address,uint256) (DogeRun_v2.sol#134-173):
External calls:
- _swapContractToken(false) (DogeRun_v2.sol#156)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (DogeRun_v2.sol#309-316)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amount,0,path,address(this),block.timestamp) (DogeRun_v2.sol#297-304)
- (sent,None) = marketingWallet.call{value: ContractBalance * 50 / 100}() (DogeRun_v2.sol#285)
- (sent,None) = gameDevWallet.call{value: ContractBalance * 25 / 100}() (DogeRun_v2.sol#286)
- (sent,None) = buyBackWallet.call{value: ContractBalance * 25 / 100}() (DogeRun_v2.sol#287)
External calls sending eth:
- _swapContractToken(false) (DogeRun_v2.sol#156)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (DogeRun_v2.sol#309-316)
- (sent,None) = marketingWallet.call{value: ContractBalance * 50 / 100}() (DogeRun_v2.sol#285)
- (sent,None) = gameDevWallet.call{value: ContractBalance * 25 / 100}() (DogeRun_v2.sol#286)
- (sent,None) = buyBackWallet.call{value: ContractBalance * 25 / 100}() (DogeRun_v2.sol#287)
Event emitted after the call(s):
- Transfer(sender,recipient,taxedAmount) (DogeRun_v2.sol#172)
Reentrancy in DogeRun.transferFrom(address,address,uint256) (DogeRun_v2.sol#454-462):
External calls:
- _transfer(sender,recipient,amount) (DogeRun_v2.sol#455)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (DogeRun_v2.sol#309-316)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amount,0,path,address(this),block.timestamp) (DogeRun_v2.sol#297-304)
- (sent,None) = marketingWallet.call{value: ContractBalance * 50 / 100}() (DogeRun_v2.sol#285)
- (sent,None) = gameDevWallet.call{value: ContractBalance * 25 / 100}() (DogeRun_v2.sol#286)
- (sent,None) = buyBackWallet.call{value: ContractBalance * 25 / 100}() (DogeRun_v2.sol#287)
External calls sending eth:
- _transfer(sender,recipient,amount) (DogeRun_v2.sol#455)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (DogeRun_v2.sol#309-316)
- (sent,None) = marketingWallet.call{value: ContractBalance * 50 / 100}() (DogeRun_v2.sol#285)
- (sent,None) = gameDevWallet.call{value: ContractBalance * 25 / 100}() (DogeRun_v2.sol#286)
- (sent,None) = buyBackWallet.call{value: ContractBalance * 25 / 100}() (DogeRun_v2.sol#287)
Event emitted after the call(s):
- Approval(owner,spender,amount) (DogeRun_v2.sol#451)
- _approve(sender,msg.sender,currentAllowance - amount) (DogeRun_v2.sol#460)
Apply the check-effects-interactions pattern.
Additional information: link
DogeRun._transfer(address,address,uint256) (DogeRun_v2.sol#119-132) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(LaunchTimestamp > 0,trading not yet enabled) (DogeRun_v2.sol#129)
DogeRun._taxedTransfer(address,address,uint256) (DogeRun_v2.sol#134-173) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(senderBalance >= amount,Transfer exceeds balance) (DogeRun_v2.sol#136)
- block.timestamp < LaunchTimestamp + SellTaxDuration (DogeRun_v2.sol#144)
- block.timestamp < LaunchTimestamp + BuyTaxDuration (DogeRun_v2.sol#150)
DogeRun._feelessTransfer(address,address,uint256) (DogeRun_v2.sol#186-192) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(senderBalance >= amount,Transfer exceeds balance) (DogeRun_v2.sol#188)
DogeRun.isOverLiquified() (DogeRun_v2.sol#238-240) uses timestamp for comparisons
Dangerous comparisons:
- _balances[_pancakePairAddress] > _circulatingSupply * overLiquifyTreshold / 1000 (DogeRun_v2.sol#239)
DogeRun.getLiquidityReleaseTimeInSeconds() (DogeRun_v2.sol#322-326) uses timestamp for comparisons
Dangerous comparisons:
- block.timestamp < _liquidityUnlockTime (DogeRun_v2.sol#323)
DogeRun.SetupEnableTrading() (DogeRun_v2.sol#358-362) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(LaunchTimestamp == 0,AlreadyLaunched) (DogeRun_v2.sol#359)
DogeRun._prolongLiquidityLock(uint256) (DogeRun_v2.sol#379-384) uses timestamp for comparisons
Dangerous comparisons:
- require(bool)(newUnlockTime > _liquidityUnlockTime) (DogeRun_v2.sol#381)
DogeRun.LiquidityRelease() (DogeRun_v2.sol#387-401) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp >= _liquidityUnlockTime,Not yet unlocked) (DogeRun_v2.sol#389)
Avoid relying on block.timestamp.
Additional information: link
Low level call in DogeRun._swapContractToken(bool) (DogeRun_v2.sol#245-289):
- (sent,None) = marketingWallet.call{value: ContractBalance * 50 / 100}() (DogeRun_v2.sol#285)
- (sent,None) = gameDevWallet.call{value: ContractBalance * 25 / 100}() (DogeRun_v2.sol#286)
- (sent,None) = buyBackWallet.call{value: ContractBalance * 25 / 100}() (DogeRun_v2.sol#287)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function DogeRun.ChangeMarketingWallet(address) (DogeRun_v2.sol#53-56) is not in mixedCase
Function DogeRun.ChangeGameDevWallet(address) (DogeRun_v2.sol#59-62) is not in mixedCase
Function DogeRun.ChangeBuyBackWallet(address) (DogeRun_v2.sol#65-68) is not in mixedCase
Function DogeRun.ChangeGameRewardsWallet(address) (DogeRun_v2.sol#71-74) is not in mixedCase
Function DogeRun.SetOverLiquifiedTreshold(uint256) (DogeRun_v2.sol#214-217) is not in mixedCase
Function DogeRun.SetTaxes(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256) (DogeRun_v2.sol#221-235) is not in mixedCase
Function DogeRun.SetAMM(address,bool) (DogeRun_v2.sol#334-337) is not in mixedCase
Parameter DogeRun.SetAMM(address,bool).AMM (DogeRun_v2.sol#334) is not in mixedCase
Parameter DogeRun.SetAMM(address,bool).Add (DogeRun_v2.sol#334) is not in mixedCase
Function DogeRun.SwitchManualSwap(bool) (DogeRun_v2.sol#341-343) is not in mixedCase
Function DogeRun.SwapContractToken() (DogeRun_v2.sol#345-347) is not in mixedCase
Function DogeRun.ExcludeAccountFromFees(address,bool) (DogeRun_v2.sol#350-354) is not in mixedCase
Function DogeRun.SetupEnableTrading() (DogeRun_v2.sol#358-362) is not in mixedCase
Function DogeRun.LockLiquidityForSeconds(uint256) (DogeRun_v2.sol#375-377) is not in mixedCase
Function DogeRun.LiquidityRelease() (DogeRun_v2.sol#387-401) is not in mixedCase
Parameter DogeRun.allowance(address,address)._owner (DogeRun_v2.sol#438) is not in mixedCase
Constant DogeRun._name (DogeRun_v2.sol#17) is not in UPPER_CASE_WITH_UNDERSCORES
Constant DogeRun._symbol (DogeRun_v2.sol#18) is not in UPPER_CASE_WITH_UNDERSCORES
Constant DogeRun._decimals (DogeRun_v2.sol#19) is not in UPPER_CASE_WITH_UNDERSCORES
Constant DogeRun.InitialSupply (DogeRun_v2.sol#20) is not in UPPER_CASE_WITH_UNDERSCORES
Constant DogeRun.DefaultLiquidityLockTime (DogeRun_v2.sol#22) is not in UPPER_CASE_WITH_UNDERSCORES
Constant DogeRun.PancakeRouter (DogeRun_v2.sol#27) is not in UPPER_CASE_WITH_UNDERSCORES
Variable DogeRun.LaunchTimestamp (DogeRun_v2.sol#357) is not in mixedCase
Variable DogeRun._liquidityUnlockTime (DogeRun_v2.sol#367) is not in mixedCase
Variable DogeRun.LPReleaseLimitedTo20Percent (DogeRun_v2.sol#368) is not in mixedCase
Function IPancakeRouter.WETH() (Libraries.sol#42) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
DogeRun._circulatingSupply (DogeRun_v2.sol#31) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
ChangeMarketingWallet(address) should be declared external:
- DogeRun.ChangeMarketingWallet(address) (DogeRun_v2.sol#53-56)
ChangeGameDevWallet(address) should be declared external:
- DogeRun.ChangeGameDevWallet(address) (DogeRun_v2.sol#59-62)
ChangeBuyBackWallet(address) should be declared external:
- DogeRun.ChangeBuyBackWallet(address) (DogeRun_v2.sol#65-68)
ChangeGameRewardsWallet(address) should be declared external:
- DogeRun.ChangeGameRewardsWallet(address) (DogeRun_v2.sol#71-74)
setSwapTreshold(uint256) should be declared external:
- DogeRun.setSwapTreshold(uint256) (DogeRun_v2.sol#208-211)
SetOverLiquifiedTreshold(uint256) should be declared external:
- DogeRun.SetOverLiquifiedTreshold(uint256) (DogeRun_v2.sol#214-217)
SetTaxes(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256) should be declared external:
- DogeRun.SetTaxes(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256) (DogeRun_v2.sol#221-235)
getLiquidityReleaseTimeInSeconds() should be declared external:
- DogeRun.getLiquidityReleaseTimeInSeconds() (DogeRun_v2.sol#322-326)
getBurnedTokens() should be declared external:
- DogeRun.getBurnedTokens() (DogeRun_v2.sol#327-329)
SetAMM(address,bool) should be declared external:
- DogeRun.SetAMM(address,bool) (DogeRun_v2.sol#334-337)
SwitchManualSwap(bool) should be declared external:
- DogeRun.SwitchManualSwap(bool) (DogeRun_v2.sol#341-343)
SwapContractToken() should be declared external:
- DogeRun.SwapContractToken() (DogeRun_v2.sol#345-347)
ExcludeAccountFromFees(address,bool) should be declared external:
- DogeRun.ExcludeAccountFromFees(address,bool) (DogeRun_v2.sol#350-354)
SetupEnableTrading() should be declared external:
- DogeRun.SetupEnableTrading() (DogeRun_v2.sol#358-362)
limitLiquidityReleaseTo20Percent() should be declared external:
- DogeRun.limitLiquidityReleaseTo20Percent() (DogeRun_v2.sol#371-373)
LockLiquidityForSeconds(uint256) should be declared external:
- DogeRun.LockLiquidityForSeconds(uint256) (DogeRun_v2.sol#375-377)
LiquidityRelease() should be declared external:
- DogeRun.LiquidityRelease() (DogeRun_v2.sol#387-401)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (Libraries.sol#82-85)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (Libraries.sol#91-95)
Use the external attribute for functions never called from the contract.
Additional information: link
Average 30d PancakeSwap volume is low.
Average PancakeSwap trading volume, liqudity, number of swaps are low. Token seems to be inactive.
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 number of swaps.
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find token contract audit
Unable to verify token contract address on the website
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
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
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
Token has relatively low CoinMarketCap rank
Last post in Twitter was more than 30 days ago
Unable to find Youtube account
Unable to find Discord account