CZbomb is pegged to the price of Bomb on the BNB Smart Chain. Providing exposure to the price of Bomb and BTCB in the CZpegs protocol.
CZbombToken.governanceRecoverUnsupported(IERC20) (#1531-1533) ignores return value by _token.transfer(owner(),_token.balanceOf(address(this))) (#1532)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
Contract ownership is not renounced (belongs to a wallet)
Low level call in Address.sendValue(address,uint256) (#735-741):
- (success) = recipient.call{value: amount}() (#739)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#796-803):
- (success,returndata) = target.call{value: value}(data) (#801)
Low level call in Address.functionStaticCall(address,bytes,string) (#821-827):
- (success,returndata) = target.staticcall(data) (#825)
Low level call in Address.functionDelegateCall(address,bytes,string) (#845-851):
- (success,returndata) = target.delegatecall(data) (#849)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Parameter CZbombToken.setOracle(address)._oracle (#1329) is not in mixedCase
Parameter CZbombToken.setBurnRate(uint256)._burnRate (#1337) is not in mixedCase
Parameter CZbombToken.setTaxRate(uint256)._taxRate (#1342) is not in mixedCase
Parameter CZbombToken.setTaxFund(address)._taxFund (#1347) is not in mixedCase
Parameter CZbombToken.setExcludeFromFee(address,bool)._account (#1352) is not in mixedCase
Parameter CZbombToken.setExcludeFromFee(address,bool)._status (#1352) is not in mixedCase
Parameter CZbombToken.setExcludeToFee(address,bool)._account (#1359) is not in mixedCase
Parameter CZbombToken.setExcludeToFee(address,bool)._status (#1359) is not in mixedCase
Parameter CZbombToken.setExcludeBothDirectionsFee(address,bool)._account (#1366) is not in mixedCase
Parameter CZbombToken.setExcludeBothDirectionsFee(address,bool)._status (#1366) is not in mixedCase
Parameter CZbombToken.isExcludedFromFee(address)._account (#1400) is not in mixedCase
Parameter CZbombToken.isExcludedToFee(address)._account (#1404) is not in mixedCase
Parameter CZbombToken.distributeReward(address)._genesisPool (#1521) is not in mixedCase
Parameter CZbombToken.governanceRecoverUnsupported(IERC20)._token (#1531) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#24)" inContext (#18-27)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in CZbombToken._transfer(address,address,uint256) (#1472-1516):
External calls:
- ILiquidityFund(_taxFund).addLiquidity(_taxAmount) (#1499)
State variables written after the call(s):
- _burn(sender,_burnAmount) (#1508)
- _balances[account] = _balances[account].sub(amount,ERC20: burn amount exceeds balance) (#582)
- super._transfer(sender,recipient,_amount) (#1515)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#542)
- _balances[recipient] = _balances[recipient].add(amount) (#543)
Apply the check-effects-interactions pattern.
Additional information: link
CZbombToken.setBurnRate(uint256) (#1337-1340) should emit an event for:
- burnRate = _burnRate (#1339)
CZbombToken.setTaxRate(uint256) (#1342-1345) should emit an event for:
- taxRate = _taxRate (#1344)
Emit an event for critical parameter changes.
Additional information: link
CZbombToken.constructor(string,string,uint8,address)._taxFund (#1320) lacks a zero-check on :
- taxFund = _taxFund (#1323)
CZbombToken.setOracle(address)._oracle (#1329) lacks a zero-check on :
- oracle = _oracle (#1330)
Check that the address is not zero.
Additional information: link
Reentrancy in CZbombToken._transfer(address,address,uint256) (#1472-1516):
External calls:
- ILiquidityFund(_taxFund).addLiquidity(_taxAmount) (#1499)
State variables written after the call(s):
- _burn(sender,_burnAmount) (#1508)
- _totalBurned = _totalBurned.add(_amount) (#1455)
- _burn(sender,_burnAmount) (#1508)
- _totalSupply = _totalSupply.sub(amount) (#583)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in CZbombToken._transfer(address,address,uint256) (#1472-1516):
External calls:
- ILiquidityFund(_taxFund).addLiquidity(_taxAmount) (#1499)
Event emitted after the call(s):
- TaxAdded(sender,_taxFund,_taxAmount) (#1501)
- Transfer(account,address(0),amount) (#584)
- _burn(sender,_burnAmount) (#1508)
- Transfer(sender,recipient,amount) (#544)
- super._transfer(sender,recipient,_amount) (#1515)
Apply the check-effects-interactions pattern.
Additional information: link
Address.isContract(address) (#708-717) uses assembly
- INLINE ASM (#715)
Address._verifyCallResult(bool,bytes,string) (#853-870) uses assembly
- INLINE ASM (#862-865)
Do not use evm assembly.
Additional information: link
Different versions of Solidity is used:
- Version used: ['0.6.12', '>=0.6.0<0.8.0', '>=0.6.2<0.8.0']
- >=0.6.0<0.8.0 (#6)
- >=0.6.0<0.8.0 (#34)
- >=0.6.0<0.8.0 (#115)
- >=0.6.0<0.8.0 (#333)
- >=0.6.0<0.8.0 (#641)
- >=0.6.2<0.8.0 (#685)
- >=0.6.0<0.8.0 (#878)
- 0.6.12 (#955)
- >=0.6.0<0.8.0 (#1118)
- >=0.6.0<0.8.0 (#1125)
- 0.6.12 (#1196)
- 0.6.12 (#1238)
- 0.6.12 (#1253)
- 0.6.12 (#1275)
Use one Solidity version.
Additional information: link
Address._verifyCallResult(bool,bytes,string) (#853-870) is never used and should be removed
Address.functionCall(address,bytes) (#761-763) is never used and should be removed
Address.functionCall(address,bytes,string) (#771-773) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#786-788) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#796-803) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#835-837) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#845-851) is never used and should be removed
Address.functionStaticCall(address,bytes) (#811-813) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#821-827) is never used and should be removed
Address.isContract(address) (#708-717) is never used and should be removed
Address.sendValue(address,uint256) (#735-741) is never used and should be removed
Context._msgData() (#23-26) is never used and should be removed
SafeERC20._callOptionalReturn(IERC20,bytes) (#937-947) is never used and should be removed
SafeERC20.safeApprove(IERC20,address,uint256) (#910-919) is never used and should be removed
SafeERC20.safeDecreaseAllowance(IERC20,address,uint256) (#926-929) is never used and should be removed
SafeERC20.safeIncreaseAllowance(IERC20,address,uint256) (#921-924) is never used and should be removed
SafeERC20.safeTransfer(IERC20,address,uint256) (#895-897) is never used and should be removed
SafeERC20.safeTransferFrom(IERC20,address,address,uint256) (#899-901) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#302-305) is never used and should be removed
SafeMath.mod(uint256,uint256) (#264-267) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#322-325) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#136-140) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#172-175) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#182-185) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#157-165) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#147-150) is never used and should be removed
SafeMath8.add(uint8,uint8) (#981-986) is never used and should be removed
SafeMath8.div(uint8,uint8) (#1055-1057) is never used and should be removed
SafeMath8.div(uint8,uint8,string) (#1071-1077) is never used and should be removed
SafeMath8.mod(uint8,uint8) (#1091-1093) is never used and should be removed
SafeMath8.mod(uint8,uint8,string) (#1107-1110) is never used and should be removed
SafeMath8.mul(uint8,uint8) (#1029-1041) is never used and should be removed
SafeMath8.sub(uint8,uint8) (#998-1000) is never used and should be removed
SafeMath8.sub(uint8,uint8,string) (#1012-1017) is never used and should be removed
Remove unused functions.
Additional information: link
Pragma version>=0.6.0<0.8.0 (#6) is too complex
Pragma version>=0.6.0<0.8.0 (#34) is too complex
Pragma version>=0.6.0<0.8.0 (#115) is too complex
Pragma version>=0.6.0<0.8.0 (#333) is too complex
Pragma version>=0.6.0<0.8.0 (#641) is too complex
Pragma version>=0.6.2<0.8.0 (#685) is too complex
Pragma version>=0.6.0<0.8.0 (#878) is too complex
Pragma version>=0.6.0<0.8.0 (#1118) is too complex
Pragma version>=0.6.0<0.8.0 (#1125) is too complex
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
name() should be declared external:
- ERC20.name() (#392-394)
symbol() should be declared external:
- ERC20.symbol() (#400-402)
decimals() should be declared external:
- ERC20.decimals() (#417-419)
totalSupply() should be declared external:
- ERC20.totalSupply() (#424-426)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#443-446)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#462-465)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#480-484)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#498-501)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#517-520)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#1175-1178)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#1184-1188)
operator() should be declared external:
- Operator.operator() (#1209-1211)
isOperator() should be declared external:
- Operator.isOperator() (#1218-1220)
transferOperator(address) should be declared external:
- Operator.transferOperator(address) (#1222-1224)
getTokenPrice() should be declared external:
- CZbombToken.getTokenPrice() (#1384-1390)
mint(address,uint256) should be declared external:
- CZbombToken.mint(address,uint256) (#1416-1426)
Use the external attribute for functions never called from the contract.
Additional information: link
Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.
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.
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
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / 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 CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account