Atlantis Token Token Logo

ATLAS [Atlantis] Token

About ATLAS

Listings

Token 2 years
CoinMarketCap 2 years

Atlantis is a decentralized reserve currency protocol based on the ATLAS token. Atlantis introduces unique economic and game-theoretic dynamics into the market through staking and bonding.

Social

Laser Scorebeta Last Audit: 22 February 2022

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

Anti-Scam

Links


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

AtlantisToken._writeCheckpoint(address,uint32,uint256,uint256) (contracts/AtlantisToken.sol#809-827) uses a dangerous strict equality:
- nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber (contracts/AtlantisToken.sol#819)
Don't use strict equality to determine if an account has enough Ether or tokens.

Additional information: link

BEP20.allowance(address,address).owner (contracts/AtlantisToken.sol#176) shadows:
- Ownable.owner() (contracts/AtlantisToken.sol#39-41) (function)
BEP20._approve(address,address,uint256).owner (contracts/AtlantisToken.sol#347) shadows:
- Ownable.owner() (contracts/AtlantisToken.sol#39-41) (function)
Rename the local variables that shadow another component.

Additional information: link

Ownable.constructor().msgSender (contracts/AtlantisToken.sol#31) lacks a zero-check on :
- _owner = msgSender (contracts/AtlantisToken.sol#32)
Check that the address is not zero.

Additional information: link

AtlantisToken.delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32) (contracts/AtlantisToken.sol#675-716) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp <= expiry,ATLAS::delegateBySig: signature expired) (contracts/AtlantisToken.sol#714)
Avoid relying on block.timestamp.

Additional information: link

AtlantisToken.getChainId() (contracts/AtlantisToken.sol#834-838) uses assembly
- INLINE ASM (contracts/AtlantisToken.sol#836)
Address.isContract(address) (contracts/library/Address.sol#26-37) uses assembly
- INLINE ASM (contracts/library/Address.sol#33-35)
Address._functionCallWithValue(address,bytes,uint256,string) (contracts/library/Address.sol#134-160) uses assembly
- INLINE ASM (contracts/library/Address.sol#152-155)
Do not use evm assembly.

Additional information: link

Different versions of Solidity is used:
- Version used: ['0.7.5', '>=0.4.0']
- 0.7.5 (contracts/AtlantisToken.sol#2)
- 0.7.5 (contracts/library/Address.sol#3)
- >=0.4.0 (contracts/library/IBEP20.sol#3)
- 0.7.5 (contracts/library/SafeMath.sol#1)
Use one Solidity version.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (contracts/library/Address.sol#134-160) is never used and should be removed
Address.functionCall(address,bytes) (contracts/library/Address.sol#81-83) is never used and should be removed
Address.functionCall(address,bytes,string) (contracts/library/Address.sol#91-97) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (contracts/library/Address.sol#110-116) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (contracts/library/Address.sol#124-132) is never used and should be removed
Address.isContract(address) (contracts/library/Address.sol#26-37) is never used and should be removed
Address.sendValue(address,uint256) (contracts/library/Address.sol#55-61) is never used and should be removed
Context._msgData() (contracts/AtlantisToken.sol#17-20) is never used and should be removed
EnumerableSet.add(EnumerableSet.UintSet,uint256) (contracts/AtlantisToken.sol#546-548) is never used and should be removed
EnumerableSet.at(EnumerableSet.UintSet,uint256) (contracts/AtlantisToken.sol#584-586) is never used and should be removed
EnumerableSet.contains(EnumerableSet.UintSet,uint256) (contracts/AtlantisToken.sol#563-565) is never used and should be removed
EnumerableSet.length(EnumerableSet.UintSet) (contracts/AtlantisToken.sol#570-572) is never used and should be removed
EnumerableSet.remove(EnumerableSet.UintSet,uint256) (contracts/AtlantisToken.sol#556-558) is never used and should be removed
SafeMath.div(uint256,uint256) (contracts/library/SafeMath.sol#47-49) is never used and should be removed
SafeMath.div(uint256,uint256,string) (contracts/library/SafeMath.sol#51-58) is never used and should be removed
SafeMath.max(uint256,uint256) (contracts/library/SafeMath.sol#73-75) is never used and should be removed
SafeMath.min(uint256,uint256) (contracts/library/SafeMath.sol#69-71) is never used and should be removed
SafeMath.mod(uint256,uint256) (contracts/library/SafeMath.sol#60-62) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (contracts/library/SafeMath.sol#64-67) is never used and should be removed
SafeMath.mul(uint256,uint256) (contracts/library/SafeMath.sol#33-45) is never used and should be removed
SafeMath.rdiv(uint256,uint256) (contracts/library/SafeMath.sol#114-116) is never used and should be removed
SafeMath.rdivRound(uint256,uint256) (contracts/library/SafeMath.sol#118-120) is never used and should be removed
SafeMath.rmul(uint256,uint256) (contracts/library/SafeMath.sol#98-100) is never used and should be removed
SafeMath.rmulRound(uint256,uint256) (contracts/library/SafeMath.sol#102-104) is never used and should be removed
SafeMath.rpow(uint256,uint256) (contracts/library/SafeMath.sol#134-144) is never used and should be removed
SafeMath.sqrrt(uint256) (contracts/library/SafeMath.sol#146-157) is never used and should be removed
SafeMath.sqrt(uint256) (contracts/library/SafeMath.sol#77-88) is never used and should be removed
SafeMath.wdiv(uint256,uint256) (contracts/library/SafeMath.sol#106-108) is never used and should be removed
SafeMath.wdivRound(uint256,uint256) (contracts/library/SafeMath.sol#110-112) is never used and should be removed
SafeMath.wmul(uint256,uint256) (contracts/library/SafeMath.sol#90-92) is never used and should be removed
SafeMath.wmulRound(uint256,uint256) (contracts/library/SafeMath.sol#94-96) is never used and should be removed
SafeMath.wpow(uint256,uint256) (contracts/library/SafeMath.sol#122-132) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version>=0.4.0 (contracts/library/IBEP20.sol#3) 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

Low level call in Address.sendValue(address,uint256) (contracts/library/Address.sol#55-61):
- (success) = recipient.call{value: amount}() (contracts/library/Address.sol#59)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (contracts/library/Address.sol#134-160):
- (success,returndata) = target.call{value: weiValue}(data) (contracts/library/Address.sol#143)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Constant BEP20._preMineSupply (contracts/AtlantisToken.sol#82) is not in UPPER_CASE_WITH_UNDERSCORES
Parameter AtlantisToken.mint(address,uint256)._to (contracts/AtlantisToken.sol#594) is not in mixedCase
Parameter AtlantisToken.mint(address,uint256)._amount (contracts/AtlantisToken.sol#594) is not in mixedCase
Parameter AtlantisToken.addMinter(address)._addMinter (contracts/AtlantisToken.sol#841) is not in mixedCase
Parameter AtlantisToken.delMinter(address)._delMinter (contracts/AtlantisToken.sol#846) is not in mixedCase
Parameter AtlantisToken.getMinter(uint256)._index (contracts/AtlantisToken.sol#859) is not in mixedCase
Variable AtlantisToken._delegates (contracts/AtlantisToken.sol#617) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (contracts/AtlantisToken.sol#18)" inContext (contracts/AtlantisToken.sol#8-21)
Remove redundant statements if they congest code but offer no value.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (contracts/AtlantisToken.sol#58-61)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (contracts/AtlantisToken.sol#67-69)
decimals() should be declared external:
- BEP20.decimals() (contracts/AtlantisToken.sol#131-133)
symbol() should be declared external:
- BEP20.symbol() (contracts/AtlantisToken.sol#138-140)
totalSupply() should be declared external:
- BEP20.totalSupply() (contracts/AtlantisToken.sol#145-147)
preMineSupply() should be declared external:
- BEP20.preMineSupply() (contracts/AtlantisToken.sol#149-151)
transfer(address,uint256) should be declared external:
- BEP20.transfer(address,uint256) (contracts/AtlantisToken.sol#168-171)
allowance(address,address) should be declared external:
- BEP20.allowance(address,address) (contracts/AtlantisToken.sol#176-178)
approve(address,uint256) should be declared external:
- BEP20.approve(address,uint256) (contracts/AtlantisToken.sol#187-190)
transferFrom(address,address,uint256) should be declared external:
- BEP20.transferFrom(address,address,uint256) (contracts/AtlantisToken.sol#204-216)
increaseAllowance(address,uint256) should be declared external:
- BEP20.increaseAllowance(address,uint256) (contracts/AtlantisToken.sol#230-233)
decreaseAllowance(address,uint256) should be declared external:
- BEP20.decreaseAllowance(address,uint256) (contracts/AtlantisToken.sol#249-256)
mint(uint256) should be declared external:
- BEP20.mint(uint256) (contracts/AtlantisToken.sol#266-269)
mint(address,uint256) should be declared external:
- AtlantisToken.mint(address,uint256) (contracts/AtlantisToken.sol#594-598)
burn(uint256) should be declared external:
- AtlantisToken.burn(uint256) (contracts/AtlantisToken.sol#600-603)
burnFrom(address,uint256) should be declared external:
- AtlantisToken.burnFrom(address,uint256) (contracts/AtlantisToken.sol#605-608)
addMinter(address) should be declared external:
- AtlantisToken.addMinter(address) (contracts/AtlantisToken.sol#841-844)
delMinter(address) should be declared external:
- AtlantisToken.delMinter(address) (contracts/AtlantisToken.sol#846-849)
getMinter(uint256) should be declared external:
- AtlantisToken.getMinter(uint256) (contracts/AtlantisToken.sol#859-862)
wad() should be declared external:
- SafeMath.wad() (contracts/library/SafeMath.sol#7-9)
ray() should be declared external:
- SafeMath.ray() (contracts/library/SafeMath.sol#11-13)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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.


Number of Binance Smart Chain (BSC) token holders is low.


Token is deployed only at one blockchain


Last post in Twitter was more than 30 days ago


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/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 price dump / death


Young tokens have high risks of scam / price dump / death


Young tokens have high risks of scam / price dump / death


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank

Price for ATLAS

News for ATLAS