Custom coded contract that delivers reflection tokens to the previous 200 buyers.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Contract locking ether found:
Contract BlubberCoin (#239-694) has payable functions:
- BlubberCoin.receive() (#692)
But does not have a function to withdraw the ether
Remove the payable attribute or add a withdraw function.
Additional information: link
BlubberCoin._transfer(address,address,uint256) (#509-690) performs a multiplication on the result of a division:
-liquidityAmount = amount.div(100).mul(_liqTax) (#667)
Consider ordering multiplication before division.
Additional information: link
Reentrancy in BlubberCoin._transfer(address,address,uint256) (#509-690):
External calls:
- swapTokensForEth(tokensToLiquifyAt,_liqWallet) (#583)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,sendTo,block.timestamp) (#486-492)
- swapTokensForEth(tokensToMarketAt,_taxWallet) (#590)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,sendTo,block.timestamp) (#486-492)
State variables written after the call(s):
- _walletBalance[isReflection[i_scope_1]] = _walletBalance[isReflection[i_scope_1]].add(reflectAmountPer) (#632)
- _walletBalance[_burnAddress] = _walletBalance[_burnAddress].add(burnAmount) (#648)
- _walletBalance[address(this)] = _walletBalance[address(this)].add(taxAmount) (#658)
- _walletBalance[address(this)] = _walletBalance[address(this)].add(liquidityAmount) (#669)
- _walletBalance[recipient] = _walletBalance[recipient].add(newAmount) (#678)
- _walletBalance[sender] = _walletBalance[sender].sub(amount) (#679)
- _walletBalance[sender] = 3 (#686)
- doTaxes = false (#608)
- swapTokensForEth(tokensToMarketAt,_taxWallet) (#590)
- inSwap = false (#496)
- isReflection[i] = address(this) (#599)
- liqCount = liqCount.add(liquidityAmount) (#670)
- taxCount = 0 (#591)
- taxCount = taxCount.add(taxAmount) (#659)
Apply the check-effects-interactions pattern.
Additional information: link
BlubberCoin._approve(address,address,uint256).owner (#363) shadows:
- Ownable.owner() (#109-111) (function)
Rename the local variables that shadow another component.
Additional information: link
BlubberCoin.changeMaxTxPercent(uint256) (#433-435) should emit an event for:
- _maxTxPercent = newMaxTxPercent (#434)
Emit an event for critical parameter changes.
Additional information: link
BlubberCoin.changeLiqWallet(address).newTaxWallet (#448) lacks a zero-check on :
- _liqWallet = newTaxWallet (#449)
Check that the address is not zero.
Additional information: link
Reentrancy in BlubberCoin.transferFrom(address,address,uint256) (#357-361):
External calls:
- _transfer(sender,recipient,amount) (#358)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,sendTo,block.timestamp) (#486-492)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount)) (#359)
- _allowances[owner][spender] = amount (#366)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in BlubberCoin.transferFrom(address,address,uint256) (#357-361):
External calls:
- _transfer(sender,recipient,amount) (#358)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,sendTo,block.timestamp) (#486-492)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#367)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount)) (#359)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#134-139) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,The contract is still locked) (#136)
Avoid relying on block.timestamp.
Additional information: link
Address._verifyCallResult(bool,bytes,string) (#85-94) uses assembly
- INLINE ASM (#88-91)
Do not use evm assembly.
Additional information: link
SafeMath.mod(uint256,uint256) (#51) is never used and should be removed
Remove unused functions.
Additional information: link
solc-0.8.6 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.functionDelegateCall(address,bytes,string) (#80-84):
- (success,returndata) = target.delegatecall(data) (#82)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Variable BlubberCoin._taxTranEnabled (#292) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#24)" inContext (#19-27)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#193) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#193)
Prevent variables from having similar names.
Additional information: link
BlubberCoin.slitherConstructorConstantVariables() (#239-694) uses literals with too many digits:
- _supplyTotal = 100000000000000 (#260)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
BlubberCoin._symbol (#247) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
changeLiqWallet(address) should be declared external:
- BlubberCoin.changeLiqWallet(address) (#448-450)
Use the external attribute for functions never called from the contract.
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 (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 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
Young tokens have high risks of scam / price dump / death
Token has no active CoinMarketCap listing / rank
Token has relatively low CoinGecko rank
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