Fibo Token Token Logo

FIBO Token

ALERT: honeypot scam

About FIBO

Listings

Token 3 years
CoinGecko 3 years
CoinMarketCap 3 years

Website

[CoinMarketCap] alert: FibSWAP DEx has migrated their old BSC contract address to new Polygon contract address. For more information, kindly visit here.
[CoinGecko] alert: FibSwap DEX (FIBO) has migrated from their old BSC contract to a new one on Polygon. For more information, please view this announcement on Twitter. The migration site can be viewed here.
white paper

FibSwap is the worlds first cross blockchain dex allowing traders to swap any coin between BSC and ETH blockchains.

We would like to introduce you to the future of Crypto.

For the first time ever we have swapped two different blockchains using IMBS and FibSWAP DEx SMART algorithms. Thanks to $FIBO and FibSwap DEx, we are writing a new chapter in Crypto history. First you had the Bancor AMM in 2017, then came Uniswap in 2018, now in 2021 we have FibSwap; A DEx that can swap tokens easily between chains.

We would like to thank all of our supporters who have helped make this possible.

FibSwap is the future for web and smartphone DEx.

Laser Scorebeta Last Audit: 23 November 2022

report
Token seems to be a scam (type: honeypot scam).

Reentrancy in FiboToken._transfer(address,address,uint256) (#1055-1095):
External calls:
- swapAndLiquify(contractTokenBalance) (#1082)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1143-1150)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1129-1135)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1082)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1143-1150)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1094)
- _rOwned[_treasuryAddress] = _rOwned[_treasuryAddress].add(rTreasury) (#993)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#977)
- _rOwned[_charityAddress] = _rOwned[_charityAddress].add(rCharity) (#985)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1191)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1176)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#886)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1177)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1208)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1193)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1209)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#888)
- _tokenTransfer(from,to,amount,takeFee) (#1094)
- _rTotal = _rTotal.sub(rFee) (#924)
- _tokenTransfer(from,to,amount,takeFee) (#1094)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#979)
- _tOwned[_charityAddress] = _tOwned[_charityAddress].add(tCharity) (#987)
- _tOwned[_treasuryAddress] = _tOwned[_treasuryAddress].add(tTreasury) (#995)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1207)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#885)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1192)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#887)
Apply the check-effects-interactions pattern.

Additional information: link

FiboToken.inCaseTokensGetStuck(address,uint256,address) (#1232-1235) ignores return value by IERC20(_token).transfer(_to,_amount) (#1234)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

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.


Contract ownership is not renounced (belongs to a wallet)

FiboToken.addLiquidity(uint256,uint256) (#1138-1151) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1143-1150)
Ensure that all the return values of the function calls are used.

Additional information: link

FiboToken.allowance(address,address).owner (#801) shadows:
- Ownable.owner() (#420-422) (function)
FiboToken._approve(address,address,uint256).owner (#1047) shadows:
- Ownable.owner() (#420-422) (function)
Rename the local variables that shadow another component.

Additional information: link

FiboToken.setNumTokensSellToAddToLiquidity(uint256) (#1237-1240) should emit an event for:
- numTokensSellToAddToLiquidity = _numTokensSellToAddToLiquidity (#1239)
FiboToken.setMaxTxPercent(uint256) (#909-913) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#910-912)
Emit an event for critical parameter changes.

Additional information: link

FiboToken.constructor(address,address).charityAddress (#751) lacks a zero-check on :
- _charityAddress = charityAddress (#764)
FiboToken.constructor(address,address).treasuryAddress (#751) lacks a zero-check on :
- _treasuryAddress = treasuryAddress (#763)
Check that the address is not zero.

Additional information: link

Reentrancy in FiboToken.transferFrom(address,address,uint256) (#810-814):
External calls:
- _transfer(sender,recipient,amount) (#811)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1143-1150)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1129-1135)
External calls sending eth:
- _transfer(sender,recipient,amount) (#811)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1143-1150)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#812)
- _allowances[owner][spender] = amount (#1051)
Reentrancy in FiboToken._transfer(address,address,uint256) (#1055-1095):
External calls:
- swapAndLiquify(contractTokenBalance) (#1082)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1143-1150)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1129-1135)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1082)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1143-1150)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1094)
- _charityFee = _previousCharityFee (#1039)
- _charityFee = 0 (#1032)
- _tokenTransfer(from,to,amount,takeFee) (#1094)
- _liquidityFee = _previousLiquidityFee (#1038)
- _liquidityFee = 0 (#1031)
- _tokenTransfer(from,to,amount,takeFee) (#1094)
- _previousCharityFee = _charityFee (#1027)
- _tokenTransfer(from,to,amount,takeFee) (#1094)
- _previousLiquidityFee = _liquidityFee (#1026)
- _tokenTransfer(from,to,amount,takeFee) (#1094)
- _previousTaxFee = _taxFee (#1025)
- _tokenTransfer(from,to,amount,takeFee) (#1094)
- _previousTreasuryFee = _treasuryFee (#1028)
- _tokenTransfer(from,to,amount,takeFee) (#1094)
- _tFeeTotal = _tFeeTotal.add(tFee) (#925)
- _tokenTransfer(from,to,amount,takeFee) (#1094)
- _taxFee = _previousTaxFee (#1037)
- _taxFee = 0 (#1030)
- _tokenTransfer(from,to,amount,takeFee) (#1094)
- _treasuryFee = _previousTreasuryFee (#1040)
- _treasuryFee = 0 (#1033)
Reentrancy in FiboToken.swapAndLiquify(uint256) (#1097-1118):
External calls:
- swapTokensForEth(half) (#1109)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1129-1135)
- addLiquidity(otherHalf,newBalance) (#1115)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1143-1150)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1115)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1143-1150)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1115)
- _allowances[owner][spender] = amount (#1051)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in FiboToken.transferFrom(address,address,uint256) (#810-814):
External calls:
- _transfer(sender,recipient,amount) (#811)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1143-1150)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1129-1135)
External calls sending eth:
- _transfer(sender,recipient,amount) (#811)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1143-1150)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1052)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#812)
Reentrancy in FiboToken.swapAndLiquify(uint256) (#1097-1118):
External calls:
- swapTokensForEth(half) (#1109)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1129-1135)
- addLiquidity(otherHalf,newBalance) (#1115)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1143-1150)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1115)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1143-1150)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1052)
- addLiquidity(otherHalf,newBalance) (#1115)
- SwapAndLiquify(half,newBalance,otherHalf) (#1117)
Reentrancy in FiboToken._transfer(address,address,uint256) (#1055-1095):
External calls:
- swapAndLiquify(contractTokenBalance) (#1082)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1143-1150)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1129-1135)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1082)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1143-1150)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1186)
- _tokenTransfer(from,to,amount,takeFee) (#1094)
- Transfer(sender,recipient,tTransferAmount) (#1202)
- _tokenTransfer(from,to,amount,takeFee) (#1094)
- Transfer(sender,recipient,tTransferAmount) (#1218)
- _tokenTransfer(from,to,amount,takeFee) (#1094)
- Transfer(sender,recipient,tTransferAmount) (#897)
- _tokenTransfer(from,to,amount,takeFee) (#1094)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#365-386) uses assembly
- INLINE ASM (#378-381)
Address.isContract(address) (#272-281) uses assembly
- INLINE ASM (#279)
Do not use evm assembly.

Additional information: link

FiboToken.includeInReward(address) (#870-881) has costly operations inside a loop:
- _excluded.pop() (#877)
Use a local variable to hold the loop computation result.

Additional information: link

Address.sendValue(address,uint256) (#299-305) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#350-352) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#233-236) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#360-363) is never used and should be removed
Context._msgData() (#244-247) is never used and should be removed
SafeMath.mod(uint256,uint256) (#217-219) is never used and should be removed
Address._functionCallWithValue(address,bytes,uint256,string) (#365-386) is never used and should be removed
Address.isContract(address) (#272-281) is never used and should be removed
Address.functionCall(address,bytes,string) (#335-337) is never used and should be removed
Address.functionCall(address,bytes) (#325-327) is never used and should be removed
Remove unused functions.

Additional information: link

FiboToken._rTotal (#705) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
FiboToken._previousCharityFee (#719) is set pre-construction with a non-constant function or state variable:
- _charityFee
FiboToken._previousTaxFee (#713) is set pre-construction with a non-constant function or state variable:
- _taxFee
FiboToken._previousTreasuryFee (#722) is set pre-construction with a non-constant function or state variable:
- _treasuryFee
FiboToken._previousLiquidityFee (#716) 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) (#299-305):
- (success) = recipient.call{value: amount}() (#303)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#365-386):
- (success,returndata) = target.call{value: weiValue}(data) (#369)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable FiboToken._liquidityFee (#715) is not in mixedCase
Parameter FiboToken.calculateLiquidityFee(uint256)._amount (#1004) is not in mixedCase
Variable FiboToken._maxTxAmount (#733) is not in mixedCase
Variable FiboToken._treasuryFee (#721) is not in mixedCase
Variable FiboToken._charityAddress (#725) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#512) is not in mixedCase
Parameter FiboToken.inCaseTokensGetStuck(address,uint256,address)._amount (#1232) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#529) is not in mixedCase
Variable FiboToken._treasuryAddress (#724) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#511) is not in mixedCase
Parameter FiboToken.inCaseTokensGetStuck(address,uint256,address)._to (#1232) is not in mixedCase
Variable FiboToken._taxFee (#712) is not in mixedCase
Function FiboToken._withdrawBNB(uint256) (#1226-1230) is not in mixedCase
Parameter FiboToken.calculateCharityFee(uint256)._amount (#1010) is not in mixedCase
Parameter FiboToken.calculateTreasuryFee(uint256)._amount (#1016) is not in mixedCase
Variable FiboToken._charityFee (#718) is not in mixedCase
Parameter FiboToken.setSwapAndLiquifyEnabled(bool)._enabled (#915) is not in mixedCase
Function IUniswapV2Router01.WETH() (#551) is not in mixedCase
Parameter FiboToken.setNumTokensSellToAddToLiquidity(uint256)._numTokensSellToAddToLiquidity (#1237) is not in mixedCase
Parameter FiboToken.inCaseTokensGetStuck(address,uint256,address)._token (#1232) is not in mixedCase
Parameter FiboToken.calculateTaxFee(uint256)._amount (#998) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

Reentrancy in FiboToken._withdrawBNB(uint256) (#1226-1230):
External calls:
- msg.sender.transfer(amount) (#1228)
Event emitted after the call(s):
- Transfer(address(this),msg.sender,amount) (#1229)
Apply the check-effects-interactions pattern.

Additional information: link

Variable FiboToken.reflectionFromToken(uint256,bool).rTransferAmount (#849) is too similar to FiboToken._transferBothExcluded(address,address,uint256).tTransferAmount (#884)
Variable FiboToken._getRValues(uint256,uint256,uint256,uint256,uint256,uint256).rTransferAmount (#952) is too similar to FiboToken._transferToExcluded(address,address,uint256).tTransferAmount (#1190)
Variable FiboToken._getValues(uint256).rTransferAmount (#930) is too similar to FiboToken._getValues(uint256).tTransferAmount (#929)
Variable FiboToken._transferStandard(address,address,uint256).rTransferAmount (#1175) is too similar to FiboToken._transferBothExcluded(address,address,uint256).tTransferAmount (#884)
Variable FiboToken._transferStandard(address,address,uint256).rTransferAmount (#1175) is too similar to FiboToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1206)
Variable FiboToken._transferBothExcluded(address,address,uint256).rTransferAmount (#884) is too similar to FiboToken._transferBothExcluded(address,address,uint256).tTransferAmount (#884)
Variable FiboToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1206) is too similar to FiboToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1206)
Variable FiboToken._getRValues(uint256,uint256,uint256,uint256,uint256,uint256).rTransferAmount (#952) is too similar to FiboToken._transferStandard(address,address,uint256).tTransferAmount (#1175)
Variable FiboToken._transferToExcluded(address,address,uint256).rTransferAmount (#1190) is too similar to FiboToken._transferStandard(address,address,uint256).tTransferAmount (#1175)
Variable FiboToken._getValues(uint256).rTransferAmount (#930) is too similar to FiboToken._transferBothExcluded(address,address,uint256).tTransferAmount (#884)
Variable FiboToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1206) is too similar to FiboToken._getTValues(uint256).tTransferAmount (#941)
Variable FiboToken._getRValues(uint256,uint256,uint256,uint256,uint256,uint256).rTransferAmount (#952) is too similar to FiboToken._getValues(uint256).tTransferAmount (#929)
Variable FiboToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1206) is too similar to FiboToken._getValues(uint256).tTransferAmount (#929)
Variable FiboToken._transferBothExcluded(address,address,uint256).rTransferAmount (#884) is too similar to FiboToken._transferStandard(address,address,uint256).tTransferAmount (#1175)
Variable FiboToken._transferBothExcluded(address,address,uint256).rTransferAmount (#884) is too similar to FiboToken._getValues(uint256).tTransferAmount (#929)
Variable FiboToken.reflectionFromToken(uint256,bool).rTransferAmount (#849) is too similar to FiboToken._transferToExcluded(address,address,uint256).tTransferAmount (#1190)
Variable FiboToken._getRValues(uint256,uint256,uint256,uint256,uint256,uint256).rTransferAmount (#952) is too similar to FiboToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1206)
Variable FiboToken.reflectionFromToken(uint256,bool).rTransferAmount (#849) is too similar to FiboToken._getTValues(uint256).tTransferAmount (#941)
Variable FiboToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1206) is too similar to FiboToken._transferBothExcluded(address,address,uint256).tTransferAmount (#884)
Variable FiboToken._getRValues(uint256,uint256,uint256,uint256,uint256,uint256).rTransferAmount (#952) is too similar to FiboToken._getTValues(uint256).tTransferAmount (#941)
Variable FiboToken._getValues(uint256).rTransferAmount (#930) is too similar to FiboToken._transferToExcluded(address,address,uint256).tTransferAmount (#1190)
Variable FiboToken._transferStandard(address,address,uint256).rTransferAmount (#1175) is too similar to FiboToken._getTValues(uint256).tTransferAmount (#941)
Variable FiboToken._transferStandard(address,address,uint256).rTransferAmount (#1175) is too similar to FiboToken._transferStandard(address,address,uint256).tTransferAmount (#1175)
Variable FiboToken._transferToExcluded(address,address,uint256).rTransferAmount (#1190) is too similar to FiboToken._transferBothExcluded(address,address,uint256).tTransferAmount (#884)
Variable FiboToken.reflectionFromToken(uint256,bool).rTransferAmount (#849) is too similar to FiboToken._transferStandard(address,address,uint256).tTransferAmount (#1175)
Variable FiboToken.reflectionFromToken(uint256,bool).rTransferAmount (#849) is too similar to FiboToken._getValues(uint256).tTransferAmount (#929)
Variable FiboToken._transferBothExcluded(address,address,uint256).rTransferAmount (#884) is too similar to FiboToken._getTValues(uint256).tTransferAmount (#941)
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#556) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#557)
Variable FiboToken._transferToExcluded(address,address,uint256).rTransferAmount (#1190) is too similar to FiboToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1206)
Variable FiboToken._getValues(uint256).rTransferAmount (#930) is too similar to FiboToken._getTValues(uint256).tTransferAmount (#941)
Variable FiboToken._getValues(uint256).rTransferAmount (#930) is too similar to FiboToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1206)
Variable FiboToken._transferToExcluded(address,address,uint256).rTransferAmount (#1190) is too similar to FiboToken._getValues(uint256).tTransferAmount (#929)
Variable FiboToken._transferBothExcluded(address,address,uint256).rTransferAmount (#884) is too similar to FiboToken._transferToExcluded(address,address,uint256).tTransferAmount (#1190)
Variable FiboToken.reflectionFromToken(uint256,bool).rTransferAmount (#849) is too similar to FiboToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1206)
Variable FiboToken._transferBothExcluded(address,address,uint256).rTransferAmount (#884) is too similar to FiboToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1206)
Variable FiboToken._transferStandard(address,address,uint256).rTransferAmount (#1175) is too similar to FiboToken._transferToExcluded(address,address,uint256).tTransferAmount (#1190)
Variable FiboToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1206) is too similar to FiboToken._transferToExcluded(address,address,uint256).tTransferAmount (#1190)
Variable FiboToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1206) is too similar to FiboToken._transferStandard(address,address,uint256).tTransferAmount (#1175)
Variable FiboToken._transferStandard(address,address,uint256).rTransferAmount (#1175) is too similar to FiboToken._getValues(uint256).tTransferAmount (#929)
Variable FiboToken._transferToExcluded(address,address,uint256).rTransferAmount (#1190) is too similar to FiboToken._transferToExcluded(address,address,uint256).tTransferAmount (#1190)
Variable FiboToken._transferToExcluded(address,address,uint256).rTransferAmount (#1190) is too similar to FiboToken._getTValues(uint256).tTransferAmount (#941)
Variable FiboToken._getValues(uint256).rTransferAmount (#930) is too similar to FiboToken._transferStandard(address,address,uint256).tTransferAmount (#1175)
Variable FiboToken._getRValues(uint256,uint256,uint256,uint256,uint256,uint256).rTransferAmount (#952) is too similar to FiboToken._transferBothExcluded(address,address,uint256).tTransferAmount (#884)
Prevent variables from having similar names.

Additional information: link

FiboToken.slitherConstructorVariables() (#689-1242) uses literals with too many digits:
- _tTotal = 10000000000 * 10 ** 9 (#704)
FiboToken.slitherConstructorVariables() (#689-1242) uses literals with too many digits:
- _maxTxAmount = 5000000 * 10 ** 9 (#733)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

FiboToken.minNumTokensSellToAddToLiquidity (#735) should be constant
FiboToken._decimals (#710) should be constant
FiboToken._name (#708) should be constant
FiboToken._tTotal (#704) should be constant
FiboToken._symbol (#709) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

name() should be declared external:
- FiboToken.name() (#775-777)
approve(address,uint256) should be declared external:
- FiboToken.approve(address,uint256) (#805-808)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#439-442)
excludeFromFee(address) should be declared external:
- FiboToken.excludeFromFee(address) (#900-902)
excludeFromReward(address) should be declared external:
- FiboToken.excludeFromReward(address) (#860-868)
allowance(address,address) should be declared external:
- FiboToken.allowance(address,address) (#801-803)
increaseAllowance(address,uint256) should be declared external:
- FiboToken.increaseAllowance(address,uint256) (#816-819)
setSwapAndLiquifyEnabled(bool) should be declared external:
- FiboToken.setSwapAndLiquifyEnabled(bool) (#915-918)
includeInFee(address) should be declared external:
- FiboToken.includeInFee(address) (#904-906)
decimals() should be declared external:
- FiboToken.decimals() (#783-785)
totalFees() should be declared external:
- FiboToken.totalFees() (#830-832)
totalSupply() should be declared external:
- FiboToken.totalSupply() (#787-789)
setNumTokensSellToAddToLiquidity(uint256) should be declared external:
- FiboToken.setNumTokensSellToAddToLiquidity(uint256) (#1237-1240)
decreaseAllowance(address,uint256) should be declared external:
- FiboToken.decreaseAllowance(address,uint256) (#821-824)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#448-452)
symbol() should be declared external:
- FiboToken.symbol() (#779-781)
isExcludedFromReward(address) should be declared external:
- FiboToken.isExcludedFromReward(address) (#826-828)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#454-456)
transfer(address,uint256) should be declared external:
- FiboToken.transfer(address,uint256) (#796-799)
deliver(uint256) should be declared external:
- FiboToken.deliver(uint256) (#834-841)
transferFrom(address,address,uint256) should be declared external:
- FiboToken.transferFrom(address,address,uint256) (#810-814)
unlock() should be declared external:
- Ownable.unlock() (#467-472)
reflectionFromToken(uint256,bool) should be declared external:
- FiboToken.reflectionFromToken(uint256,bool) (#843-852)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#459-464)
isExcludedFromFee(address) should be declared external:
- FiboToken.isExcludedFromFee(address) (#1043-1045)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Attempt to swap token was unsuccessful. For some reason it is untradeable. If token is not in presale stage and is not traded outside PancakeSwap, then it's a scam

Additional information: link


Average 30d PancakeSwap liquidity 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.


Token has only one trading pair

No disclosed threats


Unable to find whitepaper link on the website


Unable to find code repository for the project


Token is marked as scam (rug pull, honeypot, phishing, etc.)

Additional information: link

Price for FIBO

News for FIBO