CoinxPad is the first Cex / Dex Multi-chain IDO Launchpad.
Coinxpad will empower crypto projects with the ability to distribute tokens and raise liquidity.
Investors benefit from exclusive access to safe, innovative projects and rewarding investments on every blockchain.
Projects benefit from our partnership, providing complimentary audits by our team of blockchain experts and developers and a dedicated community ready to back them.
CXPAD.addLiquidity(uint256,uint256) (#1112-1122) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in CXPAD._transfer(address,address,uint256) (#999-1061):
External calls:
- swapAndSendToFee(marketingTokens) (#1024)
- IERC20(USDT).transfer(_marketingWalletAddress,newBalance) (#1067)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1103-1109)
- swapAndLiquify(swapTokens) (#1026)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1086-1092)
- swapAndSendDividends(sellTokens) (#1028)
- success = IERC20(USDT).transfer(address(dividendTracker),dividends) (#1127)
- dividendTracker.distributeUSDTDividends(dividends) (#1130)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1103-1109)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1026)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#1043)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#585)
- _balances[recipient] = _balances[recipient].add(amount) (#586)
- super._transfer(from,to,amount) (#1046)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#585)
- _balances[recipient] = _balances[recipient].add(amount) (#586)
- swapping = false (#1029)
Apply the check-effects-interactions pattern.
Additional information: link
CXPAD.swapAndSendToFee(uint256) (#1063-1068) ignores return value by IERC20(USDT).transfer(_marketingWalletAddress,newBalance) (#1067)
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.
Function IUniswapV2Router01.WETH() (#174) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#326) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#327) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#344) is not in mixedCase
Parameter DividendPayingToken.dividendOf(address)._owner (#679) is not in mixedCase
Parameter DividendPayingToken.withdrawableDividendOf(address)._owner (#683) is not in mixedCase
Parameter DividendPayingToken.withdrawnDividendOf(address)._owner (#687) is not in mixedCase
Parameter DividendPayingToken.accumulativeDividendOf(address)._owner (#691) is not in mixedCase
Constant DividendPayingToken.magnitude (#637) is not in UPPER_CASE_WITH_UNDERSCORES
Variable CXPAD._isBlacklisted (#741) is not in mixedCase
Variable CXPAD.USDTRewardsFee (#743) is not in mixedCase
Variable CXPAD._marketingWalletAddress (#748) is not in mixedCase
Parameter CXPADDividendTracker.getAccount(address)._account (#1192) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
CXPAD.deadWallet (#738) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
DividendPayingToken._withdrawDividendOfUser(address) (#663-676) has external calls inside a loop: success = IERC20(USDT).transfer(user,_withdrawableDividend) (#668)
Favor pull over push strategy for external calls.
Additional information: link
Reentrancy in DividendPayingToken._withdrawDividendOfUser(address) (#663-676):
External calls:
- success = IERC20(USDT).transfer(user,_withdrawableDividend) (#668)
State variables written after the call(s):
- withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend) (#670)
Reentrancy in CXPAD.updateDividendTracker(address) (#808-821):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#812)
- newDividendTracker.excludeFromDividends(address(this)) (#813)
- newDividendTracker.excludeFromDividends(owner()) (#814)
- newDividendTracker.excludeFromDividends(deadWallet) (#815)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#816)
State variables written after the call(s):
- dividendTracker = newDividendTracker (#820)
Apply the check-effects-interactions pattern.
Additional information: link
CXPAD._transfer(address,address,uint256).claims (#1054) is a local variable never initialized
CXPAD._transfer(address,address,uint256).iterations (#1054) is a local variable never initialized
CXPAD._transfer(address,address,uint256).lastProcessedIndex (#1054) 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
CXPAD.claim() (#979-981) ignores return value by dividendTracker.processAccount(msg.sender,false) (#980)
CXPAD.claimAddress(address) (#983-985) ignores return value by dividendTracker.processAccount(address(claimee),false) (#984)
CXPAD._transfer(address,address,uint256) (#999-1061) ignores return value by dividendTracker.process(gas) (#1054-1059)
CXPAD.addLiquidity(uint256,uint256) (#1112-1122) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
Ensure that all the return values of the function calls are used.
Additional information: link
DividendPayingToken.constructor(string,string)._name (#644) shadows:
- ERC20._name (#511) (state variable)
DividendPayingToken.constructor(string,string)._symbol (#644) shadows:
- ERC20._symbol (#512) (state variable)
DividendPayingToken.dividendOf(address)._owner (#679) shadows:
- Ownable._owner (#134) (state variable)
DividendPayingToken.withdrawableDividendOf(address)._owner (#683) shadows:
- Ownable._owner (#134) (state variable)
DividendPayingToken.withdrawnDividendOf(address)._owner (#687) shadows:
- Ownable._owner (#134) (state variable)
DividendPayingToken.accumulativeDividendOf(address)._owner (#691) shadows:
- Ownable._owner (#134) (state variable)
Rename the local variables that shadow another component.
Additional information: link
CXPAD.setSwapTokensAtAmount(uint256) (#846-848) should emit an event for:
- swapTokensAtAmount = amount (#847)
CXPAD.setUSDTRewardsFee(uint256) (#854-857) should emit an event for:
- USDTRewardsFee = value (#855)
- totalFees = USDTRewardsFee.add(liquidityFee).add(marketingFee) (#856)
CXPAD.setLiquiditFee(uint256) (#859-862) should emit an event for:
- liquidityFee = value (#860)
- totalFees = USDTRewardsFee.add(liquidityFee).add(marketingFee) (#861)
CXPAD.setMarketingFee(uint256) (#864-867) should emit an event for:
- marketingFee = value (#865)
- totalFees = USDTRewardsFee.add(liquidityFee).add(marketingFee) (#866)
CXPADDividendTracker.setLastProcessedIndex(uint256) (#1180-1182) should emit an event for:
- lastProcessedIndex = index (#1181)
Emit an event for critical parameter changes.
Additional information: link
CXPAD.updateUniswapV2Router(address)._uniswapV2Pair (#827-828) lacks a zero-check on :
- uniswapV2Pair = _uniswapV2Pair (#829)
CXPAD.setMarketingWallet(address).wallet (#850) lacks a zero-check on :
- _marketingWalletAddress = wallet (#851)
Check that the address is not zero.
Additional information: link
Variable 'CXPAD._transfer(address,address,uint256).lastProcessedIndex (#1054)' in CXPAD._transfer(address,address,uint256) (#999-1061) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1055)
Variable 'CXPAD._transfer(address,address,uint256).claims (#1054)' in CXPAD._transfer(address,address,uint256) (#999-1061) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1055)
Variable 'CXPAD._transfer(address,address,uint256).iterations (#1054)' in CXPAD._transfer(address,address,uint256) (#999-1061) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1055)
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 CXPAD._transfer(address,address,uint256) (#999-1061):
External calls:
- swapAndSendToFee(marketingTokens) (#1024)
- IERC20(USDT).transfer(_marketingWalletAddress,newBalance) (#1067)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1103-1109)
- swapAndLiquify(swapTokens) (#1026)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1086-1092)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1026)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
State variables written after the call(s):
- swapAndLiquify(swapTokens) (#1026)
- _allowances[owner][spender] = amount (#616)
Reentrancy in CXPAD._transfer(address,address,uint256) (#999-1061):
External calls:
- swapAndSendToFee(marketingTokens) (#1024)
- IERC20(USDT).transfer(_marketingWalletAddress,newBalance) (#1067)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1103-1109)
- swapAndLiquify(swapTokens) (#1026)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1086-1092)
- swapAndSendDividends(sellTokens) (#1028)
- success = IERC20(USDT).transfer(address(dividendTracker),dividends) (#1127)
- dividendTracker.distributeUSDTDividends(dividends) (#1130)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1103-1109)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1026)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
State variables written after the call(s):
- swapAndSendDividends(sellTokens) (#1028)
- _allowances[owner][spender] = amount (#616)
Reentrancy in CXPAD.constructor() (#782-802):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#786-787)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#790)
- uniswapV2Router = _uniswapV2Router (#789)
Reentrancy in CXPAD.constructor() (#782-802):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#786-787)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#792)
- dividendTracker.excludeFromDividends(pair) (#884)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (#793)
- dividendTracker.excludeFromDividends(address(this)) (#794)
- dividendTracker.excludeFromDividends(owner()) (#795)
- dividendTracker.excludeFromDividends(deadWallet) (#796)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (#797)
State variables written after the call(s):
- _mint(owner(),100000000000 * (10 ** 18)) (#801)
- _balances[account] = _balances[account].add(amount) (#596)
- excludeFromFees(_marketingWalletAddress,true) (#799)
- _isExcludedFromFees[account] = excluded (#834)
- excludeFromFees(address(this),true) (#800)
- _isExcludedFromFees[account] = excluded (#834)
- _mint(owner(),100000000000 * (10 ** 18)) (#801)
- _totalSupply = _totalSupply.add(amount) (#595)
Reentrancy in CXPADDividendTracker.processAccount(address,bool) (#1301-1310):
External calls:
- amount = _withdrawDividendOfUser(account) (#1302)
- success = IERC20(USDT).transfer(user,_withdrawableDividend) (#668)
State variables written after the call(s):
- lastClaimTimes[account] = block.timestamp (#1305)
Reentrancy in CXPAD.swapAndLiquify(uint256) (#1070-1078):
External calls:
- swapTokensForEth(half) (#1074)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1086-1092)
- addLiquidity(otherHalf,newBalance) (#1076)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1076)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1076)
- _allowances[owner][spender] = amount (#616)
Reentrancy in CXPAD.swapOnDemand(bool,bool,bool) (#901-922):
External calls:
- swapAndSendToFee(marketingTokens) (#908)
- IERC20(USDT).transfer(_marketingWalletAddress,newBalance) (#1067)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1103-1109)
- swapAndLiquify(swapTokens) (#913)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1086-1092)
External calls sending eth:
- swapAndLiquify(swapTokens) (#913)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
State variables written after the call(s):
- swapAndLiquify(swapTokens) (#913)
- _allowances[owner][spender] = amount (#616)
Reentrancy in CXPAD.swapOnDemand(bool,bool,bool) (#901-922):
External calls:
- swapAndSendToFee(marketingTokens) (#908)
- IERC20(USDT).transfer(_marketingWalletAddress,newBalance) (#1067)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1103-1109)
- swapAndLiquify(swapTokens) (#913)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1086-1092)
- swapAndSendDividends(sellTokens) (#918)
- success = IERC20(USDT).transfer(address(dividendTracker),dividends) (#1127)
- dividendTracker.distributeUSDTDividends(dividends) (#1130)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1103-1109)
External calls sending eth:
- swapAndLiquify(swapTokens) (#913)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
State variables written after the call(s):
- swapAndSendDividends(sellTokens) (#918)
- _allowances[owner][spender] = amount (#616)
- swapping = false (#921)
Reentrancy in CXPAD.updateUniswapV2Router(address) (#823-830):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#827-828)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#829)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in CXPAD._setAutomatedMarketMakerPair(address,bool) (#879-888):
External calls:
- dividendTracker.excludeFromDividends(pair) (#884)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#887)
Reentrancy in CXPAD._transfer(address,address,uint256) (#999-1061):
External calls:
- swapAndSendToFee(marketingTokens) (#1024)
- IERC20(USDT).transfer(_marketingWalletAddress,newBalance) (#1067)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1103-1109)
- swapAndLiquify(swapTokens) (#1026)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1086-1092)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1026)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#617)
- swapAndLiquify(swapTokens) (#1026)
- SwapAndLiquify(half,newBalance,otherHalf) (#1077)
- swapAndLiquify(swapTokens) (#1026)
Reentrancy in CXPAD._transfer(address,address,uint256) (#999-1061):
External calls:
- swapAndSendToFee(marketingTokens) (#1024)
- IERC20(USDT).transfer(_marketingWalletAddress,newBalance) (#1067)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1103-1109)
- swapAndLiquify(swapTokens) (#1026)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1086-1092)
- swapAndSendDividends(sellTokens) (#1028)
- success = IERC20(USDT).transfer(address(dividendTracker),dividends) (#1127)
- dividendTracker.distributeUSDTDividends(dividends) (#1130)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1103-1109)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1026)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#617)
- swapAndSendDividends(sellTokens) (#1028)
- SendDividends(tokens,dividends) (#1131)
- swapAndSendDividends(sellTokens) (#1028)
- Transfer(sender,recipient,amount) (#587)
- super._transfer(from,address(this),fees) (#1043)
- Transfer(sender,recipient,amount) (#587)
- super._transfer(from,to,amount) (#1046)
Reentrancy in CXPAD._transfer(address,address,uint256) (#999-1061):
External calls:
- swapAndSendToFee(marketingTokens) (#1024)
- IERC20(USDT).transfer(_marketingWalletAddress,newBalance) (#1067)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1103-1109)
- swapAndLiquify(swapTokens) (#1026)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1086-1092)
- swapAndSendDividends(sellTokens) (#1028)
- success = IERC20(USDT).transfer(address(dividendTracker),dividends) (#1127)
- dividendTracker.distributeUSDTDividends(dividends) (#1130)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1103-1109)
- dividendTracker.setBalance(address(from),balanceOf(from)) (#1048)
- dividendTracker.setBalance(address(to),balanceOf(to)) (#1049)
- dividendTracker.process(gas) (#1054-1059)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1026)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1055)
Reentrancy in CXPAD.constructor() (#782-802):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#786-787)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#792)
- dividendTracker.excludeFromDividends(pair) (#884)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#887)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#792)
Reentrancy in CXPAD.constructor() (#782-802):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#786-787)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#792)
- dividendTracker.excludeFromDividends(pair) (#884)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (#793)
- dividendTracker.excludeFromDividends(address(this)) (#794)
- dividendTracker.excludeFromDividends(owner()) (#795)
- dividendTracker.excludeFromDividends(deadWallet) (#796)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (#797)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (#835)
- excludeFromFees(_marketingWalletAddress,true) (#799)
- ExcludeFromFees(account,excluded) (#835)
- excludeFromFees(address(this),true) (#800)
- Transfer(address(0),account,amount) (#597)
- _mint(owner(),100000000000 * (10 ** 18)) (#801)
Reentrancy in CXPADDividendTracker.processAccount(address,bool) (#1301-1310):
External calls:
- amount = _withdrawDividendOfUser(account) (#1302)
- success = IERC20(USDT).transfer(user,_withdrawableDividend) (#668)
Event emitted after the call(s):
- Claim(account,amount,automatic) (#1306)
Reentrancy in CXPAD.processDividendTracker(uint256) (#974-977):
External calls:
- (iterations,claims,lastProcessedIndex) = dividendTracker.process(gas) (#975)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,false,gas,tx.origin) (#976)
Reentrancy in CXPAD.swapAndLiquify(uint256) (#1070-1078):
External calls:
- swapTokensForEth(half) (#1074)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1086-1092)
- addLiquidity(otherHalf,newBalance) (#1076)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1076)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#617)
- addLiquidity(otherHalf,newBalance) (#1076)
- SwapAndLiquify(half,newBalance,otherHalf) (#1077)
Reentrancy in CXPAD.swapAndSendDividends(uint256) (#1124-1133):
External calls:
- swapTokensForUsdt(tokens) (#1125)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1103-1109)
- success = IERC20(USDT).transfer(address(dividendTracker),dividends) (#1127)
- dividendTracker.distributeUSDTDividends(dividends) (#1130)
Event emitted after the call(s):
- SendDividends(tokens,dividends) (#1131)
Reentrancy in CXPAD.swapOnDemand(bool,bool,bool) (#901-922):
External calls:
- swapAndSendToFee(marketingTokens) (#908)
- IERC20(USDT).transfer(_marketingWalletAddress,newBalance) (#1067)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1103-1109)
- swapAndLiquify(swapTokens) (#913)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1086-1092)
External calls sending eth:
- swapAndLiquify(swapTokens) (#913)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#617)
- swapAndLiquify(swapTokens) (#913)
- SwapAndLiquify(half,newBalance,otherHalf) (#1077)
- swapAndLiquify(swapTokens) (#913)
Reentrancy in CXPAD.swapOnDemand(bool,bool,bool) (#901-922):
External calls:
- swapAndSendToFee(marketingTokens) (#908)
- IERC20(USDT).transfer(_marketingWalletAddress,newBalance) (#1067)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1103-1109)
- swapAndLiquify(swapTokens) (#913)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1086-1092)
- swapAndSendDividends(sellTokens) (#918)
- success = IERC20(USDT).transfer(address(dividendTracker),dividends) (#1127)
- dividendTracker.distributeUSDTDividends(dividends) (#1130)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1103-1109)
External calls sending eth:
- swapAndLiquify(swapTokens) (#913)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#617)
- swapAndSendDividends(sellTokens) (#918)
- SendDividends(tokens,dividends) (#1131)
- swapAndSendDividends(sellTokens) (#918)
Reentrancy in CXPAD.updateDividendTracker(address) (#808-821):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#812)
- newDividendTracker.excludeFromDividends(address(this)) (#813)
- newDividendTracker.excludeFromDividends(owner()) (#814)
- newDividendTracker.excludeFromDividends(deadWallet) (#815)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#816)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (#818)
Apply the check-effects-interactions pattern.
Additional information: link
CXPADDividendTracker.getAccount(address) (#1192-1221) uses timestamp for comparisons
Dangerous comparisons:
- nextClaimTime > block.timestamp (#1220)
CXPADDividendTracker.canAutoClaim(uint256) (#1241-1246) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (#1242)
- block.timestamp.sub(lastClaimTime) >= claimWait (#1245)
Avoid relying on block.timestamp.
Additional information: link
Context._msgData() (#124-127) is never used and should be removed
DividendPayingToken._transfer(address,address,uint256) (#696-701) is never used and should be removed
SafeMath.mod(uint256,uint256) (#105-107) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#109-112) is never used and should be removed
SafeMathInt.abs(int256) (#35-38) is never used and should be removed
SafeMathInt.div(int256,int256) (#15-18) is never used and should be removed
SafeMathInt.mul(int256,int256) (#7-12) is never used and should be removed
Remove unused functions.
Additional information: link
CXPAD.totalFees (#746) is set pre-construction with a non-constant function or state variable:
- USDTRewardsFee.add(liquidityFee).add(marketingFee)
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 (#1) allows old versions
Pragma version^0.6.2 (#49) allows old versions
Pragma version^0.6.2 (#61) allows old versions
Pragma version^0.6.2 (#117) allows old versions
Pragma version^0.6.2 (#131) allows old versions
Pragma version^0.6.2 (#170) allows old versions
Pragma version^0.6.2 (#309) allows old versions
Pragma version^0.6.2 (#363) allows old versions
Pragma version^0.6.2 (#382) allows old versions
Pragma version^0.6.2 (#446) allows old versions
Pragma version^0.6.2 (#467) allows old versions
Pragma version^0.6.2 (#477) allows old versions
Pragma version^0.6.2 (#487) allows old versions
Pragma version^0.6.2 (#503) allows old versions
Pragma version^0.6.2 (#629) allows old versions
Pragma version^0.6.2 (#729) allows old versions
solc-0.6.2 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
Redundant expression "this (#125)" inContext (#119-128)
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 (#179) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#180)
Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (#664) is too similar to CXPADDividendTracker.getAccount(address).withdrawableDividends (#1197)
Prevent variables from having similar names.
Additional information: link
CXPAD.constructor() (#782-802) uses literals with too many digits:
- _mint(owner(),100000000000 * (10 ** 18)) (#801)
CXPAD.updateGasForProcessing(uint256) (#890-895) uses literals with too many digits:
- require(bool,string)(newValue >= 200000 && newValue <= 500000,gasForProcessing must be between 200,000 and 500,000) (#891)
CXPAD.slitherConstructorVariables() (#731-1134) uses literals with too many digits:
- deadWallet = 0x000000000000000000000000000000000000dEaD (#738)
CXPAD.slitherConstructorVariables() (#731-1134) uses literals with too many digits:
- swapTokensAtAmount = 4000000 * (10 ** 18) (#740)
CXPAD.slitherConstructorVariables() (#731-1134) uses literals with too many digits:
- gasForProcessing = 300000 (#749)
CXPADDividendTracker.constructor() (#1152-1155) uses literals with too many digits:
- minimumTokenBalanceForDividends = 200000 * (10 ** 18) (#1154)
CXPADDividendTracker.getAccountAtIndex(uint256) (#1223-1239) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (#1234)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
SafeMathInt.MAX_INT256 (#5) is never used in SafeMathInt (#3-45)
Remove unused state variables.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#154-157)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#160-164)
get(IterableMapping.Map,address) should be declared external:
- IterableMapping.get(IterableMapping.Map,address) (#392-394)
getIndexOfKey(IterableMapping.Map,address) should be declared external:
- IterableMapping.getIndexOfKey(IterableMapping.Map,address) (#396-401)
getKeyAtIndex(IterableMapping.Map,uint256) should be declared external:
- IterableMapping.getKeyAtIndex(IterableMapping.Map,uint256) (#403-405)
size(IterableMapping.Map) should be declared external:
- IterableMapping.size(IterableMapping.Map) (#409-411)
name() should be declared external:
- ERC20.name() (#519-521)
symbol() should be declared external:
- ERC20.symbol() (#523-525)
decimals() should be declared external:
- ERC20.decimals() (#527-529)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#541-544)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#546-548)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#550-553)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#555-563)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#565-568)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#570-573)
distributeUSDTDividends(uint256) should be declared external:
- DividendPayingToken.distributeUSDTDividends(uint256) (#648-657)
withdrawDividend() should be declared external:
- CXPADDividendTracker.withdrawDividend() (#1161-1163)
- DividendPayingToken.withdrawDividend() (#659-661)
dividendOf(address) should be declared external:
- DividendPayingToken.dividendOf(address) (#679-681)
withdrawnDividendOf(address) should be declared external:
- DividendPayingToken.withdrawnDividendOf(address) (#687-689)
updateDividendTracker(address) should be declared external:
- CXPAD.updateDividendTracker(address) (#808-821)
updateUniswapV2Router(address) should be declared external:
- CXPAD.updateUniswapV2Router(address) (#823-830)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- CXPAD.excludeMultipleAccountsFromFees(address[],bool) (#838-844)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- CXPAD.setAutomatedMarketMakerPair(address,bool) (#869-873)
updateGasForProcessing(uint256) should be declared external:
- CXPAD.updateGasForProcessing(uint256) (#890-895)
isExcludedFromFees(address) should be declared external:
- CXPAD.isExcludedFromFees(address) (#932-934)
withdrawableDividendOf(address) should be declared external:
- CXPAD.withdrawableDividendOf(address) (#936-938)
dividendTokenBalanceOf(address) should be declared external:
- CXPAD.dividendTokenBalanceOf(address) (#940-942)
getAccountAtIndex(uint256) should be declared external:
- CXPADDividendTracker.getAccountAtIndex(uint256) (#1223-1239)
process(uint256) should be declared external:
- CXPADDividendTracker.process(uint256) (#1263-1299)
Use the external attribute for functions never called from the contract.
Additional information: link
Unable to find whitepaper link on the website
Unable to find token on CoinHunt
Additional information: link
Young tokens have high risks of scam / price dump / death
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