CryptoBlast is a Binance smart chain token where holders will receive 30% of gross profit of CryptoBlast energy drinks, and 30% of gross profit of the Cryptoblast merchandise store. This will be reflected to holders in Binance-peg Cardano.
Holders of 200000 or more Cryptoblast tokens recieve 10% reflections in Binance-Peg Cardano on every transaction.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
CryptoBlast.addLiquidity(uint256,uint256) (contracts/CryptoBlast.sol#1684-1699) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xd5c14A5a1BDF75CfEa74b619101Eb840d7124E56),block.timestamp) (contracts/CryptoBlast.sol#1690-1697)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in CryptoBlast._transfer(address,address,uint256) (contracts/CryptoBlast.sol#1529-1609):
External calls:
- swapAndSendToFee(MarketingTokens) (contracts/CryptoBlast.sol#1555)
- IERC20(ADA).transfer(_MarketingWalletAddress,newBalance) (contracts/CryptoBlast.sol#1617)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/CryptoBlast.sol#1675-1681)
- swapAndLiquify(swapTokens) (contracts/CryptoBlast.sol#1558)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xd5c14A5a1BDF75CfEa74b619101Eb840d7124E56),block.timestamp) (contracts/CryptoBlast.sol#1690-1697)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/CryptoBlast.sol#1655-1661)
- swapAndSendDividends(sellTokens) (contracts/CryptoBlast.sol#1561)
- success = IERC20(ADA).transfer(address(dividendTracker),dividends) (contracts/CryptoBlast.sol#1704)
- dividendTracker.distributeADADividends(dividends) (contracts/CryptoBlast.sol#1707)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/CryptoBlast.sol#1675-1681)
External calls sending eth:
- swapAndLiquify(swapTokens) (contracts/CryptoBlast.sol#1558)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xd5c14A5a1BDF75CfEa74b619101Eb840d7124E56),block.timestamp) (contracts/CryptoBlast.sol#1690-1697)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (contracts/CryptoBlast.sol#1591)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (contracts/CryptoBlast.sol#930)
- _balances[recipient] = _balances[recipient].add(amount) (contracts/CryptoBlast.sol#931)
- super._transfer(from,to,amount) (contracts/CryptoBlast.sol#1594)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (contracts/CryptoBlast.sol#930)
- _balances[recipient] = _balances[recipient].add(amount) (contracts/CryptoBlast.sol#931)
- swapping = false (contracts/CryptoBlast.sol#1563)
Apply the check-effects-interactions pattern.
Additional information: link
CryptoBlast.swapAndSendToFee(uint256) (contracts/CryptoBlast.sol#1611-1618) ignores return value by IERC20(ADA).transfer(_MarketingWalletAddress,newBalance) (contracts/CryptoBlast.sol#1617)
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.
Redundant expression "this (contracts/CryptoBlast.sol#112)" inContext (contracts/CryptoBlast.sol#106-115)
Remove redundant statements if they congest code but offer no value.
Additional information: link
CryptoBlast._transfer(address,address,uint256) (contracts/CryptoBlast.sol#1529-1609) performs a multiplication on the result of a division:
-fees = amount.mul(totalFees).div(100) (contracts/CryptoBlast.sol#1575)
-fees = fees.mul(_sellFee).div(100) (contracts/CryptoBlast.sol#1579)
Consider ordering multiplication before division.
Additional information: link
Reentrancy in DividendPayingToken._withdrawDividendOfUser(address) (contracts/CryptoBlast.sol#1149-1165):
External calls:
- success = IERC20(ADA).transfer(user,_withdrawableDividend) (contracts/CryptoBlast.sol#1154)
State variables written after the call(s):
- withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend) (contracts/CryptoBlast.sol#1157)
Reentrancy in CryptoBlast.updateDividendTracker(address) (contracts/CryptoBlast.sol#1361-1376):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (contracts/CryptoBlast.sol#1368)
- newDividendTracker.excludeFromDividends(address(this)) (contracts/CryptoBlast.sol#1369)
- newDividendTracker.excludeFromDividends(owner()) (contracts/CryptoBlast.sol#1370)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (contracts/CryptoBlast.sol#1371)
State variables written after the call(s):
- dividendTracker = newDividendTracker (contracts/CryptoBlast.sol#1375)
Apply the check-effects-interactions pattern.
Additional information: link
CryptoBlast._transfer(address,address,uint256).claims (contracts/CryptoBlast.sol#1602) is a local variable never initialized
CryptoBlast._transfer(address,address,uint256).lastProcessedIndex (contracts/CryptoBlast.sol#1602) is a local variable never initialized
CryptoBlast._transfer(address,address,uint256).iterations (contracts/CryptoBlast.sol#1602) is a local variable never initialized
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.
Additional information: link
CryptoBlast.claim() (contracts/CryptoBlast.sol#1516-1518) ignores return value by dividendTracker.processAccount(msg.sender,false) (contracts/CryptoBlast.sol#1517)
CryptoBlast._transfer(address,address,uint256) (contracts/CryptoBlast.sol#1529-1609) ignores return value by dividendTracker.process(gas) (contracts/CryptoBlast.sol#1602-1607)
CryptoBlast.addLiquidity(uint256,uint256) (contracts/CryptoBlast.sol#1684-1699) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xd5c14A5a1BDF75CfEa74b619101Eb840d7124E56),block.timestamp) (contracts/CryptoBlast.sol#1690-1697)
Ensure that all the return values of the function calls are used.
Additional information: link
DividendPayingToken.constructor(string,string)._name (contracts/CryptoBlast.sol#1123) shadows:
- ERC20._name (contracts/CryptoBlast.sol#752) (state variable)
DividendPayingToken.constructor(string,string)._symbol (contracts/CryptoBlast.sol#1123) shadows:
- ERC20._symbol (contracts/CryptoBlast.sol#753) (state variable)
DividendPayingToken.dividendOf(address)._owner (contracts/CryptoBlast.sol#1171) shadows:
- Ownable._owner (contracts/CryptoBlast.sol#368) (state variable)
DividendPayingToken.withdrawableDividendOf(address)._owner (contracts/CryptoBlast.sol#1178) shadows:
- Ownable._owner (contracts/CryptoBlast.sol#368) (state variable)
DividendPayingToken.withdrawnDividendOf(address)._owner (contracts/CryptoBlast.sol#1185) shadows:
- Ownable._owner (contracts/CryptoBlast.sol#368) (state variable)
DividendPayingToken.accumulativeDividendOf(address)._owner (contracts/CryptoBlast.sol#1195) shadows:
- Ownable._owner (contracts/CryptoBlast.sol#368) (state variable)
Rename the local variables that shadow another component.
Additional information: link
CryptoBlast.setADARewardsFee(uint256) (contracts/CryptoBlast.sol#1403-1406) should emit an event for:
- ADARewardsFee = value (contracts/CryptoBlast.sol#1404)
- totalFees = ADARewardsFee.add(liquidityFee).add(MarketingFee) (contracts/CryptoBlast.sol#1405)
CryptoBlast.setLiquiditFee(uint256) (contracts/CryptoBlast.sol#1408-1411) should emit an event for:
- liquidityFee = value (contracts/CryptoBlast.sol#1409)
- totalFees = ADARewardsFee.add(liquidityFee).add(MarketingFee) (contracts/CryptoBlast.sol#1410)
CryptoBlast.setMarketingFee(uint256) (contracts/CryptoBlast.sol#1413-1417) should emit an event for:
- MarketingFee = value (contracts/CryptoBlast.sol#1415)
- totalFees = ADARewardsFee.add(liquidityFee).add(MarketingFee) (contracts/CryptoBlast.sol#1416)
CryptoBlast.setMaxWallet(uint256) (contracts/CryptoBlast.sol#1419-1421) should emit an event for:
- _maxWalletAmount = value.mul(_totalSupplyToken).div(100) (contracts/CryptoBlast.sol#1420)
CryptoBlast.setSellFee(uint256) (contracts/CryptoBlast.sol#1424-1427) should emit an event for:
- _sellFee = value (contracts/CryptoBlast.sol#1426)
Emit an event for critical parameter changes.
Additional information: link
CryptoBlast.updateUniswapV2Router(address)._uniswapV2Pair (contracts/CryptoBlast.sol#1382-1383) lacks a zero-check on :
- uniswapV2Pair = _uniswapV2Pair (contracts/CryptoBlast.sol#1384)
Check that the address is not zero.
Additional information: link
DividendPayingToken._withdrawDividendOfUser(address) (contracts/CryptoBlast.sol#1149-1165) has external calls inside a loop: success = IERC20(ADA).transfer(user,_withdrawableDividend) (contracts/CryptoBlast.sol#1154)
Favor pull over push strategy for external calls.
Additional information: link
Variable 'CryptoBlast._transfer(address,address,uint256).lastProcessedIndex (contracts/CryptoBlast.sol#1602)' in CryptoBlast._transfer(address,address,uint256) (contracts/CryptoBlast.sol#1529-1609) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (contracts/CryptoBlast.sol#1603)
Variable 'CryptoBlast._transfer(address,address,uint256).claims (contracts/CryptoBlast.sol#1602)' in CryptoBlast._transfer(address,address,uint256) (contracts/CryptoBlast.sol#1529-1609) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (contracts/CryptoBlast.sol#1603)
Variable 'CryptoBlast._transfer(address,address,uint256).iterations (contracts/CryptoBlast.sol#1602)' in CryptoBlast._transfer(address,address,uint256) (contracts/CryptoBlast.sol#1529-1609) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (contracts/CryptoBlast.sol#1603)
Move all variable declarations prior to any usage of the variable, and ensure that reaching a variable declaration does not depend on some conditional if it is used unconditionally.
Additional information: link
Reentrancy in CryptoBlast._transfer(address,address,uint256) (contracts/CryptoBlast.sol#1529-1609):
External calls:
- swapAndSendToFee(MarketingTokens) (contracts/CryptoBlast.sol#1555)
- IERC20(ADA).transfer(_MarketingWalletAddress,newBalance) (contracts/CryptoBlast.sol#1617)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/CryptoBlast.sol#1675-1681)
- swapAndLiquify(swapTokens) (contracts/CryptoBlast.sol#1558)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xd5c14A5a1BDF75CfEa74b619101Eb840d7124E56),block.timestamp) (contracts/CryptoBlast.sol#1690-1697)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/CryptoBlast.sol#1655-1661)
External calls sending eth:
- swapAndLiquify(swapTokens) (contracts/CryptoBlast.sol#1558)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xd5c14A5a1BDF75CfEa74b619101Eb840d7124E56),block.timestamp) (contracts/CryptoBlast.sol#1690-1697)
State variables written after the call(s):
- swapAndLiquify(swapTokens) (contracts/CryptoBlast.sol#1558)
- _allowances[owner][spender] = amount (contracts/CryptoBlast.sol#996)
Reentrancy in CryptoBlast._transfer(address,address,uint256) (contracts/CryptoBlast.sol#1529-1609):
External calls:
- swapAndSendToFee(MarketingTokens) (contracts/CryptoBlast.sol#1555)
- IERC20(ADA).transfer(_MarketingWalletAddress,newBalance) (contracts/CryptoBlast.sol#1617)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/CryptoBlast.sol#1675-1681)
- swapAndLiquify(swapTokens) (contracts/CryptoBlast.sol#1558)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xd5c14A5a1BDF75CfEa74b619101Eb840d7124E56),block.timestamp) (contracts/CryptoBlast.sol#1690-1697)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/CryptoBlast.sol#1655-1661)
- swapAndSendDividends(sellTokens) (contracts/CryptoBlast.sol#1561)
- success = IERC20(ADA).transfer(address(dividendTracker),dividends) (contracts/CryptoBlast.sol#1704)
- dividendTracker.distributeADADividends(dividends) (contracts/CryptoBlast.sol#1707)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/CryptoBlast.sol#1675-1681)
External calls sending eth:
- swapAndLiquify(swapTokens) (contracts/CryptoBlast.sol#1558)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xd5c14A5a1BDF75CfEa74b619101Eb840d7124E56),block.timestamp) (contracts/CryptoBlast.sol#1690-1697)
State variables written after the call(s):
- swapAndSendDividends(sellTokens) (contracts/CryptoBlast.sol#1561)
- _allowances[owner][spender] = amount (contracts/CryptoBlast.sol#996)
Reentrancy in CryptoBlast.constructor() (contracts/CryptoBlast.sol#1323-1355):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (contracts/CryptoBlast.sol#1330-1331)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (contracts/CryptoBlast.sol#1334)
- uniswapV2Router = _uniswapV2Router (contracts/CryptoBlast.sol#1333)
Reentrancy in CryptoBlast.constructor() (contracts/CryptoBlast.sol#1323-1355):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (contracts/CryptoBlast.sol#1330-1331)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (contracts/CryptoBlast.sol#1336)
- dividendTracker.excludeFromDividends(pair) (contracts/CryptoBlast.sol#1443)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (contracts/CryptoBlast.sol#1339)
- dividendTracker.excludeFromDividends(address(this)) (contracts/CryptoBlast.sol#1340)
- dividendTracker.excludeFromDividends(owner()) (contracts/CryptoBlast.sol#1341)
- dividendTracker.excludeFromDividends(deadWallet) (contracts/CryptoBlast.sol#1342)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (contracts/CryptoBlast.sol#1343)
State variables written after the call(s):
- _mint(owner(),100000000000 * (10 ** 18)) (contracts/CryptoBlast.sol#1354)
- _balances[account] = _balances[account].add(amount) (contracts/CryptoBlast.sol#950)
- excludeFromFees(owner(),true) (contracts/CryptoBlast.sol#1346)
- _isExcludedFromFees[account] = excluded (contracts/CryptoBlast.sol#1389)
- excludeFromFees(_MarketingWalletAddress,true) (contracts/CryptoBlast.sol#1347)
- _isExcludedFromFees[account] = excluded (contracts/CryptoBlast.sol#1389)
- excludeFromFees(address(this),true) (contracts/CryptoBlast.sol#1348)
- _isExcludedFromFees[account] = excluded (contracts/CryptoBlast.sol#1389)
- _mint(owner(),100000000000 * (10 ** 18)) (contracts/CryptoBlast.sol#1354)
- _totalSupply = _totalSupply.add(amount) (contracts/CryptoBlast.sol#949)
Reentrancy in CryptoBlastDividendTracker.processAccount(address,bool) (contracts/CryptoBlast.sol#1909-1919):
External calls:
- amount = _withdrawDividendOfUser(account) (contracts/CryptoBlast.sol#1910)
- success = IERC20(ADA).transfer(user,_withdrawableDividend) (contracts/CryptoBlast.sol#1154)
State variables written after the call(s):
- lastClaimTimes[account] = block.timestamp (contracts/CryptoBlast.sol#1913)
Reentrancy in CryptoBlast.swapAndLiquify(uint256) (contracts/CryptoBlast.sol#1620-1641):
External calls:
- swapTokensForEth(half) (contracts/CryptoBlast.sol#1632)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/CryptoBlast.sol#1655-1661)
- addLiquidity(otherHalf,newBalance) (contracts/CryptoBlast.sol#1638)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xd5c14A5a1BDF75CfEa74b619101Eb840d7124E56),block.timestamp) (contracts/CryptoBlast.sol#1690-1697)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (contracts/CryptoBlast.sol#1638)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xd5c14A5a1BDF75CfEa74b619101Eb840d7124E56),block.timestamp) (contracts/CryptoBlast.sol#1690-1697)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (contracts/CryptoBlast.sol#1638)
- _allowances[owner][spender] = amount (contracts/CryptoBlast.sol#996)
Reentrancy in CryptoBlast.updateUniswapV2Router(address) (contracts/CryptoBlast.sol#1378-1385):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (contracts/CryptoBlast.sol#1382-1383)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (contracts/CryptoBlast.sol#1384)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in CryptoBlast._setAutomatedMarketMakerPair(address,bool) (contracts/CryptoBlast.sol#1438-1447):
External calls:
- dividendTracker.excludeFromDividends(pair) (contracts/CryptoBlast.sol#1443)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (contracts/CryptoBlast.sol#1446)
Reentrancy in CryptoBlast._transfer(address,address,uint256) (contracts/CryptoBlast.sol#1529-1609):
External calls:
- swapAndSendToFee(MarketingTokens) (contracts/CryptoBlast.sol#1555)
- IERC20(ADA).transfer(_MarketingWalletAddress,newBalance) (contracts/CryptoBlast.sol#1617)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/CryptoBlast.sol#1675-1681)
- swapAndLiquify(swapTokens) (contracts/CryptoBlast.sol#1558)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xd5c14A5a1BDF75CfEa74b619101Eb840d7124E56),block.timestamp) (contracts/CryptoBlast.sol#1690-1697)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/CryptoBlast.sol#1655-1661)
External calls sending eth:
- swapAndLiquify(swapTokens) (contracts/CryptoBlast.sol#1558)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xd5c14A5a1BDF75CfEa74b619101Eb840d7124E56),block.timestamp) (contracts/CryptoBlast.sol#1690-1697)
Event emitted after the call(s):
- Approval(owner,spender,amount) (contracts/CryptoBlast.sol#997)
- swapAndLiquify(swapTokens) (contracts/CryptoBlast.sol#1558)
- SwapAndLiquify(half,newBalance,otherHalf) (contracts/CryptoBlast.sol#1640)
- swapAndLiquify(swapTokens) (contracts/CryptoBlast.sol#1558)
Reentrancy in CryptoBlast._transfer(address,address,uint256) (contracts/CryptoBlast.sol#1529-1609):
External calls:
- swapAndSendToFee(MarketingTokens) (contracts/CryptoBlast.sol#1555)
- IERC20(ADA).transfer(_MarketingWalletAddress,newBalance) (contracts/CryptoBlast.sol#1617)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/CryptoBlast.sol#1675-1681)
- swapAndLiquify(swapTokens) (contracts/CryptoBlast.sol#1558)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xd5c14A5a1BDF75CfEa74b619101Eb840d7124E56),block.timestamp) (contracts/CryptoBlast.sol#1690-1697)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/CryptoBlast.sol#1655-1661)
- swapAndSendDividends(sellTokens) (contracts/CryptoBlast.sol#1561)
- success = IERC20(ADA).transfer(address(dividendTracker),dividends) (contracts/CryptoBlast.sol#1704)
- dividendTracker.distributeADADividends(dividends) (contracts/CryptoBlast.sol#1707)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/CryptoBlast.sol#1675-1681)
External calls sending eth:
- swapAndLiquify(swapTokens) (contracts/CryptoBlast.sol#1558)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xd5c14A5a1BDF75CfEa74b619101Eb840d7124E56),block.timestamp) (contracts/CryptoBlast.sol#1690-1697)
Event emitted after the call(s):
- Approval(owner,spender,amount) (contracts/CryptoBlast.sol#997)
- swapAndSendDividends(sellTokens) (contracts/CryptoBlast.sol#1561)
- SendDividends(tokens,dividends) (contracts/CryptoBlast.sol#1708)
- swapAndSendDividends(sellTokens) (contracts/CryptoBlast.sol#1561)
- Transfer(sender,recipient,amount) (contracts/CryptoBlast.sol#932)
- super._transfer(from,address(this),fees) (contracts/CryptoBlast.sol#1591)
- Transfer(sender,recipient,amount) (contracts/CryptoBlast.sol#932)
- super._transfer(from,to,amount) (contracts/CryptoBlast.sol#1594)
Reentrancy in CryptoBlast._transfer(address,address,uint256) (contracts/CryptoBlast.sol#1529-1609):
External calls:
- swapAndSendToFee(MarketingTokens) (contracts/CryptoBlast.sol#1555)
- IERC20(ADA).transfer(_MarketingWalletAddress,newBalance) (contracts/CryptoBlast.sol#1617)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/CryptoBlast.sol#1675-1681)
- swapAndLiquify(swapTokens) (contracts/CryptoBlast.sol#1558)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xd5c14A5a1BDF75CfEa74b619101Eb840d7124E56),block.timestamp) (contracts/CryptoBlast.sol#1690-1697)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/CryptoBlast.sol#1655-1661)
- swapAndSendDividends(sellTokens) (contracts/CryptoBlast.sol#1561)
- success = IERC20(ADA).transfer(address(dividendTracker),dividends) (contracts/CryptoBlast.sol#1704)
- dividendTracker.distributeADADividends(dividends) (contracts/CryptoBlast.sol#1707)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/CryptoBlast.sol#1675-1681)
- dividendTracker.setBalance(address(from),balanceOf(from)) (contracts/CryptoBlast.sol#1596)
- dividendTracker.setBalance(address(to),balanceOf(to)) (contracts/CryptoBlast.sol#1597)
- dividendTracker.process(gas) (contracts/CryptoBlast.sol#1602-1607)
External calls sending eth:
- swapAndLiquify(swapTokens) (contracts/CryptoBlast.sol#1558)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xd5c14A5a1BDF75CfEa74b619101Eb840d7124E56),block.timestamp) (contracts/CryptoBlast.sol#1690-1697)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (contracts/CryptoBlast.sol#1603)
Reentrancy in CryptoBlast.constructor() (contracts/CryptoBlast.sol#1323-1355):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (contracts/CryptoBlast.sol#1330-1331)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (contracts/CryptoBlast.sol#1336)
- dividendTracker.excludeFromDividends(pair) (contracts/CryptoBlast.sol#1443)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (contracts/CryptoBlast.sol#1446)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (contracts/CryptoBlast.sol#1336)
Reentrancy in CryptoBlast.constructor() (contracts/CryptoBlast.sol#1323-1355):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (contracts/CryptoBlast.sol#1330-1331)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (contracts/CryptoBlast.sol#1336)
- dividendTracker.excludeFromDividends(pair) (contracts/CryptoBlast.sol#1443)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (contracts/CryptoBlast.sol#1339)
- dividendTracker.excludeFromDividends(address(this)) (contracts/CryptoBlast.sol#1340)
- dividendTracker.excludeFromDividends(owner()) (contracts/CryptoBlast.sol#1341)
- dividendTracker.excludeFromDividends(deadWallet) (contracts/CryptoBlast.sol#1342)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (contracts/CryptoBlast.sol#1343)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (contracts/CryptoBlast.sol#1391)
- excludeFromFees(address(this),true) (contracts/CryptoBlast.sol#1348)
- ExcludeFromFees(account,excluded) (contracts/CryptoBlast.sol#1391)
- excludeFromFees(_MarketingWalletAddress,true) (contracts/CryptoBlast.sol#1347)
- ExcludeFromFees(account,excluded) (contracts/CryptoBlast.sol#1391)
- excludeFromFees(owner(),true) (contracts/CryptoBlast.sol#1346)
- Transfer(address(0),account,amount) (contracts/CryptoBlast.sol#951)
- _mint(owner(),100000000000 * (10 ** 18)) (contracts/CryptoBlast.sol#1354)
Reentrancy in CryptoBlastDividendTracker.processAccount(address,bool) (contracts/CryptoBlast.sol#1909-1919):
External calls:
- amount = _withdrawDividendOfUser(account) (contracts/CryptoBlast.sol#1910)
- success = IERC20(ADA).transfer(user,_withdrawableDividend) (contracts/CryptoBlast.sol#1154)
Event emitted after the call(s):
- Claim(account,amount,automatic) (contracts/CryptoBlast.sol#1914)
Reentrancy in CryptoBlast.processDividendTracker(uint256) (contracts/CryptoBlast.sol#1511-1514):
External calls:
- (iterations,claims,lastProcessedIndex) = dividendTracker.process(gas) (contracts/CryptoBlast.sol#1512)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,false,gas,tx.origin) (contracts/CryptoBlast.sol#1513)
Reentrancy in CryptoBlast.swapAndLiquify(uint256) (contracts/CryptoBlast.sol#1620-1641):
External calls:
- swapTokensForEth(half) (contracts/CryptoBlast.sol#1632)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/CryptoBlast.sol#1655-1661)
- addLiquidity(otherHalf,newBalance) (contracts/CryptoBlast.sol#1638)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xd5c14A5a1BDF75CfEa74b619101Eb840d7124E56),block.timestamp) (contracts/CryptoBlast.sol#1690-1697)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (contracts/CryptoBlast.sol#1638)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xd5c14A5a1BDF75CfEa74b619101Eb840d7124E56),block.timestamp) (contracts/CryptoBlast.sol#1690-1697)
Event emitted after the call(s):
- Approval(owner,spender,amount) (contracts/CryptoBlast.sol#997)
- addLiquidity(otherHalf,newBalance) (contracts/CryptoBlast.sol#1638)
- SwapAndLiquify(half,newBalance,otherHalf) (contracts/CryptoBlast.sol#1640)
Reentrancy in CryptoBlast.swapAndSendDividends(uint256) (contracts/CryptoBlast.sol#1701-1710):
External calls:
- swapTokensForCake(tokens) (contracts/CryptoBlast.sol#1702)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/CryptoBlast.sol#1675-1681)
- success = IERC20(ADA).transfer(address(dividendTracker),dividends) (contracts/CryptoBlast.sol#1704)
- dividendTracker.distributeADADividends(dividends) (contracts/CryptoBlast.sol#1707)
Event emitted after the call(s):
- SendDividends(tokens,dividends) (contracts/CryptoBlast.sol#1708)
Reentrancy in CryptoBlast.updateDividendTracker(address) (contracts/CryptoBlast.sol#1361-1376):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (contracts/CryptoBlast.sol#1368)
- newDividendTracker.excludeFromDividends(address(this)) (contracts/CryptoBlast.sol#1369)
- newDividendTracker.excludeFromDividends(owner()) (contracts/CryptoBlast.sol#1370)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (contracts/CryptoBlast.sol#1371)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (contracts/CryptoBlast.sol#1373)
Apply the check-effects-interactions pattern.
Additional information: link
CryptoBlastDividendTracker.getAccount(address) (contracts/CryptoBlast.sol#1773-1816) uses timestamp for comparisons
Dangerous comparisons:
- nextClaimTime > block.timestamp (contracts/CryptoBlast.sol#1813-1815)
CryptoBlastDividendTracker.canAutoClaim(uint256) (contracts/CryptoBlast.sol#1837-1843) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (contracts/CryptoBlast.sol#1838)
- block.timestamp.sub(lastClaimTime) >= claimWait (contracts/CryptoBlast.sol#1842)
Avoid relying on block.timestamp.
Additional information: link
Context._msgData() (contracts/CryptoBlast.sol#111-114) is never used and should be removed
DividendPayingToken._transfer(address,address,uint256) (contracts/CryptoBlast.sol#1205-1211) is never used and should be removed
SafeMath.mod(uint256,uint256) (contracts/CryptoBlast.sol#544-546) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (contracts/CryptoBlast.sol#560-563) is never used and should be removed
SafeMathInt.abs(int256) (contracts/CryptoBlast.sol#622-625) is never used and should be removed
SafeMathInt.div(int256,int256) (contracts/CryptoBlast.sol#593-599) is never used and should be removed
SafeMathInt.mul(int256,int256) (contracts/CryptoBlast.sol#581-588) is never used and should be removed
Remove unused functions.
Additional information: link
CryptoBlast.totalFees (contracts/CryptoBlast.sol#1271) is set pre-construction with a non-constant function or state variable:
- ADARewardsFee.add(liquidityFee).add(MarketingFee)
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
Pragma version^0.6.2 (contracts/CryptoBlast.sol#12) allows old versions
Pragma version^0.6.2 (contracts/CryptoBlast.sol#94) allows old versions
Pragma version^0.6.2 (contracts/CryptoBlast.sol#120) allows old versions
Pragma version^0.6.2 (contracts/CryptoBlast.sol#264) allows old versions
Pragma version^0.6.2 (contracts/CryptoBlast.sol#284) allows old versions
Pragma version^0.6.2 (contracts/CryptoBlast.sol#339) allows old versions
Pragma version^0.6.2 (contracts/CryptoBlast.sol#365) allows old versions
Pragma version^0.6.2 (contracts/CryptoBlast.sol#421) allows old versions
Pragma version^0.6.2 (contracts/CryptoBlast.sol#568) allows old versions
Pragma version^0.6.2 (contracts/CryptoBlast.sol#636) allows old versions
Pragma version^0.6.2 (contracts/CryptoBlast.sol#652) allows old versions
Pragma version^0.6.2 (contracts/CryptoBlast.sol#717) allows old versions
Pragma version^0.6.2 (contracts/CryptoBlast.sol#1024) allows old versions
Pragma version^0.6.2 (contracts/CryptoBlast.sol#1061) allows old versions
Pragma version^0.6.2 (contracts/CryptoBlast.sol#1085) allows old versions
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
Function IUniswapV2Router01.WETH() (contracts/CryptoBlast.sol#124) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (contracts/CryptoBlast.sol#301) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (contracts/CryptoBlast.sol#302) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (contracts/CryptoBlast.sol#319) is not in mixedCase
Parameter DividendPayingToken.dividendOf(address)._owner (contracts/CryptoBlast.sol#1171) is not in mixedCase
Parameter DividendPayingToken.withdrawableDividendOf(address)._owner (contracts/CryptoBlast.sol#1178) is not in mixedCase
Parameter DividendPayingToken.withdrawnDividendOf(address)._owner (contracts/CryptoBlast.sol#1185) is not in mixedCase
Parameter DividendPayingToken.accumulativeDividendOf(address)._owner (contracts/CryptoBlast.sol#1195) is not in mixedCase
Variable DividendPayingToken.ADA (contracts/CryptoBlast.sol#1097) is not in mixedCase
Constant DividendPayingToken.magnitude (contracts/CryptoBlast.sol#1103) is not in UPPER_CASE_WITH_UNDERSCORES
Variable CryptoBlast.ADA (contracts/CryptoBlast.sol#1263) is not in mixedCase
Variable CryptoBlast._maxWalletAmount (contracts/CryptoBlast.sol#1266) is not in mixedCase
Variable CryptoBlast.ADARewardsFee (contracts/CryptoBlast.sol#1268) is not in mixedCase
Variable CryptoBlast.MarketingFee (contracts/CryptoBlast.sol#1270) is not in mixedCase
Variable CryptoBlast._MarketingWalletAddress (contracts/CryptoBlast.sol#1273) is not in mixedCase
Variable CryptoBlast._sellFee (contracts/CryptoBlast.sol#1282) is not in mixedCase
Variable CryptoBlast._maxSellAmount (contracts/CryptoBlast.sol#1283) is not in mixedCase
Variable CryptoBlast._totalSupplyToken (contracts/CryptoBlast.sol#1284) is not in mixedCase
Parameter CryptoBlastDividendTracker.getAccount(address)._account (contracts/CryptoBlast.sol#1773) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (contracts/CryptoBlast.sol#129) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (contracts/CryptoBlast.sol#130)
Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (contracts/CryptoBlast.sol#1150) is too similar to CryptoBlastDividendTracker.getAccount(address).withdrawableDividends (contracts/CryptoBlast.sol#1778)
Prevent variables from having similar names.
Additional information: link
CryptoBlast.constructor() (contracts/CryptoBlast.sol#1323-1355) uses literals with too many digits:
- _mint(owner(),100000000000 * (10 ** 18)) (contracts/CryptoBlast.sol#1354)
CryptoBlast.updateGasForProcessing(uint256) (contracts/CryptoBlast.sol#1450-1455) uses literals with too many digits:
- require(bool,string)(newValue >= 200000 && newValue <= 500000,CryptoBlast: gasForProcessing must be between 200,000 and 500,000) (contracts/CryptoBlast.sol#1451)
CryptoBlast.slitherConstructorVariables() (contracts/CryptoBlast.sol#1251-1711) uses literals with too many digits:
- deadWallet = 0x000000000000000000000000000000000000dEaD (contracts/CryptoBlast.sol#1261)
CryptoBlast.slitherConstructorVariables() (contracts/CryptoBlast.sol#1251-1711) uses literals with too many digits:
- swapTokensAtAmount = 2000000 * (10 ** 18) (contracts/CryptoBlast.sol#1265)
CryptoBlast.slitherConstructorVariables() (contracts/CryptoBlast.sol#1251-1711) uses literals with too many digits:
- _maxWalletAmount = 2000000000 * (10 ** 18) (contracts/CryptoBlast.sol#1266)
CryptoBlast.slitherConstructorVariables() (contracts/CryptoBlast.sol#1251-1711) uses literals with too many digits:
- gasForProcessing = 300000 (contracts/CryptoBlast.sol#1277)
CryptoBlast.slitherConstructorVariables() (contracts/CryptoBlast.sol#1251-1711) uses literals with too many digits:
- _maxSellAmount = 2000000000 * (10 ** 18) (contracts/CryptoBlast.sol#1283)
CryptoBlast.slitherConstructorVariables() (contracts/CryptoBlast.sol#1251-1711) uses literals with too many digits:
- _totalSupplyToken = 100000000000 * (10 ** 18) (contracts/CryptoBlast.sol#1284)
CryptoBlastDividendTracker.constructor() (contracts/CryptoBlast.sol#1733-1736) uses literals with too many digits:
- minimumTokenBalanceForDividends = 200000 * (10 ** 18) (contracts/CryptoBlast.sol#1735)
CryptoBlastDividendTracker.getAccountAtIndex(uint256) (contracts/CryptoBlast.sol#1818-1835) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (contracts/CryptoBlast.sol#1829)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
SafeMathInt.MAX_INT256 (contracts/CryptoBlast.sol#576) is never used in SafeMathInt (contracts/CryptoBlast.sol#574-632)
Remove unused state variables.
Additional information: link
CryptoBlast._MarketingWalletAddress (contracts/CryptoBlast.sol#1273) should be constant
CryptoBlast._maxSellAmount (contracts/CryptoBlast.sol#1283) should be constant
CryptoBlast._totalSupplyToken (contracts/CryptoBlast.sol#1284) should be constant
CryptoBlast.deadWallet (contracts/CryptoBlast.sol#1261) should be constant
CryptoBlast.swapTokensAtAmount (contracts/CryptoBlast.sol#1265) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (contracts/CryptoBlast.sol#403-406)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (contracts/CryptoBlast.sol#412-416)
get(IterableMapping.Map,address) should be declared external:
- IterableMapping.get(IterableMapping.Map,address) (contracts/CryptoBlast.sol#663-665)
getIndexOfKey(IterableMapping.Map,address) should be declared external:
- IterableMapping.getIndexOfKey(IterableMapping.Map,address) (contracts/CryptoBlast.sol#667-672)
getKeyAtIndex(IterableMapping.Map,uint256) should be declared external:
- IterableMapping.getKeyAtIndex(IterableMapping.Map,uint256) (contracts/CryptoBlast.sol#674-676)
size(IterableMapping.Map) should be declared external:
- IterableMapping.size(IterableMapping.Map) (contracts/CryptoBlast.sol#680-682)
name() should be declared external:
- ERC20.name() (contracts/CryptoBlast.sol#772-774)
symbol() should be declared external:
- ERC20.symbol() (contracts/CryptoBlast.sol#780-782)
decimals() should be declared external:
- ERC20.decimals() (contracts/CryptoBlast.sol#797-799)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (contracts/CryptoBlast.sol#823-826)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (contracts/CryptoBlast.sol#831-833)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (contracts/CryptoBlast.sol#842-845)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (contracts/CryptoBlast.sol#860-868)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (contracts/CryptoBlast.sol#882-885)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (contracts/CryptoBlast.sol#901-904)
distributeADADividends(uint256) should be declared external:
- DividendPayingToken.distributeADADividends(uint256) (contracts/CryptoBlast.sol#1128-1139)
withdrawDividend() should be declared external:
- CryptoBlastDividendTracker.withdrawDividend() (contracts/CryptoBlast.sol#1742-1744)
- DividendPayingToken.withdrawDividend() (contracts/CryptoBlast.sol#1143-1145)
dividendOf(address) should be declared external:
- DividendPayingToken.dividendOf(address) (contracts/CryptoBlast.sol#1171-1173)
withdrawnDividendOf(address) should be declared external:
- DividendPayingToken.withdrawnDividendOf(address) (contracts/CryptoBlast.sol#1185-1187)
updateDividendTracker(address) should be declared external:
- CryptoBlast.updateDividendTracker(address) (contracts/CryptoBlast.sol#1361-1376)
updateUniswapV2Router(address) should be declared external:
- CryptoBlast.updateUniswapV2Router(address) (contracts/CryptoBlast.sol#1378-1385)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- CryptoBlast.excludeMultipleAccountsFromFees(address[],bool) (contracts/CryptoBlast.sol#1394-1400)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- CryptoBlast.setAutomatedMarketMakerPair(address,bool) (contracts/CryptoBlast.sol#1430-1434)
updateGasForProcessing(uint256) should be declared external:
- CryptoBlast.updateGasForProcessing(uint256) (contracts/CryptoBlast.sol#1450-1455)
isExcludedFromFees(address) should be declared external:
- CryptoBlast.isExcludedFromFees(address) (contracts/CryptoBlast.sol#1469-1471)
withdrawableDividendOf(address) should be declared external:
- CryptoBlast.withdrawableDividendOf(address) (contracts/CryptoBlast.sol#1473-1475)
dividendTokenBalanceOf(address) should be declared external:
- CryptoBlast.dividendTokenBalanceOf(address) (contracts/CryptoBlast.sol#1477-1479)
getAccountAtIndex(uint256) should be declared external:
- CryptoBlastDividendTracker.getAccountAtIndex(uint256) (contracts/CryptoBlast.sol#1818-1835)
process(uint256) should be declared external:
- CryptoBlastDividendTracker.process(uint256) (contracts/CryptoBlast.sol#1862-1907)
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 number of PancakeSwap swaps is less than 1. Token is either dead or inactive.
Contract has 9% buy tax and 19% sell tax.
Taxes are high (over 10%) but contract ownership is renounced.
Swap operations require suspiciously high gas. Contract logic is complex and may disguise some form of scam.
Average 30d PancakeSwap volume is low.
Average PancakeSwap trading volume, liqudity, number of swaps are low. Token seems to be inactive.
Token is deployed only at one blockchain
Token has only one trading pair
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find token/project description on the website or on BscScan, CoinMarketCap
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 token on CoinHunt
Additional information: link
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Token has relatively low CoinGecko rank
Token has relatively low CoinMarketCap rank
Unable to find Youtube account