SafeFloki Token Logo

SFK [SafeFloki] Token

ALERT: honeypot scam

About SFK

Listings

Token 2 years
CoinMarketCap 2 years
white paper

Two great communities. Bringing these two communities together is at the heart of our mission for two of the world's most recognizable tokens, with very different characteristics tokens

The combined market value of both currencies is more than $10 Billion. Our short term goal is to merge 1% of that audience, creating value for 50,000+ holders and $100+ million in value. By focusing on the initial one percent we believe that we can bring more people together as the community embraces $SFK."

Social

Laser Scorebeta Last Audit: 16 May 2022

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

Anti-Scam

Links


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


Contract ownership is not renounced (belongs to a wallet)

Contract locking ether found:
Contract SafeFloki (#679-1213) has payable functions:
- SafeFloki.receive() (#884)
But does not have a function to withdraw the ether
Remove the payable attribute or add a withdraw function.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#293-299):
- (success) = recipient.call{value: amount}() (#297)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#359-380):
- (success,returndata) = target.call{value: weiValue}(data) (#363)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Address.isContract(address) (#266-275) uses assembly
- INLINE ASM (#273)
Address._functionCallWithValue(address,bytes,uint256,string) (#359-380) uses assembly
- INLINE ASM (#372-375)
Do not use evm assembly.

Additional information: link

SafeFloki.takeMarketing(address,uint256,uint256,uint256) (#1088-1099) performs a multiplication on the result of a division:
-tMarketing = tAmount.div(100).mul(_marketingFee) (#1092)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in SafeFloki._transfer(address,address,uint256) (#964-999):
External calls:
- swapTokensForBUSD(contractTokenBalance) (#992)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,marketingWallet,block.timestamp) (#1011-1017)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#997)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1103)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1113)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1082)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#876)
- _rOwned[address(this)] = _rOwned[address(this)].add(rMarketing) (#1096)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1114)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1105)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1083)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#878)
- _tokenTransfer(from,to,amount) (#997)
- _rTotal = _rTotal.sub(rFee) (#887)
- _tokenTransfer(from,to,amount) (#997)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#875)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1112)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1104)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#877)
Apply the check-effects-interactions pattern.

Additional information: link

SafeFloki.allowance(address,address).owner (#796) shadows:
- Ownable.owner() (#414-416) (function)
SafeFloki._approve(address,address,uint256).owner (#956) shadows:
- Ownable.owner() (#414-416) (function)
Rename the local variables that shadow another component.

Additional information: link

SafeFloki.setFees(uint256,uint256) (#1142-1147) should emit an event for:
- _previousTaxFee = taxFee (#1145)
- _previousMarketingFee = marketingFee (#1146)
SafeFloki.setSaleFees(uint256,uint256) (#1150-1154) should emit an event for:
- _saleTaxFee = taxFee (#1152)
- _saleMarketingFee = marketingFee (#1153)
SafeFloki.setMaxWalletTokend(uint256) (#1156-1158) should emit an event for:
- maxWalletToken = _maxToken * (10 ** 9) (#1157)
SafeFloki.setMinimumTokensBeforeSwap(uint256) (#1160-1162) should emit an event for:
- minimumTokensBeforeSwap = newAmt * (10 ** 9) (#1161)
SafeFloki.setMaxBuyTxAmount(uint256) (#1164-1167) should emit an event for:
- _maxBuyTxAmount = maxBuyTxAmount * (10 ** 9) (#1166)
SafeFloki.setMaxSellTxAmount(uint256) (#1169-1172) should emit an event for:
- _maxSellTxAmount = maxSellTxAmount * (10 ** 9) (#1171)
SafeFloki.setSellCooldownperiod(uint256) (#1208-1211) should emit an event for:
- sellCooldownperiod = _seconds (#1210)
Emit an event for critical parameter changes.

Additional information: link

SafeFloki.setMarketingWallet(address).newWallet (#1132) lacks a zero-check on :
- marketingWallet = newWallet (#1133)
Check that the address is not zero.

Additional information: link

Reentrancy in SafeFloki._transfer(address,address,uint256) (#964-999):
External calls:
- swapTokensForBUSD(contractTokenBalance) (#992)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,marketingWallet,block.timestamp) (#1011-1017)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#997)
- _marketingFee = marketingFee (#1138)
- _marketingFee = _previousMarketingFee (#941)
- _marketingFee = 0 (#936)
- _tokenTransfer(from,to,amount) (#997)
- _tFeeTotal = _tFeeTotal.add(tFee) (#888)
- _tokenTransfer(from,to,amount) (#997)
- _taxFee = taxFee (#1137)
- _taxFee = _previousTaxFee (#940)
- _taxFee = 0 (#935)
Reentrancy in SafeFloki.constructor() (#754-768):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#759-760)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#764)
- _isExcludedFromFee[marketingWallet] = true (#765)
- _isExcludedFromFee[address(this)] = true (#766)
- uniswapV2Router = _uniswapV2Router (#762)
Reentrancy in SafeFloki.transferFrom(address,address,uint256) (#805-809):
External calls:
- _transfer(sender,recipient,amount) (#806)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,marketingWallet,block.timestamp) (#1011-1017)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#807)
- _allowances[owner][spender] = amount (#960)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in SafeFloki._transfer(address,address,uint256) (#964-999):
External calls:
- swapTokensForBUSD(contractTokenBalance) (#992)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,marketingWallet,block.timestamp) (#1011-1017)
Event emitted after the call(s):
- Transfer(sender,address(this),tMarketing) (#1097)
- _tokenTransfer(from,to,amount) (#997)
- Transfer(sender,recipient,tTransferAmount) (#1116)
- _tokenTransfer(from,to,amount) (#997)
- Transfer(sender,recipient,tTransferAmount) (#1107)
- _tokenTransfer(from,to,amount) (#997)
- Transfer(sender,recipient,tTransferAmount) (#1085)
- _tokenTransfer(from,to,amount) (#997)
- Transfer(sender,recipient,tTransferAmount) (#880)
- _tokenTransfer(from,to,amount) (#997)
Reentrancy in SafeFloki.constructor() (#754-768):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#759-760)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#767)
Reentrancy in SafeFloki.transferFrom(address,address,uint256) (#805-809):
External calls:
- _transfer(sender,recipient,amount) (#806)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,marketingWallet,block.timestamp) (#1011-1017)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#961)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#807)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#461-466) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#463)
SafeFloki.checkForCoolDown(address,address) (#1194-1204) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(coolDownTimestamp < block.timestamp,Wait till one hour Cool Down Pd) (#1200)
Avoid relying on block.timestamp.

Additional information: link

SafeFloki.includeInReward(address) (#860-871) has costly operations inside a loop:
- _excluded.pop() (#867)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#359-380) is never used and should be removed
Address.functionCall(address,bytes) (#319-321) is never used and should be removed
Address.functionCall(address,bytes,string) (#329-331) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#344-346) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#354-357) is never used and should be removed
Address.isContract(address) (#266-275) is never used and should be removed
Address.sendValue(address,uint256) (#293-299) is never used and should be removed
Context._msgData() (#10-13) is never used and should be removed
SafeFloki.swapTokensForEth(uint256,address) (#1020-1041) is never used and should be removed
SafeMath.mod(uint256,uint256) (#222-224) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#238-241) is never used and should be removed
Remove unused functions.

Additional information: link

SafeFloki._rTotal (#696) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
SafeFloki._previousTaxFee (#707) is set pre-construction with a non-constant function or state variable:
- _taxFee
SafeFloki._previousMarketingFee (#710) is set pre-construction with a non-constant function or state variable:
- _marketingFee
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

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#505) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#506) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#522) is not in mixedCase
Function IUniswapV2Router01.WETH() (#543) is not in mixedCase
Parameter SafeFloki.calculateTaxFee(uint256)._amount (#927) is not in mixedCase
Parameter SafeFloki.swapTokensForEth(uint256,address)._to (#1020) is not in mixedCase
Parameter SafeFloki.setMaxWalletTokend(uint256)._maxToken (#1156) is not in mixedCase
Parameter SafeFloki.setSwapAndLiquifyEnabled(bool)._enabled (#1174) is not in mixedCase
Parameter SafeFloki.setSellCooldownperiod(uint256)._seconds (#1208) is not in mixedCase
Variable SafeFloki._taxFee (#706) is not in mixedCase
Variable SafeFloki._marketingFee (#709) is not in mixedCase
Variable SafeFloki._saleTaxFee (#713) is not in mixedCase
Variable SafeFloki._saleMarketingFee (#714) is not in mixedCase
Variable SafeFloki._maxBuyTxAmount (#725) is not in mixedCase
Variable SafeFloki._maxSellTxAmount (#726) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#548) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#549)
Variable SafeFloki._transferStandard(address,address,uint256).rTransferAmount (#1080) is too similar to SafeFloki.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1088)
Variable SafeFloki._getValues(uint256).rTransferAmount (#893) is too similar to SafeFloki.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1088)
Variable SafeFloki._transferStandard(address,address,uint256).rTransferAmount (#1080) is too similar to SafeFloki._transferToExcluded(address,address,uint256).tTransferAmount (#1102)
Variable SafeFloki._getValues(uint256).rTransferAmount (#893) is too similar to SafeFloki._transferToExcluded(address,address,uint256).tTransferAmount (#1102)
Variable SafeFloki._transferFromExcluded(address,address,uint256).rTransferAmount (#1111) is too similar to SafeFloki._transferFromExcluded(address,address,uint256).tTransferAmount (#1111)
Variable SafeFloki._transferToExcluded(address,address,uint256).rTransferAmount (#1102) is too similar to SafeFloki.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1088)
Variable SafeFloki._transferFromExcluded(address,address,uint256).rTransferAmount (#1111) is too similar to SafeFloki._transferBothExcluded(address,address,uint256).tTransferAmount (#874)
Variable SafeFloki._getRValues(uint256,uint256,uint256).rTransferAmount (#906) is too similar to SafeFloki.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1088)
Variable SafeFloki._transferToExcluded(address,address,uint256).rTransferAmount (#1102) is too similar to SafeFloki._transferToExcluded(address,address,uint256).tTransferAmount (#1102)
Variable SafeFloki._transferFromExcluded(address,address,uint256).rTransferAmount (#1111) is too similar to SafeFloki._getTValues(uint256).tTransferAmount (#899)
Variable SafeFloki._transferBothExcluded(address,address,uint256).rTransferAmount (#874) is too similar to SafeFloki.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1088)
Variable SafeFloki._getRValues(uint256,uint256,uint256).rTransferAmount (#906) is too similar to SafeFloki._transferToExcluded(address,address,uint256).tTransferAmount (#1102)
Variable SafeFloki._transferStandard(address,address,uint256).rTransferAmount (#1080) is too similar to SafeFloki._transferFromExcluded(address,address,uint256).tTransferAmount (#1111)
Variable SafeFloki._transferBothExcluded(address,address,uint256).rTransferAmount (#874) is too similar to SafeFloki._transferToExcluded(address,address,uint256).tTransferAmount (#1102)
Variable SafeFloki._getValues(uint256).rTransferAmount (#893) is too similar to SafeFloki._transferFromExcluded(address,address,uint256).tTransferAmount (#1111)
Variable SafeFloki._transferStandard(address,address,uint256).rTransferAmount (#1080) is too similar to SafeFloki._transferBothExcluded(address,address,uint256).tTransferAmount (#874)
Variable SafeFloki._transferStandard(address,address,uint256).rTransferAmount (#1080) is too similar to SafeFloki._getTValues(uint256).tTransferAmount (#899)
Variable SafeFloki._getValues(uint256).rTransferAmount (#893) is too similar to SafeFloki._getTValues(uint256).tTransferAmount (#899)
Variable SafeFloki._transferStandard(address,address,uint256).rTransferAmount (#1080) is too similar to SafeFloki._transferStandard(address,address,uint256).tTransferAmount (#1080)
Variable SafeFloki._getValues(uint256).rTransferAmount (#893) is too similar to SafeFloki._transferStandard(address,address,uint256).tTransferAmount (#1080)
Variable SafeFloki._getValues(uint256).rTransferAmount (#893) is too similar to SafeFloki._transferBothExcluded(address,address,uint256).tTransferAmount (#874)
Variable SafeFloki._transferBothExcluded(address,address,uint256).rTransferAmount (#874) is too similar to SafeFloki._transferFromExcluded(address,address,uint256).tTransferAmount (#1111)
Variable SafeFloki._getRValues(uint256,uint256,uint256).rTransferAmount (#906) is too similar to SafeFloki._transferFromExcluded(address,address,uint256).tTransferAmount (#1111)
Variable SafeFloki._transferToExcluded(address,address,uint256).rTransferAmount (#1102) is too similar to SafeFloki._getTValues(uint256).tTransferAmount (#899)
Variable SafeFloki._transferBothExcluded(address,address,uint256).rTransferAmount (#874) is too similar to SafeFloki._transferBothExcluded(address,address,uint256).tTransferAmount (#874)
Variable SafeFloki._getRValues(uint256,uint256,uint256).rTransferAmount (#906) is too similar to SafeFloki._getTValues(uint256).tTransferAmount (#899)
Variable SafeFloki._transferBothExcluded(address,address,uint256).rTransferAmount (#874) is too similar to SafeFloki._getTValues(uint256).tTransferAmount (#899)
Variable SafeFloki._getRValues(uint256,uint256,uint256).rTransferAmount (#906) is too similar to SafeFloki._transferBothExcluded(address,address,uint256).tTransferAmount (#874)
Variable SafeFloki.reflectionFromToken(uint256,bool).rTransferAmount (#840) is too similar to SafeFloki.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1088)
Variable SafeFloki.reflectionFromToken(uint256,bool).rTransferAmount (#840) is too similar to SafeFloki._transferToExcluded(address,address,uint256).tTransferAmount (#1102)
Variable SafeFloki.reflectionFromToken(uint256,bool).rTransferAmount (#840) is too similar to SafeFloki._transferFromExcluded(address,address,uint256).tTransferAmount (#1111)
Variable SafeFloki._transferFromExcluded(address,address,uint256).rTransferAmount (#1111) is too similar to SafeFloki.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1088)
Variable SafeFloki.reflectionFromToken(uint256,bool).rTransferAmount (#840) is too similar to SafeFloki._transferBothExcluded(address,address,uint256).tTransferAmount (#874)
Variable SafeFloki._transferFromExcluded(address,address,uint256).rTransferAmount (#1111) is too similar to SafeFloki._transferToExcluded(address,address,uint256).tTransferAmount (#1102)
Variable SafeFloki.reflectionFromToken(uint256,bool).rTransferAmount (#840) is too similar to SafeFloki._getTValues(uint256).tTransferAmount (#899)
Variable SafeFloki._transferToExcluded(address,address,uint256).rTransferAmount (#1102) is too similar to SafeFloki._transferFromExcluded(address,address,uint256).tTransferAmount (#1111)
Variable SafeFloki._getValues(uint256).rTransferAmount (#893) is too similar to SafeFloki._getValues(uint256).tTransferAmount (#892)
Variable SafeFloki._transferToExcluded(address,address,uint256).rTransferAmount (#1102) is too similar to SafeFloki._transferStandard(address,address,uint256).tTransferAmount (#1080)
Variable SafeFloki.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1088) is too similar to SafeFloki.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1088)
Variable SafeFloki.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1088) is too similar to SafeFloki._getTValues(uint256).tTransferAmount (#899)
Variable SafeFloki.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1088) is too similar to SafeFloki._transferFromExcluded(address,address,uint256).tTransferAmount (#1111)
Variable SafeFloki.reflectionFromToken(uint256,bool).rTransferAmount (#840) is too similar to SafeFloki._transferStandard(address,address,uint256).tTransferAmount (#1080)
Variable SafeFloki._transferToExcluded(address,address,uint256).rTransferAmount (#1102) is too similar to SafeFloki._getValues(uint256).tTransferAmount (#892)
Variable SafeFloki._transferFromExcluded(address,address,uint256).rTransferAmount (#1111) is too similar to SafeFloki._transferStandard(address,address,uint256).tTransferAmount (#1080)
Variable SafeFloki.reflectionFromToken(uint256,bool).rTransferAmount (#840) is too similar to SafeFloki._getValues(uint256).tTransferAmount (#892)
Variable SafeFloki.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1088) is too similar to SafeFloki._transferStandard(address,address,uint256).tTransferAmount (#1080)
Variable SafeFloki._transferToExcluded(address,address,uint256).rTransferAmount (#1102) is too similar to SafeFloki._transferBothExcluded(address,address,uint256).tTransferAmount (#874)
Variable SafeFloki.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1088) is too similar to SafeFloki._getValues(uint256).tTransferAmount (#892)
Variable SafeFloki._transferBothExcluded(address,address,uint256).rTransferAmount (#874) is too similar to SafeFloki._transferStandard(address,address,uint256).tTransferAmount (#1080)
Variable SafeFloki._transferFromExcluded(address,address,uint256).rTransferAmount (#1111) is too similar to SafeFloki._getValues(uint256).tTransferAmount (#892)
Variable SafeFloki._getRValues(uint256,uint256,uint256).rTransferAmount (#906) is too similar to SafeFloki._transferStandard(address,address,uint256).tTransferAmount (#1080)
Variable SafeFloki.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1088) is too similar to SafeFloki._transferToExcluded(address,address,uint256).tTransferAmount (#1102)
Variable SafeFloki.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1088) is too similar to SafeFloki._transferBothExcluded(address,address,uint256).tTransferAmount (#874)
Variable SafeFloki._transferStandard(address,address,uint256).rTransferAmount (#1080) is too similar to SafeFloki._getValues(uint256).tTransferAmount (#892)
Variable SafeFloki._transferBothExcluded(address,address,uint256).rTransferAmount (#874) is too similar to SafeFloki._getValues(uint256).tTransferAmount (#892)
Variable SafeFloki._getRValues(uint256,uint256,uint256).rTransferAmount (#906) is too similar to SafeFloki._getValues(uint256).tTransferAmount (#892)
Prevent variables from having similar names.

Additional information: link

SafeFloki.slitherConstructorVariables() (#679-1213) uses literals with too many digits:
- _tTotal = 1000000000000000 * 10 ** 9 (#695)
SafeFloki.slitherConstructorVariables() (#679-1213) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#703)
SafeFloki.slitherConstructorVariables() (#679-1213) uses literals with too many digits:
- minimumTokensBeforeSwap = 2000000000000 * 10 ** 9 (#724)
SafeFloki.slitherConstructorVariables() (#679-1213) uses literals with too many digits:
- _maxBuyTxAmount = 1000000000000000 * 10 ** 9 (#725)
SafeFloki.slitherConstructorVariables() (#679-1213) uses literals with too many digits:
- _maxSellTxAmount = 1000000000000000 * 10 ** 9 (#726)
SafeFloki.slitherConstructorVariables() (#679-1213) uses literals with too many digits:
- maxWalletToken = 1000000000000000 * (10 ** 9) (#727)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeFloki._decimals (#701) should be constant
SafeFloki._name (#699) should be constant
SafeFloki._symbol (#700) should be constant
SafeFloki._tTotal (#695) should be constant
SafeFloki.deadAddress (#703) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#433-436)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#442-446)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#448-450)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#453-458)
unlock() should be declared external:
- Ownable.unlock() (#461-466)
name() should be declared external:
- SafeFloki.name() (#770-772)
symbol() should be declared external:
- SafeFloki.symbol() (#774-776)
decimals() should be declared external:
- SafeFloki.decimals() (#778-780)
totalSupply() should be declared external:
- SafeFloki.totalSupply() (#782-784)
transfer(address,uint256) should be declared external:
- SafeFloki.transfer(address,uint256) (#791-794)
approve(address,uint256) should be declared external:
- SafeFloki.approve(address,uint256) (#800-803)
transferFrom(address,address,uint256) should be declared external:
- SafeFloki.transferFrom(address,address,uint256) (#805-809)
increaseAllowance(address,uint256) should be declared external:
- SafeFloki.increaseAllowance(address,uint256) (#811-814)
decreaseAllowance(address,uint256) should be declared external:
- SafeFloki.decreaseAllowance(address,uint256) (#816-819)
isExcludedFromReward(address) should be declared external:
- SafeFloki.isExcludedFromReward(address) (#821-823)
deliver(uint256) should be declared external:
- SafeFloki.deliver(uint256) (#825-832)
reflectionFromToken(uint256,bool) should be declared external:
- SafeFloki.reflectionFromToken(uint256,bool) (#834-843)
excludeFromReward(address) should be declared external:
- SafeFloki.excludeFromReward(address) (#851-858)
isExcludedFromFee(address) should be declared external:
- SafeFloki.isExcludedFromFee(address) (#944-946)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- SafeFloki.excludeMultipleAccountsFromFees(address[],bool) (#948-954)
excludeFromFee(address) should be declared external:
- SafeFloki.excludeFromFee(address) (#1120-1122)
includeInFee(address) should be declared external:
- SafeFloki.includeInFee(address) (#1124-1126)
setSwapAndLiquifyEnabled(bool) should be declared external:
- SafeFloki.setSwapAndLiquifyEnabled(bool) (#1174-1177)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Attempt to swap token was unsuccessful. For some reason it is untradeable. If token is not in presale stage and is not traded outside PancakeSwap, then it's a scam

Additional information: link


Token is deployed only at one blockchain


Telegram account link seems to be invalid


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 contract audit


Unable to find audit link on the website


Token is not listed at Mobula.Finance

Additional information: link


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

Additional information: link


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


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death

Price for SFK

News for SFK