EverPink Token Logo

EPINK [EverPink] Token

About EPINK

Listings

Token 3 years
white paper

EverPink Finance is transforming DeFi with the EverPink Autostaking Protocol that delivers the industry’s highest fixed APY, rebasing rewards every 15 minutes, and a simple buy-hold-earn system that grows your wallet fast.

Social

Laser Scorebeta Last Audit: 5 November 2022

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

Reentrancy in EverPink._transfer(address,address,uint256) (#1491-1607):
External calls:
- swapBack() (#1546)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (#1649-1656)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1634-1640)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: bnbAmount}(0,path,address(this),block.timestamp) (#1615-1620)
- (success) = address(marketingWallet).call{value: ethForMarketing}() (#1687)
- (success,None) = address(buyBackWallet).call{value: ethForBuyBack}() (#1688)
- success = IERC20(token).transfer(address(dividendTracker),tokenBalance) (#1700)
- dividendTracker.distributeTokenDividends(tokenBalance) (#1703)
External calls sending eth:
- swapBack() (#1546)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (#1649-1656)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: bnbAmount}(0,path,address(this),block.timestamp) (#1615-1620)
- (success) = address(marketingWallet).call{value: ethForMarketing}() (#1687)
- (success,None) = address(buyBackWallet).call{value: ethForBuyBack}() (#1688)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#1588)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#425)
- _balances[recipient] = _balances[recipient].add(amount) (#426)
- super._transfer(from,to,amount) (#1594)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#425)
- _balances[recipient] = _balances[recipient].add(amount) (#426)
- swapping = false (#1547)
- tokensForBuyBack += fees * buyBackSellFee / totalSellFees (#1567)
- tokensForBuyBack += fees * buyBackSellFee / totalSellFees (#1576)
- tokensForBuyBack += fees * buyBackBuyFee / totalBuyFees (#1584)
- tokensForLiquidity += fees * liquiditySellFee / totalSellFees (#1565)
- tokensForLiquidity += fees * liquiditySellFee / totalSellFees (#1574)
- tokensForLiquidity += fees * liquidityBuyFee / totalBuyFees (#1582)
- tokensForMarketing += fees * marketingSellFee / totalSellFees (#1566)
- tokensForMarketing += fees * marketingSellFee / totalSellFees (#1575)
- tokensForMarketing += fees * marketingBuyFee / totalBuyFees (#1583)
- tokensForRewards += fees * rewardsSellFee / totalSellFees (#1564)
- tokensForRewards += fees * rewardsSellFee / totalSellFees (#1573)
- tokensForRewards += fees * rewardsBuyFee / totalBuyFees (#1581)
Apply the check-effects-interactions pattern.

Additional information: link


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains


Contract ownership is not renounced (belongs to a wallet)

Contract locking ether found:
Contract DividendTracker (#1732-1940) has payable functions:
- DividendPayingToken.receive() (#1003-1005)
- DividendPayingToken.distributeDividends() (#1021-1023)
- DividendPayingTokenInterface.distributeDividends() (#544)
But does not have a function to withdraw the ether
Remove the payable attribute or add a withdraw function.

Additional information: link

EverPink.swapBack().success (#1687) is written in both
(success) = address(marketingWallet).call{value: ethForMarketing}() (#1687)
(success,None) = address(buyBackWallet).call{value: ethForBuyBack}() (#1688)
Fix or remove the writes.

Additional information: link

EverPink.updateMaxAmount(uint256) (#1342-1345) should emit an event for:
- maxTransactionAmount = newNum * (10 ** 18) (#1344)
EverPink.updateBuyFees(uint256,uint256,uint256) (#1347-1353) should emit an event for:
- marketingBuyFee = _marketingFee (#1348)
- rewardsBuyFee = _rewardsFee (#1349)
- liquidityBuyFee = _liquidityFee (#1350)
- totalBuyFees = marketingBuyFee + rewardsBuyFee + liquidityBuyFee (#1351)
EverPink.updateSellFees(uint256,uint256,uint256) (#1355-1361) should emit an event for:
- marketingSellFee = _marketingFee (#1356)
- rewardsSellFee = _rewardsFee (#1357)
- liquiditySellFee = _liquidityFee (#1358)
- totalSellFees = marketingSellFee + rewardsSellFee + liquiditySellFee (#1359)
Emit an event for critical parameter changes.

Additional information: link

DividendPayingToken.accumulativeDividendOf(address)._owner (#1092) shadows:
- Ownable._owner (#712) (state variable)
EverPink.constructor().totalSupply (#1235) shadows:
- ERC20.totalSupply() (#299-301) (function)
- IERC20.totalSupply() (#149) (function)
DividendPayingToken.withdrawableDividendOf(address)._owner (#1075) shadows:
- Ownable._owner (#712) (state variable)
DividendPayingToken.dividendOf(address)._owner (#1068) shadows:
- Ownable._owner (#712) (state variable)
DividendPayingToken.withdrawnDividendOf(address)._owner (#1082) shadows:
- Ownable._owner (#712) (state variable)
Rename the local variables that shadow another component.

Additional information: link

EverPink._transfer(address,address,uint256).iterations (#1602) is a local variable never initialized
EverPink._transfer(address,address,uint256).lastProcessedIndex (#1602) is a local variable never initialized
EverPink._transfer(address,address,uint256).claims (#1602) 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

EverPink._transfer(address,address,uint256) (#1491-1607) ignores return value by dividendTracker.process(gas) (#1602-1605)
EverPink.addLiquidity(uint256,uint256) (#1644-1658) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (#1649-1656)
EverPink.claim() (#1468-1470) ignores return value by dividendTracker.processAccount(address(msg.sender),false) (#1469)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendPayingToken._withdrawDividendOfUser(address) (#1046-1062) has external calls inside a loop: success = IERC20(token).transfer(user,_withdrawableDividend) (#1051)
Favor pull over push strategy for external calls.

Additional information: link

Redundant expression "this (#12)" inContext (#6-15)
Remove redundant statements if they congest code but offer no value.

Additional information: link

EverPink.liquidityActiveBlock (#1150) should be constant
EverPink.maxWallet (#1148) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

Variable 'EverPink._transfer(address,address,uint256).lastProcessedIndex (#1602)' in EverPink._transfer(address,address,uint256) (#1491-1607) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1603)
Variable 'EverPink._transfer(address,address,uint256).iterations (#1602)' in EverPink._transfer(address,address,uint256) (#1491-1607) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1603)
Variable 'EverPink._transfer(address,address,uint256).claims (#1602)' in EverPink._transfer(address,address,uint256) (#1491-1607) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1603)
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 EverPink.addPresaleAddressForExclusions(address,address) (#1301-1310):
External calls:
- dividendTracker.excludeFromDividends(_presaleAddress) (#1304)
- dividendTracker.excludeFromDividends(_presaleRouterAddress) (#1308)
State variables written after the call(s):
- excludeFromMaxTransaction(_presaleRouterAddress,true) (#1309)
- _isExcludedMaxTransactionAmount[updAds] = isEx (#1364)
Reentrancy in EverPink.addPresaleAddressForExclusions(address,address) (#1301-1310):
External calls:
- dividendTracker.excludeFromDividends(_presaleAddress) (#1304)
State variables written after the call(s):
- excludeFromFees(_presaleRouterAddress,true) (#1307)
- _isExcludedFromFees[account] = excluded (#1369)
- excludeFromMaxTransaction(_presaleAddress,true) (#1305)
- _isExcludedMaxTransactionAmount[updAds] = isEx (#1364)
- presaleRouterAddress = _presaleRouterAddress (#1306)
Reentrancy in DividendTracker.processAccount(address,bool) (#1928-1938):
External calls:
- amount = _withdrawDividendOfUser(account) (#1929)
- success = IERC20(token).transfer(user,_withdrawableDividend) (#1051)
State variables written after the call(s):
- lastClaimTimes[account] = block.timestamp (#1932)
Reentrancy in EverPink.swapBack() (#1660-1708):
External calls:
- swapTokensForEth(amountToSwapForETH) (#1672)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1634-1640)
- (success) = address(marketingWallet).call{value: ethForMarketing}() (#1687)
- (success,None) = address(buyBackWallet).call{value: ethForBuyBack}() (#1688)
- addLiquidity(liquidityTokens,ethForLiquidity) (#1691)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (#1649-1656)
External calls sending eth:
- (success) = address(marketingWallet).call{value: ethForMarketing}() (#1687)
- (success,None) = address(buyBackWallet).call{value: ethForBuyBack}() (#1688)
- addLiquidity(liquidityTokens,ethForLiquidity) (#1691)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (#1649-1656)
State variables written after the call(s):
- addLiquidity(liquidityTokens,ethForLiquidity) (#1691)
- _allowances[owner][spender] = amount (#491)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in EverPink.processDividendTracker(uint256) (#1463-1466):
External calls:
- (iterations,claims,lastProcessedIndex) = dividendTracker.process(gas) (#1464)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,false,gas,tx.origin) (#1465)
Reentrancy in EverPink._setAutomatedMarketMakerPair(address,bool) (#1388-1398):
External calls:
- dividendTracker.excludeFromDividends(pair) (#1394)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#1397)
Reentrancy in EverPink.includeInDividends(address) (#1330-1333):
External calls:
- dividendTracker.includeInDividends(account) (#1331)
Event emitted after the call(s):
- IncludeInDividends(account) (#1332)
Reentrancy in EverPink.addPresaleAddressForExclusions(address,address) (#1301-1310):
External calls:
- dividendTracker.excludeFromDividends(_presaleAddress) (#1304)
- dividendTracker.excludeFromDividends(_presaleRouterAddress) (#1308)
Event emitted after the call(s):
- ExcludedMaxTransactionAmount(updAds,isEx) (#1365)
- excludeFromMaxTransaction(_presaleRouterAddress,true) (#1309)
Reentrancy in EverPink.swapBack() (#1660-1708):
External calls:
- swapTokensForEth(amountToSwapForETH) (#1672)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1634-1640)
- (success) = address(marketingWallet).call{value: ethForMarketing}() (#1687)
- (success,None) = address(buyBackWallet).call{value: ethForBuyBack}() (#1688)
- addLiquidity(liquidityTokens,ethForLiquidity) (#1691)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (#1649-1656)
- swapBnbForRewardToken(ethForRewards) (#1697)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: bnbAmount}(0,path,address(this),block.timestamp) (#1615-1620)
- success = IERC20(token).transfer(address(dividendTracker),tokenBalance) (#1700)
- dividendTracker.distributeTokenDividends(tokenBalance) (#1703)
External calls sending eth:
- (success) = address(marketingWallet).call{value: ethForMarketing}() (#1687)
- (success,None) = address(buyBackWallet).call{value: ethForBuyBack}() (#1688)
- addLiquidity(liquidityTokens,ethForLiquidity) (#1691)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (#1649-1656)
- swapBnbForRewardToken(ethForRewards) (#1697)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: bnbAmount}(0,path,address(this),block.timestamp) (#1615-1620)
Event emitted after the call(s):
- SendDividends(tokenBalance,ethForRewards) (#1704)
Reentrancy in EverPink.addPresaleAddressForExclusions(address,address) (#1301-1310):
External calls:
- dividendTracker.excludeFromDividends(_presaleAddress) (#1304)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (#1371)
- excludeFromFees(_presaleRouterAddress,true) (#1307)
- ExcludedMaxTransactionAmount(updAds,isEx) (#1365)
- excludeFromMaxTransaction(_presaleAddress,true) (#1305)
Reentrancy in DividendTracker.processAccount(address,bool) (#1928-1938):
External calls:
- amount = _withdrawDividendOfUser(account) (#1929)
- success = IERC20(token).transfer(user,_withdrawableDividend) (#1051)
Event emitted after the call(s):
- Claim(account,amount,automatic) (#1933)
Reentrancy in EverPink._transfer(address,address,uint256) (#1491-1607):
External calls:
- swapBack() (#1546)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (#1649-1656)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1634-1640)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: bnbAmount}(0,path,address(this),block.timestamp) (#1615-1620)
- (success) = address(marketingWallet).call{value: ethForMarketing}() (#1687)
- (success,None) = address(buyBackWallet).call{value: ethForBuyBack}() (#1688)
- success = IERC20(token).transfer(address(dividendTracker),tokenBalance) (#1700)
- dividendTracker.distributeTokenDividends(tokenBalance) (#1703)
- dividendTracker.setBalance(address(from),balanceOf(from)) (#1596)
- dividendTracker.setBalance(address(to),balanceOf(to)) (#1597)
- dividendTracker.process(gas) (#1602-1605)
External calls sending eth:
- swapBack() (#1546)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (#1649-1656)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: bnbAmount}(0,path,address(this),block.timestamp) (#1615-1620)
- (success) = address(marketingWallet).call{value: ethForMarketing}() (#1687)
- (success,None) = address(buyBackWallet).call{value: ethForBuyBack}() (#1688)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1603)
Reentrancy in EverPink._transfer(address,address,uint256) (#1491-1607):
External calls:
- swapBack() (#1546)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (#1649-1656)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1634-1640)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: bnbAmount}(0,path,address(this),block.timestamp) (#1615-1620)
- (success) = address(marketingWallet).call{value: ethForMarketing}() (#1687)
- (success,None) = address(buyBackWallet).call{value: ethForBuyBack}() (#1688)
- success = IERC20(token).transfer(address(dividendTracker),tokenBalance) (#1700)
- dividendTracker.distributeTokenDividends(tokenBalance) (#1703)
External calls sending eth:
- swapBack() (#1546)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (#1649-1656)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: bnbAmount}(0,path,address(this),block.timestamp) (#1615-1620)
- (success) = address(marketingWallet).call{value: ethForMarketing}() (#1687)
- (success,None) = address(buyBackWallet).call{value: ethForBuyBack}() (#1688)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#427)
- super._transfer(from,address(this),fees) (#1588)
- Transfer(sender,recipient,amount) (#427)
- super._transfer(from,to,amount) (#1594)
Reentrancy in EverPink.excludeFromDividends(address) (#1324-1327):
External calls:
- dividendTracker.excludeFromDividends(account) (#1325)
Event emitted after the call(s):
- ExcludeFromDividends(account) (#1326)
Reentrancy in EverPink.swapBack() (#1660-1708):
External calls:
- swapTokensForEth(amountToSwapForETH) (#1672)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1634-1640)
- (success) = address(marketingWallet).call{value: ethForMarketing}() (#1687)
- (success,None) = address(buyBackWallet).call{value: ethForBuyBack}() (#1688)
- addLiquidity(liquidityTokens,ethForLiquidity) (#1691)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (#1649-1656)
External calls sending eth:
- (success) = address(marketingWallet).call{value: ethForMarketing}() (#1687)
- (success,None) = address(buyBackWallet).call{value: ethForBuyBack}() (#1688)
- addLiquidity(liquidityTokens,ethForLiquidity) (#1691)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (#1649-1656)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#492)
- addLiquidity(liquidityTokens,ethForLiquidity) (#1691)
- SwapAndLiquify(amountToSwapForETH,ethForLiquidity,tokensForLiquidity) (#1692)
Apply the check-effects-interactions pattern.

Additional information: link

SafeMathInt.div(int256,int256) (#784-790) is never used and should be removed
SafeMathInt.abs(int256) (#813-816) is never used and should be removed
SafeMathInt.mul(int256,int256) (#772-779) is never used and should be removed
ERC20._burn(address,uint256) (#460-468) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#705-708) is never used and should be removed
Context._msgData() (#11-14) is never used and should be removed
SafeMath.mod(uint256,uint256) (#689-691) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version0.8.9 (#4) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.9 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

SafeMathInt.MAX_INT256 (#767) is never used in SafeMathInt (#765-823)
Remove unused state variables.

Additional information: link

Reentrancy in EverPink.swapBack() (#1660-1708):
External calls:
- swapTokensForEth(amountToSwapForETH) (#1672)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1634-1640)
State variables written after the call(s):
- tokensForBuyBack = 0 (#1685)
- tokensForLiquidity = 0 (#1682)
- tokensForMarketing = 0 (#1683)
- tokensForRewards = 0 (#1684)
Reentrancy in DividendPayingToken._withdrawDividendOfUser(address) (#1046-1062):
External calls:
- success = IERC20(token).transfer(user,_withdrawableDividend) (#1051)
State variables written after the call(s):
- withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend) (#1054)
Apply the check-effects-interactions pattern.

Additional information: link

EverPink._transfer(address,address,uint256) (#1491-1607) uses tx.origin for authorization: require(bool,string)(_holderLastTransferTimestamp[tx.origin] < block.number,_transfer:: Transfer Delay enabled. Only one purchase per block allowed.) (#1522)
Do not use tx.origin for authorization.

Additional information: link

EverPink._transfer(address,address,uint256) (#1491-1607) performs a multiplication on the result of a division:
-fees = amount.mul(totalBuyFees).div(100) (#1580)
-tokensForLiquidity += fees * liquidityBuyFee / totalBuyFees (#1582)
EverPink._transfer(address,address,uint256) (#1491-1607) performs a multiplication on the result of a division:
-tokensForLiquidity += fees * liquiditySellFee / totalSellFees (#1574)
-fees = amount.mul(totalBuyFees).div(100) (#1580)
EverPink._transfer(address,address,uint256) (#1491-1607) performs a multiplication on the result of a division:
-fees = amount.mul(totalBuyFees).div(100) (#1580)
-tokensForBuyBack += fees * buyBackBuyFee / totalBuyFees (#1584)
EverPink._transfer(address,address,uint256) (#1491-1607) performs a multiplication on the result of a division:
-tokensForBuyBack += fees * buyBackSellFee / totalSellFees (#1576)
-fees = amount.mul(totalBuyFees).div(100) (#1580)
EverPink._transfer(address,address,uint256) (#1491-1607) performs a multiplication on the result of a division:
-fees = amount.mul(99).div(100) (#1563)
-tokensForLiquidity += fees * liquiditySellFee / totalSellFees (#1565)
EverPink._transfer(address,address,uint256) (#1491-1607) performs a multiplication on the result of a division:
-fees = amount.mul(99).div(100) (#1563)
-tokensForBuyBack += fees * buyBackSellFee / totalSellFees (#1567)
EverPink._transfer(address,address,uint256) (#1491-1607) performs a multiplication on the result of a division:
-tokensForMarketing += fees * marketingSellFee / totalSellFees (#1575)
-fees = amount.mul(totalBuyFees).div(100) (#1580)
EverPink._transfer(address,address,uint256) (#1491-1607) performs a multiplication on the result of a division:
-tokensForRewards += fees * rewardsSellFee / totalSellFees (#1573)
-fees = amount.mul(totalBuyFees).div(100) (#1580)
EverPink._transfer(address,address,uint256) (#1491-1607) performs a multiplication on the result of a division:
-fees = amount.mul(99).div(100) (#1563)
-tokensForRewards += fees * rewardsSellFee / totalSellFees (#1564)
EverPink._transfer(address,address,uint256) (#1491-1607) performs a multiplication on the result of a division:
-fees = amount.mul(totalBuyFees).div(100) (#1580)
-tokensForMarketing += fees * marketingBuyFee / totalBuyFees (#1583)
EverPink._transfer(address,address,uint256) (#1491-1607) performs a multiplication on the result of a division:
-fees = amount.mul(totalBuyFees).div(100) (#1580)
-tokensForRewards += fees * rewardsBuyFee / totalBuyFees (#1581)
EverPink._transfer(address,address,uint256) (#1491-1607) performs a multiplication on the result of a division:
-fees = amount.mul(99).div(100) (#1563)
-tokensForMarketing += fees * marketingSellFee / totalSellFees (#1566)
Consider ordering multiplication before division.

Additional information: link

EverPink.addPresaleAddressForExclusions(address,address)._presaleRouterAddress (#1301) lacks a zero-check on :
- presaleRouterAddress = _presaleRouterAddress (#1306)
EverPink.emergencyPresaleAddressUpdate(address,address)._presaleAddress (#1312) lacks a zero-check on :
- presaleAddress = _presaleAddress (#1313)
EverPink.emergencyPresaleAddressUpdate(address,address)._presaleRouterAddress (#1312) lacks a zero-check on :
- presaleRouterAddress = _presaleRouterAddress (#1314)
EverPink.updateMarketingWallet(address).newMarketingWallet (#1400) lacks a zero-check on :
- marketingWallet = newMarketingWallet (#1403)
EverPink.addPresaleAddressForExclusions(address,address)._presaleAddress (#1301) lacks a zero-check on :
- presaleAddress = _presaleAddress (#1302)
Check that the address is not zero.

Additional information: link

DividendTracker.canAutoClaim(uint256) (#1856-1862) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (#1857)
- block.timestamp.sub(lastClaimTime) >= claimWait (#1861)
DividendTracker.getAccount(address) (#1792-1835) uses timestamp for comparisons
Dangerous comparisons:
- nextClaimTime > block.timestamp (#1832-1834)
Avoid relying on block.timestamp.

Additional information: link

Low level call in EverPink.withdrawStuckEth() (#1726-1729):
- (success) = address(msg.sender).call{value: address(this).balance}() (#1727)
Low level call in EverPink.swapBack() (#1660-1708):
- (success) = address(marketingWallet).call{value: ethForMarketing}() (#1687)
- (success,None) = address(buyBackWallet).call{value: ethForBuyBack}() (#1688)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable EverPink._isExcludedMaxTransactionAmount (#1189) is not in mixedCase
Parameter DividendTracker.getAccount(address)._account (#1792) is not in mixedCase
Parameter EverPink.updateSellFees(uint256,uint256,uint256)._liquidityFee (#1355) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#33) is not in mixedCase
Event EverPinkmarketingWalletUpdated(address,address) (#1205) is not in CapWords
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#50) is not in mixedCase
Constant DividendPayingToken.magnitude (#977) is not in UPPER_CASE_WITH_UNDERSCORES
Parameter EverPink.updateBuyFees(uint256,uint256,uint256)._rewardsFee (#1347) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#32) is not in mixedCase
Parameter EverPink.addPresaleAddressForExclusions(address,address)._presaleRouterAddress (#1301) is not in mixedCase
Parameter EverPink.emergencyPresaleAddressUpdate(address,address)._presaleAddress (#1312) is not in mixedCase
Parameter DividendPayingToken.dividendOf(address)._owner (#1068) is not in mixedCase
Parameter EverPink.emergencyPresaleAddressUpdate(address,address)._presaleRouterAddress (#1312) is not in mixedCase
Parameter DividendPayingToken.withdrawnDividendOf(address)._owner (#1082) is not in mixedCase
Parameter DividendPayingToken.withdrawableDividendOf(address)._owner (#1075) is not in mixedCase
Parameter EverPink.updateBuyFees(uint256,uint256,uint256)._liquidityFee (#1347) is not in mixedCase
Function IUniswapV2Router01.WETH() (#836) is not in mixedCase
Parameter EverPink.addPresaleAddressForExclusions(address,address)._presaleAddress (#1301) is not in mixedCase
Parameter DividendPayingToken.accumulativeDividendOf(address)._owner (#1092) is not in mixedCase
Parameter EverPink.updateBuyFees(uint256,uint256,uint256)._marketingFee (#1347) is not in mixedCase
Parameter EverPink.updateSellFees(uint256,uint256,uint256)._rewardsFee (#1355) is not in mixedCase
Parameter EverPink.updateSellFees(uint256,uint256,uint256)._marketingFee (#1355) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#841) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#842)
Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (#1047) is too similar to DividendTracker.getAccount(address).withdrawableDividends (#1797)
Prevent variables from having similar names.

Additional information: link

EverPink.slitherConstructorVariables() (#1131-1730) uses literals with too many digits:
- gasForProcessing = 400000 (#1182)
EverPink.updateGasForProcessing(uint256) (#1406-1411) uses literals with too many digits:
- require(bool,string)(newValue >= 200000 && newValue <= 500000, gasForProcessing must be between 200,000 and 500,000) (#1407)
DividendTracker.getAccountAtIndex(uint256) (#1837-1854) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (#1848)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

distributeTokenDividends(uint256) should be declared external:
- DividendPayingToken.distributeTokenDividends(uint256) (#1025-1036)
get(IterableMapping.Map,address) should be declared external:
- IterableMapping.get(IterableMapping.Map,address) (#93-95)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#355-363)
getKeyAtIndex(IterableMapping.Map,uint256) should be declared external:
- IterableMapping.getKeyAtIndex(IterableMapping.Map,uint256) (#104-106)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#747-750)
getAccountAtIndex(uint256) should be declared external:
- DividendTracker.getAccountAtIndex(uint256) (#1837-1854)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- EverPink.setAutomatedMarketMakerPair(address,bool) (#1382-1386)
decimals() should be declared external:
- ERC20.decimals() (#292-294)
dividendOf(address) should be declared external:
- DividendPayingToken.dividendOf(address) (#1068-1070)
dividendTokenBalanceOf(address) should be declared external:
- EverPink.dividendTokenBalanceOf(address) (#1433-1435)
getIndexOfKey(IterableMapping.Map,address) should be declared external:
- IterableMapping.getIndexOfKey(IterableMapping.Map,address) (#97-102)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#396-399)
process(uint256) should be declared external:
- DividendTracker.process(uint256) (#1882-1926)
symbol() should be declared external:
- ERC20.symbol() (#275-277)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#318-321)
isExcludedFromFees(address) should be declared external:
- EverPink.isExcludedFromFees(address) (#1425-1427)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#377-380)
size(IterableMapping.Map) should be declared external:
- IterableMapping.size(IterableMapping.Map) (#110-112)
name() should be declared external:
- ERC20.name() (#267-269)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#337-340)
withdrawableDividendOf(address) should be declared external:
- EverPink.withdrawableDividendOf(address) (#1429-1431)
withdrawDividend() should be declared external:
- DividendPayingToken.withdrawDividend() (#1040-1042)
withdrawnDividendOf(address) should be declared external:
- DividendPayingToken.withdrawnDividendOf(address) (#1082-1084)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#326-328)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token seems to be untradeable: there is no PancakeSwap trading pair and no trading volumes. Ignore for presale.


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


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


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


Token is not listed at Mobula.Finance

Additional information: link


Unable to find code repository for the project


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


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

Price for EPINK

News for EPINK