$FiPi Token Logo

FiPi [$FiPi] Token

About FiPi

Listings

Token 20 months
CoinMarketCap 18 months

Website

white paper

💎FiPi Presale💎
Whitelist contest > https://t.ly/vH9f
💰Auto-Investment App
🚀Proven profitable record
💹Monthly DCA and rebalancing
🚨Forbes-Featured Advisory team > https://t.ly/f47l
✅ULTRA LOW INITIAL MARKET CAP LESS THAN $200k
✅REAL UTILITY TOKEN🔥
(Tier System, auto-buy back+burn) ✅TEAM DOXXED/KYC
✅REGISTERED COMPANY FiPi Limited

Social

Laser Scorebeta Last Audit: 23 May 2022

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

Fipi.swapForMarketing(uint256) (FiPi.sol#581-585) sends eth to arbitrary user
Dangerous calls:
- _marketingAddress.transfer(address(this).balance) (FiPi.sol#584)
Fipi.withDrawLeftoverBNB() (FiPi.sol#606-609) sends eth to arbitrary user
Dangerous calls:
- _LiquidityReciever.transfer(address(this).balance) (FiPi.sol#608)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in Fipi._transfer(address,address,uint256) (FiPi.sol#419-512):
External calls:
- swapForMarketing(minTokensBeforeSwap) (FiPi.sol#460)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (FiPi.sol#596-602)
External calls sending eth:
- swapForMarketing(minTokensBeforeSwap) (FiPi.sol#460)
- _marketingAddress.transfer(address(this).balance) (FiPi.sol#584)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (FiPi.sol#509)
- _rOwned[_LiquidityReciever] = _rOwned[_LiquidityReciever].add(rLiquidity) (FiPi.sol#369)
- _rOwned[address(this)] = _rOwned[address(this)].add(rMarketing) (FiPi.sol#377)
- _rOwned[_BurnWallet] = _rOwned[_BurnWallet].add(rBurn) (FiPi.sol#386)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (FiPi.sol#535)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (FiPi.sol#536)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (FiPi.sol#540)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (FiPi.sol#542)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (FiPi.sol#546)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (FiPi.sol#547)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (FiPi.sol#552)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (FiPi.sol#554)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (FiPi.sol#558)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (FiPi.sol#559)
- _tokenTransfer(from,to,amount) (FiPi.sol#509)
- _rTotal = _rTotal.sub(rFee) (FiPi.sol#322)
- _tokenTransfer(from,to,amount) (FiPi.sol#509)
- _tOwned[address(this)] = _tOwned[address(this)].add(tMarketing) (FiPi.sol#379)
- _tOwned[_BurnWallet] = _tOwned[_BurnWallet].add(tBurn) (FiPi.sol#388)
- _tOwned[_LiquidityReciever] = _tOwned[_LiquidityReciever].add(tLiquidity) (FiPi.sol#371)
- _tOwned[sender] = _tOwned[sender].sub(amount) (FiPi.sol#534)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (FiPi.sol#541)
- _tOwned[sender] = _tOwned[sender].sub(amount) (FiPi.sol#551)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (FiPi.sol#553)
Apply the check-effects-interactions pattern.

Additional information: link


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains


Contract ownership is not renounced (belongs to a wallet)


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 name ($FiPi) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.

Fipi.allowance(address,address).owner (FiPi.sol#175) shadows:
- Ownable.owner() (context.sol#49-51) (function)
Fipi._approve(address,address,uint256).owner (FiPi.sol#398) shadows:
- Ownable.owner() (context.sol#49-51) (function)
Rename the local variables that shadow another component.

Additional information: link

Fipi.setTax(uint256) (FiPi.sol#50-54) should emit an event for:
- _taxFee = newTax (FiPi.sol#53)
Fipi.setMarketingTax(uint256) (FiPi.sol#56-60) should emit an event for:
- _marketing = newTax (FiPi.sol#59)
Fipi.setSwapAndLiquify(bool,uint256,uint256) (FiPi.sol#74-78) should emit an event for:
- minTimeBetweenSwaps = _minTimeBetweenSwaps (FiPi.sol#76)
- minTokensBeforeSwap = _minimumTokensBeforeSwap (FiPi.sol#77)
Fipi.setMaxWalletSize(uint256) (FiPi.sol#98-101) should emit an event for:
- _maxWalletSizePromile = promile (FiPi.sol#100)
Fipi.setSellMaxTxAmountPromile(uint256) (FiPi.sol#103-106) should emit an event for:
- _sellMaxTxAmountPromile = promile (FiPi.sol#105)
Fipi.setWhaleSellThreshold(uint256) (FiPi.sol#109-112) should emit an event for:
- _whaleSellThreshold = amount (FiPi.sol#111)
Emit an event for critical parameter changes.

Additional information: link

Fipi._transfer(address,address,uint256) (FiPi.sol#419-512) uses timestamp for comparisons
Dangerous comparisons:
- overMinTokenBalance && ! inSwapAndLiquify && from != pancakePair && swapAndLiquifyEnabled && startTimeForSwap + minTimeBetweenSwaps <= block.timestamp (FiPi.sol#457)
- timeDiffBetweenNowAndSell > 0 && timeDiffBetweenNowAndSell < 86400 && _timeSinceFirstSell[from] != 0 (FiPi.sol#488)
Avoid relying on block.timestamp.

Additional information: link

Fipi.setWhaleSellThreshold(uint256) (FiPi.sol#109-112) uses literals with too many digits:
- require(bool)(amount >= 100000) (FiPi.sol#110)
Fipi.slitherConstructorVariables() (FiPi.sol#10-613) uses literals with too many digits:
- _BurnWallet = address(0x000000000000000000000000000000000000dEaD) (FiPi.sol#40)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Fipi._BurnWallet (FiPi.sol#40) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

Fipi.setMarketingAddress(address).marketingAddress (FiPi.sol#114) lacks a zero-check on :
- _marketingAddress = address(marketingAddress) (FiPi.sol#115)
Fipi.setLiquidityAdress(address).liqAddress (FiPi.sol#118) lacks a zero-check on :
- _LiquidityReciever = address(liqAddress) (FiPi.sol#119)
Check that the address is not zero.

Additional information: link

Reentrancy in Fipi._transfer(address,address,uint256) (FiPi.sol#419-512):
External calls:
- swapForMarketing(minTokensBeforeSwap) (FiPi.sol#460)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (FiPi.sol#596-602)
External calls sending eth:
- swapForMarketing(minTokensBeforeSwap) (FiPi.sol#460)
- _marketingAddress.transfer(address(this).balance) (FiPi.sol#584)
State variables written after the call(s):
- _amountSold[from] = newTotal (FiPi.sol#493)
- _amountSold[from] = newTotal (FiPi.sol#497)
- _amountSold[from] = amount (FiPi.sol#500)
- _feeMultiplier = 1 (FiPi.sol#467)
- _feeMultiplier = 0 (FiPi.sol#472)
- _feeMultiplier = 2 (FiPi.sol#490)
- _feeMultiplier = 2 (FiPi.sol#495)
- _feeMultiplier = 1 (FiPi.sol#510)
- _marketingFeeMultiplier = 1 (FiPi.sol#468)
- _marketingFeeMultiplier = 0 (FiPi.sol#473)
- _marketingFeeMultiplier = 45 (FiPi.sol#478)
- _marketingFeeMultiplier = 2 (FiPi.sol#491)
- _marketingFeeMultiplier = 2 (FiPi.sol#496)
- _marketingFeeMultiplier = 1 (FiPi.sol#511)
- _tokenTransfer(from,to,amount) (FiPi.sol#509)
- _tBurnTotal = _tBurnTotal.add(tBurn) (FiPi.sol#389)
- _tokenTransfer(from,to,amount) (FiPi.sol#509)
- _tFeeTotal = _tFeeTotal.add(tFee) (FiPi.sol#323)
- _timeSinceFirstSell[from] = block.timestamp (FiPi.sol#499)
Reentrancy in Fipi.constructor() (FiPi.sol#132-149):
External calls:
- pancakePair = IPancakeFactory(_pancakeRouter.factory()).createPair(address(this),_pancakeRouter.WETH()) (FiPi.sol#139)
State variables written after the call(s):
- _excluded.push(_BurnWallet) (FiPi.sol#146)
- _isExcluded[_BurnWallet] = true (FiPi.sol#145)
- _isExcludedFromFee[owner()] = true (FiPi.sol#142)
- _isExcludedFromFee[address(this)] = true (FiPi.sol#143)
- pancakeRouter = _pancakeRouter (FiPi.sol#140)
Reentrancy in Fipi.transferFrom(address,address,uint256) (FiPi.sol#191-206):
External calls:
- _transfer(sender,recipient,amount) (FiPi.sol#196)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (FiPi.sol#596-602)
External calls sending eth:
- _transfer(sender,recipient,amount) (FiPi.sol#196)
- _marketingAddress.transfer(address(this).balance) (FiPi.sol#584)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (FiPi.sol#197-204)
- _allowances[owner][spender] = amount (FiPi.sol#405)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Fipi._transfer(address,address,uint256) (FiPi.sol#419-512):
External calls:
- swapForMarketing(minTokensBeforeSwap) (FiPi.sol#460)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (FiPi.sol#596-602)
External calls sending eth:
- swapForMarketing(minTokensBeforeSwap) (FiPi.sol#460)
- _marketingAddress.transfer(address(this).balance) (FiPi.sol#584)
Event emitted after the call(s):
- Transfer(sender,_BurnWallet,tFee) (FiPi.sol#574)
- _tokenTransfer(from,to,amount) (FiPi.sol#509)
- Transfer(sender,recipient,tTransferAmount) (FiPi.sol#576)
- _tokenTransfer(from,to,amount) (FiPi.sol#509)
Reentrancy in Fipi.constructor() (FiPi.sol#132-149):
External calls:
- pancakePair = IPancakeFactory(_pancakeRouter.factory()).createPair(address(this),_pancakeRouter.WETH()) (FiPi.sol#139)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (FiPi.sol#148)
Reentrancy in Fipi.transferFrom(address,address,uint256) (FiPi.sol#191-206):
External calls:
- _transfer(sender,recipient,amount) (FiPi.sol#196)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (FiPi.sol#596-602)
External calls sending eth:
- _transfer(sender,recipient,amount) (FiPi.sol#196)
- _marketingAddress.transfer(address(this).balance) (FiPi.sol#584)
Event emitted after the call(s):
- Approval(owner,spender,amount) (FiPi.sol#406)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (FiPi.sol#197-204)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (address.sol#28-40) uses assembly
- INLINE ASM (address.sol#36-38)
Address._functionCallWithValue(address,bytes,uint256,string) (address.sol#155-182) uses assembly
- INLINE ASM (address.sol#174-177)
Do not use evm assembly.

Additional information: link

Fipi.isNormalTransfer(address,address) (FiPi.sol#410-417) compares to a boolean constant:
-to != _BurnWallet && to != address(0) && from != address(this) && _isExcludedFromFee[to] == false && _isExcludedFromFee[from] == false (FiPi.sol#411-416)
Remove the equality to the boolean constant.

Additional information: link

Fipi.includeInReward(address) (FiPi.sol#294-306) has costly operations inside a loop:
- _excluded.pop() (FiPi.sol#302)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (address.sol#155-182) is never used and should be removed
Address.functionCall(address,bytes) (address.sol#90-95) is never used and should be removed
Address.functionCall(address,bytes,string) (address.sol#103-109) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (address.sol#122-134) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (address.sol#142-153) is never used and should be removed
Address.isContract(address) (address.sol#28-40) is never used and should be removed
Address.sendValue(address,uint256) (address.sol#58-70) is never used and should be removed
Context._msgData() (context.sol#10-13) is never used and should be removed
SafeMath.mod(uint256,uint256) (safeMath.sol#149-151) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (safeMath.sol#165-172) is never used and should be removed
Remove unused functions.

Additional information: link

Low level call in Address.sendValue(address,uint256) (address.sol#58-70):
- (success) = recipient.call{value: amount}() (address.sol#65)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (address.sol#155-182):
- (success,returndata) = target.call{value: weiValue}(data) (address.sol#164-165)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Parameter Fipi.setSwapAndLiquify(bool,uint256,uint256)._state (FiPi.sol#74) is not in mixedCase
Parameter Fipi.setSwapAndLiquify(bool,uint256,uint256)._minTimeBetweenSwaps (FiPi.sol#74) is not in mixedCase
Parameter Fipi.setSwapAndLiquify(bool,uint256,uint256)._minimumTokensBeforeSwap (FiPi.sol#74) is not in mixedCase
Parameter Fipi.setAntisniperEnabled(bool)._antisniperEnabled (FiPi.sol#89) is not in mixedCase
Constant Fipi._tTotal (FiPi.sol#30) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Fipi._name (FiPi.sol#34) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Fipi._symbol (FiPi.sol#35) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Fipi._decimals (FiPi.sol#36) is not in UPPER_CASE_WITH_UNDERSCORES
Variable Fipi._LiquidityReciever (FiPi.sol#39) is not in mixedCase
Variable Fipi._BurnWallet (FiPi.sol#40) is not in mixedCase
Variable Fipi._marketingAddress (FiPi.sol#41) is not in mixedCase
Variable Fipi._taxFee (FiPi.sol#45) is not in mixedCase
Variable Fipi._marketing (FiPi.sol#47) is not in mixedCase
Variable Fipi._hasLiqBeenAdded (FiPi.sol#81) is not in mixedCase
Variable Fipi._whaleSellThreshold (FiPi.sol#96) is not in mixedCase
Function IPancakePair.DOMAIN_SEPARATOR() (pancake.sol#35) is not in mixedCase
Function IPancakePair.PERMIT_TYPEHASH() (pancake.sol#36) is not in mixedCase
Function IPancakePair.MINIMUM_LIQUIDITY() (pancake.sol#53) is not in mixedCase
Function IPancakeRouter01.WETH() (pancake.sol#74) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (context.sol#11)" inContext (context.sol#5-14)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in Fipi._transfer(address,address,uint256) (FiPi.sol#419-512):
External calls:
- swapForMarketing(minTokensBeforeSwap) (FiPi.sol#460)
- _marketingAddress.transfer(address(this).balance) (FiPi.sol#584)
State variables written after the call(s):
- _amountSold[from] = newTotal (FiPi.sol#493)
- _amountSold[from] = newTotal (FiPi.sol#497)
- _amountSold[from] = amount (FiPi.sol#500)
- _feeMultiplier = 1 (FiPi.sol#467)
- _feeMultiplier = 0 (FiPi.sol#472)
- _feeMultiplier = 2 (FiPi.sol#490)
- _feeMultiplier = 2 (FiPi.sol#495)
- _feeMultiplier = 1 (FiPi.sol#510)
- _marketingFeeMultiplier = 1 (FiPi.sol#468)
- _marketingFeeMultiplier = 0 (FiPi.sol#473)
- _marketingFeeMultiplier = 45 (FiPi.sol#478)
- _marketingFeeMultiplier = 2 (FiPi.sol#491)
- _marketingFeeMultiplier = 2 (FiPi.sol#496)
- _marketingFeeMultiplier = 1 (FiPi.sol#511)
- _tokenTransfer(from,to,amount) (FiPi.sol#509)
- _rOwned[_LiquidityReciever] = _rOwned[_LiquidityReciever].add(rLiquidity) (FiPi.sol#369)
- _rOwned[address(this)] = _rOwned[address(this)].add(rMarketing) (FiPi.sol#377)
- _rOwned[_BurnWallet] = _rOwned[_BurnWallet].add(rBurn) (FiPi.sol#386)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (FiPi.sol#535)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (FiPi.sol#536)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (FiPi.sol#540)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (FiPi.sol#542)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (FiPi.sol#546)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (FiPi.sol#547)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (FiPi.sol#552)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (FiPi.sol#554)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (FiPi.sol#558)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (FiPi.sol#559)
- _tokenTransfer(from,to,amount) (FiPi.sol#509)
- _rTotal = _rTotal.sub(rFee) (FiPi.sol#322)
- _tokenTransfer(from,to,amount) (FiPi.sol#509)
- _tBurnTotal = _tBurnTotal.add(tBurn) (FiPi.sol#389)
- _tokenTransfer(from,to,amount) (FiPi.sol#509)
- _tFeeTotal = _tFeeTotal.add(tFee) (FiPi.sol#323)
- _tokenTransfer(from,to,amount) (FiPi.sol#509)
- _tOwned[address(this)] = _tOwned[address(this)].add(tMarketing) (FiPi.sol#379)
- _tOwned[_BurnWallet] = _tOwned[_BurnWallet].add(tBurn) (FiPi.sol#388)
- _tOwned[_LiquidityReciever] = _tOwned[_LiquidityReciever].add(tLiquidity) (FiPi.sol#371)
- _tOwned[sender] = _tOwned[sender].sub(amount) (FiPi.sol#534)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (FiPi.sol#541)
- _tOwned[sender] = _tOwned[sender].sub(amount) (FiPi.sol#551)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (FiPi.sol#553)
- _timeSinceFirstSell[from] = block.timestamp (FiPi.sol#499)
Event emitted after the call(s):
- Transfer(sender,_BurnWallet,tFee) (FiPi.sol#574)
- _tokenTransfer(from,to,amount) (FiPi.sol#509)
- Transfer(sender,recipient,tTransferAmount) (FiPi.sol#576)
- _tokenTransfer(from,to,amount) (FiPi.sol#509)
Reentrancy in Fipi.transferFrom(address,address,uint256) (FiPi.sol#191-206):
External calls:
- _transfer(sender,recipient,amount) (FiPi.sol#196)
- _marketingAddress.transfer(address(this).balance) (FiPi.sol#584)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (FiPi.sol#197-204)
- _allowances[owner][spender] = amount (FiPi.sol#405)
Event emitted after the call(s):
- Approval(owner,spender,amount) (FiPi.sol#406)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (FiPi.sol#197-204)
Apply the check-effects-interactions pattern.

Additional information: link

Variable Fipi.reflectionFromToken(uint256,bool).rTransferAmount (FiPi.sol#265) is too similar to Fipi.reflectionFromToken(uint256,bool).tTransferAmount (FiPi.sol#264)
Variable Fipi.reflectionFromToken(uint256,bool).rTransferAmount (FiPi.sol#265) is too similar to Fipi._getTValues(uint256).tTransferAmount (FiPi.sol#339)
Variable Fipi.reflectionFromToken(uint256,bool).rTransferAmount (FiPi.sol#265) is too similar to Fipi._tokenTransfer(address,address,uint256).tTransferAmount (FiPi.sol#523)
Variable Fipi._tokenTransfer(address,address,uint256).rTransferAmount (FiPi.sol#530) is too similar to Fipi._tokenTransfer(address,address,uint256).tTransferAmount (FiPi.sol#523)
Variable Fipi._tokenTransfer(address,address,uint256).rTransferAmount (FiPi.sol#530) is too similar to Fipi._getTValues(uint256).tTransferAmount (FiPi.sol#339)
Variable Fipi._tokenTransfer(address,address,uint256).rTransferAmount (FiPi.sol#530) is too similar to Fipi.reflectionFromToken(uint256,bool).tTransferAmount (FiPi.sol#264)
Variable IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (pancake.sol#79) is too similar to IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (pancake.sol#80)
Prevent variables from having similar names.

Additional information: link

name() should be declared external:
- Fipi.name() (FiPi.sol#150-152)
symbol() should be declared external:
- Fipi.symbol() (FiPi.sol#153-155)
decimals() should be declared external:
- Fipi.decimals() (FiPi.sol#156-158)
totalSupply() should be declared external:
- Fipi.totalSupply() (FiPi.sol#159-161)
transfer(address,uint256) should be declared external:
- Fipi.transfer(address,uint256) (FiPi.sol#167-173)
allowance(address,address) should be declared external:
- Fipi.allowance(address,address) (FiPi.sol#175-181)
approve(address,uint256) should be declared external:
- Fipi.approve(address,uint256) (FiPi.sol#183-189)
transferFrom(address,address,uint256) should be declared external:
- Fipi.transferFrom(address,address,uint256) (FiPi.sol#191-206)
increaseAllowance(address,uint256) should be declared external:
- Fipi.increaseAllowance(address,uint256) (FiPi.sol#208-218)
decreaseAllowance(address,uint256) should be declared external:
- Fipi.decreaseAllowance(address,uint256) (FiPi.sol#220-233)
isExcludedFromFee(address) should be declared external:
- Fipi.isExcludedFromFee(address) (FiPi.sol#393-395)
withDrawLeftoverBNB() should be declared external:
- Fipi.withDrawLeftoverBNB() (FiPi.sol#606-609)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (context.sol#68-71)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (context.sol#77-84)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:

Contract has 5% buy tax and 4% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Swap operations require suspiciously high gas. Contract logic is complex and may disguise some form of scam.


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 Blog account (Reddit or Medium)


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

Additional information: link


Unable to find token on CoinGecko

Additional information: link


Unable to verify token contract address on the website


Unable to find audit link on the website


Unable to find token on CoinHunt

Additional information: link


Token is not listed at Mobula.Finance

Additional information: link


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


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death

Price for FiPi

News for FiPi