Atomic Token Logo

ATMC [Atomic] Token

About ATMC

Listings

Token 2 years
white paper

Atomic Token is reinventing the NFT marketplace – with a secure, smart, and easy-to-use platform disrupting the way you can display NFT collections.

Their platform will have the ability to display holders’ NFT galleries and customize aspects based on their holdings.

Atomic Galleries will be able to create tickets for visitors to pay using $ATMC and customize the experience.

Social

Laser Scorebeta Last Audit: 30 November 2021

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

Reentrancy in Atomic._transfer(address,address,uint256) (#1017-1056):
External calls:
- swapAndLiquify(contractTokenBalance) (#1046)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1132-1139)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1118-1124)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1046)
- recipient.transfer(amount) (#1145)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1132-1139)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1055)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#971)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1155)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1156)
- _tokenTransfer(from,to,amount,takeFee) (#1055)
- _rTotal = _rTotal.sub(rFee) (#926)
- _tokenTransfer(from,to,amount,takeFee) (#1055)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#973)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1160)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1164)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1168)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1169)
- _tokenTransfer(from,to,amount,takeFee) (#1055)
- _totalLiqFee = _prevTotalLiqFee (#990)
- _totalLiqFee = 0 (#985)
Apply the check-effects-interactions pattern.

Additional information: link

Atomic.swapAndLiquify(uint256) (#1075-1107) performs a multiplication on the result of a division:
-charityShare = newBalance_scope_1.div(walletFee).mul(_teamFee) (#1100)
Consider ordering multiplication before division.

Additional information: link

Atomic.addLiquidity(uint256,uint256) (#1127-1140) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1132-1139)
Ensure that all the return values of the function calls are used.

Additional information: link

Atomic._approve(address,address,uint256).owner (#1009) shadows:
- Ownable.owner() (#396-398) (function)
Rename the local variables that shadow another component.

Additional information: link

Atomic.prepareForLaunch(uint256,uint256,uint256,uint256,uint256,uint256) (#1189-1203) should emit an event for:
- _taxFee = newRewardFee (#1193)
- _liquidityFee = newLiquidityFee (#1194)
- _marketingFee = newMarketingfee (#1195)
- _devFee = newDevFee (#1196)
- _teamFee = newTeamFee (#1197)
- _totalLiqFee = newLiquidityFee.add(newMarketingfee).add(newDevFee).add(newTeamFee) (#1199)
- _prevTotalLiqFee = _totalLiqFee (#1200)
- _snipeBlockAmount = snipeBlockCount (#1202)
Emit an event for critical parameter changes.

Additional information: link

Atomic.setTeamWalletAddress(address).newAddress (#1005) lacks a zero-check on :
- teamWalletAddress = address(newAddress) (#1006)
Check that the address is not zero.

Additional information: link

Reentrancy in Atomic.transferFrom(address,address,uint256) (#787-791):
External calls:
- _transfer(sender,recipient,amount) (#788)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1132-1139)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1118-1124)
External calls sending eth:
- _transfer(sender,recipient,amount) (#788)
- recipient.transfer(amount) (#1145)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1132-1139)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#789)
- _allowances[owner][spender] = amount (#1013)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Atomic.transferFrom(address,address,uint256) (#787-791):
External calls:
- _transfer(sender,recipient,amount) (#788)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1132-1139)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1118-1124)
External calls sending eth:
- _transfer(sender,recipient,amount) (#788)
- recipient.transfer(amount) (#1145)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1132-1139)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1014)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#789)
Apply the check-effects-interactions pattern.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#359-380) uses assembly
- INLINE ASM (#372-375)
Do not use evm assembly.

Additional information: link

SafeMath.mod(uint256,uint256,string) (#227-230) is never used and should be removed
Remove unused functions.

Additional information: link

Atomic._prevTotalLiqFee (#684) is set pre-construction with a non-constant function or state variable:
- _totalLiqFee
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

solc-0.8.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 Address._functionCallWithValue(address,bytes,uint256,string) (#359-380):
- (success,returndata) = target.call{value: weiValue}(data) (#363)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable Atomic._numTokensSellToAddToLiquidity (#706) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#240)" inContext (#233-243)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in Atomic.transferFrom(address,address,uint256) (#787-791):
External calls:
- _transfer(sender,recipient,amount) (#788)
- recipient.transfer(amount) (#1145)
External calls sending eth:
- _transfer(sender,recipient,amount) (#788)
- recipient.transfer(amount) (#1145)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1132-1139)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#789)
- _allowances[owner][spender] = amount (#1013)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1014)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#789)
Apply the check-effects-interactions pattern.

Additional information: link

Variable Atomic.reflectionFromToken(uint256,bool).rTransferAmount (#826) is too similar to Atomic._getValues(uint256).tTransferAmount (#931)
Prevent variables from having similar names.

Additional information: link

Atomic._tTotal (#671) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

isExcludedFromFee(address) should be declared external:
- Atomic.isExcludedFromFee(address) (#993-995)
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.


Twitter account link seems to be invalid


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


Token was delisted (assigned to inactive / untracked listing) from 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 scam / price dump / death


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


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank

Price for ATMC