A NEW BREED OF DOGE-MEMECOINS!
Presale on Pinksale at 05.02.2022 17:00 UTC
WitcherDoge.addLiquidity(uint256,uint256) (#1266-1282) sends eth to arbitrary user
Dangerous calls:
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1272-1279)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in WitcherDoge._transfer(address,address,uint256) (#1187-1245):
External calls:
- swapAndLiquify(swapTokens) (#1216)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1272-1279)
- (success) = recipient.call{value: amount}() (#895)
- address(marketingWalletAddress).sendValue(ethAmount - ethFromLiquidity) (#1281)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1295-1301)
- swapAndSendToFee(marketingTokens,marketingWalletAddress) (#1219)
- address(feeAddress).sendValue(newBalance) (#1249)
- (success) = recipient.call{value: amount}() (#895)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1295-1301)
- swapAndSendToFee(devTokens,devWalletAddress) (#1221)
- address(feeAddress).sendValue(newBalance) (#1249)
- (success) = recipient.call{value: amount}() (#895)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1295-1301)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1216)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1272-1279)
- (success) = recipient.call{value: amount}() (#895)
- swapAndSendToFee(marketingTokens,marketingWalletAddress) (#1219)
- (success) = recipient.call{value: amount}() (#895)
- swapAndSendToFee(devTokens,devWalletAddress) (#1221)
- (success) = recipient.call{value: amount}() (#895)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#1241)
- _balances[sender] = senderBalance - amount (#714)
- _balances[recipient] += amount (#716)
- super._transfer(from,to,amount) (#1244)
- _balances[sender] = senderBalance - amount (#714)
- _balances[recipient] += amount (#716)
- swapping = false (#1224)
Apply the check-effects-interactions pattern.
Additional information: link
WitcherDoge.withdrawOtherTokens(address,address) (#1169-1174) ignores return value by token.transfer(_account,tokenBalance) (#1172)
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 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.
Redundant expression "this (#303)" inContext (#297-306)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable ISwapRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#98) is too similar to ISwapRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#99)
Prevent variables from having similar names.
Additional information: link
WitcherDoge.slitherConstructorConstantVariables() (#986-1306) uses literals with too many digits:
- BURN_ADDRESS = 0x000000000000000000000000000000000000dEaD (#995)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Ownable._previousOwner (#328) is never used in WitcherDoge (#986-1306)
Ownable._lockTime (#329) is never used in WitcherDoge (#986-1306)
WitcherDoge.antibotEndTime (#1010) is never used in WitcherDoge (#986-1306)
Remove unused state variables.
Additional information: link
WitcherDoge.setLiquidityFee(uint256) (#1116-1118) should emit an event for:
- liquidityFee = value (#1117)
WitcherDoge.setMarketingFee(uint256) (#1120-1122) should emit an event for:
- marketingFee = value (#1121)
WitcherDoge.setDevFee(uint256) (#1124-1126) should emit an event for:
- devFee = value (#1125)
Emit an event for critical parameter changes.
Additional information: link
WitcherDoge.updateUniswapV2Router(address)._uniswapV2Pair (#1088) lacks a zero-check on :
- uniswapV2Pair = _uniswapV2Pair (#1089)
WitcherDoge.setMarketingWallet(address).wallet (#1106) lacks a zero-check on :
- marketingWalletAddress = wallet (#1108)
WitcherDoge.setDevWallet(address).wallet (#1111) lacks a zero-check on :
- devWalletAddress = wallet (#1113)
Check that the address is not zero.
Additional information: link
WitcherDoge.swapTokensForEth(uint256) (#1284-1304) has external calls inside a loop: path[1] = uniswapV2Router.WETH() (#1290)
WitcherDoge.swapTokensForEth(uint256) (#1284-1304) has external calls inside a loop: uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1295-1301)
WitcherDoge.addLiquidity(uint256,uint256) (#1266-1282) has external calls inside a loop: (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1272-1279)
Address.sendValue(address,uint256) (#891-897) has external calls inside a loop: (success) = recipient.call{value: amount}() (#895)
Favor pull over push strategy for external calls.
Additional information: link
Reentrancy in WitcherDoge._transfer(address,address,uint256) (#1187-1245):
External calls:
- swapAndLiquify(swapTokens) (#1216)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1272-1279)
- (success) = recipient.call{value: amount}() (#895)
- address(marketingWalletAddress).sendValue(ethAmount - ethFromLiquidity) (#1281)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1295-1301)
- swapAndSendToFee(marketingTokens,marketingWalletAddress) (#1219)
- address(feeAddress).sendValue(newBalance) (#1249)
- (success) = recipient.call{value: amount}() (#895)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1295-1301)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1216)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1272-1279)
- (success) = recipient.call{value: amount}() (#895)
- swapAndSendToFee(marketingTokens,marketingWalletAddress) (#1219)
- (success) = recipient.call{value: amount}() (#895)
State variables written after the call(s):
- swapAndSendToFee(marketingTokens,marketingWalletAddress) (#1219)
- _allowances[owner][spender] = amount (#793)
Reentrancy in WitcherDoge._transfer(address,address,uint256) (#1187-1245):
External calls:
- swapAndLiquify(swapTokens) (#1216)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1272-1279)
- (success) = recipient.call{value: amount}() (#895)
- address(marketingWalletAddress).sendValue(ethAmount - ethFromLiquidity) (#1281)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1295-1301)
- swapAndSendToFee(marketingTokens,marketingWalletAddress) (#1219)
- address(feeAddress).sendValue(newBalance) (#1249)
- (success) = recipient.call{value: amount}() (#895)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1295-1301)
- swapAndSendToFee(devTokens,devWalletAddress) (#1221)
- address(feeAddress).sendValue(newBalance) (#1249)
- (success) = recipient.call{value: amount}() (#895)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1295-1301)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1216)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1272-1279)
- (success) = recipient.call{value: amount}() (#895)
- swapAndSendToFee(marketingTokens,marketingWalletAddress) (#1219)
- (success) = recipient.call{value: amount}() (#895)
- swapAndSendToFee(devTokens,devWalletAddress) (#1221)
- (success) = recipient.call{value: amount}() (#895)
State variables written after the call(s):
- swapAndSendToFee(devTokens,devWalletAddress) (#1221)
- _allowances[owner][spender] = amount (#793)
Reentrancy in WitcherDoge.constructor() (#1037-1060):
External calls:
- _uniswapV2Pair = ISwapFactory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1040)
State variables written after the call(s):
- _mint(owner(),1_000_000_000 * 10 ** 18) (#1058)
- _balances[account] += amount (#738)
- _mint(owner(),1_000_000_000 * 10 ** 18) (#1058)
- _totalSupply += amount (#737)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1045)
- automatedMarketMakerPairs[pair] = value (#1159)
- excludeFromFees(owner(),true) (#1048)
- isExcludedFromFees[account] = excluded (#1093)
- excludeFromFees(marketingWalletAddress,true) (#1049)
- isExcludedFromFees[account] = excluded (#1093)
- excludeFromFees(devWalletAddress,true) (#1050)
- isExcludedFromFees[account] = excluded (#1093)
- excludeFromFees(BURN_ADDRESS,true) (#1051)
- isExcludedFromFees[account] = excluded (#1093)
- excludeFromFees(address(this),true) (#1052)
- isExcludedFromFees[account] = excluded (#1093)
- maxTxAmount = totalSupply() / 500 (#1059)
- uniswapV2Pair = _uniswapV2Pair (#1043)
- uniswapV2Router = _uniswapV2Router (#1042)
Reentrancy in WitcherDoge.swapAndLiquify(uint256) (#1252-1264):
External calls:
- newBalance = swapTokensForEth(half) (#1258)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1295-1301)
- addLiquidity(otherHalf,newBalance) (#1261)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1272-1279)
- (success) = recipient.call{value: amount}() (#895)
- address(marketingWalletAddress).sendValue(ethAmount - ethFromLiquidity) (#1281)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1261)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1272-1279)
- (success) = recipient.call{value: amount}() (#895)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1261)
- _allowances[owner][spender] = amount (#793)
Reentrancy in WitcherDoge.updateUniswapV2Router(address) (#1084-1090):
External calls:
- _uniswapV2Pair = ISwapFactory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#1088)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#1089)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in WitcherDoge._transfer(address,address,uint256) (#1187-1245):
External calls:
- swapAndLiquify(swapTokens) (#1216)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1272-1279)
- (success) = recipient.call{value: amount}() (#895)
- address(marketingWalletAddress).sendValue(ethAmount - ethFromLiquidity) (#1281)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1295-1301)
- swapAndSendToFee(marketingTokens,marketingWalletAddress) (#1219)
- address(feeAddress).sendValue(newBalance) (#1249)
- (success) = recipient.call{value: amount}() (#895)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1295-1301)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1216)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1272-1279)
- (success) = recipient.call{value: amount}() (#895)
- swapAndSendToFee(marketingTokens,marketingWalletAddress) (#1219)
- (success) = recipient.call{value: amount}() (#895)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#794)
- swapAndSendToFee(marketingTokens,marketingWalletAddress) (#1219)
Reentrancy in WitcherDoge._transfer(address,address,uint256) (#1187-1245):
External calls:
- swapAndLiquify(swapTokens) (#1216)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1272-1279)
- (success) = recipient.call{value: amount}() (#895)
- address(marketingWalletAddress).sendValue(ethAmount - ethFromLiquidity) (#1281)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1295-1301)
- swapAndSendToFee(marketingTokens,marketingWalletAddress) (#1219)
- address(feeAddress).sendValue(newBalance) (#1249)
- (success) = recipient.call{value: amount}() (#895)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1295-1301)
- swapAndSendToFee(devTokens,devWalletAddress) (#1221)
- address(feeAddress).sendValue(newBalance) (#1249)
- (success) = recipient.call{value: amount}() (#895)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1295-1301)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1216)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1272-1279)
- (success) = recipient.call{value: amount}() (#895)
- swapAndSendToFee(marketingTokens,marketingWalletAddress) (#1219)
- (success) = recipient.call{value: amount}() (#895)
- swapAndSendToFee(devTokens,devWalletAddress) (#1221)
- (success) = recipient.call{value: amount}() (#895)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#794)
- swapAndSendToFee(devTokens,devWalletAddress) (#1221)
- Transfer(sender,recipient,amount) (#718)
- super._transfer(from,to,amount) (#1244)
- Transfer(sender,recipient,amount) (#718)
- super._transfer(from,address(this),fees) (#1241)
Reentrancy in WitcherDoge.constructor() (#1037-1060):
External calls:
- _uniswapV2Pair = ISwapFactory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1040)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (#1095)
- excludeFromFees(marketingWalletAddress,true) (#1049)
- ExcludeFromFees(account,excluded) (#1095)
- excludeFromFees(owner(),true) (#1048)
- ExcludeFromFees(account,excluded) (#1095)
- excludeFromFees(BURN_ADDRESS,true) (#1051)
- ExcludeFromFees(account,excluded) (#1095)
- excludeFromFees(devWalletAddress,true) (#1050)
- ExcludeFromFees(account,excluded) (#1095)
- excludeFromFees(address(this),true) (#1052)
- SetAutomatedMarketMakerPair(pair,value) (#1161)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1045)
- Transfer(address(0),account,amount) (#739)
- _mint(owner(),1_000_000_000 * 10 ** 18) (#1058)
Reentrancy in WitcherDoge.swapAndLiquify(uint256) (#1252-1264):
External calls:
- newBalance = swapTokensForEth(half) (#1258)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1295-1301)
- addLiquidity(otherHalf,newBalance) (#1261)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1272-1279)
- (success) = recipient.call{value: amount}() (#895)
- address(marketingWalletAddress).sendValue(ethAmount - ethFromLiquidity) (#1281)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1261)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1272-1279)
- (success) = recipient.call{value: amount}() (#895)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#794)
- addLiquidity(otherHalf,newBalance) (#1261)
- SwapAndLiquify(half,newBalance,otherHalf) (#1263)
Reentrancy in WitcherDoge.withdrawExcessBNB(address) (#1178-1185):
External calls:
- address(_account).sendValue(contractBNBBalance) (#1182)
Event emitted after the call(s):
- AccidentallySentBNBWithdrawn(_account,contractBNBBalance) (#1184)
Reentrancy in WitcherDoge.withdrawOtherTokens(address,address) (#1169-1174):
External calls:
- token.transfer(_account,tokenBalance) (#1172)
Event emitted after the call(s):
- AccidentallySentTokenWithdrawn(_token,_account,tokenBalance) (#1173)
Apply the check-effects-interactions pattern.
Additional information: link
WitcherDoge._transfer(address,address,uint256) (#1187-1245) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(isBlacklistedUntil[from] < block.timestamp && isBlacklistedUntil[to] < block.timestamp,WTDOGE: Blacklisted address) (#1195)
- canSwap = contractTokenBalance >= swapTokensAtAmount && launchedAt + 10 < block.timestamp && tradingOpened (#1205)
- canSwap && ! swapping && ! automatedMarketMakerPairs[from] && from != owner() && to != owner() (#1207-1211)
- launchedAt + 10 < block.timestamp (#1235)
WitcherDoge.addLiquidity(uint256,uint256) (#1266-1282) uses timestamp for comparisons
Dangerous comparisons:
- ethAmount - ethFromLiquidity > 0 (#1280)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#864-873) uses assembly
- INLINE ASM (#871)
Address._functionCallWithValue(address,bytes,uint256,string) (#957-978) uses assembly
- INLINE ASM (#970-973)
Do not use evm assembly.
Additional information: link
WitcherDoge._transfer(address,address,uint256) (#1187-1245) has costly operations inside a loop:
- swapping = true (#1213)
WitcherDoge._transfer(address,address,uint256) (#1187-1245) has costly operations inside a loop:
- swapping = false (#1224)
Use a local variable to hold the loop computation result.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#957-978) is never used and should be removed
Address.functionCall(address,bytes) (#917-919) is never used and should be removed
Address.functionCall(address,bytes,string) (#927-929) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#942-944) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#952-955) is never used and should be removed
Address.isContract(address) (#864-873) is never used and should be removed
Context._msgData() (#302-305) is never used and should be removed
ERC20._burn(address,uint256) (#755-770) is never used and should be removed
Remove unused functions.
Additional information: link
Low level call in Address.sendValue(address,uint256) (#891-897):
- (success) = recipient.call{value: amount}() (#895)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#957-978):
- (success,returndata) = target.call{value: weiValue}(data) (#961)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function ISwapPair.DOMAIN_SEPARATOR() (#55) is not in mixedCase
Function ISwapPair.PERMIT_TYPEHASH() (#56) is not in mixedCase
Function ISwapPair.MINIMUM_LIQUIDITY() (#73) is not in mixedCase
Function ISwapRouter01.WETH() (#93) is not in mixedCase
Parameter WitcherDoge.toggleTrading(bool)._tradingOpened (#1152) is not in mixedCase
Parameter WitcherDoge.withdrawOtherTokens(address,address)._token (#1169) is not in mixedCase
Parameter WitcherDoge.withdrawOtherTokens(address,address)._account (#1169) is not in mixedCase
Parameter WitcherDoge.withdrawExcessBNB(address)._account (#1178) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Ownable._lockTime (#329) should be constant
Ownable._previousOwner (#328) should be constant
WitcherDoge.antibotEndTime (#1010) should be constant
WitcherDoge.feeDenominator (#1005) should be constant
WitcherDoge.swapTokensAtAmount (#997) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#364-367)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#373-377)
name() should be declared external:
- ERC20.name() (#542-544)
symbol() should be declared external:
- ERC20.symbol() (#550-552)
decimals() should be declared external:
- ERC20.decimals() (#567-569)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#593-596)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#601-603)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#612-615)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#630-644)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#658-661)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#677-685)
updateUniswapV2Router(address) should be declared external:
- WitcherDoge.updateUniswapV2Router(address) (#1084-1090)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- WitcherDoge.excludeMultipleAccountsFromFees(address[],bool) (#1098-1104)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- WitcherDoge.setAutomatedMarketMakerPair(address,bool) (#1137-1141)
excludedFromFees(address) should be declared external:
- WitcherDoge.excludedFromFees(address) (#1164-1166)
Use the external attribute for functions never called from the contract.
Additional information: link
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find token/project description on the website or on BscScan, CoinMarketCap
Unable to verify that token and website are owned by the same team (no listings + unable to find contract on website)
Unable to verify token contract address on the website
Unable to find whitepaper link on the website
Unable to find token on CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
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
Last post in Twitter was more than 30 days ago
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account
Twitter account has few posts