BNFTX TOKEN Token Logo

BNFTT [BNFTX] Token

About BNFTT

Listings

Token 2 years
CoinMarketCap 2 years

Website

white paper

The BNFTT(BNFTX TOKEN) will be used to support the entire BNFTX ecosystem as a unique TOKEN for the BNFTX platform. We have carefully designed deflationary incentives to strengthen market promotion and create network effects to increase demand for BNFTT while reducing its circulating supply.

BNFTT is a 100% community-owned decentralized virtual space project.

BNFTT is a highly original diversified and comprehensive NFT trading and creation platform. Starting from the infrastructure with the highest technology integration and the most subversive, it gathers the leading resources in the field of global art creation to create NFT creation and transaction, IP agency and incubation, physical mapping NFT, auction and mortgage.

BNFTT is an ecological super platform integrating liquidity mining, NFT social networking, DAO, meta-universe and virtual idol.

Social

Laser Scorebeta Last Audit: 27 January 2022

report
Token is either risky or in presale. For presale 30+ is a fine score.

Anti-Scam

Links


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

token.swapTokensForDividendToken(uint256) (#1224-1244) ignores return value by IERC20(husdtToken).transfer(address(devAddress),dividends) (#1242)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link

Reentrancy in token._transfer(address,address,uint256) (#1135-1176):
External calls:
- swapAndLiquify(contractTokenBalance) (#1163)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#881-888)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1215-1221)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1234-1240)
- IERC20(husdtToken).transfer(address(devAddress),dividends) (#1242)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1163)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#881-888)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1175)
- _devFee = _previousDevFee (#1120)
- _devFee = 0 (#1113)
- _tokenTransfer(from,to,amount,takeFee) (#1175)
- _liquidityFee = _previousLiquidityFee (#1118)
- _liquidityFee = 0 (#1111)
- _tokenTransfer(from,to,amount,takeFee) (#1175)
- _rOwned[burnAddress] = _rOwned[burnAddress].add(rBurn) (#960)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1074)
- _rOwned[devAddress] = _rOwned[devAddress].add(rDev) (#970)
- _rOwned[address(this)] = _rOwned[address(this)].add(rDev) (#972)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#904)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#905)
- _tokenTransfer(from,to,amount,takeFee) (#1175)
- _rTotal = _rTotal.sub(rFee) (#1019)
Apply the check-effects-interactions pattern.

Additional information: link


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.

token._rTotal (#777) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
token._previousTaxFee (#785) is set pre-construction with a non-constant function or state variable:
- _taxFee
token._previousLiquidityFee (#788) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
token._previousBurnFee (#791) is set pre-construction with a non-constant function or state variable:
- _burnFee
token._previousDevFee (#794) is set pre-construction with a non-constant function or state variable:
- _devFee
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.5.0 (#659) allows old versions
Pragma version>=0.5.0 (#678) 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

Redundant expression "this (#236)" inContext (#230-239)
Remove redundant statements if they congest code but offer no value.

Additional information: link

token._tOwned (#770) is never used in token (#765-1246)
Remove unused state variables.

Additional information: link

token.swapAndLiquify(uint256) (#1178-1203) performs a multiplication on the result of a division:
-addHl = uint256(100).mul(_liquidityFee).div(_liquidityFee.add(lsDevFee)) (#1183)
-addNumber = contractTokenBalance.mul(addHl).div(100) (#1184)
Consider ordering multiplication before division.

Additional information: link

PancakeLibrary.getAmountsOut(address,uint256,address[]).i (#742) 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

token.addLiquidity(uint256,uint256) (#876-889) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#881-888)
Ensure that all the return values of the function calls are used.

Additional information: link

token.allowance(address,address).owner (#872) shadows:
- Ownable.owner() (#411-413) (function)
token._approve(address,address,uint256).owner (#1127) shadows:
- Ownable.owner() (#411-413) (function)
Rename the local variables that shadow another component.

Additional information: link

token.setTaxFeePercent(uint256) (#985-987) should emit an event for:
- _taxFee = taxFee (#986)
token.setLiquidityFeePercent(uint256) (#989-991) should emit an event for:
- _liquidityFee = liquidityFee (#990)
token.setBurnFeePercent(uint256) (#993-995) should emit an event for:
- _burnFee = burnFee (#994)
token.setDevFeePercent(uint256) (#997-999) should emit an event for:
- _devFee = devFee (#998)
token.setMaxTxPercent(uint256) (#1001-1003) should emit an event for:
- _maxTxAmount = maxTxPercent (#1002)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in token._transfer(address,address,uint256) (#1135-1176):
External calls:
- swapAndLiquify(contractTokenBalance) (#1163)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#881-888)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1215-1221)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1234-1240)
- IERC20(husdtToken).transfer(address(devAddress),dividends) (#1242)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1163)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#881-888)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1175)
- _burnFee = _previousBurnFee (#1119)
- _burnFee = 0 (#1112)
- _tokenTransfer(from,to,amount,takeFee) (#1175)
- _previousBurnFee = _burnFee (#1107)
- _tokenTransfer(from,to,amount,takeFee) (#1175)
- _previousDevFee = _devFee (#1108)
- _tokenTransfer(from,to,amount,takeFee) (#1175)
- _previousLiquidityFee = _liquidityFee (#1106)
- _tokenTransfer(from,to,amount,takeFee) (#1175)
- _previousTaxFee = _taxFee (#1105)
- _tokenTransfer(from,to,amount,takeFee) (#1175)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1020)
- _tokenTransfer(from,to,amount,takeFee) (#1175)
- _taxFee = _previousTaxFee (#1117)
- _taxFee = 0 (#1110)
Reentrancy in token.constructor() (#827-845):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#832-833)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#839)
- _isExcludedFromFee[ownerAddres] = true (#840)
- _isExcludedFromFee[burnAddress] = true (#841)
- _isExcludedFromFee[address(this)] = true (#842)
- uniswapV2Router = _uniswapV2Router (#836)
Reentrancy in token.swapAndLiquify(uint256) (#1178-1203):
External calls:
- swapTokensForEth(half) (#1192)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1215-1221)
- addLiquidity(otherHalf,newBalance) (#1198)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#881-888)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1198)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#881-888)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1198)
- _allowances[owner][spender] = amount (#1131)
Reentrancy in token.swapAndLiquify(uint256) (#1178-1203):
External calls:
- swapTokensForEth(half) (#1192)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1215-1221)
- addLiquidity(otherHalf,newBalance) (#1198)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#881-888)
- swapTokensForDividendToken(devNumber) (#1200)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1234-1240)
- IERC20(husdtToken).transfer(address(devAddress),dividends) (#1242)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1198)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#881-888)
State variables written after the call(s):
- swapTokensForDividendToken(devNumber) (#1200)
- _allowances[owner][spender] = amount (#1131)
Reentrancy in token.transferFrom(address,address,uint256) (#919-923):
External calls:
- _transfer(sender,recipient,amount) (#920)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#881-888)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1215-1221)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1234-1240)
- IERC20(husdtToken).transfer(address(devAddress),dividends) (#1242)
External calls sending eth:
- _transfer(sender,recipient,amount) (#920)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#881-888)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#921)
- _allowances[owner][spender] = amount (#1131)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in token._transfer(address,address,uint256) (#1135-1176):
External calls:
- swapAndLiquify(contractTokenBalance) (#1163)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#881-888)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1215-1221)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1234-1240)
- IERC20(husdtToken).transfer(address(devAddress),dividends) (#1242)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1163)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#881-888)
Event emitted after the call(s):
- Transfer(sender,burnAddress,tBurn) (#962)
- _tokenTransfer(from,to,amount,takeFee) (#1175)
- Transfer(sender,recipient,tTransferAmount) (#911)
- _tokenTransfer(from,to,amount,takeFee) (#1175)
Reentrancy in token.constructor() (#827-845):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#832-833)
Event emitted after the call(s):
- Transfer(address(0),ownerAddres,_tTotal) (#844)
Reentrancy in token.swapAndLiquify(uint256) (#1178-1203):
External calls:
- swapTokensForEth(half) (#1192)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1215-1221)
- addLiquidity(otherHalf,newBalance) (#1198)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#881-888)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1198)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#881-888)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1132)
- addLiquidity(otherHalf,newBalance) (#1198)
Reentrancy in token.swapAndLiquify(uint256) (#1178-1203):
External calls:
- swapTokensForEth(half) (#1192)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1215-1221)
- addLiquidity(otherHalf,newBalance) (#1198)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#881-888)
- swapTokensForDividendToken(devNumber) (#1200)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1234-1240)
- IERC20(husdtToken).transfer(address(devAddress),dividends) (#1242)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1198)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#881-888)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1132)
- swapTokensForDividendToken(devNumber) (#1200)
- SwapAndLiquify(half,newBalance,otherHalf) (#1202)
Reentrancy in token.transferFrom(address,address,uint256) (#919-923):
External calls:
- _transfer(sender,recipient,amount) (#920)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#881-888)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1215-1221)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1234-1240)
- IERC20(husdtToken).transfer(address(devAddress),dividends) (#1242)
External calls sending eth:
- _transfer(sender,recipient,amount) (#920)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#881-888)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1132)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#921)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

Address.isContract(address) (#263-272) uses assembly
- INLINE ASM (#270)
Address._functionCallWithValue(address,bytes,uint256,string) (#356-377) uses assembly
- INLINE ASM (#369-372)
Do not use evm assembly.

Additional information: link

Different versions of Solidity is used:
- Version used: ['>=0.5.0', '^0.6.12']
- ^0.6.12 (#18)
- >=0.5.0 (#659)
- >=0.5.0 (#678)
Use one Solidity version.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#356-377) is never used and should be removed
Address.functionCall(address,bytes) (#316-318) is never used and should be removed
Address.functionCall(address,bytes,string) (#326-328) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#341-343) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#351-354) is never used and should be removed
Address.isContract(address) (#263-272) is never used and should be removed
Address.sendValue(address,uint256) (#290-296) is never used and should be removed
Context._msgData() (#235-238) is never used and should be removed
PancakeLibrary.getAmountIn(uint256,uint256,uint256) (#729-735) is never used and should be removed
PancakeLibrary.getAmountOut(uint256,uint256,uint256) (#719-726) is never used and should be removed
PancakeLibrary.getAmountsIn(address,uint256,address[]) (#749-757) is never used and should be removed
PancakeLibrary.getAmountsOut(address,uint256,address[]) (#738-746) is never used and should be removed
PancakeLibrary.getReserves(address,address,address) (#704-709) is never used and should be removed
PancakeLibrary.pairFor(address,address,address) (#693-701) is never used and should be removed
PancakeLibrary.quote(uint256,uint256,uint256) (#712-716) is never used and should be removed
PancakeLibrary.sortTokens(address,address) (#686-690) is never used and should be removed
SafeMath.mod(uint256,uint256) (#141-143) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#157-160) is never used and should be removed
Remove unused functions.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#290-296):
- (success) = recipient.call{value: amount}() (#294)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#356-377):
- (success,returndata) = target.call{value: weiValue}(data) (#360)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IPancakeRouter01.WETH() (#470) is not in mixedCase
Function IPancakePair.DOMAIN_SEPARATOR() (#623) is not in mixedCase
Function IPancakePair.PERMIT_TYPEHASH() (#624) is not in mixedCase
Function IPancakePair.MINIMUM_LIQUIDITY() (#641) is not in mixedCase
Contract token (#765-1246) is not in CapWords
Parameter token.setSwapAndLiquifyEnabled(bool)._enabled (#1005) is not in mixedCase
Parameter token.setSwapDevEnabled(bool)._enabled (#1010) is not in mixedCase
Parameter token.calculateTaxFee(uint256)._amount (#1077) is not in mixedCase
Parameter token.calculateLiquidityFee(uint256)._amount (#1083) is not in mixedCase
Parameter token.calculateBurnFee(uint256)._amount (#1089) is not in mixedCase
Parameter token.calculateDevFee(uint256)._amount (#1095) is not in mixedCase
Variable token._taxFee (#784) is not in mixedCase
Variable token._liquidityFee (#787) is not in mixedCase
Variable token._burnFee (#790) is not in mixedCase
Variable token._devFee (#793) is not in mixedCase
Variable token._maxTxAmount (#810) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#475) is too similar to IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#476)
Variable token._getValues(uint256).rTransferAmount (#1034) is too similar to token._transferStandard(address,address,uint256).tTransferAmount (#903)
Variable token._getValues(uint256).rTransferAmount (#1034) is too similar to token._getTValues(uint256).tTransferAmount (#1043)
Variable token._getValues(uint256).rTransferAmount (#1034) is too similar to token._getValues(uint256).tTransferAmount (#1032)
Variable token._transferStandard(address,address,uint256).rTransferAmount (#903) is too similar to token._transferStandard(address,address,uint256).tTransferAmount (#903)
Variable token.reflectionFromToken(uint256,bool).rTransferAmount (#946) is too similar to token._getTValues(uint256).tTransferAmount (#1043)
Variable token._transferStandard(address,address,uint256).rTransferAmount (#903) is too similar to token._getTValues(uint256).tTransferAmount (#1043)
Variable token._getRValues(token.TData,uint256).rTransferAmount (#1054) is too similar to token._getValues(uint256).tTransferAmount (#1032)
Variable token._getRValues(token.TData,uint256).rTransferAmount (#1054) is too similar to token._getTValues(uint256).tTransferAmount (#1043)
Variable token.reflectionFromToken(uint256,bool).rTransferAmount (#946) is too similar to token._transferStandard(address,address,uint256).tTransferAmount (#903)
Variable token._getRValues(token.TData,uint256).rTransferAmount (#1054) is too similar to token._transferStandard(address,address,uint256).tTransferAmount (#903)
Variable token.reflectionFromToken(uint256,bool).rTransferAmount (#946) is too similar to token._getValues(uint256).tTransferAmount (#1032)
Variable token._transferStandard(address,address,uint256).rTransferAmount (#903) is too similar to token._getValues(uint256).tTransferAmount (#1032)
Prevent variables from having similar names.

Additional information: link

token.slitherConstructorVariables() (#765-1246) uses literals with too many digits:
- _tTotal = 10000000 * 10 ** 18 (#776)
token.slitherConstructorVariables() (#765-1246) uses literals with too many digits:
- burnAddress = address(0x000000000000000000000000000000000000dEaD) (#796)
token.slitherConstructorVariables() (#765-1246) uses literals with too many digits:
- _maxTxAmount = 10000000 * 10 ** 18 (#810)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

token._decimals (#782) should be constant
token._name (#780) should be constant
token._symbol (#781) should be constant
token._tTotal (#776) should be constant
token.burnAddress (#796) should be constant
token.devAddress (#798) should be constant
token.hbtcToken (#800) should be constant
token.husdtToken (#801) should be constant
token.numTokensSellToAddToLiquidity (#811) should be constant
token.ownerAddres (#797) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#430-433)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#439-443)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#445-447)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#450-455)
unlock() should be declared external:
- Ownable.unlock() (#458-463)
name() should be declared external:
- token.name() (#847-849)
symbol() should be declared external:
- token.symbol() (#851-853)
decimals() should be declared external:
- token.decimals() (#855-857)
totalSupply() should be declared external:
- token.totalSupply() (#859-861)
transfer(address,uint256) should be declared external:
- token.transfer(address,uint256) (#867-870)
allowance(address,address) should be declared external:
- token.allowance(address,address) (#872-874)
approve(address,uint256) should be declared external:
- token.approve(address,uint256) (#914-917)
transferFrom(address,address,uint256) should be declared external:
- token.transferFrom(address,address,uint256) (#919-923)
increaseAllowance(address,uint256) should be declared external:
- token.increaseAllowance(address,uint256) (#925-928)
decreaseAllowance(address,uint256) should be declared external:
- token.decreaseAllowance(address,uint256) (#930-933)
totalFees() should be declared external:
- token.totalFees() (#936-938)
reflectionFromToken(uint256,bool) should be declared external:
- token.reflectionFromToken(uint256,bool) (#940-949)
excludeFromFee(address) should be declared external:
- token.excludeFromFee(address) (#977-979)
includeInFee(address) should be declared external:
- token.includeInFee(address) (#981-983)
setSwapAndLiquifyEnabled(bool) should be declared external:
- token.setSwapAndLiquifyEnabled(bool) (#1005-1008)
setSwapDevEnabled(bool) should be declared external:
- token.setSwapDevEnabled(bool) (#1010-1012)
isExcludedFromFee(address) should be declared external:
- token.isExcludedFromFee(address) (#1123-1125)
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 PancakeSwap volume 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.


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

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


Last post in Twitter was more than 30 days ago


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Twitter account has few posts


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap

Additional information: link


Unable to find token contract audit


Unable to find audit 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 price dump / death


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


Token has no active CoinMarketCap listing / rank


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 BNFTT

News for BNFTT