They aim to establish a platform free of monthly fees and intrusive ads, while providing their users with unlimited possibilities for putting their creativity into use: earn by game playing, designing, and monetizing original content and/or exploring the platform’s NFT marketplace.
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
Contract ownership is not renounced (belongs to a wallet)
Stakeable._stake(uint256,uint256,uint8,uint256,uint256,address) (#265-297) performs a multiplication on the result of a division:
-milliPercentOfUser = ((collectedReward - usedReward) * stakePart[stakeType]) * 100000 / (ccSupply * stakeAssumption[stakeType] * _stakeCoefficient) (#289)
-mustClaim = _amount * milliPercentOfUser / 100000 (#290)
Consider ordering multiplication before division.
Additional information: link
Braination.withdrawAll().totalStakeAmount (#916) 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
Braination.allowance(address,address).owner (#526) shadows:
- Ownable.owner() (#107-109) (function)
Braination._approve(address,address,uint256).owner (#551) shadows:
- Ownable.owner() (#107-109) (function)
Rename the local variables that shadow another component.
Additional information: link
Braination.setDevelopmentMilipercent(uint256) (#799-803) should emit an event for:
- _developmentMillipercent = value (#800)
Braination.setRewardMilipercent(uint256) (#785-789) should emit an event for:
- _rewardMillipercent = value (#786)
Emit an event for critical parameter changes.
Additional information: link
Braination.setDevelopmentFundsAddress(address).account (#724) lacks a zero-check on :
- _developmentFundsAddress = account (#726)
Check that the address is not zero.
Additional information: link
Braination.totalFrozenAmount() (#629-639) uses timestamp for comparisons
Dangerous comparisons:
- quarter < 3 (#632)
Braination.stake(uint256,address,uint8) (#874-900) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp - lastStakeTime[msg.sender] > 600,you can stake once in every 10 minutes) (#878)
- require(bool,string)(_amount < _balances[msg.sender] - frozen,can't stake frozen amount) (#883)
- require(bool,string)(_amount < maximumStakableAmount,can't stake more than 2% of stakeable amount) (#890)
Braination._transfer(address,address,uint256) (#654-682) uses timestamp for comparisons
Dangerous comparisons:
- require(bool)(checkIfBalanceNotFrozen(sender,amount,block.timestamp)) (#659)
Braination.addressFrozenAmount(address) (#612-621) uses timestamp for comparisons
Dangerous comparisons:
- quarter < 3 (#615)
Braination.checkIfBalanceNotFrozen(address,uint256,uint256) (#593-602) uses timestamp for comparisons
Dangerous comparisons:
- quarter < 3 (#596)
- (balanceOf(sender) - frozen >= amount) (#598)
Stakeable.calculateClaimableReward(Stakeable.Stake) (#349-359) uses timestamp for comparisons
Dangerous comparisons:
- _current_stake.stakeType == 1 && daysPassed < _firstStakeTypeDuration (#353)
- _current_stake.stakeType == 2 && daysPassed < _secondtStakeTypeDuration (#354)
- _current_stake.stakeType == 3 && daysPassed < _thirdStakeTypeDuration (#355)
Avoid relying on block.timestamp.
Additional information: link
Braination.excludeIncludeFeeFrom(address,bool) (#814-825) compares to a boolean constant:
-_noFeeFrom[account] && value == false (#819)
Braination.excludeIncludeFeeTo(address,bool) (#836-847) compares to a boolean constant:
-_noFeeTo[account] && value == false (#841)
Remove the equality to the boolean constant.
Additional information: link
Braination.withdrawAll() (#913-947) has costly operations inside a loop:
- _totalStakedAmount -= withdrawable.stakes[i].amount (#929)
Braination.withdrawAll() (#913-947) has costly operations inside a loop:
- _applicableContractRewardAmount -= stakeReward (#930)
Use a local variable to hold the loop computation result.
Additional information: link
SafeMath.mod(uint256,uint256,string) (#90-93) is never used and should be removed
Context._msgData() (#37-40) is never used and should be removed
SafeMath.mod(uint256,uint256) (#86-88) is never used and should be removed
Remove unused functions.
Additional information: link
solc-0.8.11 is not recommended for deployment
Pragma version^0.8.11 (#1) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
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
Variable Braination._tradingOpen (#438) is not in mixedCase
Variable Stakeable._firstStakeTypeDuration (#140) is not in mixedCase
Variable Braination._preSaleMember (#433) is not in mixedCase
Variable Braination._rewardMillipercent (#458) is not in mixedCase
Variable Braination._feeManipulation (#441) is not in mixedCase
Parameter Braination.stake(uint256,address,uint8)._amount (#874) is not in mixedCase
Variable Braination._privateSaleEnded (#439) is not in mixedCase
Parameter Stakeable.calculateClaimableReward(Stakeable.Stake)._current_stake (#349) is not in mixedCase
Variable Braination._developmentFundsAddress (#455) is not in mixedCase
Variable Stakeable._secondtStakeTypeDuration (#141) is not in mixedCase
Variable Braination._addressFrozenAmount (#434) is not in mixedCase
Variable Braination._liquidityPairQuantity (#456) is not in mixedCase
Variable Braination._totalStakedAmount (#447) is not in mixedCase
Variable Stakeable._thirdStakeTypeDuration (#142) is not in mixedCase
Parameter Braination.hasStake(address)._staker (#957) is not in mixedCase
Variable Braination._noFeeFrom (#430) is not in mixedCase
Variable Braination._applicableContractRewardAmount (#448) is not in mixedCase
Variable Braination._privateSaleAmount (#432) is not in mixedCase
Variable Braination._deploymentOwnershipTransfered (#440) is not in mixedCase
Variable Braination._noFeeTo (#431) is not in mixedCase
Variable Braination._developmentMillipercent (#459) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#38)" inContext (#29-42)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Stakeable._stake(uint256,uint256,uint8,uint256,uint256,address) (#265-297) uses literals with too many digits:
- ccSupply * stakeAssumption[stakeType] / 100000 < (cumulatedStakings[stakeType] + _amount) (#281)
Braination._deductDevelopmentFund(address,uint256) (#692-698) uses literals with too many digits:
- deductAmount = amount.mul(_developmentMillipercent).div(100000) (#693)
Stakeable._stake(uint256,uint256,uint8,uint256,uint256,address) (#265-297) uses literals with too many digits:
- temporraryAssumption = (cumulatedStakings[stakeType] + _amount) * 100000 / ccSupply (#282)
Stakeable._stake(uint256,uint256,uint8,uint256,uint256,address) (#265-297) uses literals with too many digits:
- mustClaim = _amount * milliPercentOfUser / 100000 (#290)
Braination.withdrawAll() (#913-947) uses literals with too many digits:
- newPercent = totalStakings[j] * 100000 / afterccSupply (#944)
Braination.setPartsForStakeTypes(uint32,uint32,uint32) (#1000-1004) uses literals with too many digits:
- require(bool)(first + second + third <= 100000) (#1001)
Stakeable._stake(uint256,uint256,uint8,uint256,uint256,address) (#265-297) uses literals with too many digits:
- milliPercentOfUser = ((collectedReward - usedReward) * stakePart[stakeType]) * 100000 / (ccSupply * stakeAssumption[stakeType] * _stakeCoefficient) (#289)
Stakeable.calculateClaimableReward(Stakeable.Stake) (#349-359) uses literals with too many digits:
- claimableReward = _current_stake.amount * _current_stake.milliPercent / 100000 (#357)
Braination._deductReward(address,uint256) (#708-714) uses literals with too many digits:
- deductAmount = amount.mul(_rewardMillipercent).div(100000) (#709)
Stakeable._stake(uint256,uint256,uint8,uint256,uint256,address) (#265-297) uses literals with too many digits:
- stakeAssumption[stakeType] = (cumulatedStakings[stakeType] + _amount) * 100000 / ccSupply (#285)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Stakeable._secondtStakeTypeDuration (#141) should be constant
Stakeable._thirdTypeAssumption (#137) should be constant
Stakeable._firstTypePartFromBalance (#131) should be constant
Stakeable._secondTypeAssumption (#136) should be constant
Stakeable._thirdTypePartFromBalance (#133) should be constant
Stakeable.dayInSeconds (#152) should be constant
Stakeable._firstStakeTypeDuration (#140) should be constant
Stakeable._secondTypePartFromBalance (#132) should be constant
Stakeable._thirdStakeTypeDuration (#142) should be constant
Stakeable._firstTypeAssumption (#135) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
transferOwnership(address) should be declared external:
- Braination.transferOwnership(address) (#567-570)
endPrivateSale() should be declared external:
- Braination.endPrivateSale() (#980-984)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#116-119)
startTrading() should be declared external:
- Braination.startTrading() (#990-994)
setPartsForStakeTypes(uint32,uint32,uint32) should be declared external:
- Braination.setPartsForStakeTypes(uint32,uint32,uint32) (#1000-1004)
stake(uint256,address,uint8) should be declared external:
- Braination.stake(uint256,address,uint8) (#874-900)
hasStake(address) should be declared external:
- Braination.hasStake(address) (#957-974)
withdrawAll() should be declared external:
- Braination.withdrawAll() (#913-947)
circulatingSupply() should be declared external:
- Braination.circulatingSupply() (#1010-1014)
Use the external attribute for functions never called from the contract.
Additional information: link
Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.
Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.
Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.
Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.
Contract has 10% buy tax and 10% 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.
Token is deployed only at one blockchain
Unable to find token on CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
Unable to find KYC or doxxing proof
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 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
Telegram account link seems to be invalid
Last post in Twitter was more than 30 days ago
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account