MiniBasketball Token Logo

MBASKETBALL [MiniBasketball] Token

About MBASKETBALL

Listings

Token 2 years

In the world of meme coins, MiniBasketball is ready to stand out with use cases. Starting with a very small market cap (should be around 60k) the potential for massive gains is big. Taxes are only 12% for buys and sells to ensure minimal effect to holders when getting in and getting out but at the same time to ensure good liquidity, BNB Rewards and marketing funds without adding to the selling pressure by selling team tokens. MiniBasketball is primed with 2 use cases. The 1st use case is that holders will be rewarded with 5% of all transactions in BNB of the upcoming exclusive MiniBasketball NFTs. There will be only 500 of these and the potential to get massive gains from them is limitless with the upcoming marketing that's going to be done. Holders of the NFTs will get an additional 5% of all transactions of the NFTs in BNB just for having them. The second use case will be with our P2E ecosystem. We will be launching a game in the near future that will reward MiniBasketball holders.

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...)

ReflectionToken.swapBack(uint256) (#1031-1075) sends eth to arbitrary user
Dangerous calls:
- _marketingWallet.transfer(amountBNBMarketing) (#1057)
- dexRouter.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,burnAddress,block.timestamp) (#1060-1067)
- reflector.load{value: amountBNBReflection}() (#1074)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in ReflectionToken.transferOwner(address) (#682-698):
External calls:
- _transfer(_owner,newOwner,_tOwned[_owner]) (#693)
- reflector.tally(from,_tOwned[from]) (#1002)
- reflector.tally(to,_tOwned[to]) (#1005)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#1042-1048)
- reflector.cashout(reflectorGas) (#1008)
- dexRouter.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,burnAddress,block.timestamp) (#1060-1067)
- reflector.load{value: amountBNBReflection}() (#1074)
External calls sending eth:
- _transfer(_owner,newOwner,_tOwned[_owner]) (#693)
- _marketingWallet.transfer(amountBNBMarketing) (#1057)
- dexRouter.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,burnAddress,block.timestamp) (#1060-1067)
- reflector.load{value: amountBNBReflection}() (#1074)
State variables written after the call(s):
- _owner = newOwner (#695)
Apply the check-effects-interactions pattern.

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.

Variable ReflectionToken._hasLiqBeenAdded (#603) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#10)" inContext (#4-13)
Remove redundant statements if they congest code but offer no value.

Additional information: link

ReflectionToken.swapBack(uint256) (#1031-1075) ignores return value by dexRouter.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,burnAddress,block.timestamp) (#1060-1067)
Ensure that all the return values of the function calls are used.

Additional information: link

ReflectionToken.setMaxWalletSize(uint256,uint256) (#877-881) should emit an event for:
- _maxWalletSize = _tTotal.mul(percent).div(divisor) (#879)
Emit an event for critical parameter changes.

Additional information: link

ReflectionToken.constructor(uint256,address).msgSender (#630) lacks a zero-check on :
- _owner = msgSender (#634)
Check that the address is not zero.

Additional information: link

Reentrancy in ReflectionToken.setNewRouter(address) (#859-869):
External calls:
- lpPair = IUniswapV2Factory(_newRouter.factory()).createPair(address(this),_newRouter.WETH()) (#863)
State variables written after the call(s):
- dexRouter = _newRouter (#868)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in ReflectionToken.transferOwner(address) (#682-698):
External calls:
- _transfer(_owner,newOwner,_tOwned[_owner]) (#693)
- reflector.tally(from,_tOwned[from]) (#1002)
- reflector.tally(to,_tOwned[to]) (#1005)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#1042-1048)
- reflector.cashout(reflectorGas) (#1008)
- dexRouter.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,burnAddress,block.timestamp) (#1060-1067)
- reflector.load{value: amountBNBReflection}() (#1074)
External calls sending eth:
- _transfer(_owner,newOwner,_tOwned[_owner]) (#693)
- _marketingWallet.transfer(amountBNBMarketing) (#1057)
- dexRouter.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,burnAddress,block.timestamp) (#1060-1067)
- reflector.load{value: amountBNBReflection}() (#1074)
Event emitted after the call(s):
- OwnershipTransferred(_owner,newOwner) (#696)
Apply the check-effects-interactions pattern.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#303-324) uses assembly
- INLINE ASM (#316-319)
Do not use evm assembly.

Additional information: link

SafeMath.sub(uint256,uint256) (#150-152) is never used and should be removed
Remove unused functions.

Additional information: link

ReflectionToken.swapAmount (#598) is set pre-construction with a non-constant function or state variable:
- _maxTxAmount
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.4 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 Address._functionCallWithValue(address,bytes,uint256,string) (#303-324):
- (success,returndata) = target.call{value: weiValue}(data) (#307)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Reentrancy in ReflectionToken.transferOwner(address) (#682-698):
External calls:
- _transfer(_owner,newOwner,_tOwned[_owner]) (#693)
- _marketingWallet.transfer(amountBNBMarketing) (#1057)
External calls sending eth:
- _transfer(_owner,newOwner,_tOwned[_owner]) (#693)
- _marketingWallet.transfer(amountBNBMarketing) (#1057)
- dexRouter.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,burnAddress,block.timestamp) (#1060-1067)
- reflector.load{value: amountBNBReflection}() (#1074)
State variables written after the call(s):
- _owner = newOwner (#695)
Event emitted after the call(s):
- OwnershipTransferred(_owner,newOwner) (#696)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#389) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#390)
Prevent variables from having similar names.

Additional information: link

ReflectionToken.slitherConstructorVariables() (#528-1096) uses literals with too many digits:
- reflectorGas = 500000 (#593)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

ReflectionToken.gasPriceLimit (#609) is never used in ReflectionToken (#528-1096)
Remove unused state variables.

Additional information: link

ReflectionToken.maxWalletPercent (#583) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

setNewRouter(address) should be declared external:
- ReflectionToken.setNewRouter(address) (#859-869)
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.


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


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/project description on the website or on BscScan, CoinMarketCap


Unable to find token contract audit


Unable to verify token contract address on the website


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find Telegram link on the website


Unable to find Twitter 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


Young tokens have high risks of price dump / death

Price for MBASKETBALL