Recession Coin Token Logo

ECON [Recession Coin] Token

About ECON

Listings

Token 3 years
CoinGecko 3 years
CoinMarketCap 3 years
[CoinMarketCap] alert: Smart contract of the following asset can be modified by the contract creator (for example: disable selling, change fees, mint new tokens, or transfer tokens). Please exercise caution before taking any action and DYOR
white paper

Recession Coin focuses on building a strong community and providing accurate educational content to their investors by hosting AMAs with professional traders and financial analysts. The team aims to provide in-depth knowledge of the current economy, optimized strategies for building a strong portfolio and insights on how to invest wisely during this crisis. Crafting unique utility along the way, such as NFTs and social media educational channels, will also allow ECON to stand out and grow.

Social

Laser Scorebeta Last Audit: 13 August 2022

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

ECON.addLiquidity(uint256,uint256) (#1656-1671) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1662-1669)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in ECON._transfer(address,address,uint256) (#1507-1589):
External calls:
- swapTokensForEth(marketingTokens) (#1539)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1627-1633)
- swapAndLiquify(swapTokens) (#1544)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1662-1669)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1627-1633)
- swapAndSendDividends(sellTokens) (#1547)
- success = IERC20(BTCB).transfer(address(dividendTracker),dividends) (#1676)
- dividendTracker.distributeBTCBDividends(dividends) (#1679)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1647-1653)
External calls sending eth:
- address(_marketingWalletAddress).transfer(newBalance) (#1541)
- swapAndLiquify(swapTokens) (#1544)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1662-1669)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#1569)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#481)
- _balances[recipient] = _balances[recipient].add(amount) (#482)
- super._transfer(from,to,amount) (#1574)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#481)
- _balances[recipient] = _balances[recipient].add(amount) (#482)
- swapping = false (#1549)
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)


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.

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

DividendPayingToken._withdrawDividendOfUser(address) (#817-833) has external calls inside a loop: success = IERC20(BTCB).transfer(user,_withdrawableDividend) (#822)
Favor pull over push strategy for external calls.

Additional information: link

Different versions of Solidity is used:
- Version used: ['^0.6.12', '^0.6.2']
- ^0.6.12 (#3)
- ^0.6.2 (#1048)
Use one Solidity version.

Additional information: link

Pragma version^0.6.2 (#1048) allows old versions
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.

Additional information: link

Parameter DividendPayingToken.dividendOf(address)._owner (#839) is not in mixedCase
Parameter DividendPayingToken.withdrawableDividendOf(address)._owner (#846) is not in mixedCase
Parameter DividendPayingToken.withdrawnDividendOf(address)._owner (#853) is not in mixedCase
Parameter DividendPayingToken.accumulativeDividendOf(address)._owner (#863) is not in mixedCase
Variable DividendPayingToken.BTCB (#765) is not in mixedCase
Constant DividendPayingToken.magnitude (#771) is not in UPPER_CASE_WITH_UNDERSCORES
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#994) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#995) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#1012) is not in mixedCase
Function IUniswapV2Router01.WETH() (#1052) is not in mixedCase
Parameter ECON.setExcludeFromAll(address)._address (#1363) is not in mixedCase
Parameter ECON.setonSellFee(uint256,uint256,uint256)._liquidityFee (#1369) is not in mixedCase
Parameter ECON.setonSellFee(uint256,uint256,uint256)._marketingFee (#1369) is not in mixedCase
Parameter ECON.setonBuyFee(uint256,uint256,uint256)._liquidityFee (#1377) is not in mixedCase
Parameter ECON.setonBuyFee(uint256,uint256,uint256)._marketingFee (#1377) is not in mixedCase
Variable ECON.BTCB (#1201) is not in mixedCase
Variable ECON._maxTxAmount (#1204) is not in mixedCase
Variable ECON.BTCBRewardFee (#1207) is not in mixedCase
Variable ECON._marketingWalletAddress (#1217) is not in mixedCase
Parameter ECONDividendTracker.getAccount(address)._account (#1752) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#121)" inContext (#115-124)
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 (#1057) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#1058)
Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (#818) is too similar to ECONDividendTracker.getAccount(address).withdrawableDividends (#1757)
Prevent variables from having similar names.

Additional information: link

SafeMathInt.MAX_INT256 (#590) is never used in SafeMathInt (#588-646)
Remove unused state variables.

Additional information: link

ECON.deadWallet (#1199) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

ECON.claim() (#1494-1496) ignores return value by dividendTracker.processAccount(msg.sender,false) (#1495)
ECON._transfer(address,address,uint256) (#1507-1589) ignores return value by dividendTracker.process(gas) (#1582-1587)
ECON.addLiquidity(uint256,uint256) (#1656-1671) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1662-1669)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendPayingToken.constructor(string,string)._name (#791) shadows:
- ERC20._name (#303) (state variable)
DividendPayingToken.constructor(string,string)._symbol (#791) shadows:
- ERC20._symbol (#304) (state variable)
DividendPayingToken.dividendOf(address)._owner (#839) shadows:
- Ownable._owner (#702) (state variable)
DividendPayingToken.withdrawableDividendOf(address)._owner (#846) shadows:
- Ownable._owner (#702) (state variable)
DividendPayingToken.withdrawnDividendOf(address)._owner (#853) shadows:
- Ownable._owner (#702) (state variable)
DividendPayingToken.accumulativeDividendOf(address)._owner (#863) shadows:
- Ownable._owner (#702) (state variable)
Rename the local variables that shadow another component.

Additional information: link

name() should be declared external:
- ERC20.name() (#323-325)
symbol() should be declared external:
- ERC20.symbol() (#331-333)
decimals() should be declared external:
- ERC20.decimals() (#348-350)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#374-377)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#382-384)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#393-396)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#411-419)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#433-436)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#452-455)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#737-740)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#746-750)
distributeBTCBDividends(uint256) should be declared external:
- DividendPayingToken.distributeBTCBDividends(uint256) (#796-807)
withdrawDividend() should be declared external:
- DividendPayingToken.withdrawDividend() (#811-813)
- ECONDividendTracker.withdrawDividend() (#1714-1716)
dividendOf(address) should be declared external:
- DividendPayingToken.dividendOf(address) (#839-841)
withdrawnDividendOf(address) should be declared external:
- DividendPayingToken.withdrawnDividendOf(address) (#853-855)
get(IterableMapping.Map,address) should be declared external:
- IterableMapping.get(IterableMapping.Map,address) (#926-928)
getIndexOfKey(IterableMapping.Map,address) should be declared external:
- IterableMapping.getIndexOfKey(IterableMapping.Map,address) (#930-935)
getKeyAtIndex(IterableMapping.Map,uint256) should be declared external:
- IterableMapping.getKeyAtIndex(IterableMapping.Map,uint256) (#937-939)
size(IterableMapping.Map) should be declared external:
- IterableMapping.size(IterableMapping.Map) (#943-945)
excludeFromMaxTx(address,bool) should be declared external:
- ECON.excludeFromMaxTx(address,bool) (#1228-1231)
updateDividendTracker(address) should be declared external:
- ECON.updateDividendTracker(address) (#1314-1329)
updateUniswapV2Router(address) should be declared external:
- ECON.updateUniswapV2Router(address) (#1331-1338)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- ECON.excludeMultipleAccountsFromFees(address[],bool) (#1347-1353)
setExcludeFromAll(address) should be declared external:
- ECON.setExcludeFromAll(address) (#1363-1367)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- ECON.setAutomatedMarketMakerPair(address,bool) (#1390-1394)
updateGasForProcessing(uint256) should be declared external:
- ECON.updateGasForProcessing(uint256) (#1409-1414)
isExcludedFromFees(address) should be declared external:
- ECON.isExcludedFromFees(address) (#1428-1430)
isExcludedFromMaxTx(address) should be declared external:
- ECON.isExcludedFromMaxTx(address) (#1432-1434)
withdrawableDividendOf(address) should be declared external:
- ECON.withdrawableDividendOf(address) (#1436-1438)
dividendTokenBalanceOf(address) should be declared external:
- ECON.dividendTokenBalanceOf(address) (#1440-1442)
getAccountAtIndex(uint256) should be declared external:
- ECONDividendTracker.getAccountAtIndex(uint256) (#1797-1814)
process(uint256) should be declared external:
- ECONDividendTracker.process(uint256) (#1841-1886)
Use the external attribute for functions never called from the contract.

Additional information: link

Reentrancy in DividendPayingToken._withdrawDividendOfUser(address) (#817-833):
External calls:
- success = IERC20(BTCB).transfer(user,_withdrawableDividend) (#822)
State variables written after the call(s):
- withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend) (#825)
Reentrancy in ECON.updateDividendTracker(address) (#1314-1329):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1321)
- newDividendTracker.excludeFromDividends(address(this)) (#1322)
- newDividendTracker.excludeFromDividends(owner()) (#1323)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#1324)
State variables written after the call(s):
- dividendTracker = newDividendTracker (#1328)
Apply the check-effects-interactions pattern.

Additional information: link

ECON.setSwapTokensAtAmount(uint256) (#1355-1357) should emit an event for:
- swapTokensAtAmount = amount * 10 ** 18 (#1356)
ECON.setonSellFee(uint256,uint256,uint256) (#1369-1375) should emit an event for:
- onSellBTCBRewardFee = rewardFee (#1370)
- onSellLiquidityFee = _liquidityFee (#1371)
- onSellMarketingFee = _marketingFee (#1372)
- onSellTotalFees = onSellBTCBRewardFee.add(onSellLiquidityFee).add(onSellMarketingFee) (#1373)
ECON.setonBuyFee(uint256,uint256,uint256) (#1377-1383) should emit an event for:
- BTCBRewardFee = rewardFee (#1378)
- liquidityFee = _liquidityFee (#1379)
- marketingFee = _marketingFee (#1380)
- totalFees = BTCBRewardFee.add(liquidityFee).add(marketingFee) (#1381)
ECON.setMaxTx(uint256) (#1385-1388) should emit an event for:
- _maxTxAmount = maxTxAmount * 10 ** 18 (#1386)
Emit an event for critical parameter changes.

Additional information: link

ECON.updateUniswapV2Router(address)._uniswapV2Pair (#1335-1336) lacks a zero-check on :
- uniswapV2Pair = _uniswapV2Pair (#1337)
ECON.setMarketingWallet(address).wallet (#1359) lacks a zero-check on :
- _marketingWalletAddress = wallet (#1360)
Check that the address is not zero.

Additional information: link

Variable 'ECON._transfer(address,address,uint256).iterations (#1582)' in ECON._transfer(address,address,uint256) (#1507-1589) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1583)
Variable 'ECON._transfer(address,address,uint256).claims (#1582)' in ECON._transfer(address,address,uint256) (#1507-1589) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1583)
Variable 'ECON._transfer(address,address,uint256).lastProcessedIndex (#1582)' in ECON._transfer(address,address,uint256) (#1507-1589) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1583)
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 ECON._transfer(address,address,uint256) (#1507-1589):
External calls:
- swapTokensForEth(marketingTokens) (#1539)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1627-1633)
- swapAndLiquify(swapTokens) (#1544)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1662-1669)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1627-1633)
External calls sending eth:
- address(_marketingWalletAddress).transfer(newBalance) (#1541)
- swapAndLiquify(swapTokens) (#1544)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1662-1669)
State variables written after the call(s):
- swapAndLiquify(swapTokens) (#1544)
- _allowances[owner][spender] = amount (#547)
Reentrancy in ECON._transfer(address,address,uint256) (#1507-1589):
External calls:
- swapTokensForEth(marketingTokens) (#1539)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1627-1633)
- swapAndLiquify(swapTokens) (#1544)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1662-1669)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1627-1633)
- swapAndSendDividends(sellTokens) (#1547)
- success = IERC20(BTCB).transfer(address(dividendTracker),dividends) (#1676)
- dividendTracker.distributeBTCBDividends(dividends) (#1679)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1647-1653)
External calls sending eth:
- address(_marketingWalletAddress).transfer(newBalance) (#1541)
- swapAndLiquify(swapTokens) (#1544)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1662-1669)
State variables written after the call(s):
- swapAndSendDividends(sellTokens) (#1547)
- _allowances[owner][spender] = amount (#547)
Reentrancy in ECON.constructor() (#1276-1308):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1283-1284)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#1287)
- uniswapV2Router = _uniswapV2Router (#1286)
Reentrancy in ECON.constructor() (#1276-1308):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1283-1284)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1289)
- dividendTracker.excludeFromDividends(pair) (#1402)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (#1292)
- dividendTracker.excludeFromDividends(address(this)) (#1293)
- dividendTracker.excludeFromDividends(owner()) (#1294)
- dividendTracker.excludeFromDividends(deadWallet) (#1295)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (#1296)
State variables written after the call(s):
- _mint(owner(),1000000000 * (10 ** 18)) (#1307)
- _balances[account] = _balances[account].add(amount) (#501)
- excludeFromFees(owner(),true) (#1299)
- _isExcludedFromFees[account] = excluded (#1342)
- excludeFromFees(_marketingWalletAddress,true) (#1300)
- _isExcludedFromFees[account] = excluded (#1342)
- excludeFromFees(address(this),true) (#1301)
- _isExcludedFromFees[account] = excluded (#1342)
- _mint(owner(),1000000000 * (10 ** 18)) (#1307)
- _totalSupply = _totalSupply.add(amount) (#500)
Reentrancy in ECONDividendTracker.processAccount(address,bool) (#1888-1898):
External calls:
- amount = _withdrawDividendOfUser(account) (#1889)
- success = IERC20(BTCB).transfer(user,_withdrawableDividend) (#822)
State variables written after the call(s):
- lastClaimTimes[account] = block.timestamp (#1892)
Reentrancy in ECON.swapAndLiquify(uint256) (#1592-1613):
External calls:
- swapTokensForEth(half) (#1604)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1627-1633)
- addLiquidity(otherHalf,newBalance) (#1610)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1662-1669)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1610)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1662-1669)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1610)
- _allowances[owner][spender] = amount (#547)
Reentrancy in ECON.updateUniswapV2Router(address) (#1331-1338):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#1335-1336)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#1337)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in ECON._setAutomatedMarketMakerPair(address,bool) (#1397-1406):
External calls:
- dividendTracker.excludeFromDividends(pair) (#1402)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#1405)
Reentrancy in ECON._transfer(address,address,uint256) (#1507-1589):
External calls:
- swapTokensForEth(marketingTokens) (#1539)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1627-1633)
- swapAndLiquify(swapTokens) (#1544)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1662-1669)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1627-1633)
External calls sending eth:
- address(_marketingWalletAddress).transfer(newBalance) (#1541)
- swapAndLiquify(swapTokens) (#1544)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1662-1669)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#548)
- swapAndLiquify(swapTokens) (#1544)
- SwapAndLiquify(half,newBalance,otherHalf) (#1612)
- swapAndLiquify(swapTokens) (#1544)
Reentrancy in ECON._transfer(address,address,uint256) (#1507-1589):
External calls:
- swapTokensForEth(marketingTokens) (#1539)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1627-1633)
- swapAndLiquify(swapTokens) (#1544)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1662-1669)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1627-1633)
- swapAndSendDividends(sellTokens) (#1547)
- success = IERC20(BTCB).transfer(address(dividendTracker),dividends) (#1676)
- dividendTracker.distributeBTCBDividends(dividends) (#1679)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1647-1653)
External calls sending eth:
- address(_marketingWalletAddress).transfer(newBalance) (#1541)
- swapAndLiquify(swapTokens) (#1544)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1662-1669)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#548)
- swapAndSendDividends(sellTokens) (#1547)
- SendDividends(tokens,dividends) (#1680)
- swapAndSendDividends(sellTokens) (#1547)
- Transfer(sender,recipient,amount) (#483)
- super._transfer(from,to,amount) (#1574)
- Transfer(sender,recipient,amount) (#483)
- super._transfer(from,address(this),fees) (#1569)
Reentrancy in ECON._transfer(address,address,uint256) (#1507-1589):
External calls:
- swapTokensForEth(marketingTokens) (#1539)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1627-1633)
- swapAndLiquify(swapTokens) (#1544)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1662-1669)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1627-1633)
- swapAndSendDividends(sellTokens) (#1547)
- success = IERC20(BTCB).transfer(address(dividendTracker),dividends) (#1676)
- dividendTracker.distributeBTCBDividends(dividends) (#1679)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1647-1653)
- dividendTracker.setBalance(address(from),balanceOf(from)) (#1576)
- dividendTracker.setBalance(address(to),balanceOf(to)) (#1577)
- dividendTracker.process(gas) (#1582-1587)
External calls sending eth:
- address(_marketingWalletAddress).transfer(newBalance) (#1541)
- swapAndLiquify(swapTokens) (#1544)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1662-1669)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1583)
Reentrancy in ECON.constructor() (#1276-1308):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1283-1284)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1289)
- dividendTracker.excludeFromDividends(pair) (#1402)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#1405)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1289)
Reentrancy in ECON.constructor() (#1276-1308):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1283-1284)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1289)
- dividendTracker.excludeFromDividends(pair) (#1402)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (#1292)
- dividendTracker.excludeFromDividends(address(this)) (#1293)
- dividendTracker.excludeFromDividends(owner()) (#1294)
- dividendTracker.excludeFromDividends(deadWallet) (#1295)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (#1296)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (#1344)
- excludeFromFees(owner(),true) (#1299)
- ExcludeFromFees(account,excluded) (#1344)
- excludeFromFees(address(this),true) (#1301)
- ExcludeFromFees(account,excluded) (#1344)
- excludeFromFees(_marketingWalletAddress,true) (#1300)
- Transfer(address(0),account,amount) (#502)
- _mint(owner(),1000000000 * (10 ** 18)) (#1307)
Reentrancy in ECONDividendTracker.processAccount(address,bool) (#1888-1898):
External calls:
- amount = _withdrawDividendOfUser(account) (#1889)
- success = IERC20(BTCB).transfer(user,_withdrawableDividend) (#822)
Event emitted after the call(s):
- Claim(account,amount,automatic) (#1893)
Reentrancy in ECON.processDividendTracker(uint256) (#1489-1492):
External calls:
- (iterations,claims,lastProcessedIndex) = dividendTracker.process(gas) (#1490)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,false,gas,tx.origin) (#1491)
Reentrancy in ECON.swapAndLiquify(uint256) (#1592-1613):
External calls:
- swapTokensForEth(half) (#1604)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1627-1633)
- addLiquidity(otherHalf,newBalance) (#1610)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1662-1669)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1610)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1662-1669)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#548)
- addLiquidity(otherHalf,newBalance) (#1610)
- SwapAndLiquify(half,newBalance,otherHalf) (#1612)
Reentrancy in ECON.swapAndSendDividends(uint256) (#1673-1682):
External calls:
- swapTokensForBTCB(tokens) (#1674)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1647-1653)
- success = IERC20(BTCB).transfer(address(dividendTracker),dividends) (#1676)
- dividendTracker.distributeBTCBDividends(dividends) (#1679)
Event emitted after the call(s):
- SendDividends(tokens,dividends) (#1680)
Reentrancy in ECON.updateDividendTracker(address) (#1314-1329):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1321)
- newDividendTracker.excludeFromDividends(address(this)) (#1322)
- newDividendTracker.excludeFromDividends(owner()) (#1323)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#1324)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (#1326)
Apply the check-effects-interactions pattern.

Additional information: link

ECONDividendTracker.getAccount(address) (#1752-1795) uses timestamp for comparisons
Dangerous comparisons:
- nextClaimTime > block.timestamp (#1792-1794)
ECONDividendTracker.canAutoClaim(uint256) (#1816-1822) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (#1817)
- block.timestamp.sub(lastClaimTime) >= claimWait (#1821)
Avoid relying on block.timestamp.

Additional information: link

Context._msgData() (#120-123) is never used and should be removed
DividendPayingToken._transfer(address,address,uint256) (#873-879) is never used and should be removed
SafeMath.mod(uint256,uint256) (#247-249) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#263-266) is never used and should be removed
SafeMathInt.abs(int256) (#636-639) is never used and should be removed
SafeMathInt.div(int256,int256) (#607-613) is never used and should be removed
SafeMathInt.mul(int256,int256) (#595-602) is never used and should be removed
Remove unused functions.

Additional information: link

ECON.totalFees (#1210) is set pre-construction with a non-constant function or state variable:
- BTCBRewardFee.add(liquidityFee).add(marketingFee)
ECON.onSellTotalFees (#1215) is set pre-construction with a non-constant function or state variable:
- onSellBTCBRewardFee.add(onSellLiquidityFee).add(onSellMarketingFee)
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

Reentrancy in ECON._transfer(address,address,uint256) (#1507-1589):
External calls:
- address(_marketingWalletAddress).transfer(newBalance) (#1541)
External calls sending eth:
- address(_marketingWalletAddress).transfer(newBalance) (#1541)
- swapAndLiquify(swapTokens) (#1544)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1662-1669)
State variables written after the call(s):
- swapAndLiquify(swapTokens) (#1544)
- _allowances[owner][spender] = amount (#547)
- swapAndSendDividends(sellTokens) (#1547)
- _allowances[owner][spender] = amount (#547)
- super._transfer(from,address(this),fees) (#1569)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#481)
- _balances[recipient] = _balances[recipient].add(amount) (#482)
- super._transfer(from,to,amount) (#1574)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#481)
- _balances[recipient] = _balances[recipient].add(amount) (#482)
- swapping = false (#1549)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#548)
- swapAndSendDividends(sellTokens) (#1547)
- Approval(owner,spender,amount) (#548)
- swapAndLiquify(swapTokens) (#1544)
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1583)
- SendDividends(tokens,dividends) (#1680)
- swapAndSendDividends(sellTokens) (#1547)
- SwapAndLiquify(half,newBalance,otherHalf) (#1612)
- swapAndLiquify(swapTokens) (#1544)
- Transfer(sender,recipient,amount) (#483)
- super._transfer(from,address(this),fees) (#1569)
- Transfer(sender,recipient,amount) (#483)
- super._transfer(from,to,amount) (#1574)
Apply the check-effects-interactions pattern.

Additional information: link

ECON.constructor() (#1276-1308) uses literals with too many digits:
- _mint(owner(),1000000000 * (10 ** 18)) (#1307)
ECON.setMaxTx(uint256) (#1385-1388) uses literals with too many digits:
- require(bool,string)(_maxTxAmount >= 1000000 * 10 ** 18,can't set max trx amount less then 0.1%) (#1387)
ECON.updateGasForProcessing(uint256) (#1409-1414) uses literals with too many digits:
- require(bool,string)(newValue >= 200000 && newValue <= 500000,ECON: gasForProcessing must be between 200,000 and 500,000) (#1410)
ECON.slitherConstructorVariables() (#1189-1683) uses literals with too many digits:
- deadWallet = 0x000000000000000000000000000000000000dEaD (#1199)
ECON.slitherConstructorVariables() (#1189-1683) uses literals with too many digits:
- swapTokensAtAmount = 1000000 * (10 ** 18) (#1203)
ECON.slitherConstructorVariables() (#1189-1683) uses literals with too many digits:
- _maxTxAmount = 10000000 * (10 ** 18) (#1204)
ECON.slitherConstructorVariables() (#1189-1683) uses literals with too many digits:
- gasForProcessing = 300000 (#1221)
ECONDividendTracker.getAccountAtIndex(uint256) (#1797-1814) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (#1808)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Holders:

Contract has 5% buy tax and 20% sell tax.
Taxes are suspiciously high (over 10%) and contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Token is deployed only at one blockchain


Token has only one trading pair


Number of Binance Smart Chain (BSC) token holders is low.


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


Token is not listed at Mobula.Finance

Additional information: link


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


Young tokens have high risks of scam / price dump / death


Young tokens have high risks of scam / price dump / death


Young tokens have high risks of scam / price dump / death


Young tokens have high risks of scam / price dump / death


Young tokens have high risks of scam / price dump / death


Token has no active CoinGecko listing / rank

Price for ECON

News for ECON