Euphoric Bliss Inc. is an infused pre-roll cannabis corporation & cryptocurrency token. We aim to set the trend for cryptocurrency mass migration, by fusing real world companies & products to provide sustainability to the crypto world and charts.
Reentrancy in EBIT._transfer(address,address,uint256) (contracts/Ebliss.sol#1212-1363):
External calls:
- swapTokensForBNB(contractTokenBalance) (contracts/Ebliss.sol#1272)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/Ebliss.sol#1410-1416)
- swapTokensForBNB(contractTokenBalance) (contracts/Ebliss.sol#1278)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/Ebliss.sol#1410-1416)
- buyBackAndBurn(buybackAmount) (contracts/Ebliss.sol#1302)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (contracts/Ebliss.sol#1391-1396)
External calls sending eth:
- transferToWallet(address(marketingWallet),marketingPortion) (contracts/Ebliss.sol#1287)
- recipient.transfer(amount) (contracts/Ebliss.sol#1421)
- addr.transfer(devPortion) (contracts/Ebliss.sol#1289)
- transferToWallet(address(marketingWallet),swapTokens_scope_0) (contracts/Ebliss.sol#1293)
- recipient.transfer(amount) (contracts/Ebliss.sol#1421)
- buyBackAndBurn(buybackAmount) (contracts/Ebliss.sol#1302)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (contracts/Ebliss.sol#1391-1396)
State variables written after the call(s):
- super._transfer(from,rewardsWallet,rewardPortion) (contracts/Ebliss.sol#1325)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (contracts/Ebliss.sol#378)
- _balances[recipient] = _balances[recipient].add(amount) (contracts/Ebliss.sol#379)
- super._transfer(from,rewardsWallet,rewardPortion_scope_1) (contracts/Ebliss.sol#1334)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (contracts/Ebliss.sol#378)
- _balances[recipient] = _balances[recipient].add(amount) (contracts/Ebliss.sol#379)
- super._transfer(from,rewardsWallet,rewardPortion_scope_3) (contracts/Ebliss.sol#1349)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (contracts/Ebliss.sol#378)
- _balances[recipient] = _balances[recipient].add(amount) (contracts/Ebliss.sol#379)
- super._transfer(from,address(this),fees) (contracts/Ebliss.sol#1358)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (contracts/Ebliss.sol#378)
- _balances[recipient] = _balances[recipient].add(amount) (contracts/Ebliss.sol#379)
- super._transfer(from,to,amount) (contracts/Ebliss.sol#1361)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (contracts/Ebliss.sol#378)
- _balances[recipient] = _balances[recipient].add(amount) (contracts/Ebliss.sol#379)
- lastBuyBack = block.timestamp (contracts/Ebliss.sol#1304)
- swapping = false (contracts/Ebliss.sol#1308)
Apply the check-effects-interactions pattern.
Additional information: link
EBIT.buyBackAndBurn(uint256) (contracts/Ebliss.sol#1382-1399) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (contracts/Ebliss.sol#1391-1396)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
EBIT._totalSupply (contracts/Ebliss.sol#888) shadows:
- ERC20._totalSupply (contracts/Ebliss.sol#203)
Remove the state variable shadowing.
Additional information: link
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Contract creator or owner is blacklisted for past scams
EBIT.updateBotFees(uint256) (contracts/Ebliss.sol#1170-1173) contains a tautology or contradiction:
- require(bool,string)(percent >= 0 && percent <= 100,must be between 0 and 100) (contracts/Ebliss.sol#1171)
EBIT.setBuyBackPercent(uint256) (contracts/Ebliss.sol#1165-1168) contains a tautology or contradiction:
- require(bool,string)(percent >= 0 && percent <= 100,must be between 0 and 100) (contracts/Ebliss.sol#1166)
Fix the incorrect comparison by changing the value type or the comparison.
Additional information: link
Contract ownership is not renounced (belongs to a wallet)
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.
EBIT.rand() (contracts/Ebliss.sol#1194-1210) uses a dangerous strict equality:
- randNumber == 0 (contracts/Ebliss.sol#1204)
Don't use strict equality to determine if an account has enough Ether or tokens.
Additional information: link
EBIT._transfer(address,address,uint256) (contracts/Ebliss.sol#1212-1363) performs a multiplication on the result of a division:
-totalTransferFees = totalSellFees.mul(transferFeeIncreaseFactor).div(100) (contracts/Ebliss.sol#1343)
-fees = amount.mul(totalTransferFees).div(100) (contracts/Ebliss.sol#1344)
EBIT._transfer(address,address,uint256) (contracts/Ebliss.sol#1212-1363) performs a multiplication on the result of a division:
-rewardPortion_scope_3 = fees.mul(sellRewardsFee).div(totalTransferFees) (contracts/Ebliss.sol#1346)
-fees = amount.mul(botFees).div(100) (contracts/Ebliss.sol#1353)
EBIT._transfer(address,address,uint256) (contracts/Ebliss.sol#1212-1363) performs a multiplication on the result of a division:
-fees = amount.mul(totalBuyFees).div(100) (contracts/Ebliss.sol#1320)
-rewardPortion = fees.mul(buyRewardsFee).div(totalBuyFees) (contracts/Ebliss.sol#1322)
EBIT._transfer(address,address,uint256) (contracts/Ebliss.sol#1212-1363) performs a multiplication on the result of a division:
-rewardPortion_scope_1 = fees.mul(sellRewardsFee).div(totalSellFees) (contracts/Ebliss.sol#1331)
-fees = amount.mul(botFees).div(100) (contracts/Ebliss.sol#1353)
EBIT._transfer(address,address,uint256) (contracts/Ebliss.sol#1212-1363) performs a multiplication on the result of a division:
-devPortion = swapTokens.div(10 ** 2).mul(15) (contracts/Ebliss.sol#1285)
EBIT.rand() (contracts/Ebliss.sol#1194-1210) performs a multiplication on the result of a division:
-randNumber = (seed - ((seed / 100) * 100)) (contracts/Ebliss.sol#1203)
EBIT._transfer(address,address,uint256) (contracts/Ebliss.sol#1212-1363) performs a multiplication on the result of a division:
-buyBackBalance = (afterSwap.sub(buyBackBalance)).mul(sellBuyBackFee).div(totalSellFees) (contracts/Ebliss.sol#1274)
-buybackAmount = buyBackBalance.mul(buybackpercent).div(100) (contracts/Ebliss.sol#1299)
Consider ordering multiplication before division.
Additional information: link
EBIT.updateFees(uint8,uint8,uint8,uint8,uint8,uint8) (contracts/Ebliss.sol#1140-1151) should emit an event for:
- buyRewardsFee = _buyRewardsFee (contracts/Ebliss.sol#1145)
- sellBuyBackFee = _sellBuyBackFee (contracts/Ebliss.sol#1146)
- sellMarketingFee = _sellMarketingFee (contracts/Ebliss.sol#1147)
- sellRewardsFee = _sellRewardsFee (contracts/Ebliss.sol#1148)
- totalSellFees = sellMarketingFee.add(sellRewardsFee).add(sellBuyBackFee) (contracts/Ebliss.sol#1149)
- totalBuyFees = buyMarketingFee.add(buyRewardsFee).add(buyBuyBackFee) (contracts/Ebliss.sol#1150)
EBIT.setSwapTokensAtAmount(uint256) (contracts/Ebliss.sol#1027-1029) should emit an event for:
- swapTokensAtAmount = _swapAmount * (10 ** 18) (contracts/Ebliss.sol#1028)
EBIT.setMaxWalletSize(uint256) (contracts/Ebliss.sol#1022-1025) should emit an event for:
- maxWalletSize = _maxToken * (10 ** 18) (contracts/Ebliss.sol#1024)
EBIT.setBuyBackPercent(uint256) (contracts/Ebliss.sol#1165-1168) should emit an event for:
- buybackpercent = percent (contracts/Ebliss.sol#1167)
EBIT.updateBotBlocks(uint256) (contracts/Ebliss.sol#1377-1380) should emit an event for:
- _botBlocks = botBlocks (contracts/Ebliss.sol#1379)
EBIT.setMaxBuyTransaction(uint256) (contracts/Ebliss.sol#1005-1008) should emit an event for:
- maxBuyTransactionAmount = _maxTxn * (10 ** 18) (contracts/Ebliss.sol#1007)
EBIT.openTrading(uint256,uint256) (contracts/Ebliss.sol#1068-1073) should emit an event for:
- _botBlocks = botBlocks (contracts/Ebliss.sol#1070)
- botFees = _botFees (contracts/Ebliss.sol#1071)
EBIT.updateBotFees(uint256) (contracts/Ebliss.sol#1170-1173) should emit an event for:
- botFees = percent (contracts/Ebliss.sol#1172)
EBIT.setTransferTransactionMultiplier(uint256) (contracts/Ebliss.sol#1031-1033) should emit an event for:
- transferFeeIncreaseFactor = _multiplier (contracts/Ebliss.sol#1032)
EBIT.setMaxSellTransaction(uint256) (contracts/Ebliss.sol#1010-1013) should emit an event for:
- maxSellTransactionAmount = _maxTxn * (10 ** 18) (contracts/Ebliss.sol#1012)
Emit an event for critical parameter changes.
Additional information: link
EBIT.whitelistPinkSale(address)._presaleAddress (contracts/Ebliss.sol#995) lacks a zero-check on :
- presaleAddress = _presaleAddress (contracts/Ebliss.sol#996)
Check that the address is not zero.
Additional information: link
Redundant expression "this (contracts/Ebliss.sol#21)" inContext (contracts/Ebliss.sol#15-24)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Contract ticker ($EBIT) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.
Parameter EBIT.setMaxBuyTransaction(uint256)._maxTxn (contracts/Ebliss.sol#1005) is not in mixedCase
Parameter EBIT.openTrading(uint256,uint256)._botFees (contracts/Ebliss.sol#1068) is not in mixedCase
Parameter EBIT.updateFees(uint8,uint8,uint8,uint8,uint8,uint8)._buyBuyBackFee (contracts/Ebliss.sol#1140) is not in mixedCase
Parameter EBIT.updateFees(uint8,uint8,uint8,uint8,uint8,uint8)._sellMarketingFee (contracts/Ebliss.sol#1140) is not in mixedCase
Parameter EBIT.setMaxWalletSize(uint256)._maxToken (contracts/Ebliss.sol#1022) is not in mixedCase
Parameter EBIT.setSwapTokensAtAmount(uint256)._swapAmount (contracts/Ebliss.sol#1027) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (contracts/Ebliss.sol#504) is not in mixedCase
Parameter EBIT.updateMarketingWallet(address)._newWallet (contracts/Ebliss.sol#1015) is not in mixedCase
Parameter EBIT.updateFees(uint8,uint8,uint8,uint8,uint8,uint8)._buyMarketingFee (contracts/Ebliss.sol#1140) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (contracts/Ebliss.sol#521) is not in mixedCase
Parameter EBIT.setMarketingEnabled(bool)._enabled (contracts/Ebliss.sol#1119) is not in mixedCase
Function EBIT._transferOwnership(address) (contracts/Ebliss.sol#1424-1427) is not in mixedCase
Parameter EBIT.updateFees(uint8,uint8,uint8,uint8,uint8,uint8)._buyRewardsFee (contracts/Ebliss.sol#1140) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (contracts/Ebliss.sol#503) is not in mixedCase
Parameter EBIT.updateFees(uint8,uint8,uint8,uint8,uint8,uint8)._sellBuyBackFee (contracts/Ebliss.sol#1140) is not in mixedCase
Parameter EBIT.updateFees(uint8,uint8,uint8,uint8,uint8,uint8)._sellRewardsFee (contracts/Ebliss.sol#1140) is not in mixedCase
Parameter EBIT.prepareForPartnerOrExchangeListing(address)._partnerOrExchangeAddress (contracts/Ebliss.sol#1001) is not in mixedCase
Parameter EBIT.whitelistPinkSale(address)._presaleAddress (contracts/Ebliss.sol#995) is not in mixedCase
Parameter EBIT.setTransferTransactionMultiplier(uint256)._multiplier (contracts/Ebliss.sol#1031) is not in mixedCase
Parameter EBIT.setMaxSellTransaction(uint256)._maxTxn (contracts/Ebliss.sol#1010) is not in mixedCase
Parameter EBIT.setRewardsEnabled(bool)._enabled (contracts/Ebliss.sol#1097) is not in mixedCase
Function IUniswapV2Router01.WETH() (contracts/Ebliss.sol#541) is not in mixedCase
Parameter EBIT.setBuyBackEnabled(bool)._enabled (contracts/Ebliss.sol#1075) is not in mixedCase
Variable EBIT._totalSupply (contracts/Ebliss.sol#888) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Reentrancy in EBIT._transfer(address,address,uint256) (contracts/Ebliss.sol#1212-1363):
External calls:
- swapTokensForBNB(contractTokenBalance) (contracts/Ebliss.sol#1272)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/Ebliss.sol#1410-1416)
State variables written after the call(s):
- buyBackBalance = (afterSwap.sub(buyBackBalance)).mul(sellBuyBackFee).div(totalSellFees) (contracts/Ebliss.sol#1274)
Reentrancy in EBIT._transfer(address,address,uint256) (contracts/Ebliss.sol#1212-1363):
External calls:
- swapTokensForBNB(contractTokenBalance) (contracts/Ebliss.sol#1272)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/Ebliss.sol#1410-1416)
- swapTokensForBNB(contractTokenBalance) (contracts/Ebliss.sol#1278)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/Ebliss.sol#1410-1416)
External calls sending eth:
- transferToWallet(address(marketingWallet),marketingPortion) (contracts/Ebliss.sol#1287)
- recipient.transfer(amount) (contracts/Ebliss.sol#1421)
- addr.transfer(devPortion) (contracts/Ebliss.sol#1289)
- transferToWallet(address(marketingWallet),swapTokens_scope_0) (contracts/Ebliss.sol#1293)
- recipient.transfer(amount) (contracts/Ebliss.sol#1421)
State variables written after the call(s):
- buyBackBalance = buyBackBalance.sub(buybackAmount) (contracts/Ebliss.sol#1300)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in EBIT.buyBackAndBurn(uint256) (contracts/Ebliss.sol#1382-1399):
External calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (contracts/Ebliss.sol#1391-1396)
Event emitted after the call(s):
- SwapBNBForTokens(amount,path) (contracts/Ebliss.sol#1398)
Reentrancy in EBIT._transfer(address,address,uint256) (contracts/Ebliss.sol#1212-1363):
External calls:
- swapTokensForBNB(contractTokenBalance) (contracts/Ebliss.sol#1272)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/Ebliss.sol#1410-1416)
- swapTokensForBNB(contractTokenBalance) (contracts/Ebliss.sol#1278)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/Ebliss.sol#1410-1416)
- buyBackAndBurn(buybackAmount) (contracts/Ebliss.sol#1302)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (contracts/Ebliss.sol#1391-1396)
External calls sending eth:
- transferToWallet(address(marketingWallet),marketingPortion) (contracts/Ebliss.sol#1287)
- recipient.transfer(amount) (contracts/Ebliss.sol#1421)
- addr.transfer(devPortion) (contracts/Ebliss.sol#1289)
- transferToWallet(address(marketingWallet),swapTokens_scope_0) (contracts/Ebliss.sol#1293)
- recipient.transfer(amount) (contracts/Ebliss.sol#1421)
- buyBackAndBurn(buybackAmount) (contracts/Ebliss.sol#1302)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (contracts/Ebliss.sol#1391-1396)
Event emitted after the call(s):
- SwapBNBForTokens(amount,path) (contracts/Ebliss.sol#1398)
- buyBackAndBurn(buybackAmount) (contracts/Ebliss.sol#1302)
- Transfer(sender,recipient,amount) (contracts/Ebliss.sol#380)
- super._transfer(from,rewardsWallet,rewardPortion) (contracts/Ebliss.sol#1325)
- Transfer(sender,recipient,amount) (contracts/Ebliss.sol#380)
- super._transfer(from,to,amount) (contracts/Ebliss.sol#1361)
- Transfer(sender,recipient,amount) (contracts/Ebliss.sol#380)
- super._transfer(from,address(this),fees) (contracts/Ebliss.sol#1358)
- Transfer(sender,recipient,amount) (contracts/Ebliss.sol#380)
- super._transfer(from,rewardsWallet,rewardPortion_scope_1) (contracts/Ebliss.sol#1334)
- Transfer(sender,recipient,amount) (contracts/Ebliss.sol#380)
- super._transfer(from,rewardsWallet,rewardPortion_scope_3) (contracts/Ebliss.sol#1349)
Apply the check-effects-interactions pattern.
Additional information: link
EBIT._transfer(address,address,uint256) (contracts/Ebliss.sol#1212-1363) uses timestamp for comparisons
Dangerous comparisons:
- block.timestamp <= _firstBlock.add(_botBlocks) (contracts/Ebliss.sol#1236)
- block.timestamp - previousTransactionBlock[from] <= _botBlocks (contracts/Ebliss.sol#1256)
- block.timestamp < _firstBlock + (86400) (contracts/Ebliss.sol#1283)
- buyBackEnabled && block.timestamp.sub(lastBuyBack) > (300) (contracts/Ebliss.sol#1297)
- buyBack <= 50 || block.timestamp.sub(lastBuyBack) > (600) (contracts/Ebliss.sol#1298)
EBIT.rand() (contracts/Ebliss.sol#1194-1210) uses timestamp for comparisons
Dangerous comparisons:
- randNumber == 0 (contracts/Ebliss.sol#1204)
Avoid relying on block.timestamp.
Additional information: link
EBIT.prepareForPreSale() (contracts/Ebliss.sol#1035-1047) compares to a boolean constant:
-require(bool,string)(tradingIsEnabled == false,cant prepare for presale once trading is enabled) (contracts/Ebliss.sol#1036)
EBIT.setRewardsEnabled(bool) (contracts/Ebliss.sol#1097-1116) compares to a boolean constant:
-_enabled == false (contracts/Ebliss.sol#1099)
EBIT.setBuyBackEnabled(bool) (contracts/Ebliss.sol#1075-1095) compares to a boolean constant:
-_enabled == false (contracts/Ebliss.sol#1077)
EBIT.setMarketingEnabled(bool) (contracts/Ebliss.sol#1119-1138) compares to a boolean constant:
-_enabled == false (contracts/Ebliss.sol#1121)
Remove the equality to the boolean constant.
Additional information: link
SafeMath.tryDiv(uint256,uint256) (contracts/Ebliss.sol#729-732) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (contracts/Ebliss.sol#739-742) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (contracts/Ebliss.sol#693-697) is never used and should be removed
ERC20._burn(address,uint256) (contracts/Ebliss.sol#413-421) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (contracts/Ebliss.sol#879-882) is never used and should be removed
SafeMath.div(uint256,uint256,string) (contracts/Ebliss.sol#859-862) is never used and should be removed
ERC20._setupDecimals(uint8) (contracts/Ebliss.sol#451-453) is never used and should be removed
Context._msgData() (contracts/Ebliss.sol#20-23) is never used and should be removed
SafeMath.mod(uint256,uint256) (contracts/Ebliss.sol#821-824) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (contracts/Ebliss.sol#714-722) is never used and should be removed
SafeMath.trySub(uint256,uint256) (contracts/Ebliss.sol#704-707) is never used and should be removed
Remove unused functions.
Additional information: link
Reentrancy in EBIT._transfer(address,address,uint256) (contracts/Ebliss.sol#1212-1363):
External calls:
- transferToWallet(address(marketingWallet),marketingPortion) (contracts/Ebliss.sol#1287)
- recipient.transfer(amount) (contracts/Ebliss.sol#1421)
- addr.transfer(devPortion) (contracts/Ebliss.sol#1289)
- transferToWallet(address(marketingWallet),swapTokens_scope_0) (contracts/Ebliss.sol#1293)
- recipient.transfer(amount) (contracts/Ebliss.sol#1421)
State variables written after the call(s):
- buyBackBalance = buyBackBalance.sub(buybackAmount) (contracts/Ebliss.sol#1300)
Reentrancy in EBIT._transfer(address,address,uint256) (contracts/Ebliss.sol#1212-1363):
External calls:
- transferToWallet(address(marketingWallet),marketingPortion) (contracts/Ebliss.sol#1287)
- recipient.transfer(amount) (contracts/Ebliss.sol#1421)
- addr.transfer(devPortion) (contracts/Ebliss.sol#1289)
- transferToWallet(address(marketingWallet),swapTokens_scope_0) (contracts/Ebliss.sol#1293)
- recipient.transfer(amount) (contracts/Ebliss.sol#1421)
External calls sending eth:
- transferToWallet(address(marketingWallet),marketingPortion) (contracts/Ebliss.sol#1287)
- recipient.transfer(amount) (contracts/Ebliss.sol#1421)
- addr.transfer(devPortion) (contracts/Ebliss.sol#1289)
- transferToWallet(address(marketingWallet),swapTokens_scope_0) (contracts/Ebliss.sol#1293)
- recipient.transfer(amount) (contracts/Ebliss.sol#1421)
- buyBackAndBurn(buybackAmount) (contracts/Ebliss.sol#1302)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (contracts/Ebliss.sol#1391-1396)
State variables written after the call(s):
- super._transfer(from,rewardsWallet,rewardPortion) (contracts/Ebliss.sol#1325)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (contracts/Ebliss.sol#378)
- _balances[recipient] = _balances[recipient].add(amount) (contracts/Ebliss.sol#379)
- super._transfer(from,rewardsWallet,rewardPortion_scope_1) (contracts/Ebliss.sol#1334)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (contracts/Ebliss.sol#378)
- _balances[recipient] = _balances[recipient].add(amount) (contracts/Ebliss.sol#379)
- super._transfer(from,rewardsWallet,rewardPortion_scope_3) (contracts/Ebliss.sol#1349)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (contracts/Ebliss.sol#378)
- _balances[recipient] = _balances[recipient].add(amount) (contracts/Ebliss.sol#379)
- super._transfer(from,address(this),fees) (contracts/Ebliss.sol#1358)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (contracts/Ebliss.sol#378)
- _balances[recipient] = _balances[recipient].add(amount) (contracts/Ebliss.sol#379)
- super._transfer(from,to,amount) (contracts/Ebliss.sol#1361)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (contracts/Ebliss.sol#378)
- _balances[recipient] = _balances[recipient].add(amount) (contracts/Ebliss.sol#379)
- lastBuyBack = block.timestamp (contracts/Ebliss.sol#1304)
- swapping = false (contracts/Ebliss.sol#1308)
Event emitted after the call(s):
- SwapBNBForTokens(amount,path) (contracts/Ebliss.sol#1398)
- buyBackAndBurn(buybackAmount) (contracts/Ebliss.sol#1302)
- Transfer(sender,recipient,amount) (contracts/Ebliss.sol#380)
- super._transfer(from,to,amount) (contracts/Ebliss.sol#1361)
- Transfer(sender,recipient,amount) (contracts/Ebliss.sol#380)
- super._transfer(from,rewardsWallet,rewardPortion_scope_1) (contracts/Ebliss.sol#1334)
- Transfer(sender,recipient,amount) (contracts/Ebliss.sol#380)
- super._transfer(from,rewardsWallet,rewardPortion_scope_3) (contracts/Ebliss.sol#1349)
- Transfer(sender,recipient,amount) (contracts/Ebliss.sol#380)
- super._transfer(from,rewardsWallet,rewardPortion) (contracts/Ebliss.sol#1325)
- Transfer(sender,recipient,amount) (contracts/Ebliss.sol#380)
- super._transfer(from,address(this),fees) (contracts/Ebliss.sol#1358)
Apply the check-effects-interactions pattern.
Additional information: link
Variable EBIT._transfer(address,address,uint256).rewardPortion_scope_1 (contracts/Ebliss.sol#1331) is too similar to EBIT._transfer(address,address,uint256).rewardPortion_scope_3 (contracts/Ebliss.sol#1346)
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (contracts/Ebliss.sol#546) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (contracts/Ebliss.sol#547)
Prevent variables from having similar names.
Additional information: link
EBIT.slitherConstructorVariables() (contracts/Ebliss.sol#885-1430) uses literals with too many digits:
- _totalSupply = 100000000000 * (10 ** 18) (contracts/Ebliss.sol#888)
EBIT.afterPreSale() (contracts/Ebliss.sol#1049-1066) uses literals with too many digits:
- swapTokensAtAmount = 20000000 * (10 ** 18) (contracts/Ebliss.sol#1062)
EBIT.slitherConstructorVariables() (contracts/Ebliss.sol#885-1430) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (contracts/Ebliss.sol#893)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
EBIT._totalSupply (contracts/Ebliss.sol#888) should be constant
EBIT.deadAddress (contracts/Ebliss.sol#893) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
isBot(address) should be declared external:
- EBIT.isBot(address) (contracts/Ebliss.sol#1365-1367)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (contracts/Ebliss.sol#315-319)
updateBotFees(uint256) should be declared external:
- EBIT.updateBotFees(uint256) (contracts/Ebliss.sol#1170-1173)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (contracts/Ebliss.sol#76-79)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- EBIT.setAutomatedMarketMakerPair(address,bool) (contracts/Ebliss.sol#1175-1182)
decimals() should be declared external:
- ERC20.decimals() (contracts/Ebliss.sol#252-254)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (contracts/Ebliss.sol#352-355)
symbol() should be declared external:
- ERC20.symbol() (contracts/Ebliss.sol#235-237)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (contracts/Ebliss.sol#278-281)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (contracts/Ebliss.sol#333-336)
getIsExcludedFromFees(address) should be declared external:
- EBIT.getIsExcludedFromFees(address) (contracts/Ebliss.sol#1190-1192)
name() should be declared external:
- ERC20.name() (contracts/Ebliss.sol#227-229)
setBuyBackPercent(uint256) should be declared external:
- EBIT.setBuyBackPercent(uint256) (contracts/Ebliss.sol#1165-1168)
totalSupply() should be declared external:
- ERC20.totalSupply() (contracts/Ebliss.sol#259-261)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (contracts/Ebliss.sol#297-300)
_transferOwnership(address) should be declared external:
- EBIT._transferOwnership(address) (contracts/Ebliss.sol#1424-1427)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (contracts/Ebliss.sol#93-98)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (contracts/Ebliss.sol#286-288)
Use the external attribute for functions never called from the contract.
Additional information: link
Contract has 5% buy tax and 15% sell tax.
Taxes are suspiciously high (over 10%) and contract ownership is not renounced. Token has a high risk of becoming a honeypot.
Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.
Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.
Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.
Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.
Token is deployed only at one blockchain
Token has only one trading pair
Unable to find website, listings and other project-related information
Token is marked as scam (rug pull, honeypot, phishing, etc.)
Additional information: link
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Young tokens have high risks of price dump / death
Telegram account has relatively few subscribers
Twitter account has relatively few followers
Last post in Twitter was more than 30 days ago
Unable to find Youtube account