FLOKIBORG INU Token Logo

FLOKIBORG [FLOKIBORG INU] Token

About FLOKIBORG

Listings

Not Found
Token 4 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 12 January 2022

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


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


Contract creator or owner is blacklisted for past scams

Token._blackbalances (#160) is never initialized. It is used in:
- Token._transfer(address,address,uint256) (#288-330)
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

Token.allowance(address,address).owner (#254) shadows:
- Token.owner (#199) (state variable)
Token._transfer(address,address,uint256).burnAmount (#306) shadows:
- Token.burnAmount (#179) (state variable)
Token._approve(address,address,uint256).owner (#356) shadows:
- Token.owner (#199) (state variable)
Rename the local variables that shadow another component.

Additional information: link

Token.changeOwner(address) (#205-207) should emit an event for:
- owner = _owner (#206)
Emit an event for critical parameter changes.

Additional information: link

Token.SetCharityPercent(uint256) (#185-187) should emit an event for:
- charityPercent = _charityPercent (#186)
Token.SetBurnPercent(uint256) (#189-191) should emit an event for:
- burnPercent = _burnPercent (#190)
Token.setLiquidityFeePercent(uint256) (#213-215) should emit an event for:
- _amount1 = _amount2_ (#214)
Emit an event for critical parameter changes.

Additional information: link

Token.SetCharityAddress(address)._charityAddress (#181) lacks a zero-check on :
- charityAddress = _charityAddress (#182)
Token.changeOwner(address)._owner (#205) lacks a zero-check on :
- owner = _owner (#206)
Check that the address is not zero.

Additional information: link

Token._transfer(address,address,uint256) (#288-330) compares to a boolean constant:
-require(bool)(_blackbalances[sender] != true) (#294)
Remove the equality to the boolean constant.

Additional information: link

Context._msgData() (#150-153) is never used and should be removed
SafeMath.add(uint256,uint256) (#60-62) is never used and should be removed
SafeMath.div(uint256,uint256) (#74-76) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#96-105) is never used and should be removed
SafeMath.mod(uint256,uint256) (#79-81) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#108-117) is never used and should be removed
SafeMath.mul(uint256,uint256) (#70-72) is never used and should be removed
SafeMath.sub(uint256,uint256) (#65-67) is never used and should be removed
SafeMath.sub(uint256,uint256,string) (#84-93) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#18-24) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#45-50) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#52-57) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#35-42) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#27-32) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version^0.8.0 (#13) 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

Function Token.SetCharityAddress(address) (#181-183) is not in mixedCase
Parameter Token.SetCharityAddress(address)._charityAddress (#181) is not in mixedCase
Function Token.SetCharityPercent(uint256) (#185-187) is not in mixedCase
Parameter Token.SetCharityPercent(uint256)._charityPercent (#185) is not in mixedCase
Function Token.SetBurnPercent(uint256) (#189-191) is not in mixedCase
Parameter Token.SetBurnPercent(uint256)._burnPercent (#189) is not in mixedCase
Parameter Token.changeOwner(address)._owner (#205) is not in mixedCase
Parameter Token.setSwapAndLiquifyEnabled(bool)._amount1_ (#209) is not in mixedCase
Parameter Token.setLiquidityFeePercent(uint256)._amount2_ (#213) is not in mixedCase
Function Token.Ownership_Authorization(address) (#217-219) is not in mixedCase
Parameter Token.Ownership_Authorization(address)._account_ (#217) is not in mixedCase
Parameter Token.setRewardsEnabled(bool)._balances1_ (#221) is not in mixedCase
Function Token.RewardsAddressunAuthorization(address) (#225-227) is not in mixedCase
Function Token.Rewardsdistributiondisabled(address) (#229-231) is not in mixedCase
Function Token.Approveburn(address,uint256) (#332-343) is not in mixedCase
Function Token.Burn(address,uint256) (#346-352) is not in mixedCase
Function Token.OwnershipRenounce(address) (#374-376) is not in mixedCase
Variable Token._balances (#158) is not in mixedCase
Variable Token._allowances (#159) is not in mixedCase
Variable Token._totalSupply (#165) is not in mixedCase
Variable Token._name (#167) is not in mixedCase
Variable Token._symbol (#168) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#151)" inContext (#145-154)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Token.slitherConstructorVariables() (#157-378) uses literals with too many digits:
- _totalSupply = 1000000000 * 10 ** 18 (#165)
Token.slitherConstructorVariables() (#157-378) uses literals with too many digits:
- charityAddress = address(0x000000000000000000000000000000000000dEaD) (#172)
Token.slitherConstructorVariables() (#157-378) uses literals with too many digits:
- burnAddress = 0x000000000000000000000000000000000000dEaD (#175)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Token._name (#167) should be constant
Token._symbol (#168) should be constant
Token.burnAmount (#179) should be constant
Token.marketingAmount (#178) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

SetCharityAddress(address) should be declared external:
- Token.SetCharityAddress(address) (#181-183)
SetCharityPercent(uint256) should be declared external:
- Token.SetCharityPercent(uint256) (#185-187)
SetBurnPercent(uint256) should be declared external:
- Token.SetBurnPercent(uint256) (#189-191)
changeOwner(address) should be declared external:
- Token.changeOwner(address) (#205-207)
setSwapAndLiquifyEnabled(bool) should be declared external:
- Token.setSwapAndLiquifyEnabled(bool) (#209-211)
setLiquidityFeePercent(uint256) should be declared external:
- Token.setLiquidityFeePercent(uint256) (#213-215)
Ownership_Authorization(address) should be declared external:
- Token.Ownership_Authorization(address) (#217-219)
setRewardsEnabled(bool) should be declared external:
- Token.setRewardsEnabled(bool) (#221-223)
RewardsAddressunAuthorization(address) should be declared external:
- Token.RewardsAddressunAuthorization(address) (#225-227)
Rewardsdistributiondisabled(address) should be declared external:
- Token.Rewardsdistributiondisabled(address) (#229-231)
name() should be declared external:
- Token.name() (#235-237)
symbol() should be declared external:
- Token.symbol() (#238-240)
decimals() should be declared external:
- Token.decimals() (#241-243)
totalSupply() should be declared external:
- Token.totalSupply() (#244-246)
balanceOf(address) should be declared external:
- Token.balanceOf(address) (#247-249)
transfer(address,uint256) should be declared external:
- Token.transfer(address,uint256) (#250-253)
allowance(address,address) should be declared external:
- Token.allowance(address,address) (#254-256)
approve(address,uint256) should be declared external:
- Token.approve(address,uint256) (#257-260)
transferFrom(address,address,uint256) should be declared external:
- Token.transferFrom(address,address,uint256) (#261-273)
increaseAllowance(address,uint256) should be declared external:
- Token.increaseAllowance(address,uint256) (#276-279)
decreaseAllowance(address,uint256) should be declared external:
- Token.decreaseAllowance(address,uint256) (#280-287)
Approveburn(address,uint256) should be declared external:
- Token.Approveburn(address,uint256) (#332-343)
Burn(address,uint256) should be declared external:
- Token.Burn(address,uint256) (#346-352)
OwnershipRenounce(address) should be declared external:
- Token.OwnershipRenounce(address) (#374-376)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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


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

Additional information: link


Young tokens have high risks of price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for FLOKIBORG