A-List Royale Token Logo

AList [A-List Royale] Token

About AList

Listings

Token 3 years
white paper

A-List Royale is a cryptocurrency built on Binance Smart Chain (BEP20). $AList is also an NFT Marketplace showcasing the talent of our project artist. NFT holders will have an exclusive access to our future TRADING CARD GAME.

The team has an ambitious goal of making A-List Royale to be a gaming hub for online tournaments with an opportunity to earn by winning in battles. We ensure a game of epic variety with mind-boggling encounters with other players around the web. A-List Royale caters to all types of players, may it be new or casual gamer, an amateur or pro, and everyone who is passionate on trying to becoming the best in this ULTIMATE TRADING CARD GAME.

Social

Laser Scorebeta Last Audit: 24 January 2022

report
Token is either risky or in presale. For presale 30+ is a fine score.

AListRoyale.contractSwap(uint256) (#751-792) sends eth to arbitrary user
Dangerous calls:
- dexRouter.addLiquidityETH{value: liquidityBalance}(address(this),toLiquify,0,0,DEAD,block.timestamp) (#778-785)
- _buybackWallet.transfer((address(this).balance * _ratios.buyback) / (_ratios.total - _ratios.liquidity)) (#789)
- _marketingWallet.transfer(address(this).balance) (#790)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in AListRoyale._transfer(address,address,uint256) (#714-749):
External calls:
- contractSwap(contractTokenBalance) (#744)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(toSwapForEth,0,path,address(this),block.timestamp) (#767-773)
- dexRouter.addLiquidityETH{value: liquidityBalance}(address(this),toLiquify,0,0,DEAD,block.timestamp) (#778-785)
- _finalizeTransfer(from,to,amount,takeFee) (#748)
- antiSnipe.checkUser(from,to,tAmount) (#874-878)
External calls sending eth:
- contractSwap(contractTokenBalance) (#744)
- dexRouter.addLiquidityETH{value: liquidityBalance}(address(this),toLiquify,0,0,DEAD,block.timestamp) (#778-785)
- _buybackWallet.transfer((address(this).balance * _ratios.buyback) / (_ratios.total - _ratios.liquidity)) (#789)
- _marketingWallet.transfer(address(this).balance) (#790)
State variables written after the call(s):
- _finalizeTransfer(from,to,amount,takeFee) (#748)
- _liquidityHolders[from] = true (#797)
- _finalizeTransfer(from,to,amount,takeFee) (#748)
- _rOwned[address(this)] = _rOwned[address(this)] + (tSwap * _getRate()) (#929)
- _rOwned[from] = _rOwned[from] - values.rAmount (#844)
- _rOwned[to] = _rOwned[to] + values.rTransferAmount (#845)
- _finalizeTransfer(from,to,amount,takeFee) (#748)
- _rTotal -= values.rFee (#859)
- _finalizeTransfer(from,to,amount,takeFee) (#748)
- _tOwned[address(this)] = _tOwned[address(this)] + tSwap (#931)
- _tOwned[from] = _tOwned[from] - tAmount (#848)
- _tOwned[to] = _tOwned[to] + values.tTransferAmount (#850)
- _tOwned[from] = _tOwned[from] - tAmount (#852)
- _tOwned[to] = _tOwned[to] + values.tTransferAmount (#853)
- _finalizeTransfer(from,to,amount,takeFee) (#748)
- contractSwapEnabled = true (#802)
Reentrancy in AListRoyale.transferOwner(address) (#402-418):
External calls:
- _transfer(_owner,newOwner,balanceOf(_owner)) (#412)
- antiSnipe.checkUser(from,to,tAmount) (#874-878)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(toSwapForEth,0,path,address(this),block.timestamp) (#767-773)
- dexRouter.addLiquidityETH{value: liquidityBalance}(address(this),toLiquify,0,0,DEAD,block.timestamp) (#778-785)
External calls sending eth:
- _transfer(_owner,newOwner,balanceOf(_owner)) (#412)
- dexRouter.addLiquidityETH{value: liquidityBalance}(address(this),toLiquify,0,0,DEAD,block.timestamp) (#778-785)
- _buybackWallet.transfer((address(this).balance * _ratios.buyback) / (_ratios.total - _ratios.liquidity)) (#789)
- _marketingWallet.transfer(address(this).balance) (#790)
State variables written after the call(s):
- _owner = newOwner (#415)
Apply the check-effects-interactions pattern.

Additional information: link


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains


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.

Contract name (A-List Royale) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.

Reentrancy in AListRoyale._finalizeTransfer(address,address,uint256,bool) (#834-864):
External calls:
- values = _getValues(from,to,tAmount,takeFee) (#842)
- antiSnipe.checkUser(from,to,tAmount) (#874-878)
State variables written after the call(s):
- _rOwned[from] = _rOwned[from] - values.rAmount (#844)
- _rOwned[to] = _rOwned[to] + values.rTransferAmount (#845)
- _takeSwap(from,values.tSwap) (#857)
- _rOwned[address(this)] = _rOwned[address(this)] + (tSwap * _getRate()) (#929)
- _rTotal -= values.rFee (#859)
- _tOwned[from] = _tOwned[from] - tAmount (#848)
- _tOwned[to] = _tOwned[to] + values.tTransferAmount (#850)
- _tOwned[from] = _tOwned[from] - tAmount (#852)
- _tOwned[to] = _tOwned[to] + values.tTransferAmount (#853)
- _takeSwap(from,values.tSwap) (#857)
- _tOwned[address(this)] = _tOwned[address(this)] + tSwap (#931)
Reentrancy in AListRoyale.enableTrading() (#807-817):
External calls:
- antiSnipe.setLaunch(lpPair,uint32(block.number),uint64(block.timestamp),_decimals) (#815)
State variables written after the call(s):
- tradingEnabled = true (#816)
Apply the check-effects-interactions pattern.

Additional information: link

AListRoyale._getValues(address,address,uint256,bool).check (#874) is a local variable never initialized
AListRoyale._getValues(address,address,uint256,bool).values (#867) is a local variable never initialized
AListRoyale._getValues(address,address,uint256,bool).checked (#873) 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

AListRoyale.contractSwap(uint256) (#751-792) ignores return value by dexRouter.addLiquidityETH{value: liquidityBalance}(address(this),toLiquify,0,0,DEAD,block.timestamp) (#778-785)
AListRoyale._getValues(address,address,uint256,bool) (#866-914) ignores return value by antiSnipe.checkUser(from,to,tAmount) (#874-878)
Ensure that all the return values of the function calls are used.

Additional information: link

AListRoyale.setMaxTxPercent(uint256,uint256) (#650-655) should emit an event for:
- _maxTxAmount = check (#653)
AListRoyale.setMaxWalletSize(uint256,uint256) (#657-662) should emit an event for:
- _maxWalletSize = check (#660)
AListRoyale.setSwapSettings(uint256,uint256,uint256,uint256) (#664-667) should emit an event for:
- swapThreshold = (_tTotal * thresholdPercent) / thresholdDivisor (#665)
- swapAmount = (_tTotal * amountPercent) / amountDivisor (#666)
Emit an event for critical parameter changes.

Additional information: link

AListRoyale.changeRouterContingency(address).router (#509) lacks a zero-check on :
- _routerAddress = router (#511)
AListRoyale.setWallets(address,address).marketingWallet (#669) lacks a zero-check on :
- _marketingWallet = address(marketingWallet) (#670)
AListRoyale.setWallets(address,address).buybackWallet (#669) lacks a zero-check on :
- _buybackWallet = address(buybackWallet) (#671)
Check that the address is not zero.

Additional information: link

Variable 'AListRoyale._getValues(address,address,uint256,bool).check (#874)' in AListRoyale._getValues(address,address,uint256,bool) (#866-914) potentially used before declaration: checked = check (#875)
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 AListRoyale._finalizeTransfer(address,address,uint256,bool) (#834-864):
External calls:
- values = _getValues(from,to,tAmount,takeFee) (#842)
- antiSnipe.checkUser(from,to,tAmount) (#874-878)
State variables written after the call(s):
- _tFeeTotal += values.tFee (#860)
Reentrancy in AListRoyale._getValues(address,address,uint256,bool) (#866-914):
External calls:
- antiSnipe.checkUser(from,to,tAmount) (#874-878)
State variables written after the call(s):
- currentTaxes.reflect = _sellTaxes.reflect (#887)
- currentTaxes.totalSwap = _sellTaxes.totalSwap (#888)
- currentTaxes.marketing = _sellTaxes.marketing (#889)
- currentTaxes.reflect = _buyTaxes.reflect (#891)
- currentTaxes.totalSwap = _buyTaxes.totalSwap (#892)
- currentTaxes.marketing = _buyTaxes.marketing (#893)
- currentTaxes.reflect = _transferTaxes.reflect (#895)
- currentTaxes.totalSwap = _transferTaxes.totalSwap (#896)
- currentTaxes.marketing = _transferTaxes.marketing (#897)
Reentrancy in AListRoyale.constructor() (#370-389):
External calls:
- lpPair = IUniswapV2Factory(dexRouter.factory()).createPair(dexRouter.WETH(),address(this)) (#377)
State variables written after the call(s):
- _approve(msg.sender,_routerAddress,type()(uint256).max) (#380)
- _allowances[sender][spender] = amount (#455)
- _approve(address(this),_routerAddress,type()(uint256).max) (#381)
- _allowances[sender][spender] = amount (#455)
- _isExcludedFromFees[owner()] = true (#383)
- _isExcludedFromFees[address(this)] = true (#384)
- _isExcludedFromFees[DEAD] = true (#385)
- _liquidityHolders[owner()] = true (#386)
- lpPairs[lpPair] = true (#378)
Reentrancy in AListRoyale.setNewRouter(address) (#482-493):
External calls:
- lpPair = IUniswapV2Factory(_newRouter.factory()).createPair(address(this),_newRouter.WETH()) (#486)
State variables written after the call(s):
- _approve(address(this),address(dexRouter),type()(uint256).max) (#492)
- _allowances[sender][spender] = amount (#455)
- dexRouter = _newRouter (#491)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in AListRoyale._finalizeTransfer(address,address,uint256,bool) (#834-864):
External calls:
- values = _getValues(from,to,tAmount,takeFee) (#842)
- antiSnipe.checkUser(from,to,tAmount) (#874-878)
Event emitted after the call(s):
- Transfer(sender,address(this),tSwap) (#932)
- _takeSwap(from,values.tSwap) (#857)
- Transfer(from,to,values.tTransferAmount) (#862)
Reentrancy in AListRoyale._transfer(address,address,uint256) (#714-749):
External calls:
- contractSwap(contractTokenBalance) (#744)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(toSwapForEth,0,path,address(this),block.timestamp) (#767-773)
- dexRouter.addLiquidityETH{value: liquidityBalance}(address(this),toLiquify,0,0,DEAD,block.timestamp) (#778-785)
- _finalizeTransfer(from,to,amount,takeFee) (#748)
- antiSnipe.checkUser(from,to,tAmount) (#874-878)
External calls sending eth:
- contractSwap(contractTokenBalance) (#744)
- dexRouter.addLiquidityETH{value: liquidityBalance}(address(this),toLiquify,0,0,DEAD,block.timestamp) (#778-785)
- _buybackWallet.transfer((address(this).balance * _ratios.buyback) / (_ratios.total - _ratios.liquidity)) (#789)
- _marketingWallet.transfer(address(this).balance) (#790)
Event emitted after the call(s):
- ContractSwapEnabledUpdated(true) (#803)
- _finalizeTransfer(from,to,amount,takeFee) (#748)
- Transfer(sender,address(this),tSwap) (#932)
- _finalizeTransfer(from,to,amount,takeFee) (#748)
- Transfer(from,to,values.tTransferAmount) (#862)
- _finalizeTransfer(from,to,amount,takeFee) (#748)
Reentrancy in AListRoyale.constructor() (#370-389):
External calls:
- lpPair = IUniswapV2Factory(dexRouter.factory()).createPair(dexRouter.WETH(),address(this)) (#377)
Event emitted after the call(s):
- Approval(sender,spender,amount) (#456)
- _approve(msg.sender,_routerAddress,type()(uint256).max) (#380)
- Approval(sender,spender,amount) (#456)
- _approve(address(this),_routerAddress,type()(uint256).max) (#381)
- Transfer(address(0),_msgSender(),_tTotal) (#388)
Reentrancy in AListRoyale.contractSwap(uint256) (#751-792):
External calls:
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(toSwapForEth,0,path,address(this),block.timestamp) (#767-773)
- dexRouter.addLiquidityETH{value: liquidityBalance}(address(this),toLiquify,0,0,DEAD,block.timestamp) (#778-785)
External calls sending eth:
- dexRouter.addLiquidityETH{value: liquidityBalance}(address(this),toLiquify,0,0,DEAD,block.timestamp) (#778-785)
Event emitted after the call(s):
- SwapAndLiquify(toLiquify,liquidityBalance,toLiquify) (#786)
Reentrancy in AListRoyale.setNewRouter(address) (#482-493):
External calls:
- lpPair = IUniswapV2Factory(_newRouter.factory()).createPair(address(this),_newRouter.WETH()) (#486)
Event emitted after the call(s):
- Approval(sender,spender,amount) (#456)
- _approve(address(this),address(dexRouter),type()(uint256).max) (#492)
Reentrancy in AListRoyale.transferOwner(address) (#402-418):
External calls:
- _transfer(_owner,newOwner,balanceOf(_owner)) (#412)
- antiSnipe.checkUser(from,to,tAmount) (#874-878)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(toSwapForEth,0,path,address(this),block.timestamp) (#767-773)
- dexRouter.addLiquidityETH{value: liquidityBalance}(address(this),toLiquify,0,0,DEAD,block.timestamp) (#778-785)
External calls sending eth:
- _transfer(_owner,newOwner,balanceOf(_owner)) (#412)
- dexRouter.addLiquidityETH{value: liquidityBalance}(address(this),toLiquify,0,0,DEAD,block.timestamp) (#778-785)
- _buybackWallet.transfer((address(this).balance * _ratios.buyback) / (_ratios.total - _ratios.liquidity)) (#789)
- _marketingWallet.transfer(address(this).balance) (#790)
Event emitted after the call(s):
- OwnershipTransferred(_owner,newOwner) (#416)
Apply the check-effects-interactions pattern.

Additional information: link

AListRoyale.setExcludedFromReward(address,bool) (#530-556) has costly operations inside a loop:
- _excluded.pop() (#550)
Use a local variable to hold the loop computation result.

Additional information: link

AListRoyale.setLpPair(address,bool) (#495-507) uses timestamp for comparisons
Dangerous comparisons:
- timeSinceLastPair != 0 (#500)
- require(bool,string)(block.timestamp - timeSinceLastPair > 259200,3 Day cooldown.!) (#501)
Avoid relying on block.timestamp.

Additional information: link

AListRoyale.setLpPair(address,bool) (#495-507) compares to a boolean constant:
-enabled == false (#496)
AListRoyale.setExcludedFromReward(address,bool) (#530-556) compares to a boolean constant:
-enabled == false (#538)
AListRoyale.setExcludedFromReward(address,bool) (#530-556) compares to a boolean constant:
-enabled == true (#531)
Remove the equality to the boolean constant.

Additional information: link

Context._msgData() (#9-12) is never used and should be removed
Remove unused functions.

Additional information: link

AListRoyale._tTotal (#315) is set pre-construction with a non-constant function or state variable:
- startingSupply * 10 ** _decimals
AListRoyale._rTotal (#316) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
AListRoyale._maxTxAmount (#337) is set pre-construction with a non-constant function or state variable:
- (_tTotal * maxTPercent) / maxTDivisor
AListRoyale.maxTxAmountUI (#338) is set pre-construction with a non-constant function or state variable:
- (startingSupply * maxTPercent) / maxTDivisor
AListRoyale._maxWalletSize (#339) is set pre-construction with a non-constant function or state variable:
- (_tTotal * maxWPercent) / maxWDivisor
AListRoyale.maxWalletSizeUI (#340) is set pre-construction with a non-constant function or state variable:
- (startingSupply * maxWPercent) / maxWDivisor
AListRoyale.swapThreshold (#342) is set pre-construction with a non-constant function or state variable:
- (_tTotal * 5) / 10000
AListRoyale.swapAmount (#343) is set pre-construction with a non-constant function or state variable:
- (_tTotal * 5) / 1000
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.0<0.9.0 (#2) is too complex
solc-0.8.9 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

Function IUniswapV2Router01.WETH() (#126) is not in mixedCase
Parameter AListRoyale.setProtectionSettings(bool,bool,bool,bool)._antiSnipe (#580) is not in mixedCase
Parameter AListRoyale.setProtectionSettings(bool,bool,bool,bool)._antiGas (#580) is not in mixedCase
Parameter AListRoyale.setProtectionSettings(bool,bool,bool,bool)._antiBlock (#580) is not in mixedCase
Parameter AListRoyale.setProtectionSettings(bool,bool,bool,bool)._algo (#580) is not in mixedCase
Parameter AListRoyale.setContractSwapEnabled(bool)._enabled (#674) is not in mixedCase
Constant AListRoyale._name (#222) is not in UPPER_CASE_WITH_UNDERSCORES
Constant AListRoyale._symbol (#223) is not in UPPER_CASE_WITH_UNDERSCORES
Variable AListRoyale._buyTaxes (#264-272) is not in mixedCase
Variable AListRoyale._sellTaxes (#274-282) is not in mixedCase
Variable AListRoyale._transferTaxes (#284-292) is not in mixedCase
Variable AListRoyale._ratios (#294-301) is not in mixedCase
Variable AListRoyale._hasLiqBeenAdded (#346) 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

Reentrancy in AListRoyale._transfer(address,address,uint256) (#714-749):
External calls:
- contractSwap(contractTokenBalance) (#744)
- _buybackWallet.transfer((address(this).balance * _ratios.buyback) / (_ratios.total - _ratios.liquidity)) (#789)
- _marketingWallet.transfer(address(this).balance) (#790)
External calls sending eth:
- contractSwap(contractTokenBalance) (#744)
- dexRouter.addLiquidityETH{value: liquidityBalance}(address(this),toLiquify,0,0,DEAD,block.timestamp) (#778-785)
- _buybackWallet.transfer((address(this).balance * _ratios.buyback) / (_ratios.total - _ratios.liquidity)) (#789)
- _marketingWallet.transfer(address(this).balance) (#790)
State variables written after the call(s):
- _finalizeTransfer(from,to,amount,takeFee) (#748)
- _hasLiqBeenAdded = true (#798)
- _finalizeTransfer(from,to,amount,takeFee) (#748)
- _liquidityHolders[from] = true (#797)
- _finalizeTransfer(from,to,amount,takeFee) (#748)
- _rOwned[address(this)] = _rOwned[address(this)] + (tSwap * _getRate()) (#929)
- _rOwned[from] = _rOwned[from] - values.rAmount (#844)
- _rOwned[to] = _rOwned[to] + values.rTransferAmount (#845)
- _finalizeTransfer(from,to,amount,takeFee) (#748)
- _rTotal -= values.rFee (#859)
- _finalizeTransfer(from,to,amount,takeFee) (#748)
- _tFeeTotal += values.tFee (#860)
- _finalizeTransfer(from,to,amount,takeFee) (#748)
- _tOwned[address(this)] = _tOwned[address(this)] + tSwap (#931)
- _tOwned[from] = _tOwned[from] - tAmount (#848)
- _tOwned[to] = _tOwned[to] + values.tTransferAmount (#850)
- _tOwned[from] = _tOwned[from] - tAmount (#852)
- _tOwned[to] = _tOwned[to] + values.tTransferAmount (#853)
- _finalizeTransfer(from,to,amount,takeFee) (#748)
- antiSnipe = AntiSnipe(address(this)) (#800)
- _finalizeTransfer(from,to,amount,takeFee) (#748)
- contractSwapEnabled = true (#802)
- _finalizeTransfer(from,to,amount,takeFee) (#748)
- currentTaxes.reflect = _sellTaxes.reflect (#887)
- currentTaxes.totalSwap = _sellTaxes.totalSwap (#888)
- currentTaxes.marketing = _sellTaxes.marketing (#889)
- currentTaxes.reflect = _buyTaxes.reflect (#891)
- currentTaxes.totalSwap = _buyTaxes.totalSwap (#892)
- currentTaxes.marketing = _buyTaxes.marketing (#893)
- currentTaxes.reflect = _transferTaxes.reflect (#895)
- currentTaxes.totalSwap = _transferTaxes.totalSwap (#896)
- currentTaxes.marketing = _transferTaxes.marketing (#897)
Event emitted after the call(s):
- ContractSwapEnabledUpdated(true) (#803)
- _finalizeTransfer(from,to,amount,takeFee) (#748)
- Transfer(sender,address(this),tSwap) (#932)
- _finalizeTransfer(from,to,amount,takeFee) (#748)
- Transfer(from,to,values.tTransferAmount) (#862)
- _finalizeTransfer(from,to,amount,takeFee) (#748)
Reentrancy in AListRoyale.transferOwner(address) (#402-418):
External calls:
- _transfer(_owner,newOwner,balanceOf(_owner)) (#412)
- _buybackWallet.transfer((address(this).balance * _ratios.buyback) / (_ratios.total - _ratios.liquidity)) (#789)
- _marketingWallet.transfer(address(this).balance) (#790)
External calls sending eth:
- _transfer(_owner,newOwner,balanceOf(_owner)) (#412)
- dexRouter.addLiquidityETH{value: liquidityBalance}(address(this),toLiquify,0,0,DEAD,block.timestamp) (#778-785)
- _buybackWallet.transfer((address(this).balance * _ratios.buyback) / (_ratios.total - _ratios.liquidity)) (#789)
- _marketingWallet.transfer(address(this).balance) (#790)
State variables written after the call(s):
- _owner = newOwner (#415)
Event emitted after the call(s):
- OwnershipTransferred(_owner,newOwner) (#416)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#130) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#131)
Variable AListRoyale.maxTPercent (#332) is too similar to AListRoyale.maxWPercent (#334)
Variable AListRoyale.maxTDivisor (#333) is too similar to AListRoyale.maxWDivisor (#335)
Prevent variables from having similar names.

Additional information: link

AListRoyale.slitherConstructorConstantVariables() (#202-935) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#325)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

AListRoyale._decimals (#314) should be constant
AListRoyale.allowedPresaleExclusion (#217) should be constant
AListRoyale.maxTDivisor (#333) should be constant
AListRoyale.maxTPercent (#332) should be constant
AListRoyale.maxWDivisor (#335) should be constant
AListRoyale.maxWPercent (#334) should be constant
AListRoyale.startingSupply (#220) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- AListRoyale.renounceOwnership() (#420-424)
transfer(address,uint256) should be declared external:
- AListRoyale.transfer(address,uint256) (#441-444)
approve(address,uint256) should be declared external:
- AListRoyale.approve(address,uint256) (#446-449)
approveContractContingency() should be declared external:
- AListRoyale.approveContractContingency() (#459-462)
increaseAllowance(address,uint256) should be declared external:
- AListRoyale.increaseAllowance(address,uint256) (#472-475)
decreaseAllowance(address,uint256) should be declared external:
- AListRoyale.decreaseAllowance(address,uint256) (#477-480)
setNewRouter(address) should be declared external:
- AListRoyale.setNewRouter(address) (#482-493)
getCirculatingSupply() should be declared external:
- AListRoyale.getCirculatingSupply() (#514-516)
isExcludedFromFees(address) should be declared external:
- AListRoyale.isExcludedFromFees(address) (#518-520)
isExcludedFromReward(address) should be declared external:
- AListRoyale.isExcludedFromReward(address) (#526-528)
isBlacklisted(address) should be declared external:
- AListRoyale.isBlacklisted(address) (#568-570)
getSniperAmt() should be declared external:
- AListRoyale.getSniperAmt() (#572-574)
setContractSwapEnabled(bool) should be declared external:
- AListRoyale.setContractSwapEnabled(bool) (#674-677)
enableTrading() should be declared external:
- AListRoyale.enableTrading() (#807-817)
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.


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.


Last post in Twitter was more than 30 days ago


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


BscScan page for the token does not contain additional info: website, socials, description, etc.

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

Price for AList

News for AList