InstaFanz Token Logo

IFANZ [InstaFanz] Token

About IFANZ

Listings

Token 2 years
white paper

Secure your privacy with InstaFanz ✅ First blockchain platform for connecting creator and fan.
🔥The threat to the other similar platforms highlighted a serious need to address the huge power that centralized platforms have when it comes to payment processing. Creating a blockchain-based payment system could help eliminate some of the challenges that content creators face. 🔥
3% Rewards in BNB 🔥 dAPP beta is LIVE: https://app.instafanz.io

Social

Laser Scorebeta Last Audit: 18 July 2022

report
Token has too many issues. Scam probability is high.

InstaFanz.addLiquidity(uint256,uint256) (#1993-2006) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1998-2005)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in InstaFanz._transfer(address,address,uint256) (#1898-1954):
External calls:
- swapAndLiquify(contractTokenBalance) (#1925)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1998-2005)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2019-2025)
- (success) = address(dividendTracker).call{value: dividends}() (#1983)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1925)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1998-2005)
- (success) = address(dividendTracker).call{value: dividends}() (#1983)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#1934)
- _balances[sender] = senderBalance - amount (#1079)
- _balances[recipient] += amount (#1081)
- super._transfer(from,to,amount) (#1939)
- _balances[sender] = senderBalance - amount (#1079)
- _balances[recipient] += amount (#1081)
Reentrancy in DividendPayingToken._withdrawDividendOfUser(address) (#1402-1418):
External calls:
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#1407)
State variables written after the call(s):
- withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend) (#1410)
Reentrancy in InstaFanz.swapAndLiquify(uint256) (#1956-1991):
External calls:
- swapTokensForEth(half) (#1971)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2019-2025)
- addLiquidity(otherHalf,newBalance) (#1977)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1998-2005)
- swapTokensForEth(tokensForHolders) (#1980)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2019-2025)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1977)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1998-2005)
State variables written after the call(s):
- swapTokensForEth(tokensForHolders) (#1980)
- _allowances[owner][spender] = amount (#1158)
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.

InstaFanz.totalFees (#1730) is set pre-construction with a non-constant function or state variable:
- rewardFee.add(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

DividendTracker.getAccount(address) (#1566-1609) uses timestamp for comparisons
Dangerous comparisons:
- nextClaimTime > block.timestamp (#1606-1608)
DividendTracker.canAutoClaim(uint256) (#1630-1636) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (#1631)
- block.timestamp.sub(lastClaimTime) >= claimWait (#1635)
Avoid relying on block.timestamp.

Additional information: link

InstaFanz.claim() (#1877-1879) ignores return value by dividendTracker.processAccount(address(msg.sender),false) (#1878)
InstaFanz._transfer(address,address,uint256) (#1898-1954) ignores return value by dividendTracker.process(gas) (#1947-1952)
InstaFanz.addLiquidity(uint256,uint256) (#1993-2006) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1998-2005)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendPayingToken.constructor(string,string)._name (#1359) shadows:
- ERC20._name (#887) (state variable)
DividendPayingToken.constructor(string,string)._symbol (#1359) shadows:
- ERC20._symbol (#888) (state variable)
Rename the local variables that shadow another component.

Additional information: link

InstaFanz.setSwapTokensAtAmount(uint256) (#2059-2061) should emit an event for:
- swapTokensAtAmount = newAmount (#2060)
Emit an event for critical parameter changes.

Additional information: link

DividendPayingToken._withdrawDividendOfUser(address) (#1402-1418) has external calls inside a loop: (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#1407)
Favor pull over push strategy for external calls.

Additional information: link

InstaFanz._transfer(address,address,uint256).claims (#1947) is a local variable never initialized
InstaFanz._transfer(address,address,uint256).lastProcessedIndex (#1947) is a local variable never initialized
InstaFanz._transfer(address,address,uint256).iterations (#1947) 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

Variable 'InstaFanz._transfer(address,address,uint256).claims (#1947)' in InstaFanz._transfer(address,address,uint256) (#1898-1954) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1948)
Variable 'InstaFanz._transfer(address,address,uint256).iterations (#1947)' in InstaFanz._transfer(address,address,uint256) (#1898-1954) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1948)
Variable 'InstaFanz._transfer(address,address,uint256).lastProcessedIndex (#1947)' in InstaFanz._transfer(address,address,uint256) (#1898-1954) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1948)
Move all variable declarations prior to any usage of the variable, and ensure that reaching a variable declaration does not depend on some conditional if it is used unconditionally.

Additional information: link

Reentrancy in InstaFanz.constructor() (#1779-1809):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1785-1786)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#1789)
- uniswapV2Router = _uniswapV2Router (#1788)
Reentrancy in InstaFanz.constructor() (#1779-1809):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1785-1786)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1791)
- dividendTracker.excludeFromDividends(pair) (#2053)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (#1794)
- dividendTracker.excludeFromDividends(address(this)) (#1795)
- dividendTracker.excludeFromDividends(owner()) (#1796)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (#1797)
- dividendTracker.excludeFromDividends(0x000000000000000000000000000000000000dEaD) (#1798)
State variables written after the call(s):
- _mint(owner(),10000000000 * (10 ** 18)) (#1808)
- _balances[account] += amount (#1103)
- excludeFromFees(owner(),true) (#1801)
- _isExcludedFromFees[account] = excluded (#2037)
- excludeFromFees(address(this),true) (#1802)
- _isExcludedFromFees[account] = excluded (#2037)
- _mint(owner(),10000000000 * (10 ** 18)) (#1808)
- _totalSupply += amount (#1102)
Reentrancy in DividendTracker.processAccount(address,bool) (#1702-1712):
External calls:
- amount = _withdrawDividendOfUser(account) (#1703)
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#1407)
State variables written after the call(s):
- lastClaimTimes[account] = block.timestamp (#1706)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in InstaFanz._setAutomatedMarketMakerPair(address,bool) (#2048-2057):
External calls:
- dividendTracker.excludeFromDividends(pair) (#2053)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#2056)
Reentrancy in InstaFanz._transfer(address,address,uint256) (#1898-1954):
External calls:
- swapAndLiquify(contractTokenBalance) (#1925)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1998-2005)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2019-2025)
- (success) = address(dividendTracker).call{value: dividends}() (#1983)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1925)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1998-2005)
- (success) = address(dividendTracker).call{value: dividends}() (#1983)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#1083)
- super._transfer(from,to,amount) (#1939)
- Transfer(sender,recipient,amount) (#1083)
- super._transfer(from,address(this),fees) (#1934)
Reentrancy in InstaFanz._transfer(address,address,uint256) (#1898-1954):
External calls:
- swapAndLiquify(contractTokenBalance) (#1925)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1998-2005)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2019-2025)
- (success) = address(dividendTracker).call{value: dividends}() (#1983)
- dividendTracker.setBalance(address(from),balanceOf(from)) (#1941)
- dividendTracker.setBalance(address(to),balanceOf(to)) (#1942)
- dividendTracker.process(gas) (#1947-1952)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1925)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1998-2005)
- (success) = address(dividendTracker).call{value: dividends}() (#1983)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1948)
Reentrancy in InstaFanz.constructor() (#1779-1809):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1785-1786)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1791)
- dividendTracker.excludeFromDividends(pair) (#2053)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#2056)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1791)
Reentrancy in InstaFanz.constructor() (#1779-1809):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1785-1786)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1791)
- dividendTracker.excludeFromDividends(pair) (#2053)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (#1794)
- dividendTracker.excludeFromDividends(address(this)) (#1795)
- dividendTracker.excludeFromDividends(owner()) (#1796)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (#1797)
- dividendTracker.excludeFromDividends(0x000000000000000000000000000000000000dEaD) (#1798)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (#2039)
- excludeFromFees(address(this),true) (#1802)
- ExcludeFromFees(account,excluded) (#2039)
- excludeFromFees(owner(),true) (#1801)
- Transfer(address(0),account,amount) (#1104)
- _mint(owner(),10000000000 * (10 ** 18)) (#1808)
Reentrancy in DividendTracker.processAccount(address,bool) (#1702-1712):
External calls:
- amount = _withdrawDividendOfUser(account) (#1703)
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#1407)
Event emitted after the call(s):
- Claim(account,amount,automatic) (#1707)
Reentrancy in InstaFanz.processDividendTracker(uint256) (#1872-1875):
External calls:
- (iterations,claims,lastProcessedIndex) = dividendTracker.process(gas) (#1873)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,false,gas,tx.origin) (#1874)
Reentrancy in InstaFanz.swapAndLiquify(uint256) (#1956-1991):
External calls:
- swapTokensForEth(half) (#1971)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2019-2025)
- addLiquidity(otherHalf,newBalance) (#1977)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1998-2005)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1977)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1998-2005)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1159)
- addLiquidity(otherHalf,newBalance) (#1977)
Reentrancy in InstaFanz.swapAndLiquify(uint256) (#1956-1991):
External calls:
- swapTokensForEth(half) (#1971)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2019-2025)
- addLiquidity(otherHalf,newBalance) (#1977)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1998-2005)
- swapTokensForEth(tokensForHolders) (#1980)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2019-2025)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1977)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1998-2005)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1159)
- swapTokensForEth(tokensForHolders) (#1980)
Reentrancy in InstaFanz.swapAndLiquify(uint256) (#1956-1991):
External calls:
- swapTokensForEth(half) (#1971)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2019-2025)
- addLiquidity(otherHalf,newBalance) (#1977)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1998-2005)
- swapTokensForEth(tokensForHolders) (#1980)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2019-2025)
- (success) = address(dividendTracker).call{value: dividends}() (#1983)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1977)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1998-2005)
- (success) = address(dividendTracker).call{value: dividends}() (#1983)
Event emitted after the call(s):
- SendDividends(tokensForHolders,dividends) (#1986)
- SwapAndLiquify(otherHalf,newBalance) (#1989)
Apply the check-effects-interactions pattern.

Additional information: link

Context._msgData() (#21-23) is never used and should be removed
DividendPayingToken._transfer(address,address,uint256) (#1458-1464) is never used and should be removed
SafeCast.toInt128(int256) (#664-667) is never used and should be removed
SafeCast.toInt16(int256) (#718-721) is never used and should be removed
SafeCast.toInt32(int256) (#700-703) is never used and should be removed
SafeCast.toInt64(int256) (#682-685) is never used and should be removed
SafeCast.toInt8(int256) (#736-739) is never used and should be removed
SafeCast.toUint128(uint256) (#559-562) is never used and should be removed
SafeCast.toUint16(uint256) (#619-622) is never used and should be removed
SafeCast.toUint224(uint256) (#544-547) is never used and should be removed
SafeCast.toUint32(uint256) (#604-607) is never used and should be removed
SafeCast.toUint64(uint256) (#589-592) is never used and should be removed
SafeCast.toUint8(uint256) (#634-637) is never used and should be removed
SafeCast.toUint96(uint256) (#574-577) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#480-489) is never used and should be removed
SafeMath.mod(uint256,uint256) (#440-442) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#506-515) is never used and should be removed
SafeMath.sub(uint256,uint256,string) (#457-466) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#311-317) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#353-358) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#365-370) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#336-346) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#324-329) is never used and should be removed
SignedSafeMath.div(int256,int256) (#262-264) is never used and should be removed
SignedSafeMath.mul(int256,int256) (#248-250) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version0.8.13 (#3) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.13 is not recommended for deployment
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

Low level call in DividendPayingToken._withdrawDividendOfUser(address) (#1402-1418):
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#1407)
Low level call in InstaFanz.swapAndLiquify(uint256) (#1956-1991):
- (success) = address(dividendTracker).call{value: dividends}() (#1983)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IUniswapV2Router01.WETH() (#82) is not in mixedCase
Parameter DividendPayingToken.dividendOf(address)._owner (#1424) is not in mixedCase
Parameter DividendPayingToken.withdrawableDividendOf(address)._owner (#1431) is not in mixedCase
Parameter DividendPayingToken.withdrawnDividendOf(address)._owner (#1438) is not in mixedCase
Parameter DividendPayingToken.accumulativeDividendOf(address)._owner (#1448) is not in mixedCase
Constant DividendPayingToken.magnitude (#1339) is not in UPPER_CASE_WITH_UNDERSCORES
Parameter DividendTracker.getAccount(address)._account (#1566) is not in mixedCase
Function InstaFanz.IncludeInDividends(address) (#1894-1896) is not in mixedCase
Parameter InstaFanz.setSwapAndLiquifyEnabled(bool)._enabled (#2063) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#87) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#88)
Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (#1403) is too similar to DividendTracker.getAccount(address).withdrawableDividends (#1571)
Prevent variables from having similar names.

Additional information: link

DividendTracker.constructor() (#1520-1523) uses literals with too many digits:
- minimumTokenBalanceForDividends = 1000000 * (10 ** 18) (#1522)
DividendTracker.getAccountAtIndex(uint256) (#1611-1628) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (#1622)
InstaFanz.constructor() (#1779-1809) uses literals with too many digits:
- dividendTracker.excludeFromDividends(0x000000000000000000000000000000000000dEaD) (#1798)
InstaFanz.constructor() (#1779-1809) uses literals with too many digits:
- _mint(owner(),10000000000 * (10 ** 18)) (#1808)
InstaFanz.updateGasForProcessing(uint256) (#1815-1820) uses literals with too many digits:
- require(bool,string)(newValue >= 200000 && newValue <= 500000,gasForProcessing must be between 200,000 and 500,000) (#1816)
InstaFanz.slitherConstructorVariables() (#1716-2069) uses literals with too many digits:
- swapTokensAtAmount = 1000000 * (10 ** 18) (#1732)
InstaFanz.slitherConstructorVariables() (#1716-2069) uses literals with too many digits:
- gasForProcessing = 300000 (#1735)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

InstaFanz.liquidityFee (#1729) should be constant
InstaFanz.rewardFee (#1728) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#60-62)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#68-71)
name() should be declared external:
- ERC20.name() (#907-909)
symbol() should be declared external:
- ERC20.symbol() (#915-917)
decimals() should be declared external:
- ERC20.decimals() (#932-934)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#958-961)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#977-980)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#995-1009)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#1023-1026)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#1042-1050)
get(IterableMapping.Map,address) should be declared external:
- IterableMapping.get(IterableMapping.Map,address) (#1212-1214)
getIndexOfKey(IterableMapping.Map,address) should be declared external:
- IterableMapping.getIndexOfKey(IterableMapping.Map,address) (#1216-1221)
getKeyAtIndex(IterableMapping.Map,uint256) should be declared external:
- IterableMapping.getKeyAtIndex(IterableMapping.Map,uint256) (#1223-1225)
size(IterableMapping.Map) should be declared external:
- IterableMapping.size(IterableMapping.Map) (#1229-1231)
withdrawDividend() should be declared external:
- DividendPayingToken.withdrawDividend() (#1396-1398)
- DividendTracker.withdrawDividend() (#1529-1531)
dividendOf(address) should be declared external:
- DividendPayingToken.dividendOf(address) (#1424-1426)
withdrawnDividendOf(address) should be declared external:
- DividendPayingToken.withdrawnDividendOf(address) (#1438-1440)
getAccountAtIndex(uint256) should be declared external:
- DividendTracker.getAccountAtIndex(uint256) (#1611-1628)
process(uint256) should be declared external:
- DividendTracker.process(uint256) (#1655-1700)
updateGasForProcessing(uint256) should be declared external:
- InstaFanz.updateGasForProcessing(uint256) (#1815-1820)
isExcludedFromFees(address) should be declared external:
- InstaFanz.isExcludedFromFees(address) (#1834-1836)
withdrawableDividendOf(address) should be declared external:
- InstaFanz.withdrawableDividendOf(address) (#1838-1840)
dividendTokenBalanceOf(address) should be declared external:
- InstaFanz.dividendTokenBalanceOf(address) (#1842-1844)
updateUniswapV2Router(address) should be declared external:
- InstaFanz.updateUniswapV2Router(address) (#2029-2033)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- InstaFanz.setAutomatedMarketMakerPair(address,bool) (#2042-2046)
setSwapTokensAtAmount(uint256) should be declared external:
- InstaFanz.setSwapTokensAtAmount(uint256) (#2059-2061)
setSwapAndLiquifyEnabled(bool) should be declared external:
- InstaFanz.setSwapAndLiquifyEnabled(bool) (#2063-2066)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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


Number of Binance Smart Chain (BSC) token holders is low.


Telegram account link seems to be invalid


Last post in Twitter was more than 30 days ago


Twitter account has few posts


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


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


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death

Price for IFANZ

News for IFANZ