ARCADE Token Logo

ARC [ARCADE] Token

About ARC

Listings

Token 2 years
white paper

The Ultimate GameFi Crypto
Arcade (ARC) will bring together unique tokenomics, gaming, reward programs and DeFi all into one coin

We’re aiming to build the largest crypto-gaming platform
Our first game is currently being developed and will be released after launch

Game-related NFTs with game utilisation will be available on our NFT Marketplace

ARC in-game staking will also be available soon

Social

Laser Scorebeta Last Audit: 17 December 2021

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

Arcade.addLiquidity(uint256,uint256) (contracts/Arcade.sol#670-683) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (contracts/Arcade.sol#675-682)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Arcade.swapAndSendToFee(uint256) (contracts/Arcade.sol#721-753) ignores return value by IERC20(BUSD).transfer(buyBackAddress,newBalanceBuyBack) (contracts/Arcade.sol#742)
Arcade.swapAndSendToFee(uint256) (contracts/Arcade.sol#721-753) ignores return value by IERC20(BUSD).transfer(devAddress,newBalanceDev) (contracts/Arcade.sol#745)
Arcade.swapAndSendToFee(uint256) (contracts/Arcade.sol#721-753) ignores return value by IERC20(BUSD).transfer(marketingAddress,newBalanceMarketing) (contracts/Arcade.sol#748)
Arcade.swapAndSendToFee(uint256) (contracts/Arcade.sol#721-753) ignores return value by IERC20(BUSD).transfer(charityAddress,newBalanceCharity) (contracts/Arcade.sol#751)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link

Arcade._isExcludedFromAntiBot (contracts/Arcade.sol#56) is never initialized. It is used in:
- Arcade._transfer(address,address,uint256) (contracts/Arcade.sol#514-645)
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


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

Arcade.updateMaxSellTransactionAmount(uint256) (contracts/Arcade.sol#314-324) contains a tautology or contradiction:
- require(bool,string)(maxSellTransactionAmount >= 0,Arcade: invalid maximum transaction amount) (contracts/Arcade.sol#318-321)
Fix the incorrect comparison by changing the value type or the comparison.

Additional information: link


Combination 2: Unchecked transfer + 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.

Reentrancy in Arcade._transfer(address,address,uint256) (contracts/Arcade.sol#514-645):
External calls:
- swapTokensForBusd(sellTokens) (contracts/Arcade.sol#566)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/Arcade.sol#712-718)
- swapAndSendDividends(dividends) (contracts/Arcade.sol#568)
- IERC20(BUSD).transfer(buyBackAddress,newBalanceBuyBack) (contracts/Arcade.sol#742)
- success = IERC20(BUSD).transfer(address(dividendTracker),dividends) (contracts/Arcade.sol#763-766)
- dividendTracker.distributeBUSDDividends(dividends) (contracts/Arcade.sol#769-771)
- IERC20(BUSD).transfer(devAddress,newBalanceDev) (contracts/Arcade.sol#745)
- IERC20(BUSD).transfer(marketingAddress,newBalanceMarketing) (contracts/Arcade.sol#748)
- IERC20(BUSD).transfer(charityAddress,newBalanceCharity) (contracts/Arcade.sol#751)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (contracts/Arcade.sol#589)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (contracts/ERC20.sol#221)
- _balances[recipient] = _balances[recipient].add(amount) (contracts/ERC20.sol#222)
- super._transfer(from,farmingAddress,farmingFees) (contracts/Arcade.sol#592)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (contracts/ERC20.sol#221)
- _balances[recipient] = _balances[recipient].add(amount) (contracts/ERC20.sol#222)
- super._burn(from,burnTokens) (contracts/Arcade.sol#596)
- _balances[account] = _balances[account].sub(amount,ERC20: burn amount exceeds balance) (contracts/ERC20.sol#261)
- super._transfer(from,to,amount) (contracts/Arcade.sol#599)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (contracts/ERC20.sol#221)
- _balances[recipient] = _balances[recipient].add(amount) (contracts/ERC20.sol#222)
- swapping = false (contracts/Arcade.sol#570)
Reentrancy in DividendPayingToken._withdrawDividendOfUser(address) (contracts/DividendPayingToken.sol#92-108):
External calls:
- success = IERC20(BUSD).transfer(user,_withdrawableDividend) (contracts/DividendPayingToken.sol#97)
State variables written after the call(s):
- withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend) (contracts/DividendPayingToken.sol#100)
Reentrancy in Arcade.updateDividendTracker(address) (contracts/Arcade.sol#203-230):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (contracts/Arcade.sol#222)
- newDividendTracker.excludeFromDividends(address(this)) (contracts/Arcade.sol#223)
- newDividendTracker.excludeFromDividends(owner()) (contracts/Arcade.sol#224)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (contracts/Arcade.sol#225)
State variables written after the call(s):
- dividendTracker = newDividendTracker (contracts/Arcade.sol#229)
Apply the check-effects-interactions pattern.

Additional information: link

Arcade._transfer(address,address,uint256).iterations (contracts/Arcade.sol#610) is a local variable never initialized
Arcade._transfer(address,address,uint256).claims (contracts/Arcade.sol#611) is a local variable never initialized
Arcade._transfer(address,address,uint256).lastProcessedIndex (contracts/Arcade.sol#612) 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

Arcade.claim() (contracts/Arcade.sol#502-504) ignores return value by dividendTracker.processAccount(address(msg.sender),false) (contracts/Arcade.sol#503)
Arcade._transfer(address,address,uint256) (contracts/Arcade.sol#514-645) ignores return value by dividendTracker.process(gas) (contracts/Arcade.sol#609-622)
Arcade.addLiquidity(uint256,uint256) (contracts/Arcade.sol#670-683) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (contracts/Arcade.sol#675-682)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendPayingToken.constructor(string,string,address)._name (contracts/DividendPayingToken.sol#53) shadows:
- ERC20._name (contracts/ERC20.sol#43) (state variable)
DividendPayingToken.constructor(string,string,address)._symbol (contracts/DividendPayingToken.sol#53) shadows:
- ERC20._symbol (contracts/ERC20.sol#44) (state variable)
Rename the local variables that shadow another component.

Additional information: link

Arcade.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256) (contracts/Arcade.sol#345-367) should emit an event for:
- _reflectionFee = reflectionFee (contracts/Arcade.sol#354)
- _buyBackFee = buybackFee (contracts/Arcade.sol#355)
- _charityFee = charityFee (contracts/Arcade.sol#356)
- _marketingFee = marketingFee (contracts/Arcade.sol#357)
- _devFee = devFee (contracts/Arcade.sol#358)
- _burnFee = burnFee (contracts/Arcade.sol#359)
- _farmingFee = farmingFee (contracts/Arcade.sol#360)
- _totalFees = reflectionFee + buybackFee + charityFee + marketingFee + devFee (contracts/Arcade.sol#361-366)
Arcade.setBotTransLimit(uint256,uint256) (contracts/Arcade.sol#375-382) should emit an event for:
- _botTransLimitTime = transTime (contracts/Arcade.sol#379)
- _botTransLimitCount = transCount (contracts/Arcade.sol#380)
Emit an event for critical parameter changes.

Additional information: link

Ownable.constructor().msgSender (contracts/Ownable.sol#16) lacks a zero-check on :
- _owner = msgSender (contracts/Ownable.sol#17)
DividendPayingToken.constructor(string,string,address)._busd (contracts/DividendPayingToken.sol#53) lacks a zero-check on :
- BUSD = _busd (contracts/DividendPayingToken.sol#55)
Arcade.constructor(address,address)._busd (contracts/Arcade.sol#148) lacks a zero-check on :
- BUSD = _busd (contracts/Arcade.sol#152)
Arcade.constructor(address,address)._uniswapV2Pair (contracts/Arcade.sol#156-157) lacks a zero-check on :
- uniswapV2Pair = _uniswapV2Pair (contracts/Arcade.sol#160)
Arcade.setFeeReceivers(address,address,address,address,address)._marketingFeeReceiver (contracts/Arcade.sol#332) lacks a zero-check on :
- marketingAddress = _marketingFeeReceiver (contracts/Arcade.sol#338)
Arcade.setFeeReceivers(address,address,address,address,address)._charityFeeReceiver (contracts/Arcade.sol#333) lacks a zero-check on :
- charityAddress = _charityFeeReceiver (contracts/Arcade.sol#339)
Arcade.setFeeReceivers(address,address,address,address,address)._devFeeReceiver (contracts/Arcade.sol#334) lacks a zero-check on :
- devAddress = _devFeeReceiver (contracts/Arcade.sol#340)
Arcade.setFeeReceivers(address,address,address,address,address)._buybackReceiver (contracts/Arcade.sol#335) lacks a zero-check on :
- buyBackAddress = _buybackReceiver (contracts/Arcade.sol#341)
Arcade.setFeeReceivers(address,address,address,address,address)._farmingReceiver (contracts/Arcade.sol#336) lacks a zero-check on :
- farmingAddress = _farmingReceiver (contracts/Arcade.sol#342)
Check that the address is not zero.

Additional information: link

Variable 'Arcade._transfer(address,address,uint256).lastProcessedIndex (contracts/Arcade.sol#612)' in Arcade._transfer(address,address,uint256) (contracts/Arcade.sol#514-645) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (contracts/Arcade.sol#614-621)
Variable 'Arcade._transfer(address,address,uint256).claims (contracts/Arcade.sol#611)' in Arcade._transfer(address,address,uint256) (contracts/Arcade.sol#514-645) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (contracts/Arcade.sol#614-621)
Variable 'Arcade._transfer(address,address,uint256).iterations (contracts/Arcade.sol#610)' in Arcade._transfer(address,address,uint256) (contracts/Arcade.sol#514-645) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (contracts/Arcade.sol#614-621)
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 Arcade._transfer(address,address,uint256) (contracts/Arcade.sol#514-645):
External calls:
- swapTokensForBusd(sellTokens) (contracts/Arcade.sol#566)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/Arcade.sol#712-718)
- swapAndSendDividends(dividends) (contracts/Arcade.sol#568)
- IERC20(BUSD).transfer(buyBackAddress,newBalanceBuyBack) (contracts/Arcade.sol#742)
- success = IERC20(BUSD).transfer(address(dividendTracker),dividends) (contracts/Arcade.sol#763-766)
- dividendTracker.distributeBUSDDividends(dividends) (contracts/Arcade.sol#769-771)
- IERC20(BUSD).transfer(devAddress,newBalanceDev) (contracts/Arcade.sol#745)
- IERC20(BUSD).transfer(marketingAddress,newBalanceMarketing) (contracts/Arcade.sol#748)
- IERC20(BUSD).transfer(charityAddress,newBalanceCharity) (contracts/Arcade.sol#751)
State variables written after the call(s):
- super._burn(from,burnTokens) (contracts/Arcade.sol#596)
- _totalSupply = _totalSupply.sub(amount) (contracts/ERC20.sol#262)
Reentrancy in Arcade._transfer(address,address,uint256) (contracts/Arcade.sol#514-645):
External calls:
- swapTokensForBusd(sellTokens) (contracts/Arcade.sol#566)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/Arcade.sol#712-718)
- swapAndSendDividends(dividends) (contracts/Arcade.sol#568)
- IERC20(BUSD).transfer(buyBackAddress,newBalanceBuyBack) (contracts/Arcade.sol#742)
- success = IERC20(BUSD).transfer(address(dividendTracker),dividends) (contracts/Arcade.sol#763-766)
- dividendTracker.distributeBUSDDividends(dividends) (contracts/Arcade.sol#769-771)
- IERC20(BUSD).transfer(devAddress,newBalanceDev) (contracts/Arcade.sol#745)
- IERC20(BUSD).transfer(marketingAddress,newBalanceMarketing) (contracts/Arcade.sol#748)
- IERC20(BUSD).transfer(charityAddress,newBalanceCharity) (contracts/Arcade.sol#751)
- dividendTracker.setBalance(address(from),balanceOf(from)) (contracts/Arcade.sol#601-603)
- dividendTracker.setBalance(address(to),balanceOf(to)) (contracts/Arcade.sol#604)
- dividendTracker.process(gas) (contracts/Arcade.sol#609-622)
State variables written after the call(s):
- _isBlackListed[from] = true (contracts/Arcade.sol#641)
- _transactTime[from].push(block.timestamp) (contracts/Arcade.sol#627)
- _transactTime[from][i - 1] = _transactTime[from][i] (contracts/Arcade.sol#632)
- _transactTime[from][_botTransLimitCount - 1] = block.timestamp (contracts/Arcade.sol#634)
Reentrancy in Arcade.constructor(address,address) (contracts/Arcade.sol#148-194):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (contracts/Arcade.sol#156-157)
State variables written after the call(s):
- buyBackAddress = 0x14719e7e6bEEDFf6f768307A223FEFBe6669b923 (contracts/Arcade.sol#162)
- charityAddress = 0x5eb7C4114525b597833022E21F9d6865a1476a59 (contracts/Arcade.sol#164)
- devAddress = 0x79b0b5aDEF94d3768D40e19d9D53406A8933c025 (contracts/Arcade.sol#165)
- farmingAddress = 0xEcC15277b86964db2454cc44CeB1cC90957402E6 (contracts/Arcade.sol#166)
- marketingAddress = 0x99Cc9963CcBED099900988bc9E2aacc66A7B724f (contracts/Arcade.sol#163)
- uniswapV2Pair = _uniswapV2Pair (contracts/Arcade.sol#160)
- uniswapV2Router = _uniswapV2Router (contracts/Arcade.sol#159)
Reentrancy in Arcade.constructor(address,address) (contracts/Arcade.sol#148-194):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (contracts/Arcade.sol#156-157)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (contracts/Arcade.sol#168)
- dividendTracker.excludeFromDividends(pair) (contracts/Arcade.sol#275)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (contracts/Arcade.sol#171)
- dividendTracker.excludeFromDividends(address(this)) (contracts/Arcade.sol#172)
- dividendTracker.excludeFromDividends(owner()) (contracts/Arcade.sol#173)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (contracts/Arcade.sol#174)
State variables written after the call(s):
- _mint(owner(),1 * (10 ** 9) * (10 ** 18)) (contracts/Arcade.sol#193)
- _balances[account] = _balances[account].add(amount) (contracts/ERC20.sol#241)
- excludeFromFees(liquidityWallet) (contracts/Arcade.sol#177)
- _isExcludedFromFees[account] = true (contracts/Arcade.sol#251)
- excludeFromFees(address(this)) (contracts/Arcade.sol#178)
- _isExcludedFromFees[account] = true (contracts/Arcade.sol#251)
- excludeFromFees(marketingAddress) (contracts/Arcade.sol#180)
- _isExcludedFromFees[account] = true (contracts/Arcade.sol#251)
- excludeFromFees(devAddress) (contracts/Arcade.sol#182)
- _isExcludedFromFees[account] = true (contracts/Arcade.sol#251)
- excludeFromFees(DEAD) (contracts/Arcade.sol#184)
- _isExcludedFromFees[account] = true (contracts/Arcade.sol#251)
- _mint(owner(),1 * (10 ** 9) * (10 ** 18)) (contracts/Arcade.sol#193)
- _totalSupply = _totalSupply.add(amount) (contracts/ERC20.sol#240)
- canTransferBeforeTradingIsEnabled[owner()] = true (contracts/Arcade.sol#187)
Reentrancy in ARCDividendTracker.processAccount(address,bool) (contracts/ARCDividendTracker.sol#262-276):
External calls:
- amount = _withdrawDividendOfUser(account) (contracts/ARCDividendTracker.sol#267)
- success = IERC20(BUSD).transfer(user,_withdrawableDividend) (contracts/DividendPayingToken.sol#97)
State variables written after the call(s):
- lastClaimTimes[account] = block.timestamp (contracts/ARCDividendTracker.sol#270)
Reentrancy in Arcade.swapAndLiquify(uint256) (contracts/Arcade.sol#647-668):
External calls:
- swapTokensForEth(half) (contracts/Arcade.sol#659)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/Arcade.sol#694-700)
- addLiquidity(otherHalf,newBalance) (contracts/Arcade.sol#665)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (contracts/Arcade.sol#675-682)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (contracts/Arcade.sol#665)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (contracts/Arcade.sol#675-682)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (contracts/Arcade.sol#665)
- _allowances[owner][spender] = amount (contracts/ERC20.sol#287)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Arcade._setAutomatedMarketMakerPair(address,bool) (contracts/Arcade.sol#267-279):
External calls:
- dividendTracker.excludeFromDividends(pair) (contracts/Arcade.sol#275)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (contracts/Arcade.sol#278)
Reentrancy in Arcade._transfer(address,address,uint256) (contracts/Arcade.sol#514-645):
External calls:
- swapTokensForBusd(sellTokens) (contracts/Arcade.sol#566)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/Arcade.sol#712-718)
- swapAndSendDividends(dividends) (contracts/Arcade.sol#568)
- IERC20(BUSD).transfer(buyBackAddress,newBalanceBuyBack) (contracts/Arcade.sol#742)
- success = IERC20(BUSD).transfer(address(dividendTracker),dividends) (contracts/Arcade.sol#763-766)
- dividendTracker.distributeBUSDDividends(dividends) (contracts/Arcade.sol#769-771)
- IERC20(BUSD).transfer(devAddress,newBalanceDev) (contracts/Arcade.sol#745)
- IERC20(BUSD).transfer(marketingAddress,newBalanceMarketing) (contracts/Arcade.sol#748)
- IERC20(BUSD).transfer(charityAddress,newBalanceCharity) (contracts/Arcade.sol#751)
Event emitted after the call(s):
- SentDividends(feeTokens,dividends) (contracts/Arcade.sol#770)
- swapAndSendDividends(dividends) (contracts/Arcade.sol#568)
- Transfer(account,address(0),amount) (contracts/ERC20.sol#263)
- super._burn(from,burnTokens) (contracts/Arcade.sol#596)
- Transfer(sender,recipient,amount) (contracts/ERC20.sol#223)
- super._transfer(from,to,amount) (contracts/Arcade.sol#599)
- Transfer(sender,recipient,amount) (contracts/ERC20.sol#223)
- super._transfer(from,address(this),fees) (contracts/Arcade.sol#589)
- Transfer(sender,recipient,amount) (contracts/ERC20.sol#223)
- super._transfer(from,farmingAddress,farmingFees) (contracts/Arcade.sol#592)
Reentrancy in Arcade._transfer(address,address,uint256) (contracts/Arcade.sol#514-645):
External calls:
- swapTokensForBusd(sellTokens) (contracts/Arcade.sol#566)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/Arcade.sol#712-718)
- swapAndSendDividends(dividends) (contracts/Arcade.sol#568)
- IERC20(BUSD).transfer(buyBackAddress,newBalanceBuyBack) (contracts/Arcade.sol#742)
- success = IERC20(BUSD).transfer(address(dividendTracker),dividends) (contracts/Arcade.sol#763-766)
- dividendTracker.distributeBUSDDividends(dividends) (contracts/Arcade.sol#769-771)
- IERC20(BUSD).transfer(devAddress,newBalanceDev) (contracts/Arcade.sol#745)
- IERC20(BUSD).transfer(marketingAddress,newBalanceMarketing) (contracts/Arcade.sol#748)
- IERC20(BUSD).transfer(charityAddress,newBalanceCharity) (contracts/Arcade.sol#751)
- dividendTracker.setBalance(address(from),balanceOf(from)) (contracts/Arcade.sol#601-603)
- dividendTracker.setBalance(address(to),balanceOf(to)) (contracts/Arcade.sol#604)
- dividendTracker.process(gas) (contracts/Arcade.sol#609-622)
Event emitted after the call(s):
- OnBlackList(from) (contracts/Arcade.sol#642)
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (contracts/Arcade.sol#614-621)
Reentrancy in Arcade.constructor(address,address) (contracts/Arcade.sol#148-194):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (contracts/Arcade.sol#156-157)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (contracts/Arcade.sol#168)
- dividendTracker.excludeFromDividends(pair) (contracts/Arcade.sol#275)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (contracts/Arcade.sol#278)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (contracts/Arcade.sol#168)
Reentrancy in Arcade.constructor(address,address) (contracts/Arcade.sol#148-194):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (contracts/Arcade.sol#156-157)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (contracts/Arcade.sol#168)
- dividendTracker.excludeFromDividends(pair) (contracts/Arcade.sol#275)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (contracts/Arcade.sol#171)
- dividendTracker.excludeFromDividends(address(this)) (contracts/Arcade.sol#172)
- dividendTracker.excludeFromDividends(owner()) (contracts/Arcade.sol#173)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (contracts/Arcade.sol#174)
Event emitted after the call(s):
- Transfer(address(0),account,amount) (contracts/ERC20.sol#242)
- _mint(owner(),1 * (10 ** 9) * (10 ** 18)) (contracts/Arcade.sol#193)
Reentrancy in ARCDividendTracker.processAccount(address,bool) (contracts/ARCDividendTracker.sol#262-276):
External calls:
- amount = _withdrawDividendOfUser(account) (contracts/ARCDividendTracker.sol#267)
- success = IERC20(BUSD).transfer(user,_withdrawableDividend) (contracts/DividendPayingToken.sol#97)
Event emitted after the call(s):
- Claim(account,amount,automatic) (contracts/ARCDividendTracker.sol#271)
Reentrancy in Arcade.processDividendTracker(uint256) (contracts/Arcade.sol#486-500):
External calls:
- (iterations,claims,lastProcessedIndex) = dividendTracker.process(gas) (contracts/Arcade.sol#487-491)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,false,gas,tx.origin) (contracts/Arcade.sol#492-499)
Reentrancy in Arcade.swapAndLiquify(uint256) (contracts/Arcade.sol#647-668):
External calls:
- swapTokensForEth(half) (contracts/Arcade.sol#659)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/Arcade.sol#694-700)
- addLiquidity(otherHalf,newBalance) (contracts/Arcade.sol#665)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (contracts/Arcade.sol#675-682)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (contracts/Arcade.sol#665)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (contracts/Arcade.sol#675-682)
Event emitted after the call(s):
- Approval(owner,spender,amount) (contracts/ERC20.sol#288)
- addLiquidity(otherHalf,newBalance) (contracts/Arcade.sol#665)
- Liquified(half,newBalance,otherHalf) (contracts/Arcade.sol#667)
Reentrancy in Arcade.swapAndSendDividends(uint256) (contracts/Arcade.sol#755-773):
External calls:
- swapAndSendToFee(feeTokens) (contracts/Arcade.sol#759)
- IERC20(BUSD).transfer(buyBackAddress,newBalanceBuyBack) (contracts/Arcade.sol#742)
- IERC20(BUSD).transfer(devAddress,newBalanceDev) (contracts/Arcade.sol#745)
- IERC20(BUSD).transfer(marketingAddress,newBalanceMarketing) (contracts/Arcade.sol#748)
- IERC20(BUSD).transfer(charityAddress,newBalanceCharity) (contracts/Arcade.sol#751)
- success = IERC20(BUSD).transfer(address(dividendTracker),dividends) (contracts/Arcade.sol#763-766)
- dividendTracker.distributeBUSDDividends(dividends) (contracts/Arcade.sol#769-771)
Event emitted after the call(s):
- SentDividends(feeTokens,dividends) (contracts/Arcade.sol#770)
Reentrancy in Arcade.updateDividendTracker(address) (contracts/Arcade.sol#203-230):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (contracts/Arcade.sol#222)
- newDividendTracker.excludeFromDividends(address(this)) (contracts/Arcade.sol#223)
- newDividendTracker.excludeFromDividends(owner()) (contracts/Arcade.sol#224)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (contracts/Arcade.sol#225)
Event emitted after the call(s):
- UpdatedDividendTracker(newAddress,address(dividendTracker)) (contracts/Arcade.sol#227)
Apply the check-effects-interactions pattern.

Additional information: link

ARCDividendTracker.getAccount(address) (contracts/ARCDividendTracker.sol#106-150) uses timestamp for comparisons
Dangerous comparisons:
- nextClaimTime > block.timestamp (contracts/ARCDividendTracker.sol#147-149)
ARCDividendTracker.canAutoClaim(uint256) (contracts/ARCDividendTracker.sol#183-188) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (contracts/ARCDividendTracker.sol#184)
- block.timestamp.sub(lastClaimTime) >= claimWait (contracts/ARCDividendTracker.sol#187)
Arcade._transfer(address,address,uint256) (contracts/Arcade.sol#514-645) uses timestamp for comparisons
Dangerous comparisons:
- _transactTime[from][0] > _botLimitTimestamp && _transactTime[from][_botTransLimitCount - 1] - _transactTime[from][0] < _botTransLimitTime (contracts/Arcade.sol#636-639)
Avoid relying on block.timestamp.

Additional information: link

Arcade.addLiquidity(uint256,uint256) (contracts/Arcade.sol#670-683) is never used and should be removed
Arcade.swapAndLiquify(uint256) (contracts/Arcade.sol#647-668) is never used and should be removed
Arcade.swapTokensForEth(uint256) (contracts/Arcade.sol#685-701) is never used and should be removed
Context._msgData() (contracts/Context.sol#20-22) is never used and should be removed
DividendPayingToken._transfer(address,address,uint256) (contracts/DividendPayingToken.sol#148-154) is never used and should be removed
SafeMath.mod(uint256,uint256) (contracts/SafeMath.sol#126-128) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (contracts/SafeMath.sol#142-145) is never used and should be removed
SafeMathInt.abs(int256) (contracts/SafeMathInt.sol#82-85) is never used and should be removed
SafeMathInt.div(int256,int256) (contracts/SafeMathInt.sol#53-59) is never used and should be removed
SafeMathInt.mul(int256,int256) (contracts/SafeMathInt.sol#41-48) is never used and should be removed
Remove unused functions.

Additional information: link

Arcade._totalFees (contracts/Arcade.sol#37-38) is set pre-construction with a non-constant function or state variable:
- _buyBackFee + _reflectionFee + _charityFee + _devFee + _marketingFee
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 version0.8.4 (contracts/ARCDividendTracker.sol#3) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6
Pragma version0.8.4 (contracts/Arcade.sol#3) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6
Pragma version0.8.4 (contracts/Context.sol#3) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6
Pragma version0.8.4 (contracts/DividendPayingToken.sol#3) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6
Pragma version0.8.4 (contracts/DividendPayingTokenInterface.sol#3) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6
Pragma version0.8.4 (contracts/DividendPayingTokenOptionalInterface.sol#3) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6
Pragma version0.8.4 (contracts/ERC20.sol#3) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6
Pragma version0.8.4 (contracts/IERC20.sol#3) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6
Pragma version0.8.4 (contracts/IERC20Metadata.sol#3) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6
Pragma version0.8.4 (contracts/IUniswapV2Factory.sol#3) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6
Pragma version0.8.4 (contracts/IUniswapV2Pair.sol#3) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6
Pragma version0.8.4 (contracts/IUniswapV2Router.sol#3) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6
Pragma version0.8.4 (contracts/IterableMapping.sol#2) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6
Pragma version0.8.4 (contracts/Ownable.sol#1) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6
Pragma version0.8.4 (contracts/SafeMath.sol#3) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6
Pragma version0.8.4 (contracts/SafeMathInt.sol#28) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6
Pragma version0.8.4 (contracts/SafeMathUint.sol#3) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6
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

Parameter ARCDividendTracker.getAccount(address)._account (contracts/ARCDividendTracker.sol#106) is not in mixedCase
Parameter Arcade.updateMaxSellTransactionAmount(uint256)._maxSellTransactionAmount (contracts/Arcade.sol#314) is not in mixedCase
Parameter Arcade.setFeeReceivers(address,address,address,address,address)._marketingFeeReceiver (contracts/Arcade.sol#332) is not in mixedCase
Parameter Arcade.setFeeReceivers(address,address,address,address,address)._charityFeeReceiver (contracts/Arcade.sol#333) is not in mixedCase
Parameter Arcade.setFeeReceivers(address,address,address,address,address)._devFeeReceiver (contracts/Arcade.sol#334) is not in mixedCase
Parameter Arcade.setFeeReceivers(address,address,address,address,address)._buybackReceiver (contracts/Arcade.sol#335) is not in mixedCase
Parameter Arcade.setFeeReceivers(address,address,address,address,address)._farmingReceiver (contracts/Arcade.sol#336) is not in mixedCase
Variable Arcade._burnFee (contracts/Arcade.sol#28) is not in mixedCase
Variable Arcade._farmingFee (contracts/Arcade.sol#29) is not in mixedCase
Variable Arcade._reflectionFee (contracts/Arcade.sol#31) is not in mixedCase
Variable Arcade._buyBackFee (contracts/Arcade.sol#32) is not in mixedCase
Variable Arcade._charityFee (contracts/Arcade.sol#33) is not in mixedCase
Variable Arcade._devFee (contracts/Arcade.sol#34) is not in mixedCase
Variable Arcade._marketingFee (contracts/Arcade.sol#35) is not in mixedCase
Variable Arcade._totalFees (contracts/Arcade.sol#37-38) is not in mixedCase
Variable Arcade._walletToWalletTax (contracts/Arcade.sol#41) is not in mixedCase
Variable Arcade.BUSD (contracts/Arcade.sol#46) is not in mixedCase
Variable Arcade.DEAD (contracts/Arcade.sol#47) is not in mixedCase
Variable Arcade._isBlackListed (contracts/Arcade.sol#57) is not in mixedCase
Variable Arcade._antiBotEnabled (contracts/Arcade.sol#58) is not in mixedCase
Variable Arcade._botLimitTimestamp (contracts/Arcade.sol#59) is not in mixedCase
Variable Arcade._botTransLimitTime (contracts/Arcade.sol#60) is not in mixedCase
Variable Arcade._botTransLimitCount (contracts/Arcade.sol#61) is not in mixedCase
Parameter DividendPayingToken.dividendOf(address)._owner (contracts/DividendPayingToken.sol#114) is not in mixedCase
Parameter DividendPayingToken.withdrawableDividendOf(address)._owner (contracts/DividendPayingToken.sol#121) is not in mixedCase
Parameter DividendPayingToken.withdrawnDividendOf(address)._owner (contracts/DividendPayingToken.sol#128) is not in mixedCase
Parameter DividendPayingToken.accumulativeDividendOf(address)._owner (contracts/DividendPayingToken.sol#138) is not in mixedCase
Variable DividendPayingToken.BUSD (contracts/DividendPayingToken.sol#25) is not in mixedCase
Constant DividendPayingToken.magnitude (contracts/DividendPayingToken.sol#30) is not in UPPER_CASE_WITH_UNDERSCORES
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (contracts/IUniswapV2Pair.sol#20) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (contracts/IUniswapV2Pair.sol#21) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (contracts/IUniswapV2Pair.sol#38) is not in mixedCase
Function IUniswapV2Router01.WETH() (contracts/IUniswapV2Router.sol#7) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (contracts/DividendPayingToken.sol#93) is too similar to ARCDividendTracker.getAccount(address).withdrawableDividends (contracts/ARCDividendTracker.sol#113)
Variable Arcade._farmingFee (contracts/Arcade.sol#29) is too similar to Arcade._transfer(address,address,uint256).farmingFees (contracts/Arcade.sol#591)
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (contracts/IUniswapV2Router.sol#12) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (contracts/IUniswapV2Router.sol#13)
Prevent variables from having similar names.

Additional information: link

ARCDividendTracker.getAccountAtIndex(uint256) (contracts/ARCDividendTracker.sol#152-181) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (contracts/ARCDividendTracker.sol#167-176)
Arcade.slitherConstructorVariables() (contracts/Arcade.sol#12-778) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (contracts/Arcade.sol#47)
Arcade.slitherConstructorVariables() (contracts/Arcade.sol#12-778) uses literals with too many digits:
- liquidateTokensAtAmount = 100000 * (10 ** 18) (contracts/Arcade.sol#67)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (contracts/SafeMathInt.sol#36) is never used in SafeMathInt (contracts/SafeMathInt.sol#34-92)
Remove unused state variables.

Additional information: link

Arcade.DEAD (contracts/Arcade.sol#47) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

name() should be declared external:
- ERC20.name() (contracts/ERC20.sol#63-65)
symbol() should be declared external:
- ERC20.symbol() (contracts/ERC20.sol#71-73)
decimals() should be declared external:
- ERC20.decimals() (contracts/ERC20.sol#88-90)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (contracts/ERC20.sol#114-117)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (contracts/ERC20.sol#122-124)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (contracts/ERC20.sol#133-136)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (contracts/ERC20.sol#151-159)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (contracts/ERC20.sol#173-176)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (contracts/ERC20.sol#192-195)
get(IterableMapping.Map,address) should be declared external:
- IterableMapping.get(IterableMapping.Map,address) (contracts/IterableMapping.sol#17-19)
getIndexOfKey(IterableMapping.Map,address) should be declared external:
- IterableMapping.getIndexOfKey(IterableMapping.Map,address) (contracts/IterableMapping.sol#21-26)
getKeyAtIndex(IterableMapping.Map,uint256) should be declared external:
- IterableMapping.getKeyAtIndex(IterableMapping.Map,uint256) (contracts/IterableMapping.sol#28-31)
size(IterableMapping.Map) should be declared external:
- IterableMapping.size(IterableMapping.Map) (contracts/IterableMapping.sol#33-35)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (contracts/Ownable.sol#43-46)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (contracts/Ownable.sol#52-56)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap volume is low.


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


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


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 number of swaps.


Twitter account link seems to be invalid


Telegram account has relatively few subscribers


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 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 scam / 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 ARC