BrowniesSwap Token Logo

BROWN [BrowniesSwap] Token

About BROWN

Listings

Token 2 years
white paper

BrowniesSwap has been built with one purpose to build the best-decentralized technology available for the people to earn and invest in BrowniesSwap token as a reward. we are revolutionizing the investment protocol with an advanced reflection network. We are more than just a token, we are the future of decentralization and creating an ecosystem where people can trade and exchange their ideas and project.
BrowniesSwap is a multifunctional token that aims to improve decentralization crypto system, it will have an integrated swap where you can exchange the token in desired one. BrowniesSwap will be a whole ecosystem that will provide features like Staking , NFT Marketplace, and Swap. BrowniesSwap will develop its own unique NFT marketplace and will connect the decentralized community. People will now be able to own exclusive rights on unique themes, characters, videos, music, and much more. Staking will allow users to earn yield in a form of BrowniesSwap tokens.

Social

Laser Scorebeta Last Audit: 30 November 2021

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

CoinToken.addLiquidity(uint256,uint256) (#750-763) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#755-762)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in CoinToken._transfer(address,address,uint256) (#653-691):
External calls:
- swapTokens(contractTokenBalance) (#671)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#722-728)
- buyBackTokens(balance.div(100)) (#679)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#740-745)
External calls sending eth:
- swapTokens(contractTokenBalance) (#671)
- recipient.transfer(amount) (#974)
- buyBackTokens(balance.div(100)) (#679)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#740-745)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#690)
- _liquidityFee = _previousLiquidityFee (#902)
- _liquidityFee = 0 (#895)
- _tokenTransfer(from,to,amount,takeFee) (#690)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#869)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#794)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#785)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#815)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#786)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#805)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#796)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#806)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#817)
- _tokenTransfer(from,to,amount,takeFee) (#690)
- _rTotal = _rTotal.sub(rFee) (#824)
- _tokenTransfer(from,to,amount,takeFee) (#690)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#871)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#814)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#804)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#795)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#816)
- buyBackTokens(balance.div(100)) (#679)
- inSwapAndLiquify = true (#481)
- inSwapAndLiquify = false (#483)
- _tokenTransfer(from,to,amount,takeFee) (#690)
- marketingFee = previousMarketingFee (#904)
- marketingFee = 0 (#897)
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.

CoinToken.setBuybackUpperLimit(uint256) (#941-943) should emit an event for:
- buyBackUpperLimit = buyBackLimit (#942)
Emit an event for critical parameter changes.

Additional information: link

CoinToken.swapTokens(uint256) (#693-704) performs a multiplication on the result of a division:
-transferToAddressETH(marketingAddress,transferredBalance.div(_liquidityFee).mul(marketingFee.sub(25))) (#702)
Consider ordering multiplication before division.

Additional information: link

CoinToken.addLiquidity(uint256,uint256) (#750-763) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#755-762)
Ensure that all the return values of the function calls are used.

Additional information: link

CoinToken._approve(address,address,uint256).owner (#645) shadows:
- Ownable.owner() (#155-157) (function)
Rename the local variables that shadow another component.

Additional information: link

CoinToken.setMarketingAddress(address)._marketingAddress (#945) lacks a zero-check on :
- marketingAddress = address(_marketingAddress) (#946)
Check that the address is not zero.

Additional information: link

Reentrancy in CoinToken.transferFrom(address,address,uint256) (#563-567):
External calls:
- _transfer(sender,recipient,amount) (#564)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#740-745)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#722-728)
External calls sending eth:
- _transfer(sender,recipient,amount) (#564)
- recipient.transfer(amount) (#974)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#740-745)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#565)
- _allowances[owner][spender] = amount (#649)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in CoinToken.transferFrom(address,address,uint256) (#563-567):
External calls:
- _transfer(sender,recipient,amount) (#564)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#740-745)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#722-728)
External calls sending eth:
- _transfer(sender,recipient,amount) (#564)
- recipient.transfer(amount) (#974)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#740-745)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#650)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#565)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#190-195) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#192)
Avoid relying on block.timestamp.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#122-139) uses assembly
- INLINE ASM (#131-134)
Do not use evm assembly.

Additional information: link

SafeMath.mod(uint256,uint256,string) (#77-80) is never used and should be removed
Remove unused functions.

Additional information: link

solc-0.8.5 is not recommended for deployment
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.

Additional information: link

Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#122-139):
- (success,returndata) = target.call{value: weiValue}(data) (#125)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable CoinToken._maxTxAmount (#448) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

Reentrancy in CoinToken.transferFrom(address,address,uint256) (#563-567):
External calls:
- _transfer(sender,recipient,amount) (#564)
- recipient.transfer(amount) (#974)
External calls sending eth:
- _transfer(sender,recipient,amount) (#564)
- recipient.transfer(amount) (#974)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#740-745)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#565)
- _allowances[owner][spender] = amount (#649)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#650)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#565)
Apply the check-effects-interactions pattern.

Additional information: link

Variable CoinToken._transferFromExcluded(address,address,uint256).rTransferAmount (#803) is too similar to CoinToken._transferStandard(address,address,uint256).tTransferAmount (#784)
Prevent variables from having similar names.

Additional information: link

CoinToken.slitherConstructorVariables() (#409-980) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#415)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

CoinToken.deadAddress (#415) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

setBuyBackEnabled(bool) should be declared external:
- CoinToken.setBuyBackEnabled(bool) (#954-957)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token is deployed only at one blockchain


Unable to find PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute number of swaps.


Twitter account link seems to be invalid


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


Unable to find token on CoinHunt

Additional information: link


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


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


Token has no active CoinGecko listing / rank


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinMarketCap rank

Price for BROWN