Green Baby Floky is an ecosystem around $GBF token and $BNB.
Join Green Baby Floy you will get great BNB rewards
Staking: When you Staking token $GBF you will receive BNB rewards with APR up to 12.5%
NFT Market: We have Green Baby Floki NFTs, you can buy them as souvenirs or sell them. And especially, only NFT holders can Join our PENALTY FLOKY game and get BNB rewards.
Green Baby Floky is nothing but $BNB
GBF.sendBNB(address,uint256) (#1016-1021) sends eth to arbitrary user
Dangerous calls:
- (success) = recipient.call{value: amount}() (#1019)
GBF.swapAndSendDividends(uint256) (#1247-1254) sends eth to arbitrary user
Dangerous calls:
- (success) = address(address(dividendTracker)).call{value: amount}() (#1248)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in GBF._transfer(address,address,uint256) (#1089-1220):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(contractTokenBalance,0,path,address(this),block.timestamp) (#1147-1152)
- sendBNB(address(marketingWallet),marketingBNB) (#1158)
- (success) = recipient.call{value: amount}() (#1019)
- swapAndSendDividends(rewardBNB) (#1164)
- (success) = address(address(dividendTracker)).call{value: amount}() (#1248)
- dividendTracker.distributeDividends(amount) (#1251)
External calls sending eth:
- sendBNB(address(marketingWallet),marketingBNB) (#1158)
- (success) = recipient.call{value: amount}() (#1019)
- swapAndSendDividends(rewardBNB) (#1164)
- (success) = address(address(dividendTracker)).call{value: amount}() (#1248)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#1189)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#500)
- _balances[recipient] = _balances[recipient].add(amount) (#501)
- super._transfer(from,to,amount) (#1205)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#500)
- _balances[recipient] = _balances[recipient].add(amount) (#501)
- swapping = false (#1169)
Reentrancy in DividendPayingToken._withdrawDividendOfUser(address) (#596-612):
External calls:
- (success) = address(user).call{gas: 5000,value: _withdrawableDividend}() (#601)
State variables written after the call(s):
- withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend) (#604)
Apply the check-effects-interactions pattern.
Additional information: link
GBF.claimStuckTokens(address) (#1001-1010) ignores return value by ERC20token.transfer(msg.sender,balance) (#1009)
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...)
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.
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.
Reentrancy in GBF.updateDividendTracker(address) (#1332-1348):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1339)
- newDividendTracker.excludeFromDividends(address(this)) (#1340)
- newDividendTracker.excludeFromDividends(DEAD) (#1341)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#1342)
- newDividendTracker.excludeFromDividends(address(uniswapV2Pair)) (#1343)
State variables written after the call(s):
- dividendTracker = newDividendTracker (#1347)
Apply the check-effects-interactions pattern.
Additional information: link
GBF._transfer(address,address,uint256)._totalFees (#1173) is a local variable never initialized
GBF._transfer(address,address,uint256).iterations (#1213) is a local variable never initialized
GBF._transfer(address,address,uint256).lastProcessedIndex (#1213) is a local variable never initialized
GBF._transfer(address,address,uint256).claims (#1213) 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
GBF._transfer(address,address,uint256) (#1089-1220) ignores return value by dividendTracker.process(gas) (#1213-1218)
GBF.claim() (#1420-1422) ignores return value by dividendTracker.processAccount(address(msg.sender),false) (#1421)
GBF.claimAddress(address) (#1424-1426) ignores return value by dividendTracker.processAccount(address(claimee),false) (#1425)
Ensure that all the return values of the function calls are used.
Additional information: link
DividendPayingToken.constructor(string,string,address)._name (#573) shadows:
- ERC20._name (#430) (state variable)
DividendPayingToken.constructor(string,string,address)._symbol (#573) shadows:
- ERC20._symbol (#431) (state variable)
DividendPayingToken.dividendOf(address)._owner (#614) shadows:
- Ownable._owner (#15) (state variable)
DividendPayingToken.withdrawableDividendOf(address)._owner (#618) shadows:
- Ownable._owner (#15) (state variable)
DividendPayingToken.withdrawnDividendOf(address)._owner (#622) shadows:
- Ownable._owner (#15) (state variable)
DividendPayingToken.accumulativeDividendOf(address)._owner (#626) shadows:
- Ownable._owner (#15) (state variable)
Rename the local variables that shadow another component.
Additional information: link
DividendTracker.setLastProcessedIndex(uint256) (#720-722) should emit an event for:
- lastProcessedIndex = index (#721)
GBF.setSwapTokensAtAmount(uint256) (#1231-1237) should emit an event for:
- swapTokensAtAmount = newAmount (#1236)
Emit an event for critical parameter changes.
Additional information: link
DividendPayingToken.constructor(string,string,address)._rewardToken (#573) lacks a zero-check on :
- rewardToken = _rewardToken (#574)
GBF.updateUniswapV2Router(address)._uniswapV2Pair (#1027-1028) lacks a zero-check on :
- uniswapV2Pair = _uniswapV2Pair (#1029)
Check that the address is not zero.
Additional information: link
DividendPayingToken._withdrawDividendOfUser(address) (#596-612) has external calls inside a loop: (success) = address(user).call{gas: 5000,value: _withdrawableDividend}() (#601)
Favor pull over push strategy for external calls.
Additional information: link
Variable 'GBF._transfer(address,address,uint256).lastProcessedIndex (#1213)' in GBF._transfer(address,address,uint256) (#1089-1220) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1214)
Variable 'GBF._transfer(address,address,uint256).claims (#1213)' in GBF._transfer(address,address,uint256) (#1089-1220) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1214)
Variable 'GBF._transfer(address,address,uint256).iterations (#1213)' in GBF._transfer(address,address,uint256) (#1089-1220) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1214)
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 GBF.constructor() (#940-983):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#955-956)
State variables written after the call(s):
- _approve(address(this),address(uniswapV2Router),type()(uint256).max) (#961)
- _allowances[owner][spender] = amount (#528)
- uniswapV2Pair = _uniswapV2Pair (#959)
- uniswapV2Router = _uniswapV2Router (#958)
Reentrancy in GBF.constructor() (#940-983):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#955-956)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#963)
- dividendTracker.excludeFromDividends(pair) (#1037)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (#965)
- dividendTracker.excludeFromDividends(address(this)) (#966)
- dividendTracker.excludeFromDividends(DEAD) (#967)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (#968)
State variables written after the call(s):
- _isExcludedFromFees[owner()] = true (#980)
- _isExcludedFromFees[DEAD] = true (#981)
- _isExcludedFromFees[address(this)] = true (#982)
- _isExcludedFromMaxTxLimit[owner()] = true (#970)
- _isExcludedFromMaxTxLimit[address(0)] = true (#971)
- _isExcludedFromMaxTxLimit[address(this)] = true (#972)
- _isExcludedFromMaxTxLimit[DEAD] = true (#973)
- _isExcludedFromMaxWalletLimit[owner()] = true (#975)
- _isExcludedFromMaxWalletLimit[address(0)] = true (#976)
- _isExcludedFromMaxWalletLimit[address(this)] = true (#977)
- _isExcludedFromMaxWalletLimit[DEAD] = true (#978)
Reentrancy in DividendTracker.processAccount(address,bool) (#868-878):
External calls:
- amount = _withdrawDividendOfUser(account) (#869)
- (success) = address(user).call{gas: 5000,value: _withdrawableDividend}() (#601)
State variables written after the call(s):
- lastClaimTimes[account] = block.timestamp (#872)
Reentrancy in GBF.updateUniswapV2Router(address) (#1023-1030):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#1027-1028)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#1029)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in GBF._setAutomatedMarketMakerPair(address,bool) (#1032-1041):
External calls:
- dividendTracker.excludeFromDividends(pair) (#1037)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#1040)
Reentrancy in GBF._transfer(address,address,uint256) (#1089-1220):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(contractTokenBalance,0,path,address(this),block.timestamp) (#1147-1152)
- sendBNB(address(marketingWallet),marketingBNB) (#1158)
- (success) = recipient.call{value: amount}() (#1019)
External calls sending eth:
- sendBNB(address(marketingWallet),marketingBNB) (#1158)
- (success) = recipient.call{value: amount}() (#1019)
Event emitted after the call(s):
- SendMarketing(marketingBNB) (#1159)
Reentrancy in GBF._transfer(address,address,uint256) (#1089-1220):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(contractTokenBalance,0,path,address(this),block.timestamp) (#1147-1152)
- sendBNB(address(marketingWallet),marketingBNB) (#1158)
- (success) = recipient.call{value: amount}() (#1019)
- swapAndSendDividends(rewardBNB) (#1164)
- (success) = address(address(dividendTracker)).call{value: amount}() (#1248)
- dividendTracker.distributeDividends(amount) (#1251)
External calls sending eth:
- sendBNB(address(marketingWallet),marketingBNB) (#1158)
- (success) = recipient.call{value: amount}() (#1019)
- swapAndSendDividends(rewardBNB) (#1164)
- (success) = address(address(dividendTracker)).call{value: amount}() (#1248)
Event emitted after the call(s):
- SendDividends(amount) (#1252)
- swapAndSendDividends(rewardBNB) (#1164)
- Transfer(sender,recipient,amount) (#502)
- super._transfer(from,to,amount) (#1205)
- Transfer(sender,recipient,amount) (#502)
- super._transfer(from,address(this),fees) (#1189)
Reentrancy in GBF._transfer(address,address,uint256) (#1089-1220):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(contractTokenBalance,0,path,address(this),block.timestamp) (#1147-1152)
- sendBNB(address(marketingWallet),marketingBNB) (#1158)
- (success) = recipient.call{value: amount}() (#1019)
- swapAndSendDividends(rewardBNB) (#1164)
- (success) = address(address(dividendTracker)).call{value: amount}() (#1248)
- dividendTracker.distributeDividends(amount) (#1251)
- dividendTracker.setBalance(address(from),balanceOf(from)) (#1207)
- dividendTracker.setBalance(address(to),balanceOf(to)) (#1208)
- dividendTracker.process(gas) (#1213-1218)
External calls sending eth:
- sendBNB(address(marketingWallet),marketingBNB) (#1158)
- (success) = recipient.call{value: amount}() (#1019)
- swapAndSendDividends(rewardBNB) (#1164)
- (success) = address(address(dividendTracker)).call{value: amount}() (#1248)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1214)
Reentrancy in GBF.constructor() (#940-983):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#955-956)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#529)
- _approve(address(this),address(uniswapV2Router),type()(uint256).max) (#961)
Reentrancy in GBF.constructor() (#940-983):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#955-956)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#963)
- dividendTracker.excludeFromDividends(pair) (#1037)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#1040)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#963)
Reentrancy in DividendTracker.processAccount(address,bool) (#868-878):
External calls:
- amount = _withdrawDividendOfUser(account) (#869)
- (success) = address(user).call{gas: 5000,value: _withdrawableDividend}() (#601)
Event emitted after the call(s):
- Claim(account,amount,automatic) (#873)
Reentrancy in GBF.processDividendTracker(uint256) (#1415-1418):
External calls:
- (iterations,claims,lastProcessedIndex) = dividendTracker.process(gas) (#1416)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,false,gas,tx.origin) (#1417)
Reentrancy in GBF.swapAndSendDividends(uint256) (#1247-1254):
External calls:
- (success) = address(address(dividendTracker)).call{value: amount}() (#1248)
- dividendTracker.distributeDividends(amount) (#1251)
External calls sending eth:
- (success) = address(address(dividendTracker)).call{value: amount}() (#1248)
Event emitted after the call(s):
- SendDividends(amount) (#1252)
Reentrancy in GBF.updateDividendTracker(address) (#1332-1348):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1339)
- newDividendTracker.excludeFromDividends(address(this)) (#1340)
- newDividendTracker.excludeFromDividends(DEAD) (#1341)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#1342)
- newDividendTracker.excludeFromDividends(address(uniswapV2Pair)) (#1343)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (#1345)
Apply the check-effects-interactions pattern.
Additional information: link
DividendTracker.getAccount(address) (#732-775) uses timestamp for comparisons
Dangerous comparisons:
- nextClaimTime > block.timestamp (#772-774)
DividendTracker.canAutoClaim(uint256) (#796-802) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (#797)
- block.timestamp.sub(lastClaimTime) >= claimWait (#801)
Avoid relying on block.timestamp.
Additional information: link
Context._msgData() (#9-11) is never used and should be removed
DividendPayingToken._transfer(address,address,uint256) (#631-637) is never used and should be removed
SafeMath.div(uint256,uint256) (#78-80) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#82-88) is never used and should be removed
SafeMath.mod(uint256,uint256) (#90-92) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#94-97) is never used and should be removed
SafeMathInt.abs(int256) (#129-132) is never used and should be removed
SafeMathInt.div(int256,int256) (#112-118) is never used and should be removed
SafeMathInt.mul(int256,int256) (#104-111) is never used and should be removed
Remove unused functions.
Additional information: link
Pragma version0.8.16 (#2) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.16 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) (#596-612):
- (success) = address(user).call{gas: 5000,value: _withdrawableDividend}() (#601)
Low level call in GBF.sendBNB(address,uint256) (#1016-1021):
- (success) = recipient.call{value: amount}() (#1019)
Low level call in GBF.swapAndSendDividends(uint256) (#1247-1254):
- (success) = address(address(dividendTracker)).call{value: amount}() (#1248)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
DividendTracker.getAccountAtIndex(uint256) (#777-794) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (#788)
GBF.updateGasForProcessing(uint256) (#1350-1355) uses literals with too many digits:
- require(bool,string)(newValue >= 200000 && newValue <= 500000,gasForProcessing must be between 200,000 and 500,000) (#1351)
GBF.slitherConstructorVariables() (#881-1440) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#899)
GBF.slitherConstructorVariables() (#881-1440) uses literals with too many digits:
- gasForProcessing = 300000 (#911)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#32-34)
get(IterableMapping.Map,address) should be declared external:
- IterableMapping.get(IterableMapping.Map,address) (#155-157)
getIndexOfKey(IterableMapping.Map,address) should be declared external:
- IterableMapping.getIndexOfKey(IterableMapping.Map,address) (#159-164)
getKeyAtIndex(IterableMapping.Map,uint256) should be declared external:
- IterableMapping.getKeyAtIndex(IterableMapping.Map,uint256) (#166-168)
size(IterableMapping.Map) should be declared external:
- IterableMapping.size(IterableMapping.Map) (#170-172)
name() should be declared external:
- ERC20.name() (#438-440)
symbol() should be declared external:
- ERC20.symbol() (#442-444)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#458-461)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#463-465)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#467-470)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#472-480)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#482-485)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#487-490)
distributeDividends(uint256) should be declared external:
- DividendPayingToken.distributeDividends(uint256) (#579-590)
withdrawDividend() should be declared external:
- DividendPayingToken.withdrawDividend() (#592-594)
- DividendTracker.withdrawDividend() (#694-696)
dividendOf(address) should be declared external:
- DividendPayingToken.dividendOf(address) (#614-616)
withdrawnDividendOf(address) should be declared external:
- DividendPayingToken.withdrawnDividendOf(address) (#622-624)
getAccountAtIndex(uint256) should be declared external:
- DividendTracker.getAccountAtIndex(uint256) (#777-794)
process(uint256) should be declared external:
- DividendTracker.process(uint256) (#821-866)
isExcludedFromFees(address) should be declared external:
- GBF.isExcludedFromFees(address) (#1051-1053)
isExcludedFromMaxWalletLimit(address) should be declared external:
- GBF.isExcludedFromMaxWalletLimit(address) (#1288-1290)
isExcludedFromMaxTransaction(address) should be declared external:
- GBF.isExcludedFromMaxTransaction(address) (#1327-1329)
updateDividendTracker(address) should be declared external:
- GBF.updateDividendTracker(address) (#1332-1348)
updateGasForProcessing(uint256) should be declared external:
- GBF.updateGasForProcessing(uint256) (#1350-1355)
withdrawableDividendOf(address) should be declared external:
- GBF.withdrawableDividendOf(address) (#1373-1375)
dividendTokenBalanceOf(address) should be declared external:
- GBF.dividendTokenBalanceOf(address) (#1377-1379)
totalRewardsEarned(address) should be declared external:
- GBF.totalRewardsEarned(address) (#1381-1383)
Use the external attribute for functions never called from the contract.
Additional information: link
GBF._transfer(address,address,uint256) (#1089-1220) compares to a boolean constant:
-_isExcludedFromMaxWalletLimit[from] == false && _isExcludedFromMaxWalletLimit[to] == false && to != uniswapV2Pair (#1193-1195)
GBF._transfer(address,address,uint256) (#1089-1220) compares to a boolean constant:
-(from == uniswapV2Pair || to == uniswapV2Pair) && _isExcludedFromMaxTxLimit[from] == false && _isExcludedFromMaxTxLimit[to] == false (#1104-1106)
Remove the equality to the boolean constant.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#276) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#277)
Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (#597) is too similar to DividendTracker.getAccount(address).withdrawableDividends (#737)
Prevent variables from having similar names.
Additional information: link
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#233) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#234) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#251) is not in mixedCase
Function IUniswapV2Router01.WETH() (#271) is not in mixedCase
Parameter DividendPayingToken.dividendOf(address)._owner (#614) is not in mixedCase
Parameter DividendPayingToken.withdrawableDividendOf(address)._owner (#618) is not in mixedCase
Parameter DividendPayingToken.withdrawnDividendOf(address)._owner (#622) is not in mixedCase
Parameter DividendPayingToken.accumulativeDividendOf(address)._owner (#626) is not in mixedCase
Constant DividendPayingToken.magnitude (#564) is not in UPPER_CASE_WITH_UNDERSCORES
Parameter DividendTracker.updateMinimumTokenBalanceForDividends(uint256)._newMinimumBalance (#698) is not in mixedCase
Parameter DividendTracker.getAccount(address)._account (#732) is not in mixedCase
Parameter GBF.updateBuyFees(uint256,uint256)._marketingFeeOnBuy (#1055) is not in mixedCase
Parameter GBF.updateBuyFees(uint256,uint256)._rewardFeeOnBuy (#1055) is not in mixedCase
Parameter GBF.updateSellFees(uint256,uint256)._marketingFeeOnSell (#1066) is not in mixedCase
Parameter GBF.updateSellFees(uint256,uint256)._rewardFeeOnSell (#1066) is not in mixedCase
Parameter GBF.changeMarketingWallet(address)._marketingWallet (#1082) is not in mixedCase
Parameter GBF.setSwapEnabled(bool)._swapEnabled (#1223) is not in mixedCase
Parameter GBF.setSwapWithLimit(bool)._swapWithLimit (#1239) is not in mixedCase
Parameter GBF.setMaxWalletAmount(uint256)._maxWalletAmount (#1270) is not in mixedCase
Parameter GBF.setMaxTransactionAmounts(uint256,uint256)._maxTransactionAmountBuy (#1307) is not in mixedCase
Parameter GBF.setMaxTransactionAmounts(uint256,uint256)._maxTransactionAmountSell (#1307) is not in mixedCase
Variable GBF.DEAD (#899) is not in mixedCase
Follow the Solidity naming convention.
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.
SafeMathInt.MAX_INT256 (#102) is never used in SafeMathInt (#100-137)
Remove unused state variables.
Additional information: link
GBF.DEAD (#899) should be constant
GBF.rewardToken (#910) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
Contract has 5% buy tax and 5% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.
Average 30d PancakeSwap liquidity is low.
Average 30d number of PancakeSwap swaps is low.
Number of Binance Smart Chain (BSC) token holders is low.
Token is deployed only at one blockchain
Token has only one trading pair
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
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
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Twitter account has few posts