Doge Army Token Logo

DGAT [Doge Army] Token

About DGAT

Listings

Token 2 years
white paper

Doge Army Token (DGAT) is a unique community token for doge fans. We are built by doge fans, for doge fans, and our goal is to create a community where every doge fan can come together. We will continuously reward our community through weekly giveaway events and redistributions.

Our mission is: Rewarding Holders, Helping Dogs and Killing Zeros!
We will fulfill our mission by implementing our unique tokenomics.

First of all the redistribution, from each transaction 2% will automatically redistribute to holders.
Secondly the giveaways, within each transaction there is a 2% tax that will be sent to a specific wallet. Each week we will hold a giveaway to holders that meet the requirements. There will be a total of 5 people that will win. Lastly the Doge Army Foundation, there is a 1% tax within each transaction that will be send to the giveaway wallet.
From this wallet we will donate every month to a charity chosen by our community. Of course, all of this will be done live and with proof.

This token is made to build a community and give back to it.

Social

Laser Scorebeta Last Audit: 30 November 2021

report
Token is either risky or in presale. For presale 30+ is a fine score.

Anti-Scam

Links


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

Reentrancy in DogeArmyToken._transfer(address,address,uint256) (#1089-1133):
External calls:
- swapAndLiquify(contractTokenBalance) (#1120)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1181-1188)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1167-1173)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1120)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1181-1188)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1132)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#931)
- _rOwned[giveAwayWallet] = _rOwned[giveAwayWallet].add(rDevFee) (#940)
- _rOwned[marketWallet] = _rOwned[marketWallet].add(rMarketFee) (#949)
- _rOwned[burnAddress] = _rOwned[burnAddress].add(rBurnFee) (#967)
- _rOwned[donationWallet] = _rOwned[donationWallet].add(rDonationFee) (#958)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1214)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1227)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1256)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1242)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1215)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1229)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1243)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1258)
- _tokenTransfer(from,to,amount,takeFee) (#1132)
- _rTotal = _rTotal.sub(rFee) (#924)
- _tokenTransfer(from,to,amount,takeFee) (#1132)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#933)
- _tOwned[giveAwayWallet] = _tOwned[giveAwayWallet].add(tDevFee) (#942)
- _tOwned[marketWallet] = _tOwned[marketWallet].add(tMarketFee) (#951)
- _tOwned[burnAddress] = _tOwned[burnAddress].add(tBurnFee) (#969)
- _tOwned[donationWallet] = _tOwned[donationWallet].add(tDonationFee) (#960)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1241)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1255)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1228)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1257)
Apply the check-effects-interactions pattern.

Additional information: link

DogeArmyToken.addLiquidity(uint256,uint256) (#1176-1189) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1181-1188)
Ensure that all the return values of the function calls are used.

Additional information: link

DogeArmyToken._approve(address,address,uint256).owner (#1081) shadows:
- Ownable.owner() (#413-415) (function)
Rename the local variables that shadow another component.

Additional information: link

DogeArmyToken.numTokensSellToAddToLiquidity(uint256) (#911-913) should emit an event for:
- _numTokensSellToAddToLiquidity = minAmountForLiquidity (#912)
Emit an event for critical parameter changes.

Additional information: link

DogeArmyToken.constructor(address,address,address)._donationWallet (#738) lacks a zero-check on :
- donationWallet = _donationWallet (#742)
Check that the address is not zero.

Additional information: link

Reentrancy in DogeArmyToken.transferFrom(address,address,uint256) (#798-802):
External calls:
- _transfer(sender,recipient,amount) (#799)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1181-1188)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1167-1173)
External calls sending eth:
- _transfer(sender,recipient,amount) (#799)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1181-1188)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#800)
- _allowances[owner][spender] = amount (#1085)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in DogeArmyToken.transferFrom(address,address,uint256) (#798-802):
External calls:
- _transfer(sender,recipient,amount) (#799)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1181-1188)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1167-1173)
External calls sending eth:
- _transfer(sender,recipient,amount) (#799)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1181-1188)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1086)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#800)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#460-465) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#462)
Avoid relying on block.timestamp.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#359-380) uses assembly
- INLINE ASM (#372-375)
Do not use evm assembly.

Additional information: link

SafeMath.mod(uint256,uint256,string) (#227-230) is never used and should be removed
Remove unused functions.

Additional information: link

DogeArmyToken._previousBurnFee (#709) is set pre-construction with a non-constant function or state variable:
- _burnFee
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) (#359-380):
- (success,returndata) = target.call{value: weiValue}(data) (#363)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable DogeArmyToken._maxTxAmount (#721) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#239)" inContext (#233-242)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable DogeArmyToken._getRValues(uint256,uint256,uint256).rTransferAmount (#1009) is too similar to DogeArmyToken._transferToExcluded(address,address,uint256).tTransferAmount (#1226)
Prevent variables from having similar names.

Additional information: link

DogeArmyToken.slitherConstructorVariables() (#671-1272) uses literals with too many digits:
- _numTokensSellToAddToLiquidity = 10000000 * 1e18 (#722)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

DogeArmyToken.burnAddress (#716) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

isExcludedFromFee(address) should be declared external:
- DogeArmyToken.isExcludedFromFee(address) (#1077-1079)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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.


Twitter account link seems to be invalid


Unable to find Youtube account


Unable to find Discord account


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 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 Telegram link on the website


Unable to find Twitter 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


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

Price for DGAT