DICKCOIN Token Logo

DICK [DICKCOIN] Token

ALERT: unclassified scam

About DICK

Listings

Token 2 years
white paper

DICK Coin is the first ever meme-infused DeFi token for porn industry inspired by Satoshi's vision

Laser Scorebeta Last Audit: 30 November 2021

report
Token seems to be a scam (type: unclassified scam).

Anti-Scam

Links

DICKCOIN.addLiquidity(uint256,uint256) (DICKCOIN.sol#503-518) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (DICKCOIN.sol#509-516)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in DICKCOIN._transfer(address,address,uint256) (DICKCOIN.sol#338-419):
External calls:
- swapAndSendToMarketingWallet(marketingTokens) (DICKCOIN.sol#367)
- IERC20(BTC).transfer(_marketingWalletAddress,newBalance) (DICKCOIN.sol#436)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (DICKCOIN.sol#494-500)
- swapAndLiquify(swapTokens) (DICKCOIN.sol#370)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (DICKCOIN.sol#509-516)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (DICKCOIN.sol#474-480)
- swapAndSendDividends(sellTokens) (DICKCOIN.sol#373)
- success = IERC20(BTC).transfer(address(dividendTracker),dividends) (DICKCOIN.sol#523)
- dividendTracker.distributeBTCDividends(dividends) (DICKCOIN.sol#526)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (DICKCOIN.sol#494-500)
External calls sending eth:
- swapAndLiquify(swapTokens) (DICKCOIN.sol#370)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (DICKCOIN.sol#509-516)
State variables written after the call(s):
- super._transfer(from,deadWallet,burnAmount) (DICKCOIN.sol#388)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (ERC20.sol#221)
- _balances[recipient] = _balances[recipient].add(amount) (ERC20.sol#222)
- super._transfer(from,charityWalletAddress,charityAmount) (DICKCOIN.sol#391)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (ERC20.sol#221)
- _balances[recipient] = _balances[recipient].add(amount) (ERC20.sol#222)
- super._transfer(from,address(this),fees) (DICKCOIN.sol#401)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (ERC20.sol#221)
- _balances[recipient] = _balances[recipient].add(amount) (ERC20.sol#222)
- super._transfer(from,to,amount) (DICKCOIN.sol#404)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (ERC20.sol#221)
- _balances[recipient] = _balances[recipient].add(amount) (ERC20.sol#222)
- swapping = false (DICKCOIN.sol#375)
Apply the check-effects-interactions pattern.

Additional information: link

DICKCOIN.swapAndSendToMarketingWallet(uint256) (DICKCOIN.sol#430-437) ignores return value by IERC20(BTC).transfer(_marketingWalletAddress,newBalance) (DICKCOIN.sol#436)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


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


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.

DICKCOINDividendTracker.canAutoClaim(uint256) (DICKCOIN.sol#656-662) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (DICKCOIN.sol#657)
- block.timestamp.sub(lastClaimTime) >= claimWait (DICKCOIN.sol#661)
Avoid relying on block.timestamp.

Additional information: link

DICKCOIN._transfer(address,address,uint256) (DICKCOIN.sol#338-419) performs a multiplication on the result of a division:
-fees = amount.mul(marketingFee.add(liquidityFee).add(BTCRewardsFee)).div(100) (DICKCOIN.sol#393)
-fees = fees.add(fees.mul(20).div(100)) (DICKCOIN.sol#396)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in DICKCOIN.updateDividendTracker(address) (DICKCOIN.sol#143-158):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (DICKCOIN.sol#150)
- newDividendTracker.excludeFromDividends(address(this)) (DICKCOIN.sol#151)
- newDividendTracker.excludeFromDividends(owner()) (DICKCOIN.sol#152)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (DICKCOIN.sol#153)
State variables written after the call(s):
- dividendTracker = newDividendTracker (DICKCOIN.sol#157)
Apply the check-effects-interactions pattern.

Additional information: link

DICKCOIN._transfer(address,address,uint256).claims (DICKCOIN.sol#412) 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

DICKCOIN.addLiquidity(uint256,uint256) (DICKCOIN.sol#503-518) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (DICKCOIN.sol#509-516)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendPayingToken.accumulativeDividendOf(address)._owner (DividendPayingToken.sol#122) shadows:
- Ownable._owner (Ownable.sol#8) (state variable)
Rename the local variables that shadow another component.

Additional information: link

DICKCOIN.setCharityFee(uint256) (DICKCOIN.sol#214-217) should emit an event for:
- charityFee = value (DICKCOIN.sol#215)
Emit an event for critical parameter changes.

Additional information: link

DICKCOIN.updateUniswapV2Router(address)._uniswapV2Pair (DICKCOIN.sol#164-165) lacks a zero-check on :
- uniswapV2Pair = _uniswapV2Pair (DICKCOIN.sol#166)
Check that the address is not zero.

Additional information: link

Variable 'DICKCOIN._transfer(address,address,uint256).claims (DICKCOIN.sol#412)' in DICKCOIN._transfer(address,address,uint256) (DICKCOIN.sol#338-419) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (DICKCOIN.sol#413)
Move all variable declarations prior to any usage of the variable, and ensure that reaching a variable declaration does not depend on some conditional if it is used unconditionally.

Additional information: link

Reentrancy in DICKCOIN.updateUniswapV2Router(address) (DICKCOIN.sol#160-167):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (DICKCOIN.sol#164-165)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (DICKCOIN.sol#166)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in DICKCOIN.updateDividendTracker(address) (DICKCOIN.sol#143-158):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (DICKCOIN.sol#150)
- newDividendTracker.excludeFromDividends(address(this)) (DICKCOIN.sol#151)
- newDividendTracker.excludeFromDividends(owner()) (DICKCOIN.sol#152)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (DICKCOIN.sol#153)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (DICKCOIN.sol#155)
Apply the check-effects-interactions pattern.

Additional information: link

Different versions of Solidity is used:
- Version used: ['^0.6.12', '^0.6.2']
- ^0.6.12 (Context.sol#1)
- ^0.6.2 (DICKCOIN.sol#17)
- ^0.6.2 (DividendPayingToken.sol#3)
- ^0.6.2 (DividendPayingTokenInterface.sol#3)
- ^0.6.2 (DividendPayingTokenOptionalInterface.sol#3)
- ^0.6.2 (ERC20.sol#3)
- ^0.6.2 (IERC20.sol#3)
- ^0.6.2 (IERC20Metadata.sol#3)
- ^0.6.2 (IUniswapV2Factory.sol#3)
- ^0.6.2 (IUniswapV2Pair.sol#3)
- ^0.6.2 (IUniswapV2Router.sol#3)
- ^0.6.2 (IterableMapping.sol#2)
- ^0.6.2 (Ownable.sol#1)
- ^0.6.2 (SafeMath.sol#3)
- ^0.6.2 (SafeMathInt.sol#28)
- ^0.6.2 (SafeMathUint.sol#3)
Use one Solidity version.

Additional information: link

SafeMathInt.mul(int256,int256) (SafeMathInt.sol#41-48) is never used and should be removed
Remove unused functions.

Additional information: link

DICKCOIN.totalFees (DICKCOIN.sol#54) is set pre-construction with a non-constant function or state variable:
- BTCRewardsFee.add(liquidityFee).add(marketingFee).add(charityFee).add(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

Pragma version^0.6.2 (SafeMathUint.sol#3) allows old versions
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

Function IUniswapV2Router01.WETH() (IUniswapV2Router.sol#7) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (Context.sol#10)" inContext (Context.sol#4-14)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (IUniswapV2Router.sol#12) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (IUniswapV2Router.sol#13)
Prevent variables from having similar names.

Additional information: link

DICKCOINDividendTracker.getAccountAtIndex(uint256) (DICKCOIN.sol#637-654) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (DICKCOIN.sol#648)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (SafeMathInt.sol#36) is never used in SafeMathInt (SafeMathInt.sol#34-92)
Remove unused state variables.

Additional information: link

DividendPayingToken.BTC (DividendPayingToken.sol#24) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (Ownable.sol#52-56)
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 Discord account


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


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 token on CoinHunt

Additional information: link


Unable to find code repository for the project


Token is marked as scam (rug pull, honeypot, phishing, etc.)

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


Token has no active CoinMarketCap listing / rank

Price for DICK