Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Bridge.addLiquidity(uint256,uint256) (#650-663) sends eth to arbitrary user
Dangerous calls:
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#655-662)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in Bridge._transfer(address,address,uint256) (#564-606):
External calls:
- swapAndLiquify(contractTokenBalance) (#598)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#655-662)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#642-648)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#598)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#655-662)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#605)
- _rOwned[to] = _rOwned[to].add(rAmount) (#811)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#718)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#746)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#719)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#732)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#761)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#762)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#748)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#734)
- _tokenTransfer(from,to,amount,takeFee) (#605)
- _rTotal = _rTotal.sub(rFee) (#770)
- _tokenTransfer(from,to,amount,takeFee) (#605)
- _tOwned[to] = _tOwned[to].add(tAmount) (#813)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#731)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#760)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#747)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#733)
Apply the check-effects-interactions pattern.
Additional information: link
Bridge.withdrawToken(address,uint256) (#559-561) ignores return value by IBEP20(tokenAddress).transfer(owner(),amount) (#560)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
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.
Combination 2: Unchecked transfer + 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.
Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.
Not a direct threat, but may indicate unreliable intentions of developer. Widespread names (e.g. Elon, King, Moon, Doge) are common among meme-tokens and scams. The allow to gain free hype and attract unexperienced investors.
Bridge._rTotal (#351) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
Bridge._maxTxAmount (#375) is set pre-construction with a non-constant function or state variable:
- _tTotal / 2
Bridge._minTokenBalance (#376) is set pre-construction with a non-constant function or state variable:
- _tTotal / 2000
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
Bridge.reflectionFromToken(uint256,bool).tLiquidity_scope_1 (#469) is a local variable never initialized
Bridge.reflectionFromToken(uint256,bool).tFee_scope_0 (#469) is a local variable never initialized
Bridge.reflectionFromToken(uint256,bool).tMarketing_scope_2 (#469) 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
Bridge.addLiquidity(uint256,uint256) (#650-663) ignores return value by _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#655-662)
Ensure that all the return values of the function calls are used.
Additional information: link
Bridge.allowance(address,address).owner (#429) shadows:
- Ownable.owner() (#96-98) (function)
Bridge._approve(address,address,uint256).owner (#436) shadows:
- Ownable.owner() (#96-98) (function)
Rename the local variables that shadow another component.
Additional information: link
Bridge.setTransferFee(uint256,uint256,uint256) (#515-519) should emit an event for:
- _taxFeeTransfer = taxFee (#516)
- _liquidityFeeTransfer = liquidityFee (#517)
- _marketingFeeTransfer = marketingFee (#518)
Bridge.setBuyFee(uint256,uint256,uint256) (#520-524) should emit an event for:
- _taxFeeBuy = taxFee (#521)
- _liquidityFeeBuy = liquidityFee (#522)
- _marketingFeeBuy = marketingFee (#523)
Bridge.setSellFee(uint256,uint256,uint256) (#525-529) should emit an event for:
- _taxFeeSell = taxFee (#526)
- _liquidityFeeSell = liquidityFee (#527)
- _marketingFeeSell = marketingFee (#528)
Bridge.setCashbackPercent(uint256) (#530-532) should emit an event for:
- _sellPercentageOfLiquidityForCashback = cashbackPercent (#531)
Bridge.setMaxTxPercent(uint256) (#533-535) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(100) (#534)
Bridge.setMinTokenBalance(uint256) (#536-538) should emit an event for:
- _minTokenBalance = minTokenBalance (#537)
Emit an event for critical parameter changes.
Additional information: link
Ownable.constructor(address).initialOwner (#91) lacks a zero-check on :
- _owner = initialOwner (#92)
Bridge.constructor(address,address).marketingWallet (#397) lacks a zero-check on :
- _marketingWallet = marketingWallet (#398)
Bridge.setMarketingWallet(address).marketingWallet (#509) lacks a zero-check on :
- _marketingWallet = marketingWallet (#510)
Bridge.setUniswapPair(address).p (#553) lacks a zero-check on :
- _uniswapV2Pair = p (#554)
Check that the address is not zero.
Additional information: link
Variable 'Bridge.reflectionFromToken(uint256,bool).tFee (#462)' in Bridge.reflectionFromToken(uint256,bool) (#458-475) potentially used before declaration: (tFee,tLiquidity,tMarketing) = _getTValues(tAmount) (#469)
Variable 'Bridge.reflectionFromToken(uint256,bool).tMarketing (#462)' in Bridge.reflectionFromToken(uint256,bool) (#458-475) potentially used before declaration: (tFee,tLiquidity,tMarketing) = _getTValues(tAmount) (#469)
Variable 'Bridge.reflectionFromToken(uint256,bool).tLiquidity (#462)' in Bridge.reflectionFromToken(uint256,bool) (#458-475) potentially used before declaration: (tFee,tLiquidity,tMarketing) = _getTValues(tAmount) (#469)
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 Bridge._transfer(address,address,uint256) (#564-606):
External calls:
- swapAndLiquify(contractTokenBalance) (#598)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#655-662)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#642-648)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#598)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#655-662)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#605)
- _liquidityFeeTransfer = 0 (#675)
- _liquidityFeeTransfer = _liquidityFeeBuy (#680)
- _liquidityFeeTransfer = _liquidityFeeSell (#685)
- _liquidityFeeTransfer = previousLiquidityFee (#709)
- _tokenTransfer(from,to,amount,takeFee) (#605)
- _marketingFeeTransfer = 0 (#676)
- _marketingFeeTransfer = _marketingFeeBuy (#681)
- _marketingFeeTransfer = _marketingFeeSell (#686)
- _marketingFeeTransfer = previousMarketingFee (#710)
- _tokenTransfer(from,to,amount,takeFee) (#605)
- _tFeeTotal = _tFeeTotal.add(tFee) (#771)
- _tokenTransfer(from,to,amount,takeFee) (#605)
- _taxFeeTransfer = 0 (#674)
- _taxFeeTransfer = _taxFeeBuy (#679)
- _taxFeeTransfer = _taxFeeSell (#684)
- _taxFeeTransfer = previousTaxFee (#708)
Reentrancy in Bridge.constructor(address,address) (#397-413):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#404)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#408)
- _isExcludedFromFee[address(this)] = true (#409)
- _isExcludedFromFee[_marketingWallet] = true (#410)
- _uniswapV2Router = uniswapV2Router (#405)
Reentrancy in Bridge.swapAndLiquify(uint256) (#607-632):
External calls:
- swapTokensForBnb(half) (#621)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#642-648)
- addLiquidity(otherHalf,bnbForLiquidity) (#629)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#655-662)
External calls sending eth:
- addLiquidity(otherHalf,bnbForLiquidity) (#629)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#655-662)
State variables written after the call(s):
- addLiquidity(otherHalf,bnbForLiquidity) (#629)
- _allowances[owner][spender] = amount (#440)
Reentrancy in Bridge.transferFrom(address,address,uint256) (#443-447):
External calls:
- _transfer(sender,recipient,amount) (#444)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#655-662)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#642-648)
External calls sending eth:
- _transfer(sender,recipient,amount) (#444)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#655-662)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#445)
- _allowances[owner][spender] = amount (#440)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in Bridge._transfer(address,address,uint256) (#564-606):
External calls:
- swapAndLiquify(contractTokenBalance) (#598)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#655-662)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#642-648)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#598)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#655-662)
Event emitted after the call(s):
- Transfer(from,to,tAmount) (#816)
- _tokenTransfer(from,to,amount,takeFee) (#605)
- Transfer(sender,recipient,tTransferAmount) (#724)
- _tokenTransfer(from,to,amount,takeFee) (#605)
- Transfer(sender,recipient,tTransferAmount) (#767)
- _tokenTransfer(from,to,amount,takeFee) (#605)
- Transfer(sender,recipient,tTransferAmount) (#753)
- _tokenTransfer(from,to,amount,takeFee) (#605)
- Transfer(sender,recipient,tTransferAmount) (#739)
- _tokenTransfer(from,to,amount,takeFee) (#605)
Reentrancy in Bridge.constructor(address,address) (#397-413):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#404)
Event emitted after the call(s):
- Transfer(address(0),cOwner,_tTotal) (#412)
Reentrancy in Bridge.swapAndLiquify(uint256) (#607-632):
External calls:
- swapTokensForBnb(half) (#621)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#642-648)
- addLiquidity(otherHalf,bnbForLiquidity) (#629)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#655-662)
External calls sending eth:
- addLiquidity(otherHalf,bnbForLiquidity) (#629)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#655-662)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#441)
- addLiquidity(otherHalf,bnbForLiquidity) (#629)
- SwapAndLiquify(half,bnbForLiquidity,otherHalf) (#631)
Reentrancy in Bridge.transferFrom(address,address,uint256) (#443-447):
External calls:
- _transfer(sender,recipient,amount) (#444)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#655-662)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#642-648)
External calls sending eth:
- _transfer(sender,recipient,amount) (#444)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#655-662)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#441)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#445)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#127-132) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is still locked) (#129)
Avoid relying on block.timestamp.
Additional information: link
Bridge.includeInReward(address) (#491-503) has costly operations inside a loop:
- _excluded.pop() (#499)
Use a local variable to hold the loop computation result.
Additional information: link
Context._msgData() (#14-17) is never used and should be removed
SafeMath.mod(uint256,uint256) (#71-73) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#75-78) is never used and should be removed
Remove unused functions.
Additional information: link
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#166) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#167) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#184) is not in mixedCase
Function IUniswapV2Router01.WETH() (#204) is not in mixedCase
Variable Bridge._marketingWallet (#347) is not in mixedCase
Variable Bridge._taxFeeTransfer (#359) is not in mixedCase
Variable Bridge._liquidityFeeTransfer (#360) is not in mixedCase
Variable Bridge._marketingFeeTransfer (#361) is not in mixedCase
Variable Bridge._taxFeeBuy (#364) is not in mixedCase
Variable Bridge._liquidityFeeBuy (#365) is not in mixedCase
Variable Bridge._marketingFeeBuy (#366) is not in mixedCase
Variable Bridge._taxFeeSell (#369) is not in mixedCase
Variable Bridge._liquidityFeeSell (#370) is not in mixedCase
Variable Bridge._marketingFeeSell (#371) is not in mixedCase
Variable Bridge._sellPercentageOfLiquidityForCashback (#373) is not in mixedCase
Variable Bridge._maxTxAmount (#375) is not in mixedCase
Variable Bridge._minTokenBalance (#376) is not in mixedCase
Variable Bridge._swapAndLiquifyEnabled (#379) is not in mixedCase
Variable Bridge._uniswapV2Router (#381) is not in mixedCase
Variable Bridge._uniswapV2Pair (#382) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#15)" inContext (#9-18)
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 (#209) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#210)
Variable Bridge.reflectionFromToken(uint256,bool).rTransferAmount (#471) is too similar to Bridge._getTValues(uint256).tTransferAmount (#777)
Variable Bridge._transferStandard(address,address,uint256).rTransferAmount (#716) is too similar to Bridge._getTValues(uint256).tTransferAmount (#777)
Variable Bridge._transferToExcluded(address,address,uint256).rTransferAmount (#744) is too similar to Bridge._getTValues(uint256).tTransferAmount (#777)
Variable Bridge._transferBothExcluded(address,address,uint256).rTransferAmount (#729) is too similar to Bridge._getTValues(uint256).tTransferAmount (#777)
Variable Bridge._transferFromExcluded(address,address,uint256).rTransferAmount (#758) is too similar to Bridge._transferFromExcluded(address,address,uint256).tTransferAmount (#756)
Variable Bridge._transferFromExcluded(address,address,uint256).rTransferAmount (#758) is too similar to Bridge._transferStandard(address,address,uint256).tTransferAmount (#714)
Variable Bridge._transferFromExcluded(address,address,uint256).rTransferAmount (#758) is too similar to Bridge._transferToExcluded(address,address,uint256).tTransferAmount (#742)
Variable Bridge._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#787) is too similar to Bridge._getTValues(uint256).tTransferAmount (#777)
Variable Bridge._transferFromExcluded(address,address,uint256).rTransferAmount (#758) is too similar to Bridge._getTValues(uint256).tTransferAmount (#777)
Variable Bridge.reflectionFromToken(uint256,bool).rTransferAmount (#471) is too similar to Bridge._transferBothExcluded(address,address,uint256).tTransferAmount (#727)
Variable Bridge._transferStandard(address,address,uint256).rTransferAmount (#716) is too similar to Bridge._transferBothExcluded(address,address,uint256).tTransferAmount (#727)
Variable Bridge._transferBothExcluded(address,address,uint256).rTransferAmount (#729) is too similar to Bridge._transferBothExcluded(address,address,uint256).tTransferAmount (#727)
Variable Bridge._transferToExcluded(address,address,uint256).rTransferAmount (#744) is too similar to Bridge._transferBothExcluded(address,address,uint256).tTransferAmount (#727)
Variable Bridge.reflectionFromToken(uint256,bool).rTransferAmount (#471) is too similar to Bridge._transferStandard(address,address,uint256).tTransferAmount (#714)
Variable Bridge.reflectionFromToken(uint256,bool).rTransferAmount (#471) is too similar to Bridge._transferFromExcluded(address,address,uint256).tTransferAmount (#756)
Variable Bridge._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#787) is too similar to Bridge._transferBothExcluded(address,address,uint256).tTransferAmount (#727)
Variable Bridge._transferBothExcluded(address,address,uint256).rTransferAmount (#729) is too similar to Bridge._transferFromExcluded(address,address,uint256).tTransferAmount (#756)
Variable Bridge.reflectionFromToken(uint256,bool).rTransferAmount (#471) is too similar to Bridge._transferToExcluded(address,address,uint256).tTransferAmount (#742)
Variable Bridge._transferToExcluded(address,address,uint256).rTransferAmount (#744) is too similar to Bridge._transferFromExcluded(address,address,uint256).tTransferAmount (#756)
Variable Bridge._transferToExcluded(address,address,uint256).rTransferAmount (#744) is too similar to Bridge._transferStandard(address,address,uint256).tTransferAmount (#714)
Variable Bridge._transferBothExcluded(address,address,uint256).rTransferAmount (#729) is too similar to Bridge._transferStandard(address,address,uint256).tTransferAmount (#714)
Variable Bridge._transferToExcluded(address,address,uint256).rTransferAmount (#744) is too similar to Bridge._transferToExcluded(address,address,uint256).tTransferAmount (#742)
Variable Bridge._transferBothExcluded(address,address,uint256).rTransferAmount (#729) is too similar to Bridge._transferToExcluded(address,address,uint256).tTransferAmount (#742)
Variable Bridge._transferFromExcluded(address,address,uint256).rTransferAmount (#758) is too similar to Bridge._transferBothExcluded(address,address,uint256).tTransferAmount (#727)
Variable Bridge._transferStandard(address,address,uint256).rTransferAmount (#716) is too similar to Bridge._transferToExcluded(address,address,uint256).tTransferAmount (#742)
Variable Bridge._transferStandard(address,address,uint256).rTransferAmount (#716) is too similar to Bridge._transferStandard(address,address,uint256).tTransferAmount (#714)
Variable Bridge._transferStandard(address,address,uint256).rTransferAmount (#716) is too similar to Bridge._transferFromExcluded(address,address,uint256).tTransferAmount (#756)
Variable Bridge._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#787) is too similar to Bridge._transferToExcluded(address,address,uint256).tTransferAmount (#742)
Variable Bridge._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#787) is too similar to Bridge._transferStandard(address,address,uint256).tTransferAmount (#714)
Variable Bridge._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#787) is too similar to Bridge._transferFromExcluded(address,address,uint256).tTransferAmount (#756)
Prevent variables from having similar names.
Additional information: link
Bridge.slitherConstructorVariables() (#337-820) uses literals with too many digits:
- _tTotal = 2000000000000 * 10 ** 18 (#350)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Bridge._tTotal (#350) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#105-108)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#110-114)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#116-118)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#120-125)
unlock() should be declared external:
- Ownable.unlock() (#127-132)
totalSupply() should be declared external:
- Bridge.totalSupply() (#418-420)
transfer(address,uint256) should be declared external:
- Bridge.transfer(address,uint256) (#425-428)
allowance(address,address) should be declared external:
- Bridge.allowance(address,address) (#429-431)
approve(address,uint256) should be declared external:
- Bridge.approve(address,uint256) (#432-435)
transferFrom(address,address,uint256) should be declared external:
- Bridge.transferFrom(address,address,uint256) (#443-447)
increaseAllowance(address,uint256) should be declared external:
- Bridge.increaseAllowance(address,uint256) (#448-451)
decreaseAllowance(address,uint256) should be declared external:
- Bridge.decreaseAllowance(address,uint256) (#452-455)
reflectionFromToken(uint256,bool) should be declared external:
- Bridge.reflectionFromToken(uint256,bool) (#458-475)
excludeFromReward(address) should be declared external:
- Bridge.excludeFromReward(address) (#482-490)
totalFees() should be declared external:
- Bridge.totalFees() (#504-506)
setSwapAndLiquifyEnabled(bool) should be declared external:
- Bridge.setSwapAndLiquifyEnabled(bool) (#539-542)
isExcludedFromFee(address) should be declared external:
- Bridge.isExcludedFromFee(address) (#543-545)
isExcludedFromReward(address) should be declared external:
- Bridge.isExcludedFromReward(address) (#546-548)
Use the external attribute for functions never called from the contract.
Additional information: link
Contract has 0% buy tax and 100% sell tax.
Taxes are extremely high (over 30%)
Additional information: link
Average 30d PancakeSwap liquidity is low.
Average 30d PancakeSwap volume is low.
Average 30d number of PancakeSwap swaps is low.
Number of Binance Smart Chain (BSC) token holders is low.
Token is deployed only at one blockchain
Token has only one trading pair
Unable to find website, listings and other project-related information
Token is marked as scam (rug pull, honeypot, phishing, etc.)
Additional information: link
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Unable to find Telegram and Twitter accounts