Dogcoin Token Logo

DOGS [Dogcoin] Token

About DOGS

Listings

Not Found
Token 3 years

The DogCoin is a digital currency which operates on the Binance Smart Chain.
Whether you have a good eye for the charts or not it doesn’t matter if DOG COIN community is strong everyone make money.
DOG COIN will keep up this tradition and go straight to the moon.

An experienced team is behind the project with large plans for the future, including an NFT marketplace, staking and a DogCoinSwap.

The DogCoin is not simply another token, it's an ideal. The community will welcome all who wish to enjoy what we have to offer.

Social

Laser Scorebeta Last Audit: 24 February 2022

report
Token has too many issues. Scam probability is high.

Anti-Scam

Links


Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)

Dogcoin.swapBack() (#362-403) sends eth to arbitrary user
Dangerous calls:
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#387)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: amountBNBdev}() (#389)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in Dogcoin._transferFrom(address,address,uint256) (#286-315):
External calls:
- swapBack() (#304)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#373-379)
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#387)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: amountBNBdev}() (#389)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,marketingFeeReceiver,block.timestamp) (#393-400)
External calls sending eth:
- swapBack() (#304)
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#387)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: amountBNBdev}() (#389)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,marketingFeeReceiver,block.timestamp) (#393-400)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#308)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#311)
- amountReceived = takeFee(sender,recipient,amount) (#310)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#341)
Apply the check-effects-interactions pattern.

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.

Dogcoin.slitherConstructorVariables() (#182-499) performs a multiplication on the result of a division:
-swapThreshold = _totalSupply / 1000 * 1 (#223)
Consider ordering multiplication before division.

Additional information: link

Dogcoin.swapBack() (#362-403) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,marketingFeeReceiver,block.timestamp) (#393-400)
Ensure that all the return values of the function calls are used.

Additional information: link

Dogcoin.setFees(uint256,uint256,uint256,uint256) (#432-439) should emit an event for:
- liquidityFee = _liquidityFee (#433)
- marketingFee = _marketingFee (#434)
- devFee = _devFee (#435)
- totalFee = _liquidityFee.add(_marketingFee).add(_devFee) (#436)
- feeDenominator = _feeDenominator (#437)
Dogcoin.setSellMultiplier(uint256) (#454-456) should emit an event for:
- _sellMultiplier = multiplier (#455)
Dogcoin.setTxLimit(uint256) (#462-465) should emit an event for:
- _maxTxAmount = amountBuy (#463)
Emit an event for critical parameter changes.

Additional information: link

Auth.transferOwnership(address).adr (#121) lacks a zero-check on :
- owner = adr (#122)
Dogcoin.setFeeReceiver(address,address)._marketingFeeReceiver (#457) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#458)
Dogcoin.setFeeReceiver(address,address)._devFeeReceiver (#457) lacks a zero-check on :
- devFeeReceiver = _devFeeReceiver (#459)
Check that the address is not zero.

Additional information: link

Reentrancy in Dogcoin._transferFrom(address,address,uint256) (#286-315):
External calls:
- swapBack() (#304)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#373-379)
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#387)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: amountBNBdev}() (#389)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,marketingFeeReceiver,block.timestamp) (#393-400)
External calls sending eth:
- swapBack() (#304)
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#387)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: amountBNBdev}() (#389)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,marketingFeeReceiver,block.timestamp) (#393-400)
State variables written after the call(s):
- launch() (#306)
- launchedAt = block.number (#423)
Reentrancy in Dogcoin.constructor() (#232-252):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#234)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = type()(uint256).max (#235)
- _balances[_owner] = _totalSupply (#250)
- isFeeExempt[msg.sender] = true (#238)
- isTimelockExempt[msg.sender] = true (#245)
- isTimelockExempt[DEAD] = true (#246)
- isTimelockExempt[address(this)] = true (#247)
- isTxLimitExempt[msg.sender] = true (#240)
- isTxLimitExempt[address(this)] = true (#241)
- isTxLimitExempt[routerAddress] = true (#242)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Dogcoin._transferFrom(address,address,uint256) (#286-315):
External calls:
- swapBack() (#304)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#373-379)
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#387)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: amountBNBdev}() (#389)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,marketingFeeReceiver,block.timestamp) (#393-400)
External calls sending eth:
- swapBack() (#304)
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#387)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: amountBNBdev}() (#389)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,marketingFeeReceiver,block.timestamp) (#393-400)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#342)
- amountReceived = takeFee(sender,recipient,amount) (#310)
- Transfer(sender,recipient,amountReceived) (#313)
Reentrancy in Dogcoin.constructor() (#232-252):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#234)
Event emitted after the call(s):
- Transfer(address(0),_owner,_totalSupply) (#251)
Reentrancy in Dogcoin.swapBack() (#362-403):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#373-379)
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#387)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: amountBNBdev}() (#389)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,marketingFeeReceiver,block.timestamp) (#393-400)
External calls sending eth:
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#387)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: amountBNBdev}() (#389)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,marketingFeeReceiver,block.timestamp) (#393-400)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#401)
Apply the check-effects-interactions pattern.

Additional information: link

Dogcoin._transferFrom(address,address,uint256) (#286-315) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,Please wait for 1min between two operations) (#301)
Avoid relying on block.timestamp.

Additional information: link

Dogcoin.buyTokens(uint256,address) (#405-416) is never used and should be removed
Remove unused functions.

Additional information: link

Dogcoin._maxTxAmount (#195) is set pre-construction with a non-constant function or state variable:
- (_totalSupply * 1) / 100
Dogcoin._maxWalletSize (#196) is set pre-construction with a non-constant function or state variable:
- (_totalSupply * 1) / 100
Dogcoin.swapThreshold (#223) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 1000 * 1
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

Pragma version^0.8.11 (#3) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.11 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 Dogcoin.swapBack() (#362-403):
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#387)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: amountBNBdev}() (#389)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable Auth._intAddr (#68) is not in mixedCase
Function IDEXRouter.WETH() (#136) is not in mixedCase
Parameter Dogcoin.tradingStatus(bool)._status (#348) is not in mixedCase
Parameter Dogcoin.setFees(uint256,uint256,uint256,uint256)._liquidityFee (#432) is not in mixedCase
Parameter Dogcoin.setFees(uint256,uint256,uint256,uint256)._marketingFee (#432) is not in mixedCase
Parameter Dogcoin.setFees(uint256,uint256,uint256,uint256)._devFee (#432) is not in mixedCase
Parameter Dogcoin.setFees(uint256,uint256,uint256,uint256)._feeDenominator (#432) is not in mixedCase
Parameter Dogcoin.cooldownEnabled(bool,uint8)._status (#441) is not in mixedCase
Parameter Dogcoin.cooldownEnabled(bool,uint8)._interval (#441) is not in mixedCase
Parameter Dogcoin.setFeeReceiver(address,address)._marketingFeeReceiver (#457) is not in mixedCase
Parameter Dogcoin.setFeeReceiver(address,address)._devFeeReceiver (#457) is not in mixedCase
Parameter Dogcoin.setSwapBackSettings(bool,uint256)._enabled (#466) is not in mixedCase
Parameter Dogcoin.setSwapBackSettings(bool,uint256)._amount (#466) is not in mixedCase
Parameter Dogcoin.blacklistAddress(address,bool)._address (#471) is not in mixedCase
Parameter Dogcoin.blacklistAddress(address,bool)._value (#471) is not in mixedCase
Parameter Dogcoin.transferForeignToken(address)._token (#479) is not in mixedCase
Variable Dogcoin.WBNB (#185) is not in mixedCase
Variable Dogcoin.DEAD (#186) is not in mixedCase
Variable Dogcoin.ZERO (#187) is not in mixedCase
Constant Dogcoin._name (#190) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Dogcoin._symbol (#191) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Dogcoin._decimals (#192) is not in UPPER_CASE_WITH_UNDERSCORES
Variable Dogcoin._totalSupply (#194) is not in mixedCase
Variable Dogcoin._maxTxAmount (#195) is not in mixedCase
Variable Dogcoin._maxWalletSize (#196) is not in mixedCase
Variable Dogcoin._balances (#198) is not in mixedCase
Variable Dogcoin._allowances (#199) is not in mixedCase
Variable Dogcoin._sellMultiplier (#211) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#141) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#142)
Prevent variables from having similar names.

Additional information: link

Dogcoin.slitherConstructorVariables() (#182-499) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#186)
Dogcoin.slitherConstructorVariables() (#182-499) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#187)
Dogcoin.slitherConstructorVariables() (#182-499) uses literals with too many digits:
- _totalSupply = 10000000000 * (10 ** _decimals) (#194)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Dogcoin.DEAD (#186) should be constant
Dogcoin.WBNB (#185) should be constant
Dogcoin.ZERO (#187) should be constant
Dogcoin._totalSupply (#194) should be constant
Dogcoin.routerAddress (#188) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

authorize(address) should be declared external:
- Auth.authorize(address) (#92-94)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#100-102)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#121-125)
tradingStatus(bool) should be declared external:
- Dogcoin.tradingStatus(bool) (#348-353)
cooldownEnabled(bool,uint8) should be declared external:
- Dogcoin.cooldownEnabled(bool,uint8) (#441-444)
blacklistAddress(address,bool) should be declared external:
- Dogcoin.blacklistAddress(address,bool) (#471-473)
transferForeignToken(address) should be declared external:
- Dogcoin.transferForeignToken(address) (#479-483)
isOverLiquified(uint256,uint256) should be declared external:
- Dogcoin.isOverLiquified(uint256,uint256) (#493-495)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.


Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.


Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.


Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.


Number of Binance Smart Chain (BSC) token holders is low.


Token is deployed only at one blockchain


Token has only one trading pair

Contract has 9% buy tax and 9% sell tax.
Taxes are low and contract ownership is renounced.


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


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


Young tokens have high risks of scam / price dump / death


Young tokens have high risks of scam / 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

Price for DOGS

News for DOGS