Florkinomics Token Logo

FLORKIN [Florkinomics] Token

About FLORKIN

Listings

Not Found
Token 3 years
white paper

Elon will definitely tweet about us because, Flork.
Visit our Telegram! https://t.co/FxuEVrnn3h
@FlorkOfCows please follow us. Airdrops incoming sir!!!

Social

Laser Scorebeta Last Audit: 29 July 2022

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

Anti-Scam

Links

Florkinomics.swapBack() (#748-796) sends eth to arbitrary user
Dangerous calls:
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#779)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#780)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

DividendDistributor.distributeDividend(address) (#337-348) ignores return value by RWRD.transfer(shareholder,amount) (#343)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


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


Too many vulnerabilities (Unchecked transfer, Reentrancy vulnerability, etc.). High risk of a scam. DYOR & manual audit are advised.

Reentrancy in Florkinomics._transferFrom(address,address,uint256) (#582-638):
External calls:
- swapBack() (#617)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#761-767)
- distributor.deposit{value: amountBNBReflection}() (#778)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#779)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#780)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#786-793)
External calls sending eth:
- swapBack() (#617)
- distributor.deposit{value: amountBNBReflection}() (#778)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#779)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#780)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#786-793)
State variables written after the call(s):
- _rBalance[sender] = _rBalance[sender].sub(rAmount,Insufficient Balance) (#620)
- _rBalance[recipient] = _rBalance[recipient].add(amountReceived) (#623)
- amountReceived = takeFee(sender,rAmount,(recipient == pair)) (#622)
- _rBalance[address(this)] = _rBalance[address(this)].add(feeAmount) (#672)
Apply the check-effects-interactions pattern.

Additional information: link


Contract ownership is not renounced (belongs to a wallet)

Florkinomics.cooldownEnabled(bool,uint8) (#741-745) contains a tautology or contradiction:
- require(bool,string)(cooldownTimerInterval < 3600,cooldown needs to be less than 1 hour) (#742)
Fix the incorrect comparison by changing the value type or the comparison.

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.

Florkinomics.swapBack().tmpSuccess (#779) is written in both
(tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#779)
(tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#780)
Florkinomics.swapBack().tmpSuccess (#779) is written in both
(tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#780)
tmpSuccess = false (#783)
Fix or remove the writes.

Additional information: link

Florkinomics.setMaster(address) (#863-865) should emit an event for:
- master = _master (#864)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in DividendDistributor.distributeDividend(address) (#337-348):
External calls:
- RWRD.transfer(shareholder,amount) (#343)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#345)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#346)
Reentrancy in DividendDistributor.process(uint256) (#306-330):
External calls:
- distributeDividend(shareholders[currentIndex]) (#322)
- RWRD.transfer(shareholder,amount) (#343)
State variables written after the call(s):
- currentIndex ++ (#327)
Reentrancy in DividendDistributor.setShare(address,uint256) (#270-284):
External calls:
- distributeDividend(shareholder) (#272)
- RWRD.transfer(shareholder,amount) (#343)
State variables written after the call(s):
- shares[shareholder].amount = amount (#282)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#283)
Apply the check-effects-interactions pattern.

Additional information: link

Florkinomics.manage_houseguests(address[],bool) (#734-739) compares to a boolean constant:
-require(bool,string)(canBlacklist == true,dev can no longer manage houseguests) (#735)
Remove the equality to the boolean constant.

Additional information: link

SafeMathInt.MAX_INT256 (#58) is never used in SafeMathInt (#56-90)
Remove unused state variables.

Additional information: link

DividendDistributor.WBNB (#227) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#240) should be constant
Florkinomics.DEAD (#386) should be constant
Florkinomics.WBNB (#385) should be constant
Florkinomics.ZERO (#387) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

Florkinomics.rebase_percentage(uint256,bool) (#467-475) performs a multiplication on the result of a division:
-newSupply = rebase(0,int256(_totalSupply.div(1000).mul(_percentage_base1000))) (#472)
Florkinomics.rebase_percentage(uint256,bool) (#467-475) performs a multiplication on the result of a division:
-newSupply = rebase(0,int256(_totalSupply.div(1000).mul(_percentage_base1000)).mul(- 1)) (#470)
Florkinomics.takeFee(address,uint256,bool) (#659-676) performs a multiplication on the result of a division:
-feeAmount = rAmount.div(feeDenominator * 100).mul(totalFee).mul(multiplier) (#666)
Florkinomics.takeFee(address,uint256,bool) (#659-676) performs a multiplication on the result of a division:
-feeAmount = rAmount.div(100).mul(99) (#669)
Florkinomics.swapBack() (#748-796) performs a multiplication on the result of a division:
-amountToLiquify = tokensToSell.div(totalFee).mul(dynamicLiquidityFee).div(2) (#752)
Florkinomics.setSwapBackSettings(bool,uint256) (#840-843) performs a multiplication on the result of a division:
-swapThreshold = rSupply.div(10000).mul(_percentage_base10000) (#842)
Florkinomics.setMaxWalletPercent_base1000(uint256) (#922-924) performs a multiplication on the result of a division:
-_maxWalletToken = rSupply.div(1000).mul(maxWallPercent_base1000) (#923)
Florkinomics.setMaxTxPercent_base1000(uint256) (#926-929) performs a multiplication on the result of a division:
-_maxTxAmount = rSupply.div(1000).mul(maxTXPercentage_base1000) (#928)
Florkinomics.slitherConstructorVariables() (#381-996) performs a multiplication on the result of a division:
-_maxTxAmount = rSupply.div(100).mul(2) (#464)
Florkinomics.slitherConstructorVariables() (#381-996) performs a multiplication on the result of a division:
-_maxWalletToken = rSupply.div(100).mul(3) (#465)
Consider ordering multiplication before division.

Additional information: link

Florkinomics.manage_houseguests(address[],bool).i (#736) 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

Florkinomics.swapBack() (#748-796) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#786-793)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendDistributor.setDistributionCriteria(uint256,uint256) (#265-268) should emit an event for:
- minPeriod = _minPeriod (#266)
- minDistribution = _minDistribution (#267)
Florkinomics.set_sell_multiplier(uint256) (#701-704) should emit an event for:
- sellMultiplier = Multiplier (#703)
Florkinomics.tradingStatus(bool,uint256) (#708-714) should emit an event for:
- deadBlocks = _deadBlocks (#712)
Florkinomics.launchStatus(uint256) (#716-718) should emit an event for:
- launchedAt = _launchblock (#717)
Florkinomics.setFees(uint256,uint256,uint256,uint256,uint256) (#822-830) should emit an event for:
- liquidityFee = _liquidityFee (#823)
- reflectionFee = _reflectionFee (#824)
- marketingFee = _marketingFee (#825)
- devFee = _devFee (#826)
- totalFee = _liquidityFee.add(_reflectionFee).add(_marketingFee).add(_devFee) (#827)
- feeDenominator = _feeDenominator (#828)
Florkinomics.setSwapBackSettings(bool,uint256) (#840-843) should emit an event for:
- swapThreshold = rSupply.div(10000).mul(_percentage_base10000) (#842)
Florkinomics.setTargetLiquidity(uint256,uint256) (#846-849) should emit an event for:
- targetLiquidity = _target (#847)
- targetLiquidityDenominator = _denominator (#848)
Florkinomics.setMaxWalletPercent_base1000(uint256) (#922-924) should emit an event for:
- _maxWalletToken = rSupply.div(1000).mul(maxWallPercent_base1000) (#923)
Florkinomics.setMaxTxPercent_base1000(uint256) (#926-929) should emit an event for:
- _maxTxAmount = rSupply.div(1000).mul(maxTXPercentage_base1000) (#928)
Emit an event for critical parameter changes.

Additional information: link

Auth.transferOwnership(address).adr (#143) lacks a zero-check on :
- owner = adr (#144)
Florkinomics.setFeeReceivers(address,address,address)._autoLiquidityReceiver (#833) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#834)
Florkinomics.setFeeReceivers(address,address,address)._marketingFeeReceiver (#833) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#835)
Florkinomics.setFeeReceivers(address,address,address)._devFeeReceiver (#833) lacks a zero-check on :
- devFeeReceiver = _devFeeReceiver (#836)
Florkinomics.setMaster(address)._master (#863) lacks a zero-check on :
- master = _master (#864)
Check that the address is not zero.

Additional information: link

DividendDistributor.distributeDividend(address) (#337-348) has external calls inside a loop: RWRD.transfer(shareholder,amount) (#343)
Florkinomics.multiTransfer(address,address[],uint256[]) (#935-959) has external calls inside a loop: distributor.setShare(addresses[i_scope_0],balanceOf(addresses[i_scope_0])) (#951)
Florkinomics.multiTransfer_fixed(address,address[],uint256) (#961-980) has external calls inside a loop: distributor.setShare(addresses[i],balanceOf(addresses[i])) (#972)
Florkinomics.rebase_updatebalance(address[]) (#982-991) has external calls inside a loop: distributor.setShare(addresses[i],balanceOf(addresses[i])) (#988)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in Florkinomics.constructor() (#510-540):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#512)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = uint256(- 1) (#513)
- _rBalance[msg.sender] = rSupply (#538)
- _totalSupply = INITIAL_FRAGMENTS_SUPPLY (#517)
- autoLiquidityReceiver = msg.sender (#534)
- devFeeReceiver = 0x18911561ba60A8e91e33D557dF17fFd44C4e91d8 (#536)
- distributor = new DividendDistributor(address(router)) (#521)
- isDividendExempt[pair] = true (#530)
- isDividendExempt[address(this)] = true (#531)
- isDividendExempt[DEAD] = true (#532)
- isFeeExempt[msg.sender] = true (#523)
- isTimelockExempt[msg.sender] = true (#526)
- isTimelockExempt[DEAD] = true (#527)
- isTimelockExempt[address(this)] = true (#528)
- isTxLimitExempt[msg.sender] = true (#524)
- marketingFeeReceiver = 0x4966B7b43A540f7FCB8f4F337f62E463316c32E4 (#535)
- pairContract = InterfaceLP(pair) (#516)
- rate = rSupply.div(_totalSupply) (#518)
Reentrancy in DividendDistributor.deposit() (#286-304):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#293-298)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#303)
- totalDividends = totalDividends.add(amount) (#302)
Reentrancy in DividendDistributor.distributeDividend(address) (#337-348):
External calls:
- RWRD.transfer(shareholder,amount) (#343)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#344)
Reentrancy in DividendDistributor.setShare(address,uint256) (#270-284):
External calls:
- distributeDividend(shareholder) (#272)
- RWRD.transfer(shareholder,amount) (#343)
State variables written after the call(s):
- addShareholder(shareholder) (#276)
- shareholderIndexes[shareholder] = shareholders.length (#370)
- removeShareholder(shareholder) (#278)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#376)
- addShareholder(shareholder) (#276)
- shareholders.push(shareholder) (#371)
- removeShareholder(shareholder) (#278)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#375)
- shareholders.pop() (#377)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#281)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Florkinomics._transferFrom(address,address,uint256) (#582-638):
External calls:
- swapBack() (#617)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#761-767)
- distributor.deposit{value: amountBNBReflection}() (#778)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#779)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#780)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#786-793)
- distributor.setShare(sender,balanceOf(sender)) (#627)
- distributor.setShare(recipient,balanceOf(recipient)) (#631)
- distributor.process(distributorGas) (#634)
External calls sending eth:
- swapBack() (#617)
- distributor.deposit{value: amountBNBReflection}() (#778)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#779)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#780)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#786-793)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived.div(rate)) (#636)
Reentrancy in Florkinomics._transferFrom(address,address,uint256) (#582-638):
External calls:
- swapBack() (#617)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#761-767)
- distributor.deposit{value: amountBNBReflection}() (#778)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#779)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#780)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#786-793)
External calls sending eth:
- swapBack() (#617)
- distributor.deposit{value: amountBNBReflection}() (#778)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#779)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#780)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#786-793)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount.div(rate)) (#673)
- amountReceived = takeFee(sender,rAmount,(recipient == pair)) (#622)
Reentrancy in Florkinomics.constructor() (#510-540):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#512)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#539)
Reentrancy in Florkinomics.rebase(uint256,int256) (#478-506):
External calls:
- pairContract.sync() (#502)
Event emitted after the call(s):
- LogRebase(epoch,_totalSupply) (#504)
Reentrancy in Florkinomics.swapBack() (#748-796):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#761-767)
- distributor.deposit{value: amountBNBReflection}() (#778)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#779)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#780)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#786-793)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#778)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#779)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#780)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#786-793)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify.div(rate)) (#794)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.shouldDistribute(address) (#332-335) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#333-334)
Florkinomics._transferFrom(address,address,uint256) (#582-638) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,buy Cooldown exists) (#598)
Avoid relying on block.timestamp.

Additional information: link

DividendDistributor.process(uint256) (#306-330) has costly operations inside a loop:
- currentIndex = 0 (#318)
DividendDistributor.distributeDividend(address) (#337-348) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#342)
DividendDistributor.process(uint256) (#306-330) has costly operations inside a loop:
- currentIndex ++ (#327)
Use a local variable to hold the loop computation result.

Additional information: link

SafeMathInt.abs(int256) (#86-89) is never used and should be removed
SafeMathInt.add(int256,int256) (#80-84) is never used and should be removed
SafeMathInt.div(int256,int256) (#68-72) is never used and should be removed
SafeMathInt.sub(int256,int256) (#74-78) is never used and should be removed
Remove unused functions.

Additional information: link

Florkinomics.totalFee (#407) is set pre-construction with a non-constant function or state variable:
- marketingFee + reflectionFee + liquidityFee + devFee
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.

Additional information: link

Pragma version^0.7.4 (#18) allows old versions
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.

Additional information: link

Low level call in Florkinomics.swapBack() (#748-796):
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#779)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#780)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IDEXRouter.WETH() (#162) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#265) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#265) is not in mixedCase
Variable DividendDistributor._token (#218) is not in mixedCase
Variable DividendDistributor.RWRD (#226) is not in mixedCase
Variable DividendDistributor.WBNB (#227) is not in mixedCase
Function Florkinomics.rebase_percentage(uint256,bool) (#467-475) is not in mixedCase
Parameter Florkinomics.rebase_percentage(uint256,bool)._percentage_base1000 (#467) is not in mixedCase
Function Florkinomics.clearStuckBalance_sender(uint256) (#694-697) is not in mixedCase
Function Florkinomics.set_sell_multiplier(uint256) (#701-704) is not in mixedCase
Parameter Florkinomics.set_sell_multiplier(uint256).Multiplier (#701) is not in mixedCase
Parameter Florkinomics.tradingStatus(bool,uint256)._status (#708) is not in mixedCase
Parameter Florkinomics.tradingStatus(bool,uint256)._deadBlocks (#708) is not in mixedCase
Parameter Florkinomics.launchStatus(uint256)._launchblock (#716) is not in mixedCase
Function Florkinomics.enable_hotel_CaliforniaMode(bool) (#721-723) is not in mixedCase
Parameter Florkinomics.enable_hotel_CaliforniaMode(bool)._status (#721) is not in mixedCase
Function Florkinomics.set_max_roomrent(uint256) (#725-728) is not in mixedCase
Parameter Florkinomics.set_max_roomrent(uint256)._rent_withoutdecimal (#725) is not in mixedCase
Function Florkinomics.manage_houseguests(address[],bool) (#734-739) is not in mixedCase
Parameter Florkinomics.cooldownEnabled(bool,uint8)._status (#741) is not in mixedCase
Parameter Florkinomics.cooldownEnabled(bool,uint8)._interval (#741) is not in mixedCase
Parameter Florkinomics.setFees(uint256,uint256,uint256,uint256,uint256)._liquidityFee (#822) is not in mixedCase
Parameter Florkinomics.setFees(uint256,uint256,uint256,uint256,uint256)._reflectionFee (#822) is not in mixedCase
Parameter Florkinomics.setFees(uint256,uint256,uint256,uint256,uint256)._marketingFee (#822) is not in mixedCase
Parameter Florkinomics.setFees(uint256,uint256,uint256,uint256,uint256)._devFee (#822) is not in mixedCase
Parameter Florkinomics.setFees(uint256,uint256,uint256,uint256,uint256)._feeDenominator (#822) is not in mixedCase
Parameter Florkinomics.setFeeReceivers(address,address,address)._autoLiquidityReceiver (#833) is not in mixedCase
Parameter Florkinomics.setFeeReceivers(address,address,address)._marketingFeeReceiver (#833) is not in mixedCase
Parameter Florkinomics.setFeeReceivers(address,address,address)._devFeeReceiver (#833) is not in mixedCase
Parameter Florkinomics.setSwapBackSettings(bool,uint256)._enabled (#840) is not in mixedCase
Parameter Florkinomics.setSwapBackSettings(bool,uint256)._percentage_base10000 (#840) is not in mixedCase
Parameter Florkinomics.setTargetLiquidity(uint256,uint256)._target (#846) is not in mixedCase
Parameter Florkinomics.setTargetLiquidity(uint256,uint256)._denominator (#846) is not in mixedCase
Parameter Florkinomics.setLP(address)._address (#856) is not in mixedCase
Parameter Florkinomics.setMaster(address)._master (#863) is not in mixedCase
Parameter Florkinomics.setDistributionCriteria(uint256,uint256)._minPeriod (#880) is not in mixedCase
Parameter Florkinomics.setDistributionCriteria(uint256,uint256)._minDistribution (#880) is not in mixedCase
Function Florkinomics.setMaxWalletPercent_base1000(uint256) (#922-924) is not in mixedCase
Parameter Florkinomics.setMaxWalletPercent_base1000(uint256).maxWallPercent_base1000 (#922) is not in mixedCase
Function Florkinomics.setMaxTxPercent_base1000(uint256) (#926-929) is not in mixedCase
Parameter Florkinomics.setMaxTxPercent_base1000(uint256).maxTXPercentage_base1000 (#926) is not in mixedCase
Function Florkinomics.multiTransfer_fixed(address,address[],uint256) (#961-980) is not in mixedCase
Function Florkinomics.rebase_updatebalance(address[]) (#982-991) is not in mixedCase
Variable Florkinomics.WBNB (#385) is not in mixedCase
Variable Florkinomics.DEAD (#386) is not in mixedCase
Variable Florkinomics.ZERO (#387) is not in mixedCase
Constant Florkinomics._name (#389) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Florkinomics._symbol (#390) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Florkinomics._decimals (#391) is not in UPPER_CASE_WITH_UNDERSCORES
Variable Florkinomics._rBalance (#395) is not in mixedCase
Variable Florkinomics._allowances (#396) is not in mixedCase
Variable Florkinomics.rebase_count (#456) is not in mixedCase
Variable Florkinomics._totalSupply (#458) is not in mixedCase
Constant Florkinomics.rSupply (#461) is not in UPPER_CASE_WITH_UNDERSCORES
Variable Florkinomics._maxTxAmount (#464) is not in mixedCase
Variable Florkinomics._maxWalletToken (#465) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#167) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#168)
Prevent variables from having similar names.

Additional information: link

Florkinomics.setDistributorSettings(uint256) (#886-889) uses literals with too many digits:
- require(bool)(gas < 900000) (#887)
Florkinomics.slitherConstructorVariables() (#381-996) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#386)
Florkinomics.slitherConstructorVariables() (#381-996) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#387)
Florkinomics.slitherConstructorVariables() (#381-996) uses literals with too many digits:
- maxRoomRent = 8000000000 (#411)
Florkinomics.slitherConstructorVariables() (#381-996) uses literals with too many digits:
- distributorGas = 500000 (#435)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

authorize(address) should be declared external:
- Auth.authorize(address) (#127-129)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#131-133)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#143-147)
rebase_percentage(uint256,bool) should be declared external:
- Florkinomics.rebase_percentage(uint256,bool) (#467-475)
tradingStatus(bool,uint256) should be declared external:
- Florkinomics.tradingStatus(bool,uint256) (#708-714)
launchStatus(uint256) should be declared external:
- Florkinomics.launchStatus(uint256) (#716-718)
enable_hotel_CaliforniaMode(bool) should be declared external:
- Florkinomics.enable_hotel_CaliforniaMode(bool) (#721-723)
set_max_roomrent(uint256) should be declared external:
- Florkinomics.set_max_roomrent(uint256) (#725-728)
closeHotel() should be declared external:
- Florkinomics.closeHotel() (#730-732)
manage_houseguests(address[],bool) should be declared external:
- Florkinomics.manage_houseguests(address[],bool) (#734-739)
cooldownEnabled(bool,uint8) should be declared external:
- Florkinomics.cooldownEnabled(bool,uint8) (#741-745)
rescueToken(address,uint256) should be declared external:
- Florkinomics.rescueToken(address,uint256) (#893-896)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:

Contract has 10% buy tax and 11% sell tax.
Taxes are suspiciously high (over 10%) and contract ownership is not renounced. Token has a high risk of becoming a honeypot.


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


Average 30d PancakeSwap liquidity is low.


Token is deployed only at one blockchain


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


Twitter account has relatively few followers


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


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 find token on CoinMarketCap

Additional information: link


Unable to find token contract audit


Unable to find KYC or doxxing proof


Unable to find audit link on the website


Token is not listed at Mobula.Finance

Additional information: link


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


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


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


Token has no active CoinMarketCap listing / rank

Price for FLORKIN

News for FLORKIN