Loud Market Token Logo

LOUD [Loud Market] Token

About LOUD

Listings

Token 2 years
CoinMarketCap 2 years

Website

white paper

LOUD Market is the Music NFT Marketplace! Loud is token built to support Loud Market’s NFT Marketplace. This platform has been created to empower musicians and artists in selling their work as NFTs instantly, at fair prices with no hidden fees! Their platform gives artists the opportunity to promote their media and create another source of income in the form of instant cryptocurrency payments. NFTs can be listed at a single sale price or sold through auction. Additionally, artists can include a “Royalty fee” guaranteeing them a percentage of all the future sales. $LOUD tokens will be accepted as payment by the content creators, musicians and artists.

Social

Laser Scorebeta Last Audit: 1 March 2022

report
Token seems to be (relatively) fine. It still become a scam, but probability is moderate.

LoudMarket.swapETHForTokens(uint256) (LoudMarket.sol#425-440) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadWallet,block.timestamp) (LoudMarket.sol#432-437)
LoudMarket.addLiquidity(uint256,uint256) (LoudMarket.sol#483-498) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (LoudMarket.sol#489-496)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in LoudMarket._transfer(address,address,uint256) (LoudMarket.sol#312-385):
External calls:
- swapAndSendToFee(marketingTokens) (LoudMarket.sol#341)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadWallet,block.timestamp) (LoudMarket.sol#432-437)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (LoudMarket.sol#454-460)
- swapAndLiquify(swapTokens) (LoudMarket.sol#344)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (LoudMarket.sol#489-496)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (LoudMarket.sol#454-460)
- swapAndSendDividends(sellTokens) (LoudMarket.sol#347)
- success = IERC20(BUSD).transfer(address(dividendTracker),dividends) (LoudMarket.sol#503)
- dividendTracker.distributeBUSDDividends(dividends) (LoudMarket.sol#506)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (LoudMarket.sol#474-480)
External calls sending eth:
- swapAndSendToFee(marketingTokens) (LoudMarket.sol#341)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadWallet,block.timestamp) (LoudMarket.sol#432-437)
- address(_marketingWalletAddress).transfer(marketingShare) (LoudMarket.sol#396)
- swapAndLiquify(swapTokens) (LoudMarket.sol#344)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (LoudMarket.sol#489-496)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (LoudMarket.sol#367)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (ERC20.sol#221)
- _balances[recipient] = _balances[recipient].add(amount) (ERC20.sol#222)
- super._transfer(from,to,amount) (LoudMarket.sol#370)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (ERC20.sol#221)
- _balances[recipient] = _balances[recipient].add(amount) (ERC20.sol#222)
- swapping = false (LoudMarket.sol#349)
Apply the check-effects-interactions pattern.

Additional information: link


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


Combination 1: Reentrancy vulnerabilities + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.

Reentrancy in DividendPayingToken._withdrawDividendOfUser(address) (DividendPayingToken.sol#76-92):
External calls:
- success = IERC20(BUSD).transfer(user,_withdrawableDividend) (DividendPayingToken.sol#81)
State variables written after the call(s):
- withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend) (DividendPayingToken.sol#84)
Reentrancy in LoudMarket.updateDividendTracker(address) (LoudMarket.sol#136-151):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (LoudMarket.sol#143)
- newDividendTracker.excludeFromDividends(address(this)) (LoudMarket.sol#144)
- newDividendTracker.excludeFromDividends(owner()) (LoudMarket.sol#145)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (LoudMarket.sol#146)
State variables written after the call(s):
- dividendTracker = newDividendTracker (LoudMarket.sol#150)
Apply the check-effects-interactions pattern.

Additional information: link

DividendPayingToken._withdrawDividendOfUser(address) (DividendPayingToken.sol#76-92) has external calls inside a loop: success = IERC20(BUSD).transfer(user,_withdrawableDividend) (DividendPayingToken.sol#81)
Favor pull over push strategy for external calls.

Additional information: link

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

LoudMarket.claim() (LoudMarket.sol#299-301) ignores return value by dividendTracker.processAccount(msg.sender,false) (LoudMarket.sol#300)
LoudMarket._transfer(address,address,uint256) (LoudMarket.sol#312-385) ignores return value by dividendTracker.process(gas) (LoudMarket.sol#378-383)
LoudMarket.addLiquidity(uint256,uint256) (LoudMarket.sol#483-498) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (LoudMarket.sol#489-496)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendPayingToken.constructor(string,string)._name (DividendPayingToken.sol#50) shadows:
- ERC20._name (ERC20.sol#43) (state variable)
DividendPayingToken.constructor(string,string)._symbol (DividendPayingToken.sol#50) shadows:
- ERC20._symbol (ERC20.sol#44) (state variable)
DividendPayingToken.dividendOf(address)._owner (DividendPayingToken.sol#98) shadows:
- Ownable._owner (Ownable.sol#8) (state variable)
DividendPayingToken.withdrawableDividendOf(address)._owner (DividendPayingToken.sol#105) shadows:
- Ownable._owner (Ownable.sol#8) (state variable)
DividendPayingToken.withdrawnDividendOf(address)._owner (DividendPayingToken.sol#112) shadows:
- Ownable._owner (Ownable.sol#8) (state variable)
DividendPayingToken.accumulativeDividendOf(address)._owner (DividendPayingToken.sol#122) shadows:
- Ownable._owner (Ownable.sol#8) (state variable)
Rename the local variables that shadow another component.

Additional information: link

LoudMarket.setBUSDRewardsFee(uint256) (LoudMarket.sol#181-184) should emit an event for:
- BUSDRewardsFee = value (LoudMarket.sol#182)
- totalFees = BUSDRewardsFee.add(liquidityFee).add(marketingFee) (LoudMarket.sol#183)
LoudMarket.setLiquiditFee(uint256) (LoudMarket.sol#186-189) should emit an event for:
- liquidityFee = value (LoudMarket.sol#187)
- totalFees = BUSDRewardsFee.add(liquidityFee).add(marketingFee) (LoudMarket.sol#188)
LoudMarket.setMarketingFee(uint256,uint256) (LoudMarket.sol#191-197) should emit an event for:
- marketingFee = _marketingFee (LoudMarket.sol#193)
- buyBackDivisor = _buyBackDivisor (LoudMarket.sol#194)
- totalFees = BUSDRewardsFee.add(liquidityFee).add(marketingFee) (LoudMarket.sol#195)
LoudMarket.setMaxTxAmount(uint256) (LoudMarket.sol#210-213) should emit an event for:
- maxTxAmount = newAmount * (10 ** 18) (LoudMarket.sol#211)
LoudMarket.setMinimumTokensForSwap(uint256) (LoudMarket.sol#215-218) should emit an event for:
- swapTokensAtAmount = newAmount * (10 ** 18) (LoudMarket.sol#216)
Emit an event for critical parameter changes.

Additional information: link

LoudMarket.updateUniswapV2Router(address)._uniswapV2Pair (LoudMarket.sol#157-158) lacks a zero-check on :
- uniswapV2Pair = _uniswapV2Pair (LoudMarket.sol#159)
LoudMarket.setMarketingWallet(address).wallet (LoudMarket.sol#177) lacks a zero-check on :
- _marketingWalletAddress = wallet (LoudMarket.sol#178)
Check that the address is not zero.

Additional information: link

Variable 'LoudMarket._transfer(address,address,uint256).claims (LoudMarket.sol#378)' in LoudMarket._transfer(address,address,uint256) (LoudMarket.sol#312-385) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (LoudMarket.sol#379)
Variable 'LoudMarket._transfer(address,address,uint256).iterations (LoudMarket.sol#378)' in LoudMarket._transfer(address,address,uint256) (LoudMarket.sol#312-385) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (LoudMarket.sol#379)
Variable 'LoudMarket._transfer(address,address,uint256).lastProcessedIndex (LoudMarket.sol#378)' in LoudMarket._transfer(address,address,uint256) (LoudMarket.sol#312-385) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (LoudMarket.sol#379)
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 LoudMarket._transfer(address,address,uint256) (LoudMarket.sol#312-385):
External calls:
- swapAndSendToFee(marketingTokens) (LoudMarket.sol#341)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadWallet,block.timestamp) (LoudMarket.sol#432-437)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (LoudMarket.sol#454-460)
- swapAndLiquify(swapTokens) (LoudMarket.sol#344)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (LoudMarket.sol#489-496)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (LoudMarket.sol#454-460)
External calls sending eth:
- swapAndSendToFee(marketingTokens) (LoudMarket.sol#341)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadWallet,block.timestamp) (LoudMarket.sol#432-437)
- address(_marketingWalletAddress).transfer(marketingShare) (LoudMarket.sol#396)
- swapAndLiquify(swapTokens) (LoudMarket.sol#344)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (LoudMarket.sol#489-496)
State variables written after the call(s):
- swapAndLiquify(swapTokens) (LoudMarket.sol#344)
- _allowances[owner][spender] = amount (ERC20.sol#287)
Reentrancy in LoudMarket._transfer(address,address,uint256) (LoudMarket.sol#312-385):
External calls:
- swapAndSendToFee(marketingTokens) (LoudMarket.sol#341)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadWallet,block.timestamp) (LoudMarket.sol#432-437)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (LoudMarket.sol#454-460)
- swapAndLiquify(swapTokens) (LoudMarket.sol#344)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (LoudMarket.sol#489-496)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (LoudMarket.sol#454-460)
- swapAndSendDividends(sellTokens) (LoudMarket.sol#347)
- success = IERC20(BUSD).transfer(address(dividendTracker),dividends) (LoudMarket.sol#503)
- dividendTracker.distributeBUSDDividends(dividends) (LoudMarket.sol#506)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (LoudMarket.sol#474-480)
External calls sending eth:
- swapAndSendToFee(marketingTokens) (LoudMarket.sol#341)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadWallet,block.timestamp) (LoudMarket.sol#432-437)
- address(_marketingWalletAddress).transfer(marketingShare) (LoudMarket.sol#396)
- swapAndLiquify(swapTokens) (LoudMarket.sol#344)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (LoudMarket.sol#489-496)
State variables written after the call(s):
- swapAndSendDividends(sellTokens) (LoudMarket.sol#347)
- _allowances[owner][spender] = amount (ERC20.sol#287)
Reentrancy in LoudMarket.constructor() (LoudMarket.sol#98-130):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (LoudMarket.sol#105-106)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (LoudMarket.sol#109)
- uniswapV2Router = _uniswapV2Router (LoudMarket.sol#108)
Reentrancy in LoudMarket.constructor() (LoudMarket.sol#98-130):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (LoudMarket.sol#105-106)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (LoudMarket.sol#111)
- dividendTracker.excludeFromDividends(pair) (LoudMarket.sol#226)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (LoudMarket.sol#114)
- dividendTracker.excludeFromDividends(address(this)) (LoudMarket.sol#115)
- dividendTracker.excludeFromDividends(owner()) (LoudMarket.sol#116)
- dividendTracker.excludeFromDividends(deadWallet) (LoudMarket.sol#117)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (LoudMarket.sol#118)
State variables written after the call(s):
- _mint(owner(),100000000 * (10 ** 18)) (LoudMarket.sol#129)
- _balances[account] = _balances[account].add(amount) (ERC20.sol#241)
- excludeFromFees(owner(),true) (LoudMarket.sol#121)
- _isExcludedFromFees[account] = excluded (LoudMarket.sol#164)
- excludeFromFees(_marketingWalletAddress,true) (LoudMarket.sol#122)
- _isExcludedFromFees[account] = excluded (LoudMarket.sol#164)
- excludeFromFees(address(this),true) (LoudMarket.sol#123)
- _isExcludedFromFees[account] = excluded (LoudMarket.sol#164)
- _mint(owner(),100000000 * (10 ** 18)) (LoudMarket.sol#129)
- _totalSupply = _totalSupply.add(amount) (ERC20.sol#240)
Reentrancy in LoudMarketDividendTracker.processAccount(address,bool) (LoudMarket.sol#708-718):
External calls:
- amount = _withdrawDividendOfUser(account) (LoudMarket.sol#709)
- success = IERC20(BUSD).transfer(user,_withdrawableDividend) (DividendPayingToken.sol#81)
State variables written after the call(s):
- lastClaimTimes[account] = block.timestamp (LoudMarket.sol#712)
Reentrancy in LoudMarket.swapAndLiquify(uint256) (LoudMarket.sol#401-422):
External calls:
- swapTokensForEth(half) (LoudMarket.sol#413)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (LoudMarket.sol#454-460)
- addLiquidity(otherHalf,newBalance) (LoudMarket.sol#419)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (LoudMarket.sol#489-496)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (LoudMarket.sol#419)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (LoudMarket.sol#489-496)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (LoudMarket.sol#419)
- _allowances[owner][spender] = amount (ERC20.sol#287)
Reentrancy in LoudMarket.updateUniswapV2Router(address) (LoudMarket.sol#153-160):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (LoudMarket.sol#157-158)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (LoudMarket.sol#159)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in LoudMarket._setAutomatedMarketMakerPair(address,bool) (LoudMarket.sol#221-230):
External calls:
- dividendTracker.excludeFromDividends(pair) (LoudMarket.sol#226)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (LoudMarket.sol#229)
Reentrancy in LoudMarket._transfer(address,address,uint256) (LoudMarket.sol#312-385):
External calls:
- swapAndSendToFee(marketingTokens) (LoudMarket.sol#341)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadWallet,block.timestamp) (LoudMarket.sol#432-437)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (LoudMarket.sol#454-460)
- swapAndLiquify(swapTokens) (LoudMarket.sol#344)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (LoudMarket.sol#489-496)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (LoudMarket.sol#454-460)
External calls sending eth:
- swapAndSendToFee(marketingTokens) (LoudMarket.sol#341)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadWallet,block.timestamp) (LoudMarket.sol#432-437)
- address(_marketingWalletAddress).transfer(marketingShare) (LoudMarket.sol#396)
- swapAndLiquify(swapTokens) (LoudMarket.sol#344)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (LoudMarket.sol#489-496)
Event emitted after the call(s):
- Approval(owner,spender,amount) (ERC20.sol#288)
- swapAndLiquify(swapTokens) (LoudMarket.sol#344)
- SwapAndLiquify(half,newBalance,otherHalf) (LoudMarket.sol#421)
- swapAndLiquify(swapTokens) (LoudMarket.sol#344)
Reentrancy in LoudMarket._transfer(address,address,uint256) (LoudMarket.sol#312-385):
External calls:
- swapAndSendToFee(marketingTokens) (LoudMarket.sol#341)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadWallet,block.timestamp) (LoudMarket.sol#432-437)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (LoudMarket.sol#454-460)
- swapAndLiquify(swapTokens) (LoudMarket.sol#344)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (LoudMarket.sol#489-496)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (LoudMarket.sol#454-460)
- swapAndSendDividends(sellTokens) (LoudMarket.sol#347)
- success = IERC20(BUSD).transfer(address(dividendTracker),dividends) (LoudMarket.sol#503)
- dividendTracker.distributeBUSDDividends(dividends) (LoudMarket.sol#506)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (LoudMarket.sol#474-480)
External calls sending eth:
- swapAndSendToFee(marketingTokens) (LoudMarket.sol#341)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadWallet,block.timestamp) (LoudMarket.sol#432-437)
- address(_marketingWalletAddress).transfer(marketingShare) (LoudMarket.sol#396)
- swapAndLiquify(swapTokens) (LoudMarket.sol#344)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (LoudMarket.sol#489-496)
Event emitted after the call(s):
- Approval(owner,spender,amount) (ERC20.sol#288)
- swapAndSendDividends(sellTokens) (LoudMarket.sol#347)
- SendDividends(tokens,dividends) (LoudMarket.sol#507)
- swapAndSendDividends(sellTokens) (LoudMarket.sol#347)
- Transfer(sender,recipient,amount) (ERC20.sol#223)
- super._transfer(from,address(this),fees) (LoudMarket.sol#367)
- Transfer(sender,recipient,amount) (ERC20.sol#223)
- super._transfer(from,to,amount) (LoudMarket.sol#370)
Reentrancy in LoudMarket._transfer(address,address,uint256) (LoudMarket.sol#312-385):
External calls:
- swapAndSendToFee(marketingTokens) (LoudMarket.sol#341)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadWallet,block.timestamp) (LoudMarket.sol#432-437)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (LoudMarket.sol#454-460)
- swapAndLiquify(swapTokens) (LoudMarket.sol#344)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (LoudMarket.sol#489-496)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (LoudMarket.sol#454-460)
- swapAndSendDividends(sellTokens) (LoudMarket.sol#347)
- success = IERC20(BUSD).transfer(address(dividendTracker),dividends) (LoudMarket.sol#503)
- dividendTracker.distributeBUSDDividends(dividends) (LoudMarket.sol#506)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (LoudMarket.sol#474-480)
- dividendTracker.setBalance(address(from),balanceOf(from)) (LoudMarket.sol#372)
- dividendTracker.setBalance(address(to),balanceOf(to)) (LoudMarket.sol#373)
- dividendTracker.process(gas) (LoudMarket.sol#378-383)
External calls sending eth:
- swapAndSendToFee(marketingTokens) (LoudMarket.sol#341)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadWallet,block.timestamp) (LoudMarket.sol#432-437)
- address(_marketingWalletAddress).transfer(marketingShare) (LoudMarket.sol#396)
- swapAndLiquify(swapTokens) (LoudMarket.sol#344)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (LoudMarket.sol#489-496)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (LoudMarket.sol#379)
Reentrancy in LoudMarket.constructor() (LoudMarket.sol#98-130):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (LoudMarket.sol#105-106)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (LoudMarket.sol#111)
- dividendTracker.excludeFromDividends(pair) (LoudMarket.sol#226)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (LoudMarket.sol#229)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (LoudMarket.sol#111)
Reentrancy in LoudMarket.constructor() (LoudMarket.sol#98-130):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (LoudMarket.sol#105-106)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (LoudMarket.sol#111)
- dividendTracker.excludeFromDividends(pair) (LoudMarket.sol#226)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (LoudMarket.sol#114)
- dividendTracker.excludeFromDividends(address(this)) (LoudMarket.sol#115)
- dividendTracker.excludeFromDividends(owner()) (LoudMarket.sol#116)
- dividendTracker.excludeFromDividends(deadWallet) (LoudMarket.sol#117)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (LoudMarket.sol#118)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (LoudMarket.sol#166)
- excludeFromFees(address(this),true) (LoudMarket.sol#123)
- ExcludeFromFees(account,excluded) (LoudMarket.sol#166)
- excludeFromFees(_marketingWalletAddress,true) (LoudMarket.sol#122)
- ExcludeFromFees(account,excluded) (LoudMarket.sol#166)
- excludeFromFees(owner(),true) (LoudMarket.sol#121)
- Transfer(address(0),account,amount) (ERC20.sol#242)
- _mint(owner(),100000000 * (10 ** 18)) (LoudMarket.sol#129)
Reentrancy in LoudMarketDividendTracker.processAccount(address,bool) (LoudMarket.sol#708-718):
External calls:
- amount = _withdrawDividendOfUser(account) (LoudMarket.sol#709)
- success = IERC20(BUSD).transfer(user,_withdrawableDividend) (DividendPayingToken.sol#81)
Event emitted after the call(s):
- Claim(account,amount,automatic) (LoudMarket.sol#713)
Reentrancy in LoudMarket.processDividendTracker(uint256) (LoudMarket.sol#294-297):
External calls:
- (iterations,claims,lastProcessedIndex) = dividendTracker.process(gas) (LoudMarket.sol#295)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,false,gas,tx.origin) (LoudMarket.sol#296)
Reentrancy in LoudMarket.swapAndLiquify(uint256) (LoudMarket.sol#401-422):
External calls:
- swapTokensForEth(half) (LoudMarket.sol#413)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (LoudMarket.sol#454-460)
- addLiquidity(otherHalf,newBalance) (LoudMarket.sol#419)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (LoudMarket.sol#489-496)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (LoudMarket.sol#419)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (LoudMarket.sol#489-496)
Event emitted after the call(s):
- Approval(owner,spender,amount) (ERC20.sol#288)
- addLiquidity(otherHalf,newBalance) (LoudMarket.sol#419)
- SwapAndLiquify(half,newBalance,otherHalf) (LoudMarket.sol#421)
Reentrancy in LoudMarket.swapAndSendDividends(uint256) (LoudMarket.sol#500-509):
External calls:
- swapTokensForBUSD(tokens) (LoudMarket.sol#501)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (LoudMarket.sol#474-480)
- success = IERC20(BUSD).transfer(address(dividendTracker),dividends) (LoudMarket.sol#503)
- dividendTracker.distributeBUSDDividends(dividends) (LoudMarket.sol#506)
Event emitted after the call(s):
- SendDividends(tokens,dividends) (LoudMarket.sol#507)
Reentrancy in LoudMarket.swapAndSendToFee(uint256) (LoudMarket.sol#387-399):
External calls:
- swapTokensForEth(tokens) (LoudMarket.sol#391)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (LoudMarket.sol#454-460)
- swapETHForTokens(buyBackShare) (LoudMarket.sol#397)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadWallet,block.timestamp) (LoudMarket.sol#432-437)
External calls sending eth:
- address(_marketingWalletAddress).transfer(marketingShare) (LoudMarket.sol#396)
- swapETHForTokens(buyBackShare) (LoudMarket.sol#397)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadWallet,block.timestamp) (LoudMarket.sol#432-437)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (LoudMarket.sol#439)
- swapETHForTokens(buyBackShare) (LoudMarket.sol#397)
Reentrancy in LoudMarket.swapETHForTokens(uint256) (LoudMarket.sol#425-440):
External calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadWallet,block.timestamp) (LoudMarket.sol#432-437)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (LoudMarket.sol#439)
Reentrancy in LoudMarket.updateDividendTracker(address) (LoudMarket.sol#136-151):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (LoudMarket.sol#143)
- newDividendTracker.excludeFromDividends(address(this)) (LoudMarket.sol#144)
- newDividendTracker.excludeFromDividends(owner()) (LoudMarket.sol#145)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (LoudMarket.sol#146)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (LoudMarket.sol#148)
Apply the check-effects-interactions pattern.

Additional information: link

LoudMarketDividendTracker.getAccount(address) (LoudMarket.sol#572-615) uses timestamp for comparisons
Dangerous comparisons:
- nextClaimTime > block.timestamp (LoudMarket.sol#612-614)
LoudMarketDividendTracker.canAutoClaim(uint256) (LoudMarket.sol#636-642) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (LoudMarket.sol#637)
- block.timestamp.sub(lastClaimTime) >= claimWait (LoudMarket.sol#641)
Avoid relying on block.timestamp.

Additional information: link

Context._msgData() (Context.sol#20-23) is never used and should be removed
DividendPayingToken._transfer(address,address,uint256) (DividendPayingToken.sol#132-138) is never used and should be removed
SafeMath.mod(uint256,uint256) (SafeMath.sol#126-128) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (SafeMath.sol#142-145) is never used and should be removed
SafeMathInt.abs(int256) (SafeMathInt.sol#82-85) is never used and should be removed
SafeMathInt.div(int256,int256) (SafeMathInt.sol#53-59) is never used and should be removed
SafeMathInt.mul(int256,int256) (SafeMathInt.sol#41-48) is never used and should be removed
Remove unused functions.

Additional information: link

LoudMarket.totalFees (LoudMarket.sol#43) is set pre-construction with a non-constant function or state variable:
- BUSDRewardsFee.add(liquidityFee).add(marketingFee)
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.

Additional information: link

Pragma version^0.6.2 (Context.sol#3) allows old versions
Pragma version^0.6.2 (DividendPayingToken.sol#3) allows old versions
Pragma version^0.6.2 (DividendPayingTokenInterface.sol#3) allows old versions
Pragma version^0.6.2 (DividendPayingTokenOptionalInterface.sol#3) allows old versions
Pragma version^0.6.2 (ERC20.sol#3) allows old versions
Pragma version^0.6.2 (IERC20.sol#3) allows old versions
Pragma version^0.6.2 (IERC20Metadata.sol#3) allows old versions
Pragma version^0.6.2 (IUniswapV2Factory.sol#3) allows old versions
Pragma version^0.6.2 (IUniswapV2Pair.sol#3) allows old versions
Pragma version^0.6.2 (IUniswapV2Router.sol#3) allows old versions
Pragma version^0.6.2 (IterableMapping.sol#2) allows old versions
Pragma version^0.6.2 (LoudMarket.sol#10) allows old versions
Pragma version^0.6.2 (Ownable.sol#1) allows old versions
Pragma version^0.6.2 (SafeMath.sol#3) allows old versions
Pragma version^0.6.2 (SafeMathInt.sol#28) allows old versions
Pragma version^0.6.2 (SafeMathUint.sol#3) allows old versions
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.

Additional information: link

Parameter DividendPayingToken.dividendOf(address)._owner (DividendPayingToken.sol#98) is not in mixedCase
Parameter DividendPayingToken.withdrawableDividendOf(address)._owner (DividendPayingToken.sol#105) is not in mixedCase
Parameter DividendPayingToken.withdrawnDividendOf(address)._owner (DividendPayingToken.sol#112) is not in mixedCase
Parameter DividendPayingToken.accumulativeDividendOf(address)._owner (DividendPayingToken.sol#122) is not in mixedCase
Variable DividendPayingToken.BUSD (DividendPayingToken.sol#24) is not in mixedCase
Constant DividendPayingToken.magnitude (DividendPayingToken.sol#30) is not in UPPER_CASE_WITH_UNDERSCORES
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (IUniswapV2Pair.sol#20) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (IUniswapV2Pair.sol#21) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (IUniswapV2Pair.sol#38) is not in mixedCase
Function IUniswapV2Router01.WETH() (IUniswapV2Router.sol#7) is not in mixedCase
Parameter LoudMarket.setMarketingFee(uint256,uint256)._marketingFee (LoudMarket.sol#191) is not in mixedCase
Parameter LoudMarket.setMarketingFee(uint256,uint256)._buyBackDivisor (LoudMarket.sol#191) is not in mixedCase
Variable LoudMarket.BUSD (LoudMarket.sol#33) is not in mixedCase
Variable LoudMarket._isBlacklisted (LoudMarket.sol#38) is not in mixedCase
Variable LoudMarket.BUSDRewardsFee (LoudMarket.sol#40) is not in mixedCase
Variable LoudMarket._marketingWalletAddress (LoudMarket.sol#46) is not in mixedCase
Parameter LoudMarketDividendTracker.getAccount(address)._account (LoudMarket.sol#572) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (Context.sol#21)" inContext (Context.sol#15-24)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in LoudMarket._transfer(address,address,uint256) (LoudMarket.sol#312-385):
External calls:
- swapAndSendToFee(marketingTokens) (LoudMarket.sol#341)
- address(_marketingWalletAddress).transfer(marketingShare) (LoudMarket.sol#396)
External calls sending eth:
- swapAndSendToFee(marketingTokens) (LoudMarket.sol#341)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadWallet,block.timestamp) (LoudMarket.sol#432-437)
- address(_marketingWalletAddress).transfer(marketingShare) (LoudMarket.sol#396)
- swapAndLiquify(swapTokens) (LoudMarket.sol#344)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (LoudMarket.sol#489-496)
State variables written after the call(s):
- swapAndLiquify(swapTokens) (LoudMarket.sol#344)
- _allowances[owner][spender] = amount (ERC20.sol#287)
- swapAndSendDividends(sellTokens) (LoudMarket.sol#347)
- _allowances[owner][spender] = amount (ERC20.sol#287)
- super._transfer(from,address(this),fees) (LoudMarket.sol#367)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (ERC20.sol#221)
- _balances[recipient] = _balances[recipient].add(amount) (ERC20.sol#222)
- super._transfer(from,to,amount) (LoudMarket.sol#370)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (ERC20.sol#221)
- _balances[recipient] = _balances[recipient].add(amount) (ERC20.sol#222)
- swapping = false (LoudMarket.sol#349)
Event emitted after the call(s):
- Approval(owner,spender,amount) (ERC20.sol#288)
- swapAndLiquify(swapTokens) (LoudMarket.sol#344)
- Approval(owner,spender,amount) (ERC20.sol#288)
- swapAndSendDividends(sellTokens) (LoudMarket.sol#347)
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (LoudMarket.sol#379)
- SendDividends(tokens,dividends) (LoudMarket.sol#507)
- swapAndSendDividends(sellTokens) (LoudMarket.sol#347)
- SwapAndLiquify(half,newBalance,otherHalf) (LoudMarket.sol#421)
- swapAndLiquify(swapTokens) (LoudMarket.sol#344)
- Transfer(sender,recipient,amount) (ERC20.sol#223)
- super._transfer(from,to,amount) (LoudMarket.sol#370)
- Transfer(sender,recipient,amount) (ERC20.sol#223)
- super._transfer(from,address(this),fees) (LoudMarket.sol#367)
Reentrancy in LoudMarket.swapAndSendToFee(uint256) (LoudMarket.sol#387-399):
External calls:
- address(_marketingWalletAddress).transfer(marketingShare) (LoudMarket.sol#396)
External calls sending eth:
- address(_marketingWalletAddress).transfer(marketingShare) (LoudMarket.sol#396)
- swapETHForTokens(buyBackShare) (LoudMarket.sol#397)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadWallet,block.timestamp) (LoudMarket.sol#432-437)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (LoudMarket.sol#439)
- swapETHForTokens(buyBackShare) (LoudMarket.sol#397)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (IUniswapV2Router.sol#12) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (IUniswapV2Router.sol#13)
Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (DividendPayingToken.sol#77) is too similar to LoudMarketDividendTracker.getAccount(address).withdrawableDividends (LoudMarket.sol#577)
Prevent variables from having similar names.

Additional information: link

LoudMarket.constructor() (LoudMarket.sol#98-130) uses literals with too many digits:
- _mint(owner(),100000000 * (10 ** 18)) (LoudMarket.sol#129)
LoudMarket.updateGasForProcessing(uint256) (LoudMarket.sol#233-238) uses literals with too many digits:
- require(bool,string)(newValue >= 200000 && newValue <= 500000,LoudMarket: gasForProcessing must be between 200,000 and 500,000) (LoudMarket.sol#234)
LoudMarket.slitherConstructorVariables() (LoudMarket.sol#21-510) uses literals with too many digits:
- deadWallet = 0x000000000000000000000000000000000000dEaD (LoudMarket.sol#31)
LoudMarket.slitherConstructorVariables() (LoudMarket.sol#21-510) uses literals with too many digits:
- maxTxAmount = 10000000 * (10 ** 18) (LoudMarket.sol#36)
LoudMarket.slitherConstructorVariables() (LoudMarket.sol#21-510) uses literals with too many digits:
- gasForProcessing = 300000 (LoudMarket.sol#50)
LoudMarketDividendTracker.getAccountAtIndex(uint256) (LoudMarket.sol#617-634) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (LoudMarket.sol#628)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

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

Additional information: link

LoudMarket.deadWallet (LoudMarket.sol#31) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

distributeBUSDDividends(uint256) should be declared external:
- DividendPayingToken.distributeBUSDDividends(uint256) (DividendPayingToken.sol#55-66)
withdrawDividend() should be declared external:
- DividendPayingToken.withdrawDividend() (DividendPayingToken.sol#70-72)
- LoudMarketDividendTracker.withdrawDividend() (LoudMarket.sol#541-543)
dividendOf(address) should be declared external:
- DividendPayingToken.dividendOf(address) (DividendPayingToken.sol#98-100)
withdrawnDividendOf(address) should be declared external:
- DividendPayingToken.withdrawnDividendOf(address) (DividendPayingToken.sol#112-114)
name() should be declared external:
- ERC20.name() (ERC20.sol#63-65)
symbol() should be declared external:
- ERC20.symbol() (ERC20.sol#71-73)
decimals() should be declared external:
- ERC20.decimals() (ERC20.sol#88-90)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (ERC20.sol#114-117)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (ERC20.sol#122-124)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (ERC20.sol#133-136)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (ERC20.sol#151-159)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (ERC20.sol#173-176)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (ERC20.sol#192-195)
get(IterableMapping.Map,address) should be declared external:
- IterableMapping.get(IterableMapping.Map,address) (IterableMapping.sol#13-15)
getIndexOfKey(IterableMapping.Map,address) should be declared external:
- IterableMapping.getIndexOfKey(IterableMapping.Map,address) (IterableMapping.sol#17-22)
getKeyAtIndex(IterableMapping.Map,uint256) should be declared external:
- IterableMapping.getKeyAtIndex(IterableMapping.Map,uint256) (IterableMapping.sol#24-26)
size(IterableMapping.Map) should be declared external:
- IterableMapping.size(IterableMapping.Map) (IterableMapping.sol#30-32)
updateDividendTracker(address) should be declared external:
- LoudMarket.updateDividendTracker(address) (LoudMarket.sol#136-151)
updateUniswapV2Router(address) should be declared external:
- LoudMarket.updateUniswapV2Router(address) (LoudMarket.sol#153-160)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- LoudMarket.excludeMultipleAccountsFromFees(address[],bool) (LoudMarket.sol#169-175)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- LoudMarket.setAutomatedMarketMakerPair(address,bool) (LoudMarket.sol#200-204)
updateGasForProcessing(uint256) should be declared external:
- LoudMarket.updateGasForProcessing(uint256) (LoudMarket.sol#233-238)
isExcludedFromFees(address) should be declared external:
- LoudMarket.isExcludedFromFees(address) (LoudMarket.sol#252-254)
withdrawableDividendOf(address) should be declared external:
- LoudMarket.withdrawableDividendOf(address) (LoudMarket.sol#256-258)
dividendTokenBalanceOf(address) should be declared external:
- LoudMarket.dividendTokenBalanceOf(address) (LoudMarket.sol#260-262)
getAccountAtIndex(uint256) should be declared external:
- LoudMarketDividendTracker.getAccountAtIndex(uint256) (LoudMarket.sol#617-634)
process(uint256) should be declared external:
- LoudMarketDividendTracker.process(uint256) (LoudMarket.sol#661-706)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (Ownable.sol#43-46)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (Ownable.sol#52-56)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap liquidity 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.


Token is deployed only at one blockchain

Contract has 5% buy tax and 6% sell tax.
Taxes are low and contract ownership is renounced.


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account

No disclosed threats


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


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank

Price for LOUD

News for LOUD