Binance Card Token Logo

BC [Binance Card] Token

About BC

Listings

Token 20 months

Website

Not Found

The mission of Binance Card Token is to celebrate the launch of the Binance Card 💳and to help make the Binance Card available to the world. As more and more people use the Binance Card, the Binance Card Token will continue to burn until the Binance Card is available in all countries and regions of the crypto world.🌎

Social

Laser Scorebeta Last Audit: 4 August 2022

report
Token seems to be anonymous. As long as we are unable to find website score is limited.

Token.addLiquidity(uint256,uint256) (#820-833) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#825-832)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in Token._transfer(address,address,uint256) (#729-767):
External calls:
- swapAndLiquify(contractTokenBalance) (#751)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#825-832)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#809-815)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#751)
- recipient.transfer(amount) (#693)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#825-832)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#754)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#762)
- finalAmount = takeFee(sender,recipient,amount) (#756-757)
- _balances[deadAddress] = _balances[deadAddress].add(tAmount) (#867)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#856)
Apply the check-effects-interactions pattern.

Additional information: link


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


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.


Contract ownership is not renounced (belongs to a wallet)

Token.addLiquidity(uint256,uint256) (#820-833) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#825-832)
Ensure that all the return values of the function calls are used.

Additional information: link

Token.constructor(string,string,uint8,uint256,address,address,address,address,address).owner (#504) shadows:
- Ownable.owner() (#152-154) (function)
Token.allowance(address,address).owner (#570) shadows:
- Ownable.owner() (#152-154) (function)
Token._approve(address,address,uint256).owner (#593) shadows:
- Ownable.owner() (#152-154) (function)
Rename the local variables that shadow another component.

Additional information: link

Token.setMaxDesAmount(uint256) (#613-615) should emit an event for:
- _maxDestroyAmount = maxDestroy (#614)
Token.setBuyDestFee(uint256) (#617-620) should emit an event for:
- _buyDestroyFee = newBuyDestroyFee (#618)
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyMarketingFee).add(_buyTeamFee).add(_buyDestroyFee) (#619)
Token.setSellDestFee(uint256) (#622-625) should emit an event for:
- _sellDestroyFee = newSellDestroyFee (#623)
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellMarketingFee).add(_sellTeamFee).add(_sellDestroyFee) (#624)
Token.setBuyTaxes(uint256,uint256,uint256) (#627-633) should emit an event for:
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyMarketingFee).add(_buyTeamFee).add(_buyDestroyFee) (#632)
Token.setSelTaxes(uint256,uint256,uint256) (#635-641) should emit an event for:
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellMarketingFee).add(_sellTeamFee).add(_sellDestroyFee) (#640)
Token.setDistributionSettings(uint256,uint256,uint256) (#643-649) should emit an event for:
- _liquidityShare = newLiquidityShare (#644)
- _teamShare = newTeamShare (#646)
- _totalDistributionShares = _liquidityShare.add(_marketingShare).add(_teamShare) (#648)
Token.setMaxTxAmount(uint256) (#651-653) should emit an event for:
- _maxTxAmount = maxTxAmount (#652)
Token.setWalletLimit(uint256) (#663-665) should emit an event for:
- _walletMax = newLimit (#664)
Token.setNumTokensBeforeSwap(uint256) (#667-669) should emit an event for:
- _minimumTokensBeforeSwap = newLimit (#668)
Emit an event for critical parameter changes.

Additional information: link

Token.constructor(string,string,uint8,uint256,address,address,address,address,address).owner (#504) lacks a zero-check on :
- _owner = owner (#518)
Token.constructor(string,string,uint8,uint256,address,address,address,address,address).marketingAddress (#505) lacks a zero-check on :
- marketingWalletAddress = address(marketingAddress) (#524)
Token.constructor(string,string,uint8,uint256,address,address,address,address,address).teamAddress (#506) lacks a zero-check on :
- teamWalletAddress = address(teamAddress) (#525)
Token.constructor(string,string,uint8,uint256,address,address,address,address,address).service (#507) lacks a zero-check on :
- address(service).transfer(msg.value) (#546)
Token.setMarketingWalletAddress(address).newAddress (#671) lacks a zero-check on :
- marketingWalletAddress = address(newAddress) (#672)
Token.setTeamWalletAddress(address).newAddress (#675) lacks a zero-check on :
- teamWalletAddress = address(newAddress) (#676)
Check that the address is not zero.

Additional information: link

Reentrancy in Token._transfer(address,address,uint256) (#729-767):
External calls:
- swapAndLiquify(contractTokenBalance) (#751)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#825-832)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#809-815)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#751)
- recipient.transfer(amount) (#693)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#825-832)
State variables written after the call(s):
- finalAmount = takeFee(sender,recipient,amount) (#756-757)
- _tFeeTotal = _tFeeTotal.add(tAmount) (#868)
Reentrancy in Token.changeRouterVersion(address) (#696-713):
External calls:
- newPairAddress = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#704-705)
State variables written after the call(s):
- isMarketPair[address(uniswapPair)] = true (#712)
- isWalletLimitExempt[address(uniswapPair)] = true (#711)
- uniswapPair = newPairAddress (#708)
- uniswapV2Router = _uniswapV2Router (#709)
Reentrancy in Token.constructor(string,string,uint8,uint256,address,address,address,address,address) (#498-548):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#512-513)
State variables written after the call(s):
- _allowances[address(this)][address(uniswapV2Router)] = _totalSupply (#530)
- _balances[owner] = _totalSupply (#545)
- _decimals = coinDecimals (#517)
- _maxDestroyAmount = supply * 10 ** _decimals (#522)
- _maxTxAmount = supply * 10 ** _decimals (#520)
- _minimumTokensBeforeSwap = 1 * 10 ** _decimals (#523)
- _name = coinName (#515)
- _owner = owner (#518)
- _symbol = coinSymbol (#516)
- _totalDistributionShares = _liquidityShare.add(_marketingShare).add(_teamShare) (#528)
- _totalSupply = supply * 10 ** _decimals (#519)
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyMarketingFee).add(_buyTeamFee) (#526)
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellMarketingFee).add(_sellTeamFee) (#527)
- _walletMax = supply * 10 ** _decimals (#521)
- isExcludedFromFee[owner] = true (#531)
- isExcludedFromFee[address(this)] = true (#532)
- isMarketPair[address(uniswapPair)] = true (#543)
- isTxLimitExempt[owner] = true (#539)
- isTxLimitExempt[deadAddress] = true (#540)
- isTxLimitExempt[address(this)] = true (#541)
- isWalletLimitExempt[owner] = true (#534)
- isWalletLimitExempt[address(uniswapPair)] = true (#535)
- isWalletLimitExempt[address(this)] = true (#536)
- isWalletLimitExempt[deadAddress] = true (#537)
- marketingWalletAddress = address(marketingAddress) (#524)
- teamWalletAddress = address(teamAddress) (#525)
- uniswapV2Router = _uniswapV2Router (#529)
Reentrancy in Token.swapAndLiquify(uint256) (#776-798):
External calls:
- swapTokensForEth(tokensForSwap) (#781)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#809-815)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#797)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#825-832)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#791)
- recipient.transfer(amount) (#693)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#794)
- recipient.transfer(amount) (#693)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#797)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#825-832)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#797)
- _allowances[owner][spender] = amount (#597)
Reentrancy in Token.transferFrom(address,address,uint256) (#723-727):
External calls:
- _transfer(sender,recipient,amount) (#724)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#825-832)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#809-815)
External calls sending eth:
- _transfer(sender,recipient,amount) (#724)
- recipient.transfer(amount) (#693)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#825-832)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#725)
- _allowances[owner][spender] = amount (#597)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Token._transfer(address,address,uint256) (#729-767):
External calls:
- swapAndLiquify(contractTokenBalance) (#751)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#825-832)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#809-815)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#751)
- recipient.transfer(amount) (#693)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#825-832)
Event emitted after the call(s):
- Transfer(sender,deadAddress,tAmount) (#869)
- finalAmount = takeFee(sender,recipient,amount) (#756-757)
- Transfer(sender,address(this),feeAmount) (#857)
- finalAmount = takeFee(sender,recipient,amount) (#756-757)
- Transfer(sender,recipient,finalAmount) (#764)
Reentrancy in Token.constructor(string,string,uint8,uint256,address,address,address,address,address) (#498-548):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#512-513)
External calls sending eth:
- address(service).transfer(msg.value) (#546)
Event emitted after the call(s):
- Transfer(address(0),owner,_totalSupply) (#547)
Reentrancy in Token.swapAndLiquify(uint256) (#776-798):
External calls:
- swapTokensForEth(tokensForSwap) (#781)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#809-815)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#797)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#825-832)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#791)
- recipient.transfer(amount) (#693)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#794)
- recipient.transfer(amount) (#693)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#797)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#825-832)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#598)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#797)
Reentrancy in Token.swapTokensForEth(uint256) (#800-818):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#809-815)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#817)
Reentrancy in Token.transferFrom(address,address,uint256) (#723-727):
External calls:
- _transfer(sender,recipient,amount) (#724)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#825-832)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#809-815)
External calls sending eth:
- _transfer(sender,recipient,amount) (#724)
- recipient.transfer(amount) (#693)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#825-832)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#598)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#725)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#90-99) uses assembly
- INLINE ASM (#97)
Address._functionCallWithValue(address,bytes,uint256,string) (#126-143) uses assembly
- INLINE ASM (#135-138)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#126-143) is never used and should be removed
Address.functionCall(address,bytes) (#109-111) is never used and should be removed
Address.functionCall(address,bytes,string) (#113-115) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#117-119) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#121-124) is never used and should be removed
Address.isContract(address) (#90-99) is never used and should be removed
Address.sendValue(address,uint256) (#101-107) is never used and should be removed
Context._msgData() (#10-14) is never used and should be removed
SafeMath.mod(uint256,uint256) (#78-80) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#82-85) is never used and should be removed
Remove unused functions.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#101-107):
- (success) = recipient.call{value: amount}() (#105)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#126-143):
- (success,returndata) = target.call{value: weiValue}(data) (#129)
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 (#147) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#220) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#222) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#239) is not in mixedCase
Function IUniswapV2Router01.WETH() (#269) is not in mixedCase
Parameter Token.setSwapAndLiquifyEnabled(bool)._enabled (#679) is not in mixedCase
Variable Token._balances (#432) is not in mixedCase
Variable Token._buyLiquidityFee (#440) is not in mixedCase
Variable Token._buyMarketingFee (#441) is not in mixedCase
Variable Token._buyTeamFee (#442) is not in mixedCase
Variable Token._buyDestroyFee (#443) is not in mixedCase
Variable Token._sellLiquidityFee (#445) is not in mixedCase
Variable Token._sellMarketingFee (#446) is not in mixedCase
Variable Token._sellTeamFee (#447) is not in mixedCase
Variable Token._sellDestroyFee (#448) is not in mixedCase
Variable Token._liquidityShare (#450) is not in mixedCase
Variable Token._marketingShare (#451) is not in mixedCase
Variable Token._teamShare (#452) is not in mixedCase
Variable Token._totalDistributionShares (#453) is not in mixedCase
Variable Token._totalTaxIfBuying (#455) is not in mixedCase
Variable Token._totalTaxIfSelling (#456) is not in mixedCase
Variable Token._tFeeTotal (#458) is not in mixedCase
Variable Token._maxDestroyAmount (#459) is not in mixedCase
Variable Token._maxTxAmount (#461) is not in mixedCase
Variable Token._walletMax (#462) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#11)" inContext (#4-15)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in Token._transfer(address,address,uint256) (#729-767):
External calls:
- swapAndLiquify(contractTokenBalance) (#751)
- recipient.transfer(amount) (#693)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#751)
- recipient.transfer(amount) (#693)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#825-832)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#754)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#762)
- finalAmount = takeFee(sender,recipient,amount) (#756-757)
- _balances[deadAddress] = _balances[deadAddress].add(tAmount) (#867)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#856)
- finalAmount = takeFee(sender,recipient,amount) (#756-757)
- _tFeeTotal = _tFeeTotal.add(tAmount) (#868)
Event emitted after the call(s):
- Transfer(sender,deadAddress,tAmount) (#869)
- finalAmount = takeFee(sender,recipient,amount) (#756-757)
- Transfer(sender,address(this),feeAmount) (#857)
- finalAmount = takeFee(sender,recipient,amount) (#756-757)
- Transfer(sender,recipient,finalAmount) (#764)
Reentrancy in Token.constructor(string,string,uint8,uint256,address,address,address,address,address) (#498-548):
External calls:
- address(service).transfer(msg.value) (#546)
Event emitted after the call(s):
- Transfer(address(0),owner,_totalSupply) (#547)
Reentrancy in Token.swapAndLiquify(uint256) (#776-798):
External calls:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#791)
- recipient.transfer(amount) (#693)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#794)
- recipient.transfer(amount) (#693)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#791)
- recipient.transfer(amount) (#693)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#794)
- recipient.transfer(amount) (#693)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#797)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#825-832)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#797)
- _allowances[owner][spender] = amount (#597)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#598)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#797)
Reentrancy in Token.transferFrom(address,address,uint256) (#723-727):
External calls:
- _transfer(sender,recipient,amount) (#724)
- recipient.transfer(amount) (#693)
External calls sending eth:
- _transfer(sender,recipient,amount) (#724)
- recipient.transfer(amount) (#693)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#825-832)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#725)
- _allowances[owner][spender] = amount (#597)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#598)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#725)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#274) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#275)
Prevent variables from having similar names.

Additional information: link

Token.slitherConstructorVariables() (#420-873) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#430)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

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

Additional information: link

waiveOwnership() should be declared external:
- Ownable.waiveOwnership() (#161-164)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#166-170)
getTime() should be declared external:
- Ownable.getTime() (#172-174)
name() should be declared external:
- Token.name() (#550-552)
symbol() should be declared external:
- Token.symbol() (#554-556)
decimals() should be declared external:
- Token.decimals() (#558-560)
totalSupply() should be declared external:
- Token.totalSupply() (#562-564)
allowance(address,address) should be declared external:
- Token.allowance(address,address) (#570-572)
increaseAllowance(address,uint256) should be declared external:
- Token.increaseAllowance(address,uint256) (#574-577)
decreaseAllowance(address,uint256) should be declared external:
- Token.decreaseAllowance(address,uint256) (#579-582)
minimumTokensBeforeSwapAmount() should be declared external:
- Token.minimumTokensBeforeSwapAmount() (#584-586)
approve(address,uint256) should be declared external:
- Token.approve(address,uint256) (#588-591)
setMarketPairStatus(address,bool) should be declared external:
- Token.setMarketPairStatus(address,bool) (#601-603)
setIsExcludedFromFee(address,bool) should be declared external:
- Token.setIsExcludedFromFee(address,bool) (#609-611)
setMaxDesAmount(uint256) should be declared external:
- Token.setMaxDesAmount(uint256) (#613-615)
setBuyDestFee(uint256) should be declared external:
- Token.setBuyDestFee(uint256) (#617-620)
setSellDestFee(uint256) should be declared external:
- Token.setSellDestFee(uint256) (#622-625)
setSwapAndLiquifyEnabled(bool) should be declared external:
- Token.setSwapAndLiquifyEnabled(bool) (#679-682)
setSwapAndLiquifyByLimitOnly(bool) should be declared external:
- Token.setSwapAndLiquifyByLimitOnly(bool) (#684-686)
getCirculatingSupply() should be declared external:
- Token.getCirculatingSupply() (#688-690)
changeRouterVersion(address) should be declared external:
- Token.changeRouterVersion(address) (#696-713)
transfer(address,uint256) should be declared external:
- Token.transfer(address,uint256) (#718-721)
transferFrom(address,address,uint256) should be declared external:
- Token.transferFrom(address,address,uint256) (#723-727)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token seems to be untradeable: there is no PancakeSwap trading pair and no trading volumes. Ignore for presale.


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


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Twitter account has few posts


Unable to find website, listings and other project-related information


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 BC

News for BC