Aqua Safe Token Logo

AS [Aqua Safe] Token

About AS

Listings

Not Found
Token 2 years
white paper

Rewards And Charity Token With Play2Earn Game In Metaverse With NFT Collection Coming Soon.

Social

Laser Scorebeta Last Audit: 7 May 2022

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

Anti-Scam

Links


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


Too many vulnerabilities (Unchecked transfer, Reentrancy vulnerability, etc.). High risk of a scam. DYOR & manual audit are advised.

AquaSafe.swapBack() (#657-701) sends eth to arbitrary user
Dangerous calls:
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#685)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in AquaSafe._transferFrom(address,address,uint256) (#499-599):
External calls:
- swapBack() (#523)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#668-674)
- distributor.deposit{value: amountBNBReflection}() (#684)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#685)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#691-698)
External calls sending eth:
- swapBack() (#523)
- distributor.deposit{value: amountBNBReflection}() (#684)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#685)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#691-698)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#529)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#532)
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#552)
- amountReceived = takeEarlySellFee(sender,amount) (#557)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#629)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#562)
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#580)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#583)
- amountReceived = takeFee(sender,amount) (#531)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#619)
- amountReceived = takeFee(sender,amount) (#560)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#619)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#315-326) ignores return value by BUSD.transfer(shareholder,amount) (#321)
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.


Contract ownership is not renounced (belongs to a wallet)

AquaSafe.swapBack().tmpSuccess (#685) is written in both
(tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#685)
tmpSuccess = false (#688)
Fix or remove the writes.

Additional information: link

DividendDistributor.shouldDistribute(address) (#310-313) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#311-312)
AquaSafe._transferFrom(address,address,uint256) (#499-599) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,Please wait for cooldown between buys) (#514)
- shouldTakeFee(sender) && earlySaleEnable && earlySellTime > block.timestamp (#554-556)
Avoid relying on block.timestamp.

Additional information: link

Reentrancy in DividendDistributor.distributeDividend(address) (#315-326):
External calls:
- BUSD.transfer(shareholder,amount) (#321)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#323)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#324)
Reentrancy in DividendDistributor.process(uint256) (#284-308):
External calls:
- distributeDividend(shareholders[currentIndex]) (#300)
- BUSD.transfer(shareholder,amount) (#321)
State variables written after the call(s):
- currentIndex ++ (#305)
Reentrancy in DividendDistributor.setShare(address,uint256) (#248-262):
External calls:
- distributeDividend(shareholder) (#250)
- BUSD.transfer(shareholder,amount) (#321)
State variables written after the call(s):
- shares[shareholder].amount = amount (#260)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#261)
Apply the check-effects-interactions pattern.

Additional information: link

AquaSafe.swapBack() (#657-701) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#691-698)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendDistributor.setDistributionCriteria(uint256,uint256) (#243-246) should emit an event for:
- minPeriod = _minPeriod (#244)
- minDistribution = _minDistribution (#245)
AquaSafe.setTxLimit(uint256) (#704-706) should emit an event for:
- _maxTxAmount = amount (#705)
AquaSafe.setBuyFees(uint256,uint256,uint256,uint256) (#735-742) should emit an event for:
- liquidityFee = _liquidityFee (#736)
- reflectionFee = _reflectionFee (#737)
- marketingFee = _marketingFee (#738)
- totalFee = _liquidityFee.add(_reflectionFee).add(_marketingFee) (#739)
- feeDenominator = _feeDenominator (#740)
AquaSafe.setEarlySellFees(uint256,uint256,uint256,uint256) (#744-751) should emit an event for:
- SelltotalFee = _liquidityFee.add(_reflectionFee).add(_marketingFee) (#748)
- feeDenominator = _feeDenominator (#749)
AquaSafe.setSwapBackSettings(bool,uint256) (#758-761) should emit an event for:
- swapThreshold = _amount (#760)
AquaSafe.setTargetLiquidity(uint256,uint256) (#763-766) should emit an event for:
- targetLiquidity = _target (#764)
- targetLiquidityDenominator = _denominator (#765)
Emit an event for critical parameter changes.

Additional information: link

Auth.transferOwnership(address).adr (#124) lacks a zero-check on :
- owner = adr (#125)
AquaSafe.setFeeReceivers(address,address)._autoLiquidityReceiver (#753) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#754)
AquaSafe.setFeeReceivers(address,address)._marketingFeeReceiver (#753) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#755)
Check that the address is not zero.

Additional information: link

DividendDistributor.distributeDividend(address) (#315-326) has external calls inside a loop: BUSD.transfer(shareholder,amount) (#321)
AquaSafe.airdrop(address,address[],uint256[]) (#800-823) has external calls inside a loop: distributor.setShare(addresses[i_scope_0],_balances[addresses[i_scope_0]]) (#815)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in AquaSafe.constructor() (#434-464):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#436)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = uint256(- 1) (#437)
- _balances[Owner] = _totalSupply (#462)
- autoLiquidityReceiver = 0x037f4544F7B0D21Aa304B1ec6092Fe8D6c5639b4 (#459)
- distributor = new DividendDistributor(address(router)) (#439)
- isDividendExempt[pair] = true (#454)
- isDividendExempt[address(this)] = true (#455)
- isDividendExempt[DEAD] = true (#456)
- isFeeExempt[Owner] = true (#441)
- isTimelockExempt[Owner] = true (#445)
- isTimelockExempt[DEAD] = true (#446)
- isTimelockExempt[address(this)] = true (#447)
- isTxLimitExempt[Owner] = true (#442)
- marketingFeeReceiver = 0x11fC9CfE9962d6E7de9ffb28a29E54C8AAaC565c (#460)
Reentrancy in DividendDistributor.deposit() (#264-282):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#271-276)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#281)
- totalDividends = totalDividends.add(amount) (#280)
Reentrancy in DividendDistributor.distributeDividend(address) (#315-326):
External calls:
- BUSD.transfer(shareholder,amount) (#321)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#322)
Reentrancy in DividendDistributor.setShare(address,uint256) (#248-262):
External calls:
- distributeDividend(shareholder) (#250)
- BUSD.transfer(shareholder,amount) (#321)
State variables written after the call(s):
- addShareholder(shareholder) (#254)
- shareholderIndexes[shareholder] = shareholders.length (#348)
- removeShareholder(shareholder) (#256)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#354)
- addShareholder(shareholder) (#254)
- shareholders.push(shareholder) (#349)
- removeShareholder(shareholder) (#256)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#353)
- shareholders.pop() (#355)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#259)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in AquaSafe._transferFrom(address,address,uint256) (#499-599):
External calls:
- swapBack() (#523)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#668-674)
- distributor.deposit{value: amountBNBReflection}() (#684)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#685)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#691-698)
- distributor.setShare(sender,_balances[sender]) (#536)
- distributor.setShare(recipient,_balances[recipient]) (#540)
- distributor.process(distributorGas) (#543)
External calls sending eth:
- swapBack() (#523)
- distributor.deposit{value: amountBNBReflection}() (#684)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#685)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#691-698)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#545)
Reentrancy in AquaSafe._transferFrom(address,address,uint256) (#499-599):
External calls:
- swapBack() (#523)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#668-674)
- distributor.deposit{value: amountBNBReflection}() (#684)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#685)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#691-698)
External calls sending eth:
- swapBack() (#523)
- distributor.deposit{value: amountBNBReflection}() (#684)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#685)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#691-698)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#620)
- amountReceived = takeFee(sender,amount) (#531)
- Transfer(sender,address(this),feeAmount) (#630)
- amountReceived = takeEarlySellFee(sender,amount) (#557)
- Transfer(sender,address(this),feeAmount) (#620)
- amountReceived = takeFee(sender,amount) (#560)
Reentrancy in AquaSafe._transferFrom(address,address,uint256) (#499-599):
External calls:
- swapBack() (#523)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#668-674)
- distributor.deposit{value: amountBNBReflection}() (#684)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#685)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#691-698)
- distributor.setShare(sender,_balances[sender]) (#566)
- distributor.setShare(recipient,_balances[recipient]) (#570)
- distributor.process(distributorGas) (#573)
External calls sending eth:
- swapBack() (#523)
- distributor.deposit{value: amountBNBReflection}() (#684)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#685)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#691-698)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#575)
Reentrancy in AquaSafe._transferFrom(address,address,uint256) (#499-599):
External calls:
- swapBack() (#523)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#668-674)
- distributor.deposit{value: amountBNBReflection}() (#684)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#685)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#691-698)
- distributor.setShare(sender,_balances[sender]) (#587)
- distributor.setShare(recipient,_balances[recipient]) (#591)
- distributor.process(distributorGas) (#594)
External calls sending eth:
- swapBack() (#523)
- distributor.deposit{value: amountBNBReflection}() (#684)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#685)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#691-698)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#596)
Reentrancy in AquaSafe.constructor() (#434-464):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#436)
Event emitted after the call(s):
- Transfer(address(0),Owner,_totalSupply) (#463)
Reentrancy in AquaSafe.swapBack() (#657-701):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#668-674)
- distributor.deposit{value: amountBNBReflection}() (#684)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#685)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#691-698)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#684)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#685)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#691-698)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#699)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.process(uint256) (#284-308) has costly operations inside a loop:
- currentIndex = 0 (#296)
DividendDistributor.distributeDividend(address) (#315-326) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#320)
DividendDistributor.process(uint256) (#284-308) has costly operations inside a loop:
- currentIndex ++ (#305)
Use a local variable to hold the loop computation result.

Additional information: link

AquaSafe._maxTxAmount (#373) is set pre-construction with a non-constant function or state variable:
- _totalSupply
AquaSafe._maxWalletToken (#376) is set pre-construction with a non-constant function or state variable:
- _totalSupply
AquaSafe.swapThreshold (#430) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 10 / 10000
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.7.4 (#7) allows old versions
solc-0.7.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 AquaSafe.swapBack() (#657-701):
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#685)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IDEXRouter.BUSD() (#139) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#243) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#243) is not in mixedCase
Variable DividendDistributor._token (#195) is not in mixedCase
Variable DividendDistributor.BUSD (#203) is not in mixedCase
Variable DividendDistributor.WBNB (#204) is not in mixedCase
Parameter AquaSafe.cooldownEnabled(bool,uint8)._status (#650) is not in mixedCase
Parameter AquaSafe.cooldownEnabled(bool,uint8)._interval (#650) is not in mixedCase
Parameter AquaSafe.setBuyFees(uint256,uint256,uint256,uint256)._liquidityFee (#735) is not in mixedCase
Parameter AquaSafe.setBuyFees(uint256,uint256,uint256,uint256)._reflectionFee (#735) is not in mixedCase
Parameter AquaSafe.setBuyFees(uint256,uint256,uint256,uint256)._marketingFee (#735) is not in mixedCase
Parameter AquaSafe.setBuyFees(uint256,uint256,uint256,uint256)._feeDenominator (#735) is not in mixedCase
Parameter AquaSafe.setEarlySellFees(uint256,uint256,uint256,uint256)._liquidityFee (#744) is not in mixedCase
Parameter AquaSafe.setEarlySellFees(uint256,uint256,uint256,uint256)._reflectionFee (#744) is not in mixedCase
Parameter AquaSafe.setEarlySellFees(uint256,uint256,uint256,uint256)._marketingFee (#744) is not in mixedCase
Parameter AquaSafe.setEarlySellFees(uint256,uint256,uint256,uint256)._feeDenominator (#744) is not in mixedCase
Parameter AquaSafe.setFeeReceivers(address,address)._autoLiquidityReceiver (#753) is not in mixedCase
Parameter AquaSafe.setFeeReceivers(address,address)._marketingFeeReceiver (#753) is not in mixedCase
Parameter AquaSafe.setSwapBackSettings(bool,uint256)._enabled (#758) is not in mixedCase
Parameter AquaSafe.setSwapBackSettings(bool,uint256)._amount (#758) is not in mixedCase
Parameter AquaSafe.setTargetLiquidity(uint256,uint256)._target (#763) is not in mixedCase
Parameter AquaSafe.setTargetLiquidity(uint256,uint256)._denominator (#763) is not in mixedCase
Parameter AquaSafe.setDistributionCriteria(uint256,uint256)._minPeriod (#768) is not in mixedCase
Parameter AquaSafe.setDistributionCriteria(uint256,uint256)._minDistribution (#768) is not in mixedCase
Variable AquaSafe.BUSD (#362) is not in mixedCase
Variable AquaSafe.WBNB (#363) is not in mixedCase
Variable AquaSafe.DEAD (#364) is not in mixedCase
Variable AquaSafe.ZERO (#365) is not in mixedCase
Constant AquaSafe._name (#367) is not in UPPER_CASE_WITH_UNDERSCORES
Constant AquaSafe._symbol (#368) is not in UPPER_CASE_WITH_UNDERSCORES
Constant AquaSafe._decimals (#369) is not in UPPER_CASE_WITH_UNDERSCORES
Variable AquaSafe._totalSupply (#371) is not in mixedCase
Variable AquaSafe._maxTxAmount (#373) is not in mixedCase
Variable AquaSafe._maxWalletToken (#376) is not in mixedCase
Variable AquaSafe._balances (#378) is not in mixedCase
Variable AquaSafe._allowances (#379) is not in mixedCase
Variable AquaSafe.SellliquidityFee (#395) is not in mixedCase
Variable AquaSafe.SellreflectionFee (#396) is not in mixedCase
Variable AquaSafe.SellmarketingFee (#397) is not in mixedCase
Variable AquaSafe.SelltotalFee (#398) is not in mixedCase
Variable AquaSafe.Owner (#409) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

DividendDistributor.slitherConstructorVariables() (#192-357) uses literals with too many digits:
- minDistribution = 300000 * (10 ** 18) (#221)
AquaSafe.slitherConstructorVariables() (#359-828) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#364)
AquaSafe.slitherConstructorVariables() (#359-828) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#365)
AquaSafe.slitherConstructorVariables() (#359-828) uses literals with too many digits:
- distributorGas = 500000 (#420)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

AquaSafe.BUSD (#362) is never used in AquaSafe (#359-828)
Remove unused state variables.

Additional information: link

AquaSafe.BUSD (#362) should be constant
AquaSafe.DEAD (#364) should be constant
AquaSafe.Owner (#409) should be constant
AquaSafe.WBNB (#363) should be constant
AquaSafe.ZERO (#365) should be constant
AquaSafe._totalSupply (#371) should be constant
DividendDistributor.WBNB (#204) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#217) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

authorize(address) should be declared external:
- Auth.authorize(address) (#96-98)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#103-105)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#124-128)
cooldownEnabled(bool,uint8) should be declared external:
- AquaSafe.cooldownEnabled(bool,uint8) (#650-653)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


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.


Twitter account has relatively few followers


Last post in Twitter was more than 30 days ago


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


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death

Price for AS

News for AS