Borgir Coin Token Logo

Borgir [Borgir Coin] Token

About Borgir

Listings

Not Found
Token 2 years

can u smell the memes? can u smell the monke flesh around you heaving, sweating? can u smell the b o r g i r?
www.borgirbsc.com
let's get some bomb ass borgir memes pumping you retards

Social

Laser Scorebeta Last Audit: 7 January 2022

report
Token has too many issues. Scam probability is high.

Anti-Scam

Links


Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)

Reentrancy in TOKEN._transfer(address,address,uint256) (#825-882):
External calls:
- swapAndLiquify(contractTokenBalance) (#855)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#922-929)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#911-917)
- (success) = address(_marketingWalletAddress).call{gas: 30000,value: marketingFunds}() (#896-898)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#855)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#922-929)
- (success) = address(_marketingWalletAddress).call{gas: 30000,value: marketingFunds}() (#896-898)
State variables written after the call(s):
- _liquidityFee = _buyLiquidityFee (#866)
- _liquidityFee = _sellLiquidityFee (#871)
- _liquidityFee = _buyLiquidityFee (#876)
- _tokenTransfer(from,to,amount,takeFee) (#881)
- _liquidityFee = _previousLiquidityFee (#810)
- _liquidityFee = 0 (#804)
- _marketingFee = _buyMarketingFee (#867)
- _marketingFee = _sellMarketingFee (#872)
- _marketingFee = _buyMarketingFee (#877)
- _tokenTransfer(from,to,amount,takeFee) (#881)
- _marketingFee = _previousMarketingFee (#809)
- _marketingFee = 0 (#803)
- _tokenTransfer(from,to,amount,takeFee) (#881)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#766)
- _rOwned[_marketingWalletAddress] = _rOwned[_marketingWalletAddress].add(rMarketing) (#774)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#964)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#954)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#638)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#976)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#955)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#977)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#966)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#640)
- _tokenTransfer(from,to,amount,takeFee) (#881)
- _rTotal = _rTotal.sub(rFee) (#719)
- _tokenTransfer(from,to,amount,takeFee) (#881)
- _tOwned[_marketingWalletAddress] = _tOwned[_marketingWalletAddress].add(tMarketing) (#776)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#768)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#637)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#975)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#965)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#639)
Apply the check-effects-interactions pattern.

Additional information: link

TOKEN.addLiquidity(uint256,uint256) (#920-930) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#922-929)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link


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.

TOKEN.swapAndLiquify(uint256) (#884-904) performs a multiplication on the result of a division:
-marketingTokens = contractTokenBalance.div(tFee).mul(_marketingFee) (#886)
TOKEN.swapAndLiquify(uint256) (#884-904) performs a multiplication on the result of a division:
-marketingFunds = newBalance.div(tFee).mul(_marketingFee) (#895)
TOKEN.swapAndLiquify(uint256) (#884-904) performs a multiplication on the result of a division:
-halfFunds = newBalance.div(tFee).mul(_liquidityFee.div(2)) (#900)
Consider ordering multiplication before division.

Additional information: link

TOKEN.addLiquidity(uint256,uint256) (#920-930) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#922-929)
Ensure that all the return values of the function calls are used.

Additional information: link

TOKEN.allowance(address,address).owner (#555) shadows:
- Ownable.owner() (#204-206) (function)
TOKEN._approve(address,address,uint256).owner (#817) shadows:
- Ownable.owner() (#204-206) (function)
Rename the local variables that shadow another component.

Additional information: link

TOKEN.setSellFeePercent(uint256,uint256,uint256) (#669-673) should emit an event for:
- _sellTaxFee = tFee (#670)
- _sellLiquidityFee = lFee (#671)
- _sellMarketingFee = mFee (#672)
TOKEN.setBuyFeePercent(uint256,uint256,uint256) (#675-679) should emit an event for:
- _buyTaxFee = tFee (#676)
- _buyLiquidityFee = lFee (#677)
- _buyMarketingFee = mFee (#678)
TOKEN.setMaxTxPercent(uint256) (#681-683) should emit an event for:
- _maxTxAmount = maxTxPercent * 10 ** _decimals (#682)
TOKEN.setMaxBalance(uint256) (#685-687) should emit an event for:
- _maxWalletBalance = maxBalancePercent * 10 ** _decimals (#686)
TOKEN.setNumTokensSellToAddToLiquidity(uint256) (#693-695) should emit an event for:
- numTokensSellToAddToLiquidity = amount * 10 ** _decimals (#694)
Emit an event for critical parameter changes.

Additional information: link

TOKEN.setMarketingWalletAddress(address)._addr (#689) lacks a zero-check on :
- _marketingWalletAddress = _addr (#690)
Check that the address is not zero.

Additional information: link

Reentrancy in TOKEN._transfer(address,address,uint256) (#825-882):
External calls:
- swapAndLiquify(contractTokenBalance) (#855)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#922-929)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#911-917)
- (success) = address(_marketingWalletAddress).call{gas: 30000,value: marketingFunds}() (#896-898)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#855)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#922-929)
- (success) = address(_marketingWalletAddress).call{gas: 30000,value: marketingFunds}() (#896-898)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#881)
- _previousLiquidityFee = _liquidityFee (#800)
- _tokenTransfer(from,to,amount,takeFee) (#881)
- _previousMarketingFee = _marketingFee (#799)
- _tokenTransfer(from,to,amount,takeFee) (#881)
- _previousTaxFee = _taxFee (#798)
- _tokenTransfer(from,to,amount,takeFee) (#881)
- _tFeeTotal = _tFeeTotal.add(tFee) (#720)
- _taxFee = _buyTaxFee (#865)
- _taxFee = _sellTaxFee (#870)
- _taxFee = _buyTaxFee (#875)
- _tokenTransfer(from,to,amount,takeFee) (#881)
- _taxFee = _previousTaxFee (#808)
- _taxFee = 0 (#802)
Reentrancy in TOKEN.constructor() (#494-527):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#509-510)
State variables written after the call(s):
- _isExcluded[_burnAddress] = true (#520)
- _isExcluded[uniswapV2Pair] = true (#521)
- _isExcludedFromFee[_msgSender()] = true (#516)
- _isExcludedFromFee[address(this)] = true (#517)
- _owner = _msgSender() (#523)
- uniswapV2Router = _uniswapV2Router (#513)
Reentrancy in TOKEN.setRouterAddress(address) (#697-701):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#699)
State variables written after the call(s):
- uniswapV2Router = _uniswapV2Router (#700)
Reentrancy in TOKEN.swapAndLiquify(uint256) (#884-904):
External calls:
- swapTokensForEth(swapTokens) (#893)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#911-917)
- (success) = address(_marketingWalletAddress).call{gas: 30000,value: marketingFunds}() (#896-898)
- addLiquidity(otherHalf,halfFunds) (#901)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#922-929)
External calls sending eth:
- (success) = address(_marketingWalletAddress).call{gas: 30000,value: marketingFunds}() (#896-898)
- addLiquidity(otherHalf,halfFunds) (#901)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#922-929)
State variables written after the call(s):
- addLiquidity(otherHalf,halfFunds) (#901)
- _allowances[owner][spender] = amount (#821)
Reentrancy in TOKEN.transferFrom(address,address,uint256) (#564-568):
External calls:
- _transfer(sender,recipient,amount) (#565)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#922-929)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#911-917)
- (success) = address(_marketingWalletAddress).call{gas: 30000,value: marketingFunds}() (#896-898)
External calls sending eth:
- _transfer(sender,recipient,amount) (#565)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#922-929)
- (success) = address(_marketingWalletAddress).call{gas: 30000,value: marketingFunds}() (#896-898)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#566)
- _allowances[owner][spender] = amount (#821)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in TOKEN._transfer(address,address,uint256) (#825-882):
External calls:
- swapAndLiquify(contractTokenBalance) (#855)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#922-929)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#911-917)
- (success) = address(_marketingWalletAddress).call{gas: 30000,value: marketingFunds}() (#896-898)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#855)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#922-929)
- (success) = address(_marketingWalletAddress).call{gas: 30000,value: marketingFunds}() (#896-898)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#959)
- _tokenTransfer(from,to,amount,takeFee) (#881)
- Transfer(sender,recipient,tTransferAmount) (#981)
- _tokenTransfer(from,to,amount,takeFee) (#881)
- Transfer(sender,recipient,tTransferAmount) (#970)
- _tokenTransfer(from,to,amount,takeFee) (#881)
- Transfer(sender,recipient,tTransferAmount) (#644)
- _tokenTransfer(from,to,amount,takeFee) (#881)
Reentrancy in TOKEN.constructor() (#494-527):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#509-510)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#524)
Reentrancy in TOKEN.swapAndLiquify(uint256) (#884-904):
External calls:
- swapTokensForEth(swapTokens) (#893)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#911-917)
- (success) = address(_marketingWalletAddress).call{gas: 30000,value: marketingFunds}() (#896-898)
- addLiquidity(otherHalf,halfFunds) (#901)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#922-929)
External calls sending eth:
- (success) = address(_marketingWalletAddress).call{gas: 30000,value: marketingFunds}() (#896-898)
- addLiquidity(otherHalf,halfFunds) (#901)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#922-929)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#822)
- addLiquidity(otherHalf,halfFunds) (#901)
- SwapAndLiquify(half,halfFunds,otherHalf) (#902)
Reentrancy in TOKEN.transferFrom(address,address,uint256) (#564-568):
External calls:
- _transfer(sender,recipient,amount) (#565)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#922-929)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#911-917)
- (success) = address(_marketingWalletAddress).call{gas: 30000,value: marketingFunds}() (#896-898)
External calls sending eth:
- _transfer(sender,recipient,amount) (#565)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#922-929)
- (success) = address(_marketingWalletAddress).call{gas: 30000,value: marketingFunds}() (#896-898)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#822)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#566)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#235-240) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked.) (#237)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#123-127) uses assembly
- INLINE ASM (#125)
Address._verifyCallResult(bool,bytes,string) (#175-188) uses assembly
- INLINE ASM (#180-183)
Do not use evm assembly.

Additional information: link

TOKEN.includeInReward(address) (#623-634) has costly operations inside a loop:
- _excluded.pop() (#630)
Use a local variable to hold the loop computation result.

Additional information: link

Address._verifyCallResult(bool,bytes,string) (#175-188) is never used and should be removed
Address.functionCall(address,bytes) (#135-137) is never used and should be removed
Address.functionCall(address,bytes,string) (#139-141) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#143-145) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#147-152) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#165-167) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#169-173) is never used and should be removed
Address.functionStaticCall(address,bytes) (#154-156) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#158-162) is never used and should be removed
Address.isContract(address) (#123-127) is never used and should be removed
Address.sendValue(address,uint256) (#129-133) is never used and should be removed
Context._msgData() (#114-117) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#91-96) is never used and should be removed
SafeMath.mod(uint256,uint256) (#80-82) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#98-103) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#20-26) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#47-52) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#54-59) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#35-45) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#28-33) is never used and should be removed
Remove unused functions.

Additional information: link

TOKEN._taxFee (#463) is set pre-construction with a non-constant function or state variable:
- _buyTaxFee
TOKEN._liquidityFee (#464) is set pre-construction with a non-constant function or state variable:
- _buyLiquidityFee
TOKEN._marketingFee (#465) is set pre-construction with a non-constant function or state variable:
- _buyMarketingFee
TOKEN._previousTaxFee (#467) is set pre-construction with a non-constant function or state variable:
- _taxFee
TOKEN._previousMarketingFee (#468) is set pre-construction with a non-constant function or state variable:
- _marketingFee
TOKEN._previousLiquidityFee (#469) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
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

Low level call in Address.sendValue(address,uint256) (#129-133):
- (success) = recipient.call{value: amount}() (#131)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#147-152):
- (success,returndata) = target.call{value: value}(data) (#150)
Low level call in Address.functionStaticCall(address,bytes,string) (#158-162):
- (success,returndata) = target.staticcall(data) (#160)
Low level call in Address.functionDelegateCall(address,bytes,string) (#169-173):
- (success,returndata) = target.delegatecall(data) (#171)
Low level call in TOKEN.withdrawStuckedFunds(uint256) (#712-716):
- (sent) = _owner.call{value: amount}() (#714)
Low level call in TOKEN.swapAndLiquify(uint256) (#884-904):
- (success) = address(_marketingWalletAddress).call{gas: 30000,value: marketingFunds}() (#896-898)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable Ownable._owner (#194) is not in mixedCase
Variable Ownable._lockTime (#196) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#267) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#268) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#282) is not in mixedCase
Function IUniswapV2Router01.WETH() (#300) is not in mixedCase
Parameter TOKEN.setMarketingWalletAddress(address)._addr (#689) is not in mixedCase
Parameter TOKEN.setSwapAndLiquifyEnabled(bool)._enabled (#703) is not in mixedCase
Parameter TOKEN.calculateTaxFee(uint256)._amount (#779) is not in mixedCase
Parameter TOKEN.calculateMarketingFee(uint256)._amount (#785) is not in mixedCase
Parameter TOKEN.calculateLiquidityFee(uint256)._amount (#791) is not in mixedCase
Variable TOKEN._burnAddress (#444) is not in mixedCase
Variable TOKEN._taxFee (#463) is not in mixedCase
Variable TOKEN._liquidityFee (#464) is not in mixedCase
Variable TOKEN._marketingFee (#465) is not in mixedCase
Variable TOKEN._maxTxAmount (#477) is not in mixedCase
Variable TOKEN._maxWalletBalance (#478) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#115)" inContext (#109-118)
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 (#304) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#305)
Variable TOKEN._transferFromExcluded(address,address,uint256).rTransferAmount (#974) is too similar to TOKEN._getTValues(uint256).tTransferAmount (#733)
Variable TOKEN.reflectionFromToken(uint256,bool).rTransferAmount (#603) is too similar to TOKEN._getValues(uint256).tTransferAmount (#724)
Variable TOKEN._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#742) is too similar to TOKEN._getValues(uint256).tTransferAmount (#724)
Variable TOKEN._transferToExcluded(address,address,uint256).rTransferAmount (#963) is too similar to TOKEN._transferToExcluded(address,address,uint256).tTransferAmount (#963)
Variable TOKEN._transferStandard(address,address,uint256).rTransferAmount (#953) is too similar to TOKEN._transferStandard(address,address,uint256).tTransferAmount (#953)
Variable TOKEN._getValues(uint256).rTransferAmount (#725) is too similar to TOKEN._transferStandard(address,address,uint256).tTransferAmount (#953)
Variable TOKEN._transferBothExcluded(address,address,uint256).rTransferAmount (#636) is too similar to TOKEN._getValues(uint256).tTransferAmount (#724)
Variable TOKEN._transferFromExcluded(address,address,uint256).rTransferAmount (#974) is too similar to TOKEN._transferStandard(address,address,uint256).tTransferAmount (#953)
Variable TOKEN.reflectionFromToken(uint256,bool).rTransferAmount (#603) is too similar to TOKEN._transferToExcluded(address,address,uint256).tTransferAmount (#963)
Variable TOKEN._transferFromExcluded(address,address,uint256).rTransferAmount (#974) is too similar to TOKEN._transferFromExcluded(address,address,uint256).tTransferAmount (#974)
Variable TOKEN.reflectionFromToken(uint256,bool).rTransferAmount (#603) is too similar to TOKEN._transferBothExcluded(address,address,uint256).tTransferAmount (#636)
Variable TOKEN._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#742) is too similar to TOKEN._transferToExcluded(address,address,uint256).tTransferAmount (#963)
Variable TOKEN._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#742) is too similar to TOKEN._transferBothExcluded(address,address,uint256).tTransferAmount (#636)
Variable TOKEN._transferBothExcluded(address,address,uint256).rTransferAmount (#636) is too similar to TOKEN._transferToExcluded(address,address,uint256).tTransferAmount (#963)
Variable TOKEN._transferBothExcluded(address,address,uint256).rTransferAmount (#636) is too similar to TOKEN._transferBothExcluded(address,address,uint256).tTransferAmount (#636)
Variable TOKEN._transferFromExcluded(address,address,uint256).rTransferAmount (#974) is too similar to TOKEN._getValues(uint256).tTransferAmount (#724)
Variable TOKEN._transferFromExcluded(address,address,uint256).rTransferAmount (#974) is too similar to TOKEN._transferToExcluded(address,address,uint256).tTransferAmount (#963)
Variable TOKEN._transferFromExcluded(address,address,uint256).rTransferAmount (#974) is too similar to TOKEN._transferBothExcluded(address,address,uint256).tTransferAmount (#636)
Variable TOKEN._transferToExcluded(address,address,uint256).rTransferAmount (#963) is too similar to TOKEN._transferStandard(address,address,uint256).tTransferAmount (#953)
Variable TOKEN._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#742) is too similar to TOKEN._getTValues(uint256).tTransferAmount (#733)
Variable TOKEN.reflectionFromToken(uint256,bool).rTransferAmount (#603) is too similar to TOKEN._transferStandard(address,address,uint256).tTransferAmount (#953)
Variable TOKEN._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#742) is too similar to TOKEN._transferStandard(address,address,uint256).tTransferAmount (#953)
Variable TOKEN._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#742) is too similar to TOKEN._transferFromExcluded(address,address,uint256).tTransferAmount (#974)
Variable TOKEN._transferBothExcluded(address,address,uint256).rTransferAmount (#636) is too similar to TOKEN._transferStandard(address,address,uint256).tTransferAmount (#953)
Variable TOKEN._transferToExcluded(address,address,uint256).rTransferAmount (#963) is too similar to TOKEN._getTValues(uint256).tTransferAmount (#733)
Variable TOKEN._transferStandard(address,address,uint256).rTransferAmount (#953) is too similar to TOKEN._getValues(uint256).tTransferAmount (#724)
Variable TOKEN.reflectionFromToken(uint256,bool).rTransferAmount (#603) is too similar to TOKEN._getTValues(uint256).tTransferAmount (#733)
Variable TOKEN._transferBothExcluded(address,address,uint256).rTransferAmount (#636) is too similar to TOKEN._getTValues(uint256).tTransferAmount (#733)
Variable TOKEN._getValues(uint256).rTransferAmount (#725) is too similar to TOKEN._transferBothExcluded(address,address,uint256).tTransferAmount (#636)
Variable TOKEN._transferStandard(address,address,uint256).rTransferAmount (#953) is too similar to TOKEN._transferBothExcluded(address,address,uint256).tTransferAmount (#636)
Variable TOKEN._getValues(uint256).rTransferAmount (#725) is too similar to TOKEN._transferFromExcluded(address,address,uint256).tTransferAmount (#974)
Variable TOKEN._transferStandard(address,address,uint256).rTransferAmount (#953) is too similar to TOKEN._transferToExcluded(address,address,uint256).tTransferAmount (#963)
Variable TOKEN._transferStandard(address,address,uint256).rTransferAmount (#953) is too similar to TOKEN._transferFromExcluded(address,address,uint256).tTransferAmount (#974)
Variable TOKEN._transferToExcluded(address,address,uint256).rTransferAmount (#963) is too similar to TOKEN._getValues(uint256).tTransferAmount (#724)
Variable TOKEN._getValues(uint256).rTransferAmount (#725) is too similar to TOKEN._getTValues(uint256).tTransferAmount (#733)
Variable TOKEN._transferStandard(address,address,uint256).rTransferAmount (#953) is too similar to TOKEN._getTValues(uint256).tTransferAmount (#733)
Variable TOKEN._transferToExcluded(address,address,uint256).rTransferAmount (#963) is too similar to TOKEN._transferBothExcluded(address,address,uint256).tTransferAmount (#636)
Variable TOKEN._transferToExcluded(address,address,uint256).rTransferAmount (#963) is too similar to TOKEN._transferFromExcluded(address,address,uint256).tTransferAmount (#974)
Variable TOKEN._getValues(uint256).rTransferAmount (#725) is too similar to TOKEN._transferToExcluded(address,address,uint256).tTransferAmount (#963)
Variable TOKEN.reflectionFromToken(uint256,bool).rTransferAmount (#603) is too similar to TOKEN._transferFromExcluded(address,address,uint256).tTransferAmount (#974)
Variable TOKEN._transferBothExcluded(address,address,uint256).rTransferAmount (#636) is too similar to TOKEN._transferFromExcluded(address,address,uint256).tTransferAmount (#974)
Variable TOKEN._getValues(uint256).rTransferAmount (#725) is too similar to TOKEN._getValues(uint256).tTransferAmount (#724)
Prevent variables from having similar names.

Additional information: link

TOKEN.constructor() (#494-527) uses literals with too many digits:
- _tTotal = 1000000000000 * 10 ** _decimals (#498)
TOKEN.constructor() (#494-527) uses literals with too many digits:
- _maxTxAmount = 30000000000 * 10 ** _decimals (#500)
TOKEN.constructor() (#494-527) uses literals with too many digits:
- _maxWalletBalance = 30000000000 * 10 ** _decimals (#501)
TOKEN.constructor() (#494-527) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 100000000 * 10 ** _decimals (#502)
TOKEN.slitherConstructorVariables() (#432-985) uses literals with too many digits:
- _burnAddress = 0x000000000000000000000000000000000000dEaD (#444)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

TOKEN._burnAddress (#444) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#213-216)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#219-223)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#227-232)
unlock() should be declared external:
- Ownable.unlock() (#235-240)
name() should be declared external:
- TOKEN.name() (#529-531)
symbol() should be declared external:
- TOKEN.symbol() (#533-535)
decimals() should be declared external:
- TOKEN.decimals() (#537-539)
totalSupply() should be declared external:
- TOKEN.totalSupply() (#541-543)
transfer(address,uint256) should be declared external:
- TOKEN.transfer(address,uint256) (#550-553)
allowance(address,address) should be declared external:
- TOKEN.allowance(address,address) (#555-557)
approve(address,uint256) should be declared external:
- TOKEN.approve(address,uint256) (#559-562)
transferFrom(address,address,uint256) should be declared external:
- TOKEN.transferFrom(address,address,uint256) (#564-568)
increaseAllowance(address,uint256) should be declared external:
- TOKEN.increaseAllowance(address,uint256) (#570-573)
decreaseAllowance(address,uint256) should be declared external:
- TOKEN.decreaseAllowance(address,uint256) (#575-578)
isExcludedFromReward(address) should be declared external:
- TOKEN.isExcludedFromReward(address) (#580-582)
totalFees() should be declared external:
- TOKEN.totalFees() (#584-586)
deliver(uint256) should be declared external:
- TOKEN.deliver(uint256) (#588-595)
reflectionFromToken(uint256,bool) should be declared external:
- TOKEN.reflectionFromToken(uint256,bool) (#597-606)
excludeFromFee(address) should be declared external:
- TOKEN.excludeFromFee(address) (#647-649)
includeInFee(address) should be declared external:
- TOKEN.includeInFee(address) (#651-653)
includeInBlacklist(address) should be declared external:
- TOKEN.includeInBlacklist(address) (#655-658)
excludeFromBlacklist(address) should be declared external:
- TOKEN.excludeFromBlacklist(address) (#660-663)
isExcludedFromFee(address) should be declared external:
- TOKEN.isExcludedFromFee(address) (#813-815)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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


Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute volume.


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


Unable to find Twitter account


Telegram account has less than 100 subscribers


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


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Unable to find token/project description on the website or on BscScan, CoinMarketCap


Unable to find token contract audit


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find Twitter link on the website


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


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for Borgir