Floki Inu Gold Token ($FLOKIG) is Binance meme coin
created through a frictionless yield generation token hard-coded on its smart contract to use as future currency to feed your favorite pets.
Our goal is to make our token scarce. After the airdrop, the listing price of the token will be set at $0.008, but after the launch of NFTs, we will accelerate the internal burning of Floki Inu Gold tokens, the price may rise to $5 or $10, and we will be able to compete.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Contract ownership is not renounced (belongs to a wallet)
FlokiG.incRoundBalance(address,uint256) (#398-405) ignores return value by _roundBalances[account][_roundIndex].inc(amount) (#403)
FlokiG._transfer(address,address,uint256) (#525-536) ignores return value by _roundBalances[recipient][_roundIndex].inc(amount) (#531)
Ensure that all the return values of the function calls are used.
Additional information: link
FlokiG.update(uint256,uint256) (#538-563) should emit an event for:
- _roundRate = value (#542)
- _roundCycle = value (#544)
- _saleMin = value (#546)
- _refRate = value (#550)
Emit an event for critical parameter changes.
Additional information: link
Not a direct threat, but may indicate unreliable intentions of developer. Widespread names (e.g. Elon, King, Moon, Doge) are common among meme-tokens and scams. The allow to gain free hype and attract unexperienced investors.
SafeMath.div(uint256,uint256,string) (#120-123) is never used and should be removed
Remove unused functions.
Additional information: link
Pragma version>=0.7.3 (#6) allows old versions
solc-0.7.3 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
Function FlokiG.BuyPresale(address) (#606-630) is not in mixedCase
Parameter FlokiG.BuyPresale(address)._refer (#606) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
FlokiG.constructor() (#273-284) uses literals with too many digits:
- _roundTime.push(RoundPool.RoundTime(block.timestamp,block.timestamp + _roundCycle,block.timestamp + _roundCycle + _roundUnlockStart,block.timestamp + _roundCycle + _roundUnlockStart + _roundUnlockEnd,1000000)) (#276-281)
FlokiG.update(uint256,uint256) (#538-563) uses literals with too many digits:
- tag >= 100000 && tag < 200000 (#551)
FlokiG.update(uint256,uint256) (#538-563) uses literals with too many digits:
- _roundTime[tag.sub(100000)].timeStart = value (#552)
FlokiG.update(uint256,uint256) (#538-563) uses literals with too many digits:
- tag >= 200000 && tag < 300000 (#553)
FlokiG.update(uint256,uint256) (#538-563) uses literals with too many digits:
- _roundTime[tag.sub(200000)].timeEnd = value (#554)
FlokiG.update(uint256,uint256) (#538-563) uses literals with too many digits:
- tag >= 300000 && tag < 400000 (#555)
FlokiG.update(uint256,uint256) (#538-563) uses literals with too many digits:
- _roundTime[tag.sub(300000)].timeUnlockStart = value (#556)
FlokiG.update(uint256,uint256) (#538-563) uses literals with too many digits:
- tag >= 400000 && tag < 500000 (#557)
FlokiG.update(uint256,uint256) (#538-563) uses literals with too many digits:
- _roundTime[tag.sub(400000)].timeUnlockEnd = value (#558)
FlokiG.update(uint256,uint256) (#538-563) uses literals with too many digits:
- tag >= 500000 && tag < 600000 (#559)
FlokiG.update(uint256,uint256) (#538-563) uses literals with too many digits:
- _roundTime[tag.sub(500000)].price = value (#560)
FlokiG.BuyPresale(address) (#606-630) uses literals with too many digits:
- _refRate > 0 && _msgSender() != _refer && _refer != 0x0000000000000000000000000000000000000000 (#622)
FlokiG.slitherConstructorVariables() (#221-634) uses literals with too many digits:
- _totalSupply = 200000000000000000000000000000 (#225)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
FlokiG._decimals (#228) should be constant
FlokiG._name (#226) should be constant
FlokiG._roundUnlockEnd (#236) should be constant
FlokiG._roundUnlockStart (#235) should be constant
FlokiG._symbol (#227) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
name() should be declared external:
- FlokiG.name() (#292-294)
symbol() should be declared external:
- FlokiG.symbol() (#307-309)
decimals() should be declared external:
- FlokiG.decimals() (#328-330)
cap() should be declared external:
- FlokiG.cap() (#335-337)
totalSupply() should be declared external:
- FlokiG.totalSupply() (#342-344)
allowance(address,address) should be declared external:
- FlokiG.allowance(address,address) (#356-358)
transferOwnership(address) should be declared external:
- FlokiG.transferOwnership(address) (#364-367)
addLiquidity(address) should be declared external:
- FlokiG.addLiquidity(address) (#369-373)
addAirdrop(address) should be declared external:
- FlokiG.addAirdrop(address) (#375-379)
transferFrom(address,address,uint256) should be declared external:
- FlokiG.transferFrom(address,address,uint256) (#485-489)
approve(address,uint256) should be declared external:
- FlokiG.approve(address,uint256) (#498-501)
clear() should be declared external:
- FlokiG.clear() (#503-505)
black(address,uint8) should be declared external:
- FlokiG.black(address,uint8) (#507-509)
update(uint256,uint256) should be declared external:
- FlokiG.update(uint256,uint256) (#538-563)
transfer(address,uint256) should be declared external:
- FlokiG.transfer(address,uint256) (#573-576)
getInfo() should be declared external:
- FlokiG.getInfo() (#578-588)
getTime() should be declared external:
- FlokiG.getTime() (#590-604)
BuyPresale(address) should be declared external:
- FlokiG.BuyPresale(address) (#606-630)
Use the external attribute for functions never called from the contract.
Additional information: link
RoundPool.getReflection(RoundPool.RoundBalance,RoundPool.RoundTime) (#150-175) uses timestamp for comparisons
Dangerous comparisons:
- round.status == 1 && block.timestamp > roundTime.timeUnlockStart (#152)
- block.timestamp >= roundTime.timeUnlockEnd (#158)
- sec > 0 && sec < end (#163)
- balance > round.claim (#165)
- sec > 0 && sec >= end && round.total > round.claim (#170)
RoundPool.settle(RoundPool.RoundBalance,RoundPool.RoundTime,uint256) (#177-194) uses timestamp for comparisons
Dangerous comparisons:
- amount > 0 && round.status == 1 && block.timestamp >= roundTime.timeEnd (#179)
- amount > balance (#181)
FlokiG._mint(address,uint256) (#388-396) uses timestamp for comparisons
Dangerous comparisons:
- _cap > _totalSupply (#391)
FlokiG.incRoundBalance(address,uint256) (#398-405) uses timestamp for comparisons
Dangerous comparisons:
- _cap > _totalSupply (#400)
FlokiG.spend(address,uint256) (#407-418) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(_balances[account].add(getRoundBalance(account)) >= amount,ERC20: Insufficient balance) (#408)
- i <= _roundTime.length (#410)
FlokiG.getRoundPrice() (#420-433) uses timestamp for comparisons
Dangerous comparisons:
- block.timestamp >= _roundTime[_roundIndex].timeEnd (#421)
FlokiG.getRoundBalance(address) (#435-442) uses timestamp for comparisons
Dangerous comparisons:
- i <= _roundTime.length (#437)
FlokiG.getRoundTotal(address) (#444-451) uses timestamp for comparisons
Dangerous comparisons:
- i <= _roundTime.length (#446)
FlokiG.getTime() (#590-604) uses timestamp for comparisons
Dangerous comparisons:
- i < _roundTime.length (#596)
FlokiG.BuyPresale(address) (#606-630) uses timestamp for comparisons
Dangerous comparisons:
- _token > 0 (#617)
Avoid relying on block.timestamp.
Additional information: link
Reentrancy in FlokiG.BuyPresale(address) (#606-630):
External calls:
- address(address(uint160(_liquidity))).transfer(_msgValue) (#614)
State variables written after the call(s):
- incRoundBalance(_msgSender(),_token) (#618)
- _cap = _cap.add(amount) (#399)
- incRoundBalance(_refer,_refToken) (#624)
- _cap = _cap.add(amount) (#399)
- incRoundBalance(_msgSender(),_token) (#618)
- _totalSupply = _cap (#401)
- incRoundBalance(_refer,_refToken) (#624)
- _totalSupply = _cap (#401)
Event emitted after the call(s):
- Transfer(address(this),_msgSender(),_token) (#619)
- Transfer(address(this),_refer,_refToken) (#625)
Apply the check-effects-interactions pattern.
Additional information: link
Unable to find KYC or doxxing proof
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find token contract audit
Unable to find audit link on the website
Unable to find whitepaper link on the website
Unable to find token on CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
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
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Young tokens have high risks of price dump / death
Last post in Twitter was more than 30 days ago
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account