FOXINU Token Logo

$FOXI [FOXINU] Token

About $FOXI

Listings

Not Found
Token 4 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 17 January 2022

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


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

FOXINU.withdrawOtherTokens(address,address) (#1175-1180) ignores return value by token.transfer(_account,tokenBalance) (#1178)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link

FOXINU.addLiquidity(uint256,uint256) (#1272-1288) sends eth to arbitrary user
Dangerous calls:
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1278-1285)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in FOXINU._transfer(address,address,uint256) (#1193-1251):
External calls:
- swapAndLiquify(swapTokens) (#1222)
- (success) = recipient.call{value: amount}() (#901)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1278-1285)
- address(marketingWalletAddress).sendValue(ethAmount - ethFromLiquidity) (#1287)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1301-1307)
- swapAndSendToFee(marketingTokens,marketingWalletAddress) (#1225)
- address(feeAddress).sendValue(newBalance) (#1255)
- (success) = recipient.call{value: amount}() (#901)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1301-1307)
- swapAndSendToFee(devTokens,devWalletAddress) (#1227)
- address(feeAddress).sendValue(newBalance) (#1255)
- (success) = recipient.call{value: amount}() (#901)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1301-1307)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1222)
- (success) = recipient.call{value: amount}() (#901)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1278-1285)
- swapAndSendToFee(marketingTokens,marketingWalletAddress) (#1225)
- (success) = recipient.call{value: amount}() (#901)
- swapAndSendToFee(devTokens,devWalletAddress) (#1227)
- (success) = recipient.call{value: amount}() (#901)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#1247)
- _balances[sender] = senderBalance - amount (#720)
- _balances[recipient] += amount (#722)
- super._transfer(from,to,amount) (#1250)
- _balances[sender] = senderBalance - amount (#720)
- _balances[recipient] += amount (#722)
- swapping = false (#1230)
Apply the check-effects-interactions pattern.

Additional information: link


Combination 1: Reentrancy vulnerabilities + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.


Combination 2: Unchecked transfer + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.


Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.

Contract ticker ($FOXI) 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.

FOXINU.setLiquidityFee(uint256) (#1122-1124) should emit an event for:
- liquidityFee = value (#1123)
FOXINU.setMarketingFee(uint256) (#1126-1128) should emit an event for:
- marketingFee = value (#1127)
FOXINU.setDevFee(uint256) (#1130-1132) should emit an event for:
- devFee = value (#1131)
Emit an event for critical parameter changes.

Additional information: link

FOXINU.updateUniswapV2Router(address)._uniswapV2Pair (#1094) lacks a zero-check on :
- uniswapV2Pair = _uniswapV2Pair (#1095)
FOXINU.setMarketingWallet(address).wallet (#1112) lacks a zero-check on :
- marketingWalletAddress = wallet (#1114)
FOXINU.setDevWallet(address).wallet (#1117) lacks a zero-check on :
- devWalletAddress = wallet (#1119)
Check that the address is not zero.

Additional information: link

FOXINU.swapTokensForEth(uint256) (#1290-1310) has external calls inside a loop: path[1] = uniswapV2Router.WETH() (#1296)
FOXINU.swapTokensForEth(uint256) (#1290-1310) has external calls inside a loop: uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1301-1307)
FOXINU.addLiquidity(uint256,uint256) (#1272-1288) has external calls inside a loop: (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1278-1285)
Address.sendValue(address,uint256) (#897-903) has external calls inside a loop: (success) = recipient.call{value: amount}() (#901)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in FOXINU._transfer(address,address,uint256) (#1193-1251):
External calls:
- swapAndLiquify(swapTokens) (#1222)
- (success) = recipient.call{value: amount}() (#901)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1278-1285)
- address(marketingWalletAddress).sendValue(ethAmount - ethFromLiquidity) (#1287)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1301-1307)
- swapAndSendToFee(marketingTokens,marketingWalletAddress) (#1225)
- address(feeAddress).sendValue(newBalance) (#1255)
- (success) = recipient.call{value: amount}() (#901)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1301-1307)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1222)
- (success) = recipient.call{value: amount}() (#901)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1278-1285)
- swapAndSendToFee(marketingTokens,marketingWalletAddress) (#1225)
- (success) = recipient.call{value: amount}() (#901)
State variables written after the call(s):
- swapAndSendToFee(marketingTokens,marketingWalletAddress) (#1225)
- _allowances[owner][spender] = amount (#799)
Reentrancy in FOXINU._transfer(address,address,uint256) (#1193-1251):
External calls:
- swapAndLiquify(swapTokens) (#1222)
- (success) = recipient.call{value: amount}() (#901)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1278-1285)
- address(marketingWalletAddress).sendValue(ethAmount - ethFromLiquidity) (#1287)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1301-1307)
- swapAndSendToFee(marketingTokens,marketingWalletAddress) (#1225)
- address(feeAddress).sendValue(newBalance) (#1255)
- (success) = recipient.call{value: amount}() (#901)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1301-1307)
- swapAndSendToFee(devTokens,devWalletAddress) (#1227)
- address(feeAddress).sendValue(newBalance) (#1255)
- (success) = recipient.call{value: amount}() (#901)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1301-1307)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1222)
- (success) = recipient.call{value: amount}() (#901)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1278-1285)
- swapAndSendToFee(marketingTokens,marketingWalletAddress) (#1225)
- (success) = recipient.call{value: amount}() (#901)
- swapAndSendToFee(devTokens,devWalletAddress) (#1227)
- (success) = recipient.call{value: amount}() (#901)
State variables written after the call(s):
- swapAndSendToFee(devTokens,devWalletAddress) (#1227)
- _allowances[owner][spender] = amount (#799)
Reentrancy in FOXINU.constructor() (#1043-1066):
External calls:
- _uniswapV2Pair = ISwapFactory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1046)
State variables written after the call(s):
- _mint(owner(),1_000_000_000 * 10 ** 18) (#1064)
- _balances[account] += amount (#744)
- _mint(owner(),1_000_000_000 * 10 ** 18) (#1064)
- _totalSupply += amount (#743)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1051)
- automatedMarketMakerPairs[pair] = value (#1165)
- excludeFromFees(owner(),true) (#1054)
- isExcludedFromFees[account] = excluded (#1099)
- excludeFromFees(marketingWalletAddress,true) (#1055)
- isExcludedFromFees[account] = excluded (#1099)
- excludeFromFees(devWalletAddress,true) (#1056)
- isExcludedFromFees[account] = excluded (#1099)
- excludeFromFees(BURN_ADDRESS,true) (#1057)
- isExcludedFromFees[account] = excluded (#1099)
- excludeFromFees(address(this),true) (#1058)
- isExcludedFromFees[account] = excluded (#1099)
- maxTxAmount = totalSupply() / 500 (#1065)
- uniswapV2Pair = _uniswapV2Pair (#1049)
- uniswapV2Router = _uniswapV2Router (#1048)
Reentrancy in FOXINU.swapAndLiquify(uint256) (#1258-1270):
External calls:
- newBalance = swapTokensForEth(half) (#1264)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1301-1307)
- addLiquidity(otherHalf,newBalance) (#1267)
- (success) = recipient.call{value: amount}() (#901)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1278-1285)
- address(marketingWalletAddress).sendValue(ethAmount - ethFromLiquidity) (#1287)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1267)
- (success) = recipient.call{value: amount}() (#901)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1278-1285)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1267)
- _allowances[owner][spender] = amount (#799)
Reentrancy in FOXINU.updateUniswapV2Router(address) (#1090-1096):
External calls:
- _uniswapV2Pair = ISwapFactory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#1094)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#1095)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in FOXINU._transfer(address,address,uint256) (#1193-1251):
External calls:
- swapAndLiquify(swapTokens) (#1222)
- (success) = recipient.call{value: amount}() (#901)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1278-1285)
- address(marketingWalletAddress).sendValue(ethAmount - ethFromLiquidity) (#1287)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1301-1307)
- swapAndSendToFee(marketingTokens,marketingWalletAddress) (#1225)
- address(feeAddress).sendValue(newBalance) (#1255)
- (success) = recipient.call{value: amount}() (#901)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1301-1307)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1222)
- (success) = recipient.call{value: amount}() (#901)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1278-1285)
- swapAndSendToFee(marketingTokens,marketingWalletAddress) (#1225)
- (success) = recipient.call{value: amount}() (#901)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#800)
- swapAndSendToFee(marketingTokens,marketingWalletAddress) (#1225)
Reentrancy in FOXINU._transfer(address,address,uint256) (#1193-1251):
External calls:
- swapAndLiquify(swapTokens) (#1222)
- (success) = recipient.call{value: amount}() (#901)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1278-1285)
- address(marketingWalletAddress).sendValue(ethAmount - ethFromLiquidity) (#1287)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1301-1307)
- swapAndSendToFee(marketingTokens,marketingWalletAddress) (#1225)
- address(feeAddress).sendValue(newBalance) (#1255)
- (success) = recipient.call{value: amount}() (#901)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1301-1307)
- swapAndSendToFee(devTokens,devWalletAddress) (#1227)
- address(feeAddress).sendValue(newBalance) (#1255)
- (success) = recipient.call{value: amount}() (#901)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1301-1307)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1222)
- (success) = recipient.call{value: amount}() (#901)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1278-1285)
- swapAndSendToFee(marketingTokens,marketingWalletAddress) (#1225)
- (success) = recipient.call{value: amount}() (#901)
- swapAndSendToFee(devTokens,devWalletAddress) (#1227)
- (success) = recipient.call{value: amount}() (#901)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#800)
- swapAndSendToFee(devTokens,devWalletAddress) (#1227)
- Transfer(sender,recipient,amount) (#724)
- super._transfer(from,address(this),fees) (#1247)
- Transfer(sender,recipient,amount) (#724)
- super._transfer(from,to,amount) (#1250)
Reentrancy in FOXINU.constructor() (#1043-1066):
External calls:
- _uniswapV2Pair = ISwapFactory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1046)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (#1101)
- excludeFromFees(BURN_ADDRESS,true) (#1057)
- ExcludeFromFees(account,excluded) (#1101)
- excludeFromFees(devWalletAddress,true) (#1056)
- ExcludeFromFees(account,excluded) (#1101)
- excludeFromFees(address(this),true) (#1058)
- ExcludeFromFees(account,excluded) (#1101)
- excludeFromFees(marketingWalletAddress,true) (#1055)
- ExcludeFromFees(account,excluded) (#1101)
- excludeFromFees(owner(),true) (#1054)
- SetAutomatedMarketMakerPair(pair,value) (#1167)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1051)
- Transfer(address(0),account,amount) (#745)
- _mint(owner(),1_000_000_000 * 10 ** 18) (#1064)
Reentrancy in FOXINU.swapAndLiquify(uint256) (#1258-1270):
External calls:
- newBalance = swapTokensForEth(half) (#1264)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1301-1307)
- addLiquidity(otherHalf,newBalance) (#1267)
- (success) = recipient.call{value: amount}() (#901)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1278-1285)
- address(marketingWalletAddress).sendValue(ethAmount - ethFromLiquidity) (#1287)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1267)
- (success) = recipient.call{value: amount}() (#901)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1278-1285)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#800)
- addLiquidity(otherHalf,newBalance) (#1267)
- SwapAndLiquify(half,newBalance,otherHalf) (#1269)
Reentrancy in FOXINU.withdrawExcessBNB(address) (#1184-1191):
External calls:
- address(_account).sendValue(contractBNBBalance) (#1188)
Event emitted after the call(s):
- AccidentallySentBNBWithdrawn(_account,contractBNBBalance) (#1190)
Reentrancy in FOXINU.withdrawOtherTokens(address,address) (#1175-1180):
External calls:
- token.transfer(_account,tokenBalance) (#1178)
Event emitted after the call(s):
- AccidentallySentTokenWithdrawn(_token,_account,tokenBalance) (#1179)
Apply the check-effects-interactions pattern.

Additional information: link

FOXINU._transfer(address,address,uint256) (#1193-1251) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(isBlacklistedUntil[from] < block.timestamp && isBlacklistedUntil[to] < block.timestamp,FOXINU: Blacklisted address) (#1201)
- canSwap = contractTokenBalance >= swapTokensAtAmount && launchedAt + 10 < block.timestamp && tradingOpened (#1211)
- canSwap && ! swapping && ! automatedMarketMakerPairs[from] && from != owner() && to != owner() (#1213-1217)
- launchedAt + 10 < block.timestamp (#1241)
FOXINU.addLiquidity(uint256,uint256) (#1272-1288) uses timestamp for comparisons
Dangerous comparisons:
- ethAmount - ethFromLiquidity > 0 (#1286)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#870-879) uses assembly
- INLINE ASM (#877)
Address._functionCallWithValue(address,bytes,uint256,string) (#963-984) uses assembly
- INLINE ASM (#976-979)
Do not use evm assembly.

Additional information: link

FOXINU._transfer(address,address,uint256) (#1193-1251) has costly operations inside a loop:
- swapping = true (#1219)
FOXINU._transfer(address,address,uint256) (#1193-1251) has costly operations inside a loop:
- swapping = false (#1230)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#963-984) is never used and should be removed
Address.functionCall(address,bytes) (#923-925) is never used and should be removed
Address.functionCall(address,bytes,string) (#933-935) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#948-950) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#958-961) is never used and should be removed
Address.isContract(address) (#870-879) is never used and should be removed
Context._msgData() (#308-311) is never used and should be removed
ERC20._burn(address,uint256) (#761-776) is never used and should be removed
Remove unused functions.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#897-903):
- (success) = recipient.call{value: amount}() (#901)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#963-984):
- (success,returndata) = target.call{value: weiValue}(data) (#967)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function ISwapPair.DOMAIN_SEPARATOR() (#61) is not in mixedCase
Function ISwapPair.PERMIT_TYPEHASH() (#62) is not in mixedCase
Function ISwapPair.MINIMUM_LIQUIDITY() (#79) is not in mixedCase
Function ISwapRouter01.WETH() (#99) is not in mixedCase
Parameter FOXINU.toggleTrading(bool)._tradingOpened (#1158) is not in mixedCase
Parameter FOXINU.withdrawOtherTokens(address,address)._token (#1175) is not in mixedCase
Parameter FOXINU.withdrawOtherTokens(address,address)._account (#1175) is not in mixedCase
Parameter FOXINU.withdrawExcessBNB(address)._account (#1184) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#309)" inContext (#303-312)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable ISwapRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#104) is too similar to ISwapRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#105)
Prevent variables from having similar names.

Additional information: link

FOXINU.slitherConstructorConstantVariables() (#992-1312) uses literals with too many digits:
- BURN_ADDRESS = 0x000000000000000000000000000000000000dEaD (#1001)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Ownable._previousOwner (#334) is never used in FOXINU (#992-1312)
Ownable._lockTime (#335) is never used in FOXINU (#992-1312)
FOXINU.antibotEndTime (#1016) is never used in FOXINU (#992-1312)
Remove unused state variables.

Additional information: link

FOXINU.antibotEndTime (#1016) should be constant
FOXINU.feeDenominator (#1011) should be constant
FOXINU.swapTokensAtAmount (#1003) should be constant
Ownable._lockTime (#335) should be constant
Ownable._previousOwner (#334) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#370-373)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#379-383)
name() should be declared external:
- ERC20.name() (#548-550)
symbol() should be declared external:
- ERC20.symbol() (#556-558)
decimals() should be declared external:
- ERC20.decimals() (#573-575)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#599-602)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#607-609)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#618-621)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#636-650)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#664-667)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#683-691)
updateUniswapV2Router(address) should be declared external:
- FOXINU.updateUniswapV2Router(address) (#1090-1096)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- FOXINU.excludeMultipleAccountsFromFees(address[],bool) (#1104-1110)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- FOXINU.setAutomatedMarketMakerPair(address,bool) (#1143-1147)
excludedFromFees(address) should be declared external:
- FOXINU.excludedFromFees(address) (#1170-1172)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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


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


Unable to find PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute volume.


Unable to find PancakeSwap trading pair to compute number of swaps.


Unable to find Telegram and Twitter accounts


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


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 $FOXI