Brady Bucks Token Logo

BB [Brady Bucks] Token

About BB

Listings

Token 2 years

Brady Bucks is a deflationary BEP20 token with auto BUSD reward, auto buy backs and auto liquidity acquisition. Holders of Brady Bucks will receive BUSD to their wallets. Every trade generates auto buy back and liquidity to raise the price floor of Brady Bucks. Tom Brady is the GOAT of NFL quarterbacks. He has accounted for over six hundred touchdowns and won seven super bowls in his career. Every time Tom Brady throws a touchdown Brady Bucks will burn one hundred million tokens.

PreSale on Pinksale Starts: 09NOV21

-8% BUSD Rewards to Holders
-2% Buy-Back
-2% Auto Liquidity
-100m BuyBack & Burn on every Brady Touchdown
-Audit & KYC verification completed before launch

Social

Laser Scorebeta Last Audit: 30 November 2021

report
Token has too many issues. Scam probability is high.

Anti-Scam

Links


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

BradyBucks.buyTokens(uint256,address) (#672-683) sends eth to arbitrary user
Dangerous calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#677-682)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in BradyBucks._transferFrom(address,address,uint256) (#526-549):
External calls:
- swapBack() (#531)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#611-617)
- distributor.deposit{value: amountBNBReflection}() (#627)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#633-640)
- triggerAutoBuyback() (#532)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#677-682)
External calls sending eth:
- swapBack() (#531)
- distributor.deposit{value: amountBNBReflection}() (#627)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#628)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#633-640)
- triggerAutoBuyback() (#532)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#677-682)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#536)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#540)
- amountReceived = takeFee(sender,recipient,amount) (#538)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#588)
- triggerAutoBuyback() (#532)
- inSwap = true (#465)
- inSwap = false (#465)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#357-368) ignores return value by BUSD.transfer(shareholder,amount) (#363)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


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.


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.

Reentrancy in DividendDistributor.setShare(address,uint256) (#290-304):
External calls:
- distributeDividend(shareholder) (#292)
- BUSD.transfer(shareholder,amount) (#363)
State variables written after the call(s):
- shares[shareholder].amount = amount (#302)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#303)
Apply the check-effects-interactions pattern.

Additional information: link

BradyBucks.swapBack() (#601-643) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#633-640)
Ensure that all the return values of the function calls are used.

Additional information: link

BradyBucks.setTargetLiquidity(uint256,uint256) (#754-757) should emit an event for:
- targetLiquidity = _target (#755)
- targetLiquidityDenominator = _denominator (#756)
Emit an event for critical parameter changes.

Additional information: link

BradyBucks.setFeeReceivers(address,address)._marketingFeeReceiver (#744) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#746)
Check that the address is not zero.

Additional information: link

Reentrancy in BradyBucks.triggerZeusBuyback(uint256,bool) (#653-659):
External calls:
- buyTokens(amount,DEAD) (#654)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#677-682)
State variables written after the call(s):
- buybackMultiplierTriggeredAt = block.timestamp (#656)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in BradyBucks.triggerZeusBuyback(uint256,bool) (#653-659):
External calls:
- buyTokens(amount,DEAD) (#654)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#677-682)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#657)
Apply the check-effects-interactions pattern.

Additional information: link

BradyBucks.isOverLiquified(uint256,uint256) (#776-778) uses timestamp for comparisons
Dangerous comparisons:
- getLiquidityBacking(accuracy) > target (#777)
Avoid relying on block.timestamp.

Additional information: link

BradyBucks.onlyBuybacker() (#500) compares to a boolean constant:
-require(bool,string)(buyBacker[msg.sender] == true,) (#500)
Remove the equality to the boolean constant.

Additional information: link

DividendDistributor.process(uint256) (#326-350) has costly operations inside a loop:
- currentIndex ++ (#347)
Use a local variable to hold the loop computation result.

Additional information: link

SafeMath.trySub(uint256,uint256) (#23-28) is never used and should be removed
Remove unused functions.

Additional information: link

BradyBucks.swapThreshold (#463) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 2000
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

solc-0.8.0 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

Variable BradyBucks._allowances (#419) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Reentrancy in BradyBucks.swapBack() (#601-643):
External calls:
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#628)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#627)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#628)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#633-640)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#641)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#187) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#188)
Prevent variables from having similar names.

Additional information: link

BradyBucks.slitherConstructorVariables() (#401-783) uses literals with too many digits:
- distributorGas = 500000 (#460)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

BradyBucks.DEAD_NON_CHECKSUM (#409) is never used in BradyBucks (#401-783)
Remove unused state variables.

Additional information: link

DividendDistributor.dividendsPerShareAccuracyFactor (#260) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

launch() should be declared external:
- BradyBucks.launch() (#705-709)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.


Number of Binance Smart Chain (BSC) token holders is low.


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.


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


Unable to find website, listings and other project-related information


Young tokens have high risks of price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for BB