Sword Art Online Token Logo

SAO [Sword Art Online] Token

About SAO

Listings

Token 4 years
CoinMarketCap 4 years
white paper

$SAO is created to help our community effectively monetises while enjoying the virtual reality technology. $SAO has a practical deflationary mechanism. Liquidity pool is locked in 10 years and 58% of the total supply is burned. The dev team abdicates the $SAO contract ownership.

Social

Laser Scorebeta Last Audit: 9 September 2022

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


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


Not a direct threat, but may indicate unreliable intentions of developer. Widespread names (e.g. Elon, King, Moon, Doge) are common among meme-tokens and scams. The allow to gain free hype and attract unexperienced investors.

Redundant expression "this (#235)" inContext (#229-238)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Ownable.unlock() (#457-462) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#459)
Avoid relying on block.timestamp.

Additional information: link

SwordArtOnline.includeInReward(address) (#646-657) has costly operations inside a loop:
- _excluded.pop() (#653)
Use a local variable to hold the loop computation result.

Additional information: link

SwordArtOnline.allowance(address,address).owner (#585) shadows:
- Ownable.owner() (#410-412) (function)
SwordArtOnline._approve(address,address,uint256).owner (#816) shadows:
- Ownable.owner() (#410-412) (function)
Rename the local variables that shadow another component.

Additional information: link

SwordArtOnline.setTaxFeePercent(uint256,uint256) (#686-689) should emit an event for:
- _buyTaxFee = buyTaxFee (#687)
- _sellTaxFee = sellTaxFee (#688)
SwordArtOnline.setBurnFee(uint256) (#692-694) should emit an event for:
- _burnFee = fee (#693)
SwordArtOnline.setAdvestisementFeePercent(uint256,uint256) (#696-699) should emit an event for:
- _sellAdvestisementFee = sellAdvestisementFee (#697)
- _buyAdvestisementFee = buyAdvestisementFee (#698)
SwordArtOnline.setMaxTxPercent(uint256) (#701-705) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 3) (#702-704)
Emit an event for critical parameter changes.

Additional information: link

SwordArtOnline.changeAdvestisementWallets(address).wallet (#559) lacks a zero-check on :
- advertisementWallet = wallet (#560)
SwordArtOnline.setAirdropContract(address)._airdropContract (#828) lacks a zero-check on :
- airdropContract = _airdropContract (#829)
Check that the address is not zero.

Additional information: link

Reentrancy in SwordArtOnline.constructor() (#536-553):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#542-543)
State variables written after the call(s):
- excludeFromReward(DEAD_ADDRESS) (#550)
- _excluded.push(account) (#643)
- excludeFromReward(DEAD_ADDRESS) (#550)
- _isExcluded[account] = true (#642)
- _isExcludedFromFee[owner()] = true (#547)
- _isExcludedFromFee[address(this)] = true (#548)
- excludeFromReward(DEAD_ADDRESS) (#550)
- _tOwned[account] = tokenFromReflection(_rOwned[account]) (#640)
- ammPairs[_uniswapV2Pair] = true (#545)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in SwordArtOnline.constructor() (#536-553):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#542-543)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#552)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#262-271) uses assembly
- INLINE ASM (#269)
Address._functionCallWithValue(address,bytes,uint256,string) (#355-376) uses assembly
- INLINE ASM (#368-371)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#355-376) is never used and should be removed
Address.functionCall(address,bytes) (#315-317) is never used and should be removed
Address.functionCall(address,bytes,string) (#325-327) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#340-342) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#350-353) is never used and should be removed
Address.isContract(address) (#262-271) is never used and should be removed
Address.sendValue(address,uint256) (#289-295) is never used and should be removed
Context._msgData() (#234-237) is never used and should be removed
SafeMath.mod(uint256,uint256) (#207-209) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#223-226) is never used and should be removed
Remove unused functions.

Additional information: link

SwordArtOnline._rTotal (#497) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
SwordArtOnline._taxFee (#512) is set pre-construction with a non-constant function or state variable:
- _buyTaxFee
SwordArtOnline._previousTaxFee (#513) is set pre-construction with a non-constant function or state variable:
- _taxFee
SwordArtOnline._previousBurn (#517) is set pre-construction with a non-constant function or state variable:
- _burnFee
SwordArtOnline._advestisementFee (#522) is set pre-construction with a non-constant function or state variable:
- _buyAdvestisementFee
SwordArtOnline._previousAdvestisementFee (#523) is set pre-construction with a non-constant function or state variable:
- _advestisementFee
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

Low level call in Address.sendValue(address,uint256) (#289-295):
- (success) = recipient.call{value: amount}() (#293)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#355-376):
- (success,returndata) = target.call{value: weiValue}(data) (#359)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IUniswapV2Router01.WETH() (#477) is not in mixedCase
Parameter SwordArtOnline.calculateTaxFee(uint256)._amount (#774) is not in mixedCase
Parameter SwordArtOnline.calculateAdvestisementFee(uint256)._amount (#780) is not in mixedCase
Parameter SwordArtOnline.calculateBurnFee(uint256)._amount (#786) is not in mixedCase
Parameter SwordArtOnline.setAirdropContract(address)._airdropContract (#828) is not in mixedCase
Variable SwordArtOnline._buyTaxFee (#504) is not in mixedCase
Variable SwordArtOnline._buyAdvestisementFee (#505) is not in mixedCase
Variable SwordArtOnline._sellTaxFee (#509) is not in mixedCase
Variable SwordArtOnline._sellAdvestisementFee (#510) is not in mixedCase
Variable SwordArtOnline._advestisementFee (#522) is not in mixedCase
Variable SwordArtOnline._maxTxAmount (#527) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable SwordArtOnline._takeAdvertisement(uint256).rAdvertisement (#758) is too similar to SwordArtOnline._getTValues(uint256).tAdvertisement (#722)
Variable SwordArtOnline._getRValues(uint256,uint256,uint256,uint256,uint256).rAdvertisement (#733) is too similar to SwordArtOnline._getTValues(uint256).tAdvertisement (#722)
Variable SwordArtOnline._getRValues(uint256,uint256,uint256,uint256,uint256).rAdvertisement (#733) is too similar to SwordArtOnline._transferToExcluded(address,address,uint256).tAdvertisement (#922)
Variable SwordArtOnline._takeAdvertisement(uint256).rAdvertisement (#758) is too similar to SwordArtOnline._transferBothExcluded(address,address,uint256).tAdvertisement (#660)
Variable SwordArtOnline._getRValues(uint256,uint256,uint256,uint256,uint256).rAdvertisement (#733) is too similar to SwordArtOnline._transferBothExcluded(address,address,uint256).tAdvertisement (#660)
Variable SwordArtOnline._takeAdvertisement(uint256).rAdvertisement (#758) is too similar to SwordArtOnline._getRValues(uint256,uint256,uint256,uint256,uint256).tAdvertisement (#730)
Variable SwordArtOnline._getRValues(uint256,uint256,uint256,uint256,uint256).rAdvertisement (#733) is too similar to SwordArtOnline._getRValues(uint256,uint256,uint256,uint256,uint256).tAdvertisement (#730)
Variable SwordArtOnline._takeAdvertisement(uint256).rAdvertisement (#758) is too similar to SwordArtOnline._getValues(uint256).tAdvertisement (#715)
Variable SwordArtOnline._getRValues(uint256,uint256,uint256,uint256,uint256).rAdvertisement (#733) is too similar to SwordArtOnline._getValues(uint256).tAdvertisement (#715)
Variable SwordArtOnline._takeAdvertisement(uint256).rAdvertisement (#758) is too similar to SwordArtOnline._transferStandard(address,address,uint256).tAdvertisement (#911)
Variable SwordArtOnline._getRValues(uint256,uint256,uint256,uint256,uint256).rAdvertisement (#733) is too similar to SwordArtOnline._transferStandard(address,address,uint256).tAdvertisement (#911)
Variable SwordArtOnline._takeAdvertisement(uint256).rAdvertisement (#758) is too similar to SwordArtOnline._transferToExcluded(address,address,uint256).tAdvertisement (#922)
Variable SwordArtOnline._takeAdvertisement(uint256).rAdvertisement (#758) is too similar to SwordArtOnline._takeAdvertisement(uint256).tAdvertisement (#756)
Variable SwordArtOnline._takeAdvertisement(uint256).rAdvertisement (#758) is too similar to SwordArtOnline._transferFromExcluded(address,address,uint256).tAdvertisement (#934)
Variable SwordArtOnline._getRValues(uint256,uint256,uint256,uint256,uint256).rAdvertisement (#733) is too similar to SwordArtOnline._takeAdvertisement(uint256).tAdvertisement (#756)
Variable SwordArtOnline._getRValues(uint256,uint256,uint256,uint256,uint256).rAdvertisement (#733) is too similar to SwordArtOnline._transferFromExcluded(address,address,uint256).tAdvertisement (#934)
Variable SwordArtOnline._transferBothExcluded(address,address,uint256).rTransferAmount (#660) is too similar to SwordArtOnline._transferBothExcluded(address,address,uint256).tTransferAmount (#660)
Variable SwordArtOnline._transferToExcluded(address,address,uint256).rTransferAmount (#922) is too similar to SwordArtOnline._getValues(uint256).tTransferAmount (#715)
Variable SwordArtOnline._transferFromExcluded(address,address,uint256).rTransferAmount (#934) is too similar to SwordArtOnline._transferBothExcluded(address,address,uint256).tTransferAmount (#660)
Variable SwordArtOnline._transferToExcluded(address,address,uint256).rTransferAmount (#922) is too similar to SwordArtOnline._transferStandard(address,address,uint256).tTransferAmount (#911)
Variable SwordArtOnline._transferToExcluded(address,address,uint256).rTransferAmount (#922) is too similar to SwordArtOnline._transferToExcluded(address,address,uint256).tTransferAmount (#922)
Variable SwordArtOnline.reflectionFromToken(uint256,bool).rTransferAmount (#626) is too similar to SwordArtOnline._getValues(uint256).tTransferAmount (#715)
Variable SwordArtOnline._transferBothExcluded(address,address,uint256).rTransferAmount (#660) is too similar to SwordArtOnline._getValues(uint256).tTransferAmount (#715)
Variable SwordArtOnline._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#735) is too similar to SwordArtOnline._transferBothExcluded(address,address,uint256).tTransferAmount (#660)
Variable SwordArtOnline._transferStandard(address,address,uint256).rTransferAmount (#911) is too similar to SwordArtOnline._getValues(uint256).tTransferAmount (#715)
Variable SwordArtOnline.reflectionFromToken(uint256,bool).rTransferAmount (#626) is too similar to SwordArtOnline._transferStandard(address,address,uint256).tTransferAmount (#911)
Variable SwordArtOnline._transferFromExcluded(address,address,uint256).rTransferAmount (#934) is too similar to SwordArtOnline._getValues(uint256).tTransferAmount (#715)
Variable SwordArtOnline._transferBothExcluded(address,address,uint256).rTransferAmount (#660) is too similar to SwordArtOnline._transferStandard(address,address,uint256).tTransferAmount (#911)
Variable SwordArtOnline.reflectionFromToken(uint256,bool).rTransferAmount (#626) is too similar to SwordArtOnline._transferToExcluded(address,address,uint256).tTransferAmount (#922)
Variable SwordArtOnline._transferStandard(address,address,uint256).rTransferAmount (#911) is too similar to SwordArtOnline._transferStandard(address,address,uint256).tTransferAmount (#911)
Variable SwordArtOnline._transferBothExcluded(address,address,uint256).rTransferAmount (#660) is too similar to SwordArtOnline._transferToExcluded(address,address,uint256).tTransferAmount (#922)
Variable SwordArtOnline._transferStandard(address,address,uint256).rTransferAmount (#911) is too similar to SwordArtOnline._transferToExcluded(address,address,uint256).tTransferAmount (#922)
Variable SwordArtOnline._transferFromExcluded(address,address,uint256).rTransferAmount (#934) is too similar to SwordArtOnline._transferStandard(address,address,uint256).tTransferAmount (#911)
Variable SwordArtOnline._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#735) is too similar to SwordArtOnline._getValues(uint256).tTransferAmount (#715)
Variable SwordArtOnline._transferFromExcluded(address,address,uint256).rTransferAmount (#934) is too similar to SwordArtOnline._transferToExcluded(address,address,uint256).tTransferAmount (#922)
Variable SwordArtOnline._transferFromExcluded(address,address,uint256).rTransferAmount (#934) is too similar to SwordArtOnline._transferFromExcluded(address,address,uint256).tTransferAmount (#934)
Variable SwordArtOnline._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#735) is too similar to SwordArtOnline._transferStandard(address,address,uint256).tTransferAmount (#911)
Variable SwordArtOnline._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#735) is too similar to SwordArtOnline._transferToExcluded(address,address,uint256).tTransferAmount (#922)
Variable SwordArtOnline._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#735) is too similar to SwordArtOnline._transferFromExcluded(address,address,uint256).tTransferAmount (#934)
Variable SwordArtOnline._transferStandard(address,address,uint256).rTransferAmount (#911) is too similar to SwordArtOnline._transferFromExcluded(address,address,uint256).tTransferAmount (#934)
Variable SwordArtOnline._getValues(uint256).rTransferAmount (#716) is too similar to SwordArtOnline._transferToExcluded(address,address,uint256).tTransferAmount (#922)
Variable SwordArtOnline._transferToExcluded(address,address,uint256).rTransferAmount (#922) is too similar to SwordArtOnline._transferFromExcluded(address,address,uint256).tTransferAmount (#934)
Variable SwordArtOnline._getValues(uint256).rTransferAmount (#716) is too similar to SwordArtOnline._getTValues(uint256).tTransferAmount (#725)
Variable SwordArtOnline.reflectionFromToken(uint256,bool).rTransferAmount (#626) is too similar to SwordArtOnline._getTValues(uint256).tTransferAmount (#725)
Variable SwordArtOnline.reflectionFromToken(uint256,bool).rTransferAmount (#626) is too similar to SwordArtOnline._transferBothExcluded(address,address,uint256).tTransferAmount (#660)
Variable SwordArtOnline._getValues(uint256).rTransferAmount (#716) is too similar to SwordArtOnline._transferBothExcluded(address,address,uint256).tTransferAmount (#660)
Variable SwordArtOnline._getValues(uint256).rTransferAmount (#716) is too similar to SwordArtOnline._transferStandard(address,address,uint256).tTransferAmount (#911)
Variable SwordArtOnline._transferBothExcluded(address,address,uint256).rTransferAmount (#660) is too similar to SwordArtOnline._getTValues(uint256).tTransferAmount (#725)
Variable SwordArtOnline._getValues(uint256).rTransferAmount (#716) is too similar to SwordArtOnline._transferFromExcluded(address,address,uint256).tTransferAmount (#934)
Variable SwordArtOnline._getValues(uint256).rTransferAmount (#716) is too similar to SwordArtOnline._getValues(uint256).tTransferAmount (#715)
Variable SwordArtOnline.reflectionFromToken(uint256,bool).rTransferAmount (#626) is too similar to SwordArtOnline._transferFromExcluded(address,address,uint256).tTransferAmount (#934)
Variable SwordArtOnline._transferBothExcluded(address,address,uint256).rTransferAmount (#660) is too similar to SwordArtOnline._transferFromExcluded(address,address,uint256).tTransferAmount (#934)
Variable SwordArtOnline._transferStandard(address,address,uint256).rTransferAmount (#911) is too similar to SwordArtOnline._transferBothExcluded(address,address,uint256).tTransferAmount (#660)
Variable SwordArtOnline._transferStandard(address,address,uint256).rTransferAmount (#911) is too similar to SwordArtOnline._getTValues(uint256).tTransferAmount (#725)
Variable SwordArtOnline._transferToExcluded(address,address,uint256).rTransferAmount (#922) is too similar to SwordArtOnline._transferBothExcluded(address,address,uint256).tTransferAmount (#660)
Variable SwordArtOnline._transferToExcluded(address,address,uint256).rTransferAmount (#922) is too similar to SwordArtOnline._getTValues(uint256).tTransferAmount (#725)
Variable SwordArtOnline._transferFromExcluded(address,address,uint256).rTransferAmount (#934) is too similar to SwordArtOnline._getTValues(uint256).tTransferAmount (#725)
Variable SwordArtOnline._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#735) is too similar to SwordArtOnline._getTValues(uint256).tTransferAmount (#725)
Prevent variables from having similar names.

Additional information: link

SwordArtOnline.slitherConstructorVariables() (#481-945) uses literals with too many digits:
- _maxTxAmount = 100000 * 1e9 * 10 ** 18 (#527)
SwordArtOnline.slitherConstructorConstantVariables() (#481-945) uses literals with too many digits:
- DEAD_ADDRESS = 0x000000000000000000000000000000000000dEaD (#525)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SwordArtOnline._decimals (#502) should be constant
SwordArtOnline._name (#500) should be constant
SwordArtOnline._symbol (#501) should be constant
SwordArtOnline._tTotal (#496) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#429-432)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#438-442)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#444-446)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#449-454)
unlock() should be declared external:
- Ownable.unlock() (#457-462)
name() should be declared external:
- SwordArtOnline.name() (#555-557)
changeAdvestisementWallets(address) should be declared external:
- SwordArtOnline.changeAdvestisementWallets(address) (#559-561)
symbol() should be declared external:
- SwordArtOnline.symbol() (#563-565)
decimals() should be declared external:
- SwordArtOnline.decimals() (#567-569)
totalSupply() should be declared external:
- SwordArtOnline.totalSupply() (#571-573)
balanceOf(address) should be declared external:
- SwordArtOnline.balanceOf(address) (#575-578)
transfer(address,uint256) should be declared external:
- SwordArtOnline.transfer(address,uint256) (#580-583)
allowance(address,address) should be declared external:
- SwordArtOnline.allowance(address,address) (#585-587)
approve(address,uint256) should be declared external:
- SwordArtOnline.approve(address,uint256) (#589-592)
transferFrom(address,address,uint256) should be declared external:
- SwordArtOnline.transferFrom(address,address,uint256) (#594-598)
increaseAllowance(address,uint256) should be declared external:
- SwordArtOnline.increaseAllowance(address,uint256) (#600-603)
decreaseAllowance(address,uint256) should be declared external:
- SwordArtOnline.decreaseAllowance(address,uint256) (#605-608)
isExcludedFromReward(address) should be declared external:
- SwordArtOnline.isExcludedFromReward(address) (#610-612)
totalFees() should be declared external:
- SwordArtOnline.totalFees() (#614-616)
reflectionFromToken(uint256,bool) should be declared external:
- SwordArtOnline.reflectionFromToken(uint256,bool) (#620-629)
excludeFromFee(address) should be declared external:
- SwordArtOnline.excludeFromFee(address) (#671-673)
manageAmmPairs(address,bool) should be declared external:
- SwordArtOnline.manageAmmPairs(address,bool) (#676-678)
includeInFee(address) should be declared external:
- SwordArtOnline.includeInFee(address) (#682-684)
isExcludedFromFee(address) should be declared external:
- SwordArtOnline.isExcludedFromFee(address) (#812-814)
turnOffAntibotMode() should be declared external:
- SwordArtOnline.turnOffAntibotMode() (#824-826)
setAirdropContract(address) should be declared external:
- SwordArtOnline.setAirdropContract(address) (#828-830)
setAntibotModeWhitelist(address[],address[]) should be declared external:
- SwordArtOnline.setAntibotModeWhitelist(address[],address[]) (#832-835)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token is deployed only at one blockchain


Token has only one trading pair


Average 30d PancakeSwap volume is low.


Average 30d number of PancakeSwap swaps is low.


Average PancakeSwap trading volume, liqudity, number of swaps are low. Token seems to be inactive.

Contract has 10% buy tax and 7% sell tax.
Taxes are low and contract ownership is renounced.


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


Unable to find token on CoinGecko

Additional information: link


Unable to crawl data from the website


Unable to find KYC or doxxing proof


Unable to find whitepaper link on the website


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


Token is not listed at Mobula.Finance

Additional information: link


Token has no active CoinGecko listing / rank


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

Price for SAO

News for SAO