Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Reentrancy in RACOOIN._transfer(address,address,uint256) (#805-841):
External calls:
- swapAndSendToFee(sellTokens) (#827)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#875-881)
External calls sending eth:
- swapAndSendToFee(sellTokens) (#827)
- address(_marketingWallet).transfer(ethToSend) (#848)
State variables written after the call(s):
- _tOwned[from] -= amount (#831)
- transferAmount = _getValues(amount,from) (#836)
- _tOwned[address(this)] += marketingFee + liquidityFee (#787)
- _tOwned[to] += transferAmount (#839)
- swapping = false (#828)
Apply the check-effects-interactions pattern.
Additional information: link
RACOOIN._transfer(address,address,uint256) (#805-841) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(_lastBuy[to] + _buyCooldown < block.timestamp,Must wait til after coooldown to buy) (#819)
RACOOIN.addLiquidity(uint256,uint256) (#885-901) uses timestamp for comparisons
Dangerous comparisons:
- ethAmount - ethFromLiquidity > 0 (#899)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#279-288) uses assembly
- INLINE ASM (#286)
Address._functionCallWithValue(address,bytes,uint256,string) (#372-393) uses assembly
- INLINE ASM (#385-388)
Do not use evm assembly.
Additional information: link
RACOOIN.allowance(address,address).owner (#746) shadows:
- Ownable.owner() (#425-427) (function)
RACOOIN._approve(address,address,uint256).owner (#797) shadows:
- Ownable.owner() (#425-427) (function)
Rename the local variables that shadow another component.
Additional information: link
Reentrancy in RACOOIN.constructor() (#703-719):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#708)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#714)
- _isExcludedFromFee[address(this)] = true (#715)
- _isExcludedFromFee[_marketingWallet] = true (#716)
- uniswapV2Pair = _uniswapV2Pair (#711)
- uniswapV2Router = _uniswapV2Router (#710)
Reentrancy in RACOOIN.swapAndLiquify() (#851-863):
External calls:
- newBalance = swapTokensForEth(half) (#856)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#875-881)
- addLiquidity(otherHalf,newBalance) (#860)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#890-897)
- (success) = recipient.call{value: amount}() (#310)
- address(_marketingWallet).sendValue(ethAmount - ethFromLiquidity) (#900)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#860)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#890-897)
- (success) = recipient.call{value: amount}() (#310)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#860)
- _allowances[owner][spender] = amount (#801)
Reentrancy in RACOOIN.transferFrom(address,address,uint256) (#755-759):
External calls:
- _transfer(sender,recipient,amount) (#756)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#875-881)
External calls sending eth:
- _transfer(sender,recipient,amount) (#756)
- address(_marketingWallet).transfer(ethToSend) (#848)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#757)
- _allowances[owner][spender] = amount (#801)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in RACOOIN._transfer(address,address,uint256) (#805-841):
External calls:
- swapAndSendToFee(sellTokens) (#827)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#875-881)
External calls sending eth:
- swapAndSendToFee(sellTokens) (#827)
- address(_marketingWallet).transfer(ethToSend) (#848)
Event emitted after the call(s):
- Transfer(from,address(this),marketingFee + liquidityFee) (#788)
- transferAmount = _getValues(amount,from) (#836)
- Transfer(from,to,transferAmount) (#840)
Reentrancy in RACOOIN.constructor() (#703-719):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#708)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#718)
Reentrancy in RACOOIN.swapAndLiquify() (#851-863):
External calls:
- newBalance = swapTokensForEth(half) (#856)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#875-881)
- addLiquidity(otherHalf,newBalance) (#860)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#890-897)
- (success) = recipient.call{value: amount}() (#310)
- address(_marketingWallet).sendValue(ethAmount - ethFromLiquidity) (#900)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#860)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#890-897)
- (success) = recipient.call{value: amount}() (#310)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#802)
- addLiquidity(otherHalf,newBalance) (#860)
- SwapAndLiquify(half,newBalance,otherHalf) (#861)
Reentrancy in RACOOIN.transferFrom(address,address,uint256) (#755-759):
External calls:
- _transfer(sender,recipient,amount) (#756)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#875-881)
External calls sending eth:
- _transfer(sender,recipient,amount) (#756)
- address(_marketingWallet).transfer(ethToSend) (#848)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#802)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#757)
Apply the check-effects-interactions pattern.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#372-393) is never used and should be removed
Address.functionCall(address,bytes) (#332-334) is never used and should be removed
Address.functionCall(address,bytes,string) (#342-344) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#357-359) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#367-370) is never used and should be removed
Address.isContract(address) (#279-288) is never used and should be removed
Address.sendValue(address,uint256) (#306-312) is never used and should be removed
Context._msgData() (#251-254) is never used and should be removed
RACOOIN.addLiquidity(uint256,uint256) (#885-901) is never used and should be removed
RACOOIN.swapAndLiquify() (#851-863) is never used and should be removed
SafeMath.add(uint256,uint256) (#114-119) is never used and should be removed
SafeMath.div(uint256,uint256) (#188-190) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#204-210) is never used and should be removed
SafeMath.mod(uint256,uint256) (#224-226) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#240-243) is never used and should be removed
SafeMath.mul(uint256,uint256) (#162-174) is never used and should be removed
SafeMath.sub(uint256,uint256) (#131-133) is never used and should be removed
SafeMath.sub(uint256,uint256,string) (#145-150) is never used and should be removed
Remove unused functions.
Additional information: link
Low level call in Address.sendValue(address,uint256) (#306-312):
- (success) = recipient.call{value: amount}() (#310)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#372-393):
- (success,returndata) = target.call{value: weiValue}(data) (#376)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#496) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#497) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#514) is not in mixedCase
Function IUniswapV2Router01.WETH() (#536) is not in mixedCase
Variable RACOOIN._maxTxAmount (#686) is not in mixedCase
Constant RACOOIN._name (#688) is not in UPPER_CASE_WITH_UNDERSCORES
Constant RACOOIN._symbol (#689) is not in UPPER_CASE_WITH_UNDERSCORES
Constant RACOOIN._decimals (#690) is not in UPPER_CASE_WITH_UNDERSCORES
Variable RACOOIN._marketingFee (#692) is not in mixedCase
Variable RACOOIN._liquidityFee (#693) is not in mixedCase
Variable RACOOIN._marketingWallet (#694) is not in mixedCase
Variable RACOOIN._buyCooldown (#696) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#252)" inContext (#246-255)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in RACOOIN._transfer(address,address,uint256) (#805-841):
External calls:
- swapAndSendToFee(sellTokens) (#827)
- address(_marketingWallet).transfer(ethToSend) (#848)
State variables written after the call(s):
- _tOwned[from] -= amount (#831)
- transferAmount = _getValues(amount,from) (#836)
- _tOwned[address(this)] += marketingFee + liquidityFee (#787)
- _tOwned[to] += transferAmount (#839)
- swapping = false (#828)
Event emitted after the call(s):
- Transfer(from,address(this),marketingFee + liquidityFee) (#788)
- transferAmount = _getValues(amount,from) (#836)
- Transfer(from,to,transferAmount) (#840)
Reentrancy in RACOOIN.transferFrom(address,address,uint256) (#755-759):
External calls:
- _transfer(sender,recipient,amount) (#756)
- address(_marketingWallet).transfer(ethToSend) (#848)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#757)
- _allowances[owner][spender] = amount (#801)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#802)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#757)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#541) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#542)
Prevent variables from having similar names.
Additional information: link
Address.sendValue(address,uint256) (#306-312) uses literals with too many digits:
- recipient = address(0x000000000000000000000000000000000000dEaD) (#308)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
RACOOIN._buyCooldown (#696) should be constant
RACOOIN._liquidityFee (#693) should be constant
RACOOIN._marketingFee (#692) should be constant
RACOOIN._marketingWallet (#694) should be constant
RACOOIN._maxTxAmount (#686) should be constant
RACOOIN._tTotal (#685) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#444-447)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#453-457)
name() should be declared external:
- RACOOIN.name() (#721-723)
symbol() should be declared external:
- RACOOIN.symbol() (#725-727)
decimals() should be declared external:
- RACOOIN.decimals() (#729-731)
totalSupply() should be declared external:
- RACOOIN.totalSupply() (#733-735)
transfer(address,uint256) should be declared external:
- RACOOIN.transfer(address,uint256) (#741-744)
allowance(address,address) should be declared external:
- RACOOIN.allowance(address,address) (#746-748)
approve(address,uint256) should be declared external:
- RACOOIN.approve(address,uint256) (#750-753)
transferFrom(address,address,uint256) should be declared external:
- RACOOIN.transferFrom(address,address,uint256) (#755-759)
increaseAllowance(address,uint256) should be declared external:
- RACOOIN.increaseAllowance(address,uint256) (#761-764)
decreaseAllowance(address,uint256) should be declared external:
- RACOOIN.decreaseAllowance(address,uint256) (#766-769)
excludeFromFee(address) should be declared external:
- RACOOIN.excludeFromFee(address) (#771-773)
includeInFee(address) should be declared external:
- RACOOIN.includeInFee(address) (#775-777)
isExcludedFromFee(address) should be declared external:
- RACOOIN.isExcludedFromFee(address) (#793-795)
Use the external attribute for functions never called from the contract.
Additional information: link
Unable to find website, listings and other project-related information
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Unable to find Telegram and Twitter accounts