As investors, we are continuously scammed each and every day by people wanting to take our hard-earned money. Like you, we are tired and frustrated at the prevalence of this and we wanted to do something about it. We are also exhausted of investing into degen projects, only to be greeted with constant price fluctuation due to bots ruining a project!
$BEANS aims to change the way BSC projects are launched going forwards and before you ask, no, this isn’t another launchpad that is months off being even in BETA!
We will be launching our very own third-party doxxing service, where we will be storing the sensitive information of developers and verifying their real-life identities for the peace of mind of their investors. This will be done in NFT format. This information will remain sensitive unless anything malicious happens to the project, for example a rug-pull. If this was to happen, we would then release the key that unlocks the NFT, thus exposing the developer’s real-life identities.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Reentrancy in BNBeanstalk._transfer(address,address,uint256) (#981-1025):
External calls:
- swapAndLiquify(contractTokenBalance) (#1012)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1073-1080)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1059-1065)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1012)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1073-1080)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1024)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#937)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1115)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1106)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#853)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1107)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1126)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1127)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1117)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#855)
- _tokenTransfer(from,to,amount,takeFee) (#1024)
- _rTotal = _rTotal.sub(rFee) (#892)
- _tokenTransfer(from,to,amount,takeFee) (#1024)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#939)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1125)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#852)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1116)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#854)
Apply the check-effects-interactions pattern.
Additional information: link
BNBeanstalk._previousLiquidityFee (#700) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
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
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#361-382):
- (success,returndata) = target.call{value: weiValue}(data) (#365)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Variable BNBeanstalk._maxTxAmount (#708) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
BNBeanstalk.addLiquidity(uint256,uint256) (#1068-1081) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1073-1080)
Ensure that all the return values of the function calls are used.
Additional information: link
BNBeanstalk._approve(address,address,uint256).owner (#973) shadows:
- Ownable.owner() (#416-418) (function)
Rename the local variables that shadow another component.
Additional information: link
BNBeanstalk.setMaxTxPercent(uint256) (#877-881) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#878-880)
Emit an event for critical parameter changes.
Additional information: link
Reentrancy in BNBeanstalk.transferFrom(address,address,uint256) (#778-782):
External calls:
- _transfer(sender,recipient,amount) (#779)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1073-1080)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1059-1065)
External calls sending eth:
- _transfer(sender,recipient,amount) (#779)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1073-1080)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#780)
- _allowances[owner][spender] = amount (#977)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in BNBeanstalk.transferFrom(address,address,uint256) (#778-782):
External calls:
- _transfer(sender,recipient,amount) (#779)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1073-1080)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1059-1065)
External calls sending eth:
- _transfer(sender,recipient,amount) (#779)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1073-1080)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#978)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#780)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#463-468) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#465)
Avoid relying on block.timestamp.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#361-382) uses assembly
- INLINE ASM (#374-377)
Do not use evm assembly.
Additional information: link
SafeMath.mod(uint256,uint256,string) (#229-232) is never used and should be removed
Remove unused functions.
Additional information: link
Variable BNBeanstalk.reflectionFromToken(uint256,bool).rTransferAmount (#817) is too similar to BNBeanstalk._transferBothExcluded(address,address,uint256).tTransferAmount (#851)
Prevent variables from having similar names.
Additional information: link
BNBeanstalk.slitherConstructorVariables() (#674-1133) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 500000 * 10 ** 6 * 10 ** 9 (#709)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
BNBeanstalk.numTokensSellToAddToLiquidity (#709) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
isExcludedFromFee(address) should be declared external:
- BNBeanstalk.isExcludedFromFee(address) (#969-971)
Use the external attribute for functions never called from the contract.
Additional information: link
Redundant expression "this (#241)" inContext (#235-244)
Remove redundant statements if they congest code but offer no value.
Additional information: link
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.
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Token was delisted from CoinGecko
Additional information: link
Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap
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 code repository for the project
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Token has a considerable age, but social accounts / website are missing or have few users
Token has a considerable age, but average PancakeSwap 30d trading volume is low
Young tokens have high risks of price dump / death
Telegram account link seems to be invalid
Twitter account link seems to be invalid
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account