BikeNrun is the first bike-to-earn community-based platform, a web3 fitness application that encourages users to have a healthy lifestyle and earn rewards while exercising.
BikeNrun is the first MoveToEarn project in Indonesia with the real communities inside and supported by national athlete as our Brand ambassador.
✅ AUDIT
✅ KYC & DOXXED TEAM
✅ WELL DESIGNED ROADMAP
✅ BRAND AMBASSADOR INDONESIAN NATIONAL TEAM ATHLETE
✅ PROMOTING HEALTHY LIFESTYLE
✅ EARN REWARDS WHILE EXERCISING
✅ Web3 FITNESS APP
BikeNRun.addLiquidity(uint256,uint256) (contracts/BikeNRun.sol#1612-1625) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_node,block.timestamp) (contracts/BikeNRun.sol#1616-1623)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in BikeNRun._transfer(address,address,uint256) (contracts/BikeNRun.sol#1454-1537):
External calls:
- swapAndSendToFee(AmountMarketingFee) (contracts/BikeNRun.sol#1478)
- IERC20(rewardToken).transfer(_marketingWalletAddress,newBalance) (contracts/BikeNRun.sol#1543)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/BikeNRun.sol#1592-1598)
- swapAndLiquify(AmountLiquidityFee) (contracts/BikeNRun.sol#1479)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_node,block.timestamp) (contracts/BikeNRun.sol#1616-1623)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/BikeNRun.sol#1575-1581)
- swapAndSendDividends(AmountTokenRewardsFee) (contracts/BikeNRun.sol#1480)
- success = IERC20(rewardToken).transfer(address(dividendTracker),dividends) (contracts/BikeNRun.sol#1631)
- dividendTracker.distributeCAKEDividends(dividends) (contracts/BikeNRun.sol#1633)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/BikeNRun.sol#1592-1598)
External calls sending eth:
- swapAndLiquify(AmountLiquidityFee) (contracts/BikeNRun.sol#1479)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_node,block.timestamp) (contracts/BikeNRun.sol#1616-1623)
State variables written after the call(s):
- AmountLiquidityFee += LFee (contracts/BikeNRun.sol#1499)
- AmountLiquidityFee += LFee (contracts/BikeNRun.sol#1509)
- AmountMarketingFee += MFee (contracts/BikeNRun.sol#1503)
- AmountMarketingFee += MFee (contracts/BikeNRun.sol#1513)
- AmountTokenRewardsFee += RFee (contracts/BikeNRun.sol#1501)
- AmountTokenRewardsFee += RFee (contracts/BikeNRun.sol#1511)
- super._transfer(from,deadWallet,DFee) (contracts/BikeNRun.sol#1518)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (contracts/BikeNRun.sol#443)
- _balances[recipient] = _balances[recipient].add(amount) (contracts/BikeNRun.sol#444)
- super._transfer(from,address(this),fees.sub(DFee)) (contracts/BikeNRun.sol#1519)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (contracts/BikeNRun.sol#443)
- _balances[recipient] = _balances[recipient].add(amount) (contracts/BikeNRun.sol#444)
- super._transfer(from,to,amount) (contracts/BikeNRun.sol#1522)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (contracts/BikeNRun.sol#443)
- _balances[recipient] = _balances[recipient].add(amount) (contracts/BikeNRun.sol#444)
- swapping = false (contracts/BikeNRun.sol#1481)
Apply the check-effects-interactions pattern.
Additional information: link
BikeNRun.swapAndSendToFee(uint256) (contracts/BikeNRun.sol#1539-1545) ignores return value by IERC20(rewardToken).transfer(_marketingWalletAddress,newBalance) (contracts/BikeNRun.sol#1543)
BikeNRun.withdrawBEP20(address,uint256) (contracts/BikeNRun.sol#1607-1610) ignores return value by IERC20(tokenAddress).transfer(msg.sender,tokenAmount) (contracts/BikeNRun.sol#1609)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
Combination 1: Reentrancy vulnerabilities + 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.
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.
Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
Contract ownership is not renounced (belongs to a wallet)
Reentrancy in DividendPayingToken._withdrawDividendOfUser(address) (contracts/BikeNRun.sol#818-833):
External calls:
- success = IERC20(REWARD_TOKEN).transfer(user,_withdrawableDividend) (contracts/BikeNRun.sol#823)
State variables written after the call(s):
- withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend) (contracts/BikeNRun.sol#826)
Apply the check-effects-interactions pattern.
Additional information: link
BikeNRun._transfer(address,address,uint256).fees (contracts/BikeNRun.sol#1492) is a local variable never initialized
BikeNRun._transfer(address,address,uint256).iterations (contracts/BikeNRun.sol#1530) is a local variable never initialized
BikeNRun._transfer(address,address,uint256).DFee (contracts/BikeNRun.sol#1496) is a local variable never initialized
BikeNRun._transfer(address,address,uint256).claims (contracts/BikeNRun.sol#1530) is a local variable never initialized
BikeNRun._transfer(address,address,uint256).lastProcessedIndex (contracts/BikeNRun.sol#1530) 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
BikeNRun.addLiquidity(uint256,uint256) (contracts/BikeNRun.sol#1612-1625) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_node,block.timestamp) (contracts/BikeNRun.sol#1616-1623)
BikeNRun._transfer(address,address,uint256) (contracts/BikeNRun.sol#1454-1537) ignores return value by dividendTracker.process(gas) (contracts/BikeNRun.sol#1530-1535)
BikeNRun.claim() (contracts/BikeNRun.sol#1407-1409) ignores return value by dividendTracker.processAccount(address(msg.sender),false) (contracts/BikeNRun.sol#1408)
Ensure that all the return values of the function calls are used.
Additional information: link
Clones.cloneDeterministic(address,bytes32) (contracts/BikeNRun.sol#216-225) uses assembly
- INLINE ASM (contracts/BikeNRun.sol#217-223)
Clones.predictDeterministicAddress(address,bytes32,address) (contracts/BikeNRun.sol#230-245) uses assembly
- INLINE ASM (contracts/BikeNRun.sol#235-244)
Clones.clone(address) (contracts/BikeNRun.sol#198-207) uses assembly
- INLINE ASM (contracts/BikeNRun.sol#199-205)
Do not use evm assembly.
Additional information: link
BikeNRun.constructor(string,string,uint256,address[4],uint256[4],uint256[4],uint256).totalSupply (contracts/BikeNRun.sol#1249) shadows:
- ERC20.totalSupply() (contracts/BikeNRun.sol#318-320) (function)
- IERC20.totalSupply() (contracts/BikeNRun.sol#49) (function)
DividendPayingToken.constructor(string,string,address)._name (contracts/BikeNRun.sol#794) shadows:
- ERC20._name (contracts/BikeNRun.sol#266) (state variable)
DividendPayingToken.accumulativeDividendOf(address)._owner (contracts/BikeNRun.sol#861) shadows:
- Ownable._owner (contracts/BikeNRun.sol#15) (state variable)
DividendPayingToken.constructor(string,string,address)._symbol (contracts/BikeNRun.sol#794) shadows:
- ERC20._symbol (contracts/BikeNRun.sol#267) (state variable)
DividendPayingToken.withdrawableDividendOf(address)._owner (contracts/BikeNRun.sol#845) shadows:
- Ownable._owner (contracts/BikeNRun.sol#15) (state variable)
DividendPayingToken.dividendOf(address)._owner (contracts/BikeNRun.sol#838) shadows:
- Ownable._owner (contracts/BikeNRun.sol#15) (state variable)
DividendPayingToken.withdrawnDividendOf(address)._owner (contracts/BikeNRun.sol#852) shadows:
- Ownable._owner (contracts/BikeNRun.sol#15) (state variable)
Rename the local variables that shadow another component.
Additional information: link
BikeNRun.setSelTaxes(uint256,uint256,uint256,uint256) (contracts/BikeNRun.sol#1446-1452) should emit an event for:
- sellTokenRewardsFee = rewardsFee (contracts/BikeNRun.sol#1448)
- sellLiquidityFee = liquidity (contracts/BikeNRun.sol#1449)
- sellMarketingFee = marketingFee (contracts/BikeNRun.sol#1450)
- sellDeadFee = deadFee (contracts/BikeNRun.sol#1451)
BikeNRun.setBuyTaxes(uint256,uint256,uint256,uint256) (contracts/BikeNRun.sol#1437-1444) should emit an event for:
- buyTokenRewardsFee = rewardsFee (contracts/BikeNRun.sol#1439)
- buyLiquidityFee = liquidity (contracts/BikeNRun.sol#1440)
- buyMarketingFee = marketingFee (contracts/BikeNRun.sol#1441)
- buyDeadFee = deadFee (contracts/BikeNRun.sol#1442)
BikeNRun.setSwapTokensAtAmount(uint256) (contracts/BikeNRun.sol#1429-1431) should emit an event for:
- swapTokensAtAmount = amount (contracts/BikeNRun.sol#1430)
Emit an event for critical parameter changes.
Additional information: link
DividendPayingToken.constructor(string,string,address)._rewardTokenAddress (contracts/BikeNRun.sol#794) lacks a zero-check on :
- REWARD_TOKEN = _rewardTokenAddress (contracts/BikeNRun.sol#795)
BikeNRun.updateUniswapV2Router(address)._uniswapV2Pair (contracts/BikeNRun.sol#1294-1295) lacks a zero-check on :
- uniswapV2Pair = _uniswapV2Pair (contracts/BikeNRun.sol#1296)
BikeNRun.setMarketingWallet(address).wallet (contracts/BikeNRun.sol#1314) lacks a zero-check on :
- _marketingWalletAddress = wallet (contracts/BikeNRun.sol#1315)
BikeNRun.constructor(string,string,uint256,address[4],uint256[4],uint256[4],uint256)._uniswapV2Pair (contracts/BikeNRun.sol#1259-1260) lacks a zero-check on :
- uniswapV2Pair = _uniswapV2Pair (contracts/BikeNRun.sol#1262)
BikeNRun.setDeadWallet(address).addr (contracts/BikeNRun.sol#1433) lacks a zero-check on :
- deadWallet = addr (contracts/BikeNRun.sol#1434)
Check that the address is not zero.
Additional information: link
DividendPayingToken._withdrawDividendOfUser(address) (contracts/BikeNRun.sol#818-833) has external calls inside a loop: success = IERC20(REWARD_TOKEN).transfer(user,_withdrawableDividend) (contracts/BikeNRun.sol#823)
Favor pull over push strategy for external calls.
Additional information: link
Variable 'BikeNRun._transfer(address,address,uint256).claims (contracts/BikeNRun.sol#1530)' in BikeNRun._transfer(address,address,uint256) (contracts/BikeNRun.sol#1454-1537) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (contracts/BikeNRun.sol#1531)
Variable 'BikeNRun._transfer(address,address,uint256).lastProcessedIndex (contracts/BikeNRun.sol#1530)' in BikeNRun._transfer(address,address,uint256) (contracts/BikeNRun.sol#1454-1537) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (contracts/BikeNRun.sol#1531)
Variable 'BikeNRun._transfer(address,address,uint256).iterations (contracts/BikeNRun.sol#1530)' in BikeNRun._transfer(address,address,uint256) (contracts/BikeNRun.sol#1454-1537) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (contracts/BikeNRun.sol#1531)
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 BikeNRun.swapAndSendToFee(uint256) (contracts/BikeNRun.sol#1539-1545):
External calls:
- swapTokensForCake(tokens) (contracts/BikeNRun.sol#1541)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/BikeNRun.sol#1592-1598)
- IERC20(rewardToken).transfer(_marketingWalletAddress,newBalance) (contracts/BikeNRun.sol#1543)
State variables written after the call(s):
- AmountMarketingFee = AmountMarketingFee - tokens (contracts/BikeNRun.sol#1544)
Reentrancy in BikeNRun.swapManual() (contracts/BikeNRun.sol#1419-1427):
External calls:
- swapAndLiquify(AmountLiquidityFee) (contracts/BikeNRun.sol#1423)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_node,block.timestamp) (contracts/BikeNRun.sol#1616-1623)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/BikeNRun.sol#1575-1581)
- swapAndSendDividends(AmountTokenRewardsFee) (contracts/BikeNRun.sol#1424)
- success = IERC20(rewardToken).transfer(address(dividendTracker),dividends) (contracts/BikeNRun.sol#1631)
- dividendTracker.distributeCAKEDividends(dividends) (contracts/BikeNRun.sol#1633)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/BikeNRun.sol#1592-1598)
- swapAndSendToFee(AmountMarketingFee) (contracts/BikeNRun.sol#1425)
- IERC20(rewardToken).transfer(_marketingWalletAddress,newBalance) (contracts/BikeNRun.sol#1543)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/BikeNRun.sol#1592-1598)
External calls sending eth:
- swapAndLiquify(AmountLiquidityFee) (contracts/BikeNRun.sol#1423)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_node,block.timestamp) (contracts/BikeNRun.sol#1616-1623)
State variables written after the call(s):
- swapAndSendToFee(AmountMarketingFee) (contracts/BikeNRun.sol#1425)
- _allowances[owner][spender] = amount (contracts/BikeNRun.sol#507)
- swapping = false (contracts/BikeNRun.sol#1426)
Reentrancy in BikeNRun.swapManual() (contracts/BikeNRun.sol#1419-1427):
External calls:
- swapAndLiquify(AmountLiquidityFee) (contracts/BikeNRun.sol#1423)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_node,block.timestamp) (contracts/BikeNRun.sol#1616-1623)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/BikeNRun.sol#1575-1581)
- swapAndSendDividends(AmountTokenRewardsFee) (contracts/BikeNRun.sol#1424)
- success = IERC20(rewardToken).transfer(address(dividendTracker),dividends) (contracts/BikeNRun.sol#1631)
- dividendTracker.distributeCAKEDividends(dividends) (contracts/BikeNRun.sol#1633)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/BikeNRun.sol#1592-1598)
External calls sending eth:
- swapAndLiquify(AmountLiquidityFee) (contracts/BikeNRun.sol#1423)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_node,block.timestamp) (contracts/BikeNRun.sol#1616-1623)
State variables written after the call(s):
- swapAndSendDividends(AmountTokenRewardsFee) (contracts/BikeNRun.sol#1424)
- _allowances[owner][spender] = amount (contracts/BikeNRun.sol#507)
Reentrancy in BikeNRun.updateUniswapV2Router(address) (contracts/BikeNRun.sol#1290-1297):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (contracts/BikeNRun.sol#1294-1295)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (contracts/BikeNRun.sol#1296)
Reentrancy in BikeNRun._transfer(address,address,uint256) (contracts/BikeNRun.sol#1454-1537):
External calls:
- swapAndSendToFee(AmountMarketingFee) (contracts/BikeNRun.sol#1478)
- IERC20(rewardToken).transfer(_marketingWalletAddress,newBalance) (contracts/BikeNRun.sol#1543)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/BikeNRun.sol#1592-1598)
- swapAndLiquify(AmountLiquidityFee) (contracts/BikeNRun.sol#1479)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_node,block.timestamp) (contracts/BikeNRun.sol#1616-1623)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/BikeNRun.sol#1575-1581)
- swapAndSendDividends(AmountTokenRewardsFee) (contracts/BikeNRun.sol#1480)
- success = IERC20(rewardToken).transfer(address(dividendTracker),dividends) (contracts/BikeNRun.sol#1631)
- dividendTracker.distributeCAKEDividends(dividends) (contracts/BikeNRun.sol#1633)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/BikeNRun.sol#1592-1598)
External calls sending eth:
- swapAndLiquify(AmountLiquidityFee) (contracts/BikeNRun.sol#1479)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_node,block.timestamp) (contracts/BikeNRun.sol#1616-1623)
State variables written after the call(s):
- swapAndSendDividends(AmountTokenRewardsFee) (contracts/BikeNRun.sol#1480)
- _allowances[owner][spender] = amount (contracts/BikeNRun.sol#507)
Reentrancy in BikeNRun.swapAndSendDividends(uint256) (contracts/BikeNRun.sol#1627-1636):
External calls:
- swapTokensForCake(tokens) (contracts/BikeNRun.sol#1628)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/BikeNRun.sol#1592-1598)
State variables written after the call(s):
- AmountTokenRewardsFee = AmountTokenRewardsFee - tokens (contracts/BikeNRun.sol#1629)
Reentrancy in BikeNRun.swapAndLiquify(uint256) (contracts/BikeNRun.sol#1547-1564):
External calls:
- swapTokensForEth(half) (contracts/BikeNRun.sol#1555)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/BikeNRun.sol#1575-1581)
- addLiquidity(otherHalf,newBalance) (contracts/BikeNRun.sol#1561)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_node,block.timestamp) (contracts/BikeNRun.sol#1616-1623)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (contracts/BikeNRun.sol#1561)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_node,block.timestamp) (contracts/BikeNRun.sol#1616-1623)
State variables written after the call(s):
- AmountLiquidityFee = AmountLiquidityFee - tokens (contracts/BikeNRun.sol#1562)
- addLiquidity(otherHalf,newBalance) (contracts/BikeNRun.sol#1561)
- _allowances[owner][spender] = amount (contracts/BikeNRun.sol#507)
Reentrancy in BikeNRun._transfer(address,address,uint256) (contracts/BikeNRun.sol#1454-1537):
External calls:
- swapAndSendToFee(AmountMarketingFee) (contracts/BikeNRun.sol#1478)
- IERC20(rewardToken).transfer(_marketingWalletAddress,newBalance) (contracts/BikeNRun.sol#1543)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/BikeNRun.sol#1592-1598)
- swapAndLiquify(AmountLiquidityFee) (contracts/BikeNRun.sol#1479)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_node,block.timestamp) (contracts/BikeNRun.sol#1616-1623)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/BikeNRun.sol#1575-1581)
External calls sending eth:
- swapAndLiquify(AmountLiquidityFee) (contracts/BikeNRun.sol#1479)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_node,block.timestamp) (contracts/BikeNRun.sol#1616-1623)
State variables written after the call(s):
- swapAndLiquify(AmountLiquidityFee) (contracts/BikeNRun.sol#1479)
- _allowances[owner][spender] = amount (contracts/BikeNRun.sol#507)
Reentrancy in TokenDividendTracker.processAccount(address,bool) (contracts/BikeNRun.sol#1098-1107):
External calls:
- amount = _withdrawDividendOfUser(account) (contracts/BikeNRun.sol#1099)
- success = IERC20(REWARD_TOKEN).transfer(user,_withdrawableDividend) (contracts/BikeNRun.sol#823)
State variables written after the call(s):
- lastClaimTimes[account] = block.timestamp (contracts/BikeNRun.sol#1102)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in BikeNRun.swapManual() (contracts/BikeNRun.sol#1419-1427):
External calls:
- swapAndLiquify(AmountLiquidityFee) (contracts/BikeNRun.sol#1423)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_node,block.timestamp) (contracts/BikeNRun.sol#1616-1623)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/BikeNRun.sol#1575-1581)
- swapAndSendDividends(AmountTokenRewardsFee) (contracts/BikeNRun.sol#1424)
- success = IERC20(rewardToken).transfer(address(dividendTracker),dividends) (contracts/BikeNRun.sol#1631)
- dividendTracker.distributeCAKEDividends(dividends) (contracts/BikeNRun.sol#1633)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/BikeNRun.sol#1592-1598)
External calls sending eth:
- swapAndLiquify(AmountLiquidityFee) (contracts/BikeNRun.sol#1423)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_node,block.timestamp) (contracts/BikeNRun.sol#1616-1623)
Event emitted after the call(s):
- Approval(owner,spender,amount) (contracts/BikeNRun.sol#508)
- swapAndSendDividends(AmountTokenRewardsFee) (contracts/BikeNRun.sol#1424)
- SendDividends(tokens,dividends) (contracts/BikeNRun.sol#1634)
- swapAndSendDividends(AmountTokenRewardsFee) (contracts/BikeNRun.sol#1424)
Reentrancy in BikeNRun.swapAndSendDividends(uint256) (contracts/BikeNRun.sol#1627-1636):
External calls:
- swapTokensForCake(tokens) (contracts/BikeNRun.sol#1628)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/BikeNRun.sol#1592-1598)
- success = IERC20(rewardToken).transfer(address(dividendTracker),dividends) (contracts/BikeNRun.sol#1631)
- dividendTracker.distributeCAKEDividends(dividends) (contracts/BikeNRun.sol#1633)
Event emitted after the call(s):
- SendDividends(tokens,dividends) (contracts/BikeNRun.sol#1634)
Reentrancy in TokenDividendTracker.processAccount(address,bool) (contracts/BikeNRun.sol#1098-1107):
External calls:
- amount = _withdrawDividendOfUser(account) (contracts/BikeNRun.sol#1099)
- success = IERC20(REWARD_TOKEN).transfer(user,_withdrawableDividend) (contracts/BikeNRun.sol#823)
Event emitted after the call(s):
- Claim(account,amount,automatic) (contracts/BikeNRun.sol#1103)
Reentrancy in BikeNRun._transfer(address,address,uint256) (contracts/BikeNRun.sol#1454-1537):
External calls:
- swapAndSendToFee(AmountMarketingFee) (contracts/BikeNRun.sol#1478)
- IERC20(rewardToken).transfer(_marketingWalletAddress,newBalance) (contracts/BikeNRun.sol#1543)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/BikeNRun.sol#1592-1598)
- swapAndLiquify(AmountLiquidityFee) (contracts/BikeNRun.sol#1479)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_node,block.timestamp) (contracts/BikeNRun.sol#1616-1623)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/BikeNRun.sol#1575-1581)
External calls sending eth:
- swapAndLiquify(AmountLiquidityFee) (contracts/BikeNRun.sol#1479)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_node,block.timestamp) (contracts/BikeNRun.sol#1616-1623)
Event emitted after the call(s):
- Approval(owner,spender,amount) (contracts/BikeNRun.sol#508)
- swapAndLiquify(AmountLiquidityFee) (contracts/BikeNRun.sol#1479)
- SwapAndLiquify(half,newBalance,otherHalf) (contracts/BikeNRun.sol#1563)
- swapAndLiquify(AmountLiquidityFee) (contracts/BikeNRun.sol#1479)
Reentrancy in BikeNRun.swapManual() (contracts/BikeNRun.sol#1419-1427):
External calls:
- swapAndLiquify(AmountLiquidityFee) (contracts/BikeNRun.sol#1423)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_node,block.timestamp) (contracts/BikeNRun.sol#1616-1623)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/BikeNRun.sol#1575-1581)
- swapAndSendDividends(AmountTokenRewardsFee) (contracts/BikeNRun.sol#1424)
- success = IERC20(rewardToken).transfer(address(dividendTracker),dividends) (contracts/BikeNRun.sol#1631)
- dividendTracker.distributeCAKEDividends(dividends) (contracts/BikeNRun.sol#1633)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/BikeNRun.sol#1592-1598)
- swapAndSendToFee(AmountMarketingFee) (contracts/BikeNRun.sol#1425)
- IERC20(rewardToken).transfer(_marketingWalletAddress,newBalance) (contracts/BikeNRun.sol#1543)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/BikeNRun.sol#1592-1598)
External calls sending eth:
- swapAndLiquify(AmountLiquidityFee) (contracts/BikeNRun.sol#1423)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_node,block.timestamp) (contracts/BikeNRun.sol#1616-1623)
Event emitted after the call(s):
- Approval(owner,spender,amount) (contracts/BikeNRun.sol#508)
- swapAndSendToFee(AmountMarketingFee) (contracts/BikeNRun.sol#1425)
Reentrancy in BikeNRun._transfer(address,address,uint256) (contracts/BikeNRun.sol#1454-1537):
External calls:
- swapAndSendToFee(AmountMarketingFee) (contracts/BikeNRun.sol#1478)
- IERC20(rewardToken).transfer(_marketingWalletAddress,newBalance) (contracts/BikeNRun.sol#1543)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/BikeNRun.sol#1592-1598)
- swapAndLiquify(AmountLiquidityFee) (contracts/BikeNRun.sol#1479)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_node,block.timestamp) (contracts/BikeNRun.sol#1616-1623)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/BikeNRun.sol#1575-1581)
- swapAndSendDividends(AmountTokenRewardsFee) (contracts/BikeNRun.sol#1480)
- success = IERC20(rewardToken).transfer(address(dividendTracker),dividends) (contracts/BikeNRun.sol#1631)
- dividendTracker.distributeCAKEDividends(dividends) (contracts/BikeNRun.sol#1633)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/BikeNRun.sol#1592-1598)
External calls sending eth:
- swapAndLiquify(AmountLiquidityFee) (contracts/BikeNRun.sol#1479)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_node,block.timestamp) (contracts/BikeNRun.sol#1616-1623)
Event emitted after the call(s):
- Approval(owner,spender,amount) (contracts/BikeNRun.sol#508)
- swapAndSendDividends(AmountTokenRewardsFee) (contracts/BikeNRun.sol#1480)
- SendDividends(tokens,dividends) (contracts/BikeNRun.sol#1634)
- swapAndSendDividends(AmountTokenRewardsFee) (contracts/BikeNRun.sol#1480)
- Transfer(sender,recipient,amount) (contracts/BikeNRun.sol#445)
- super._transfer(from,address(this),fees.sub(DFee)) (contracts/BikeNRun.sol#1519)
- Transfer(sender,recipient,amount) (contracts/BikeNRun.sol#445)
- super._transfer(from,to,amount) (contracts/BikeNRun.sol#1522)
- Transfer(sender,recipient,amount) (contracts/BikeNRun.sol#445)
- super._transfer(from,deadWallet,DFee) (contracts/BikeNRun.sol#1518)
Reentrancy in BikeNRun.swapAndLiquify(uint256) (contracts/BikeNRun.sol#1547-1564):
External calls:
- swapTokensForEth(half) (contracts/BikeNRun.sol#1555)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/BikeNRun.sol#1575-1581)
- addLiquidity(otherHalf,newBalance) (contracts/BikeNRun.sol#1561)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_node,block.timestamp) (contracts/BikeNRun.sol#1616-1623)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (contracts/BikeNRun.sol#1561)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_node,block.timestamp) (contracts/BikeNRun.sol#1616-1623)
Event emitted after the call(s):
- Approval(owner,spender,amount) (contracts/BikeNRun.sol#508)
- addLiquidity(otherHalf,newBalance) (contracts/BikeNRun.sol#1561)
- SwapAndLiquify(half,newBalance,otherHalf) (contracts/BikeNRun.sol#1563)
Reentrancy in BikeNRun._setAutomatedMarketMakerPair(address,bool) (contracts/BikeNRun.sol#1327-1335):
External calls:
- dividendTracker.excludeFromDividends(pair) (contracts/BikeNRun.sol#1332)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (contracts/BikeNRun.sol#1334)
Reentrancy in BikeNRun.processDividendTracker(uint256) (contracts/BikeNRun.sol#1402-1405):
External calls:
- (iterations,claims,lastProcessedIndex) = dividendTracker.process(gas) (contracts/BikeNRun.sol#1403)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,false,gas,tx.origin) (contracts/BikeNRun.sol#1404)
Reentrancy in BikeNRun._transfer(address,address,uint256) (contracts/BikeNRun.sol#1454-1537):
External calls:
- swapAndSendToFee(AmountMarketingFee) (contracts/BikeNRun.sol#1478)
- IERC20(rewardToken).transfer(_marketingWalletAddress,newBalance) (contracts/BikeNRun.sol#1543)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/BikeNRun.sol#1592-1598)
- swapAndLiquify(AmountLiquidityFee) (contracts/BikeNRun.sol#1479)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_node,block.timestamp) (contracts/BikeNRun.sol#1616-1623)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/BikeNRun.sol#1575-1581)
- swapAndSendDividends(AmountTokenRewardsFee) (contracts/BikeNRun.sol#1480)
- success = IERC20(rewardToken).transfer(address(dividendTracker),dividends) (contracts/BikeNRun.sol#1631)
- dividendTracker.distributeCAKEDividends(dividends) (contracts/BikeNRun.sol#1633)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/BikeNRun.sol#1592-1598)
- dividendTracker.setBalance(address(from),balanceOf(from)) (contracts/BikeNRun.sol#1524)
- dividendTracker.setBalance(address(to),balanceOf(to)) (contracts/BikeNRun.sol#1525)
- dividendTracker.process(gas) (contracts/BikeNRun.sol#1530-1535)
External calls sending eth:
- swapAndLiquify(AmountLiquidityFee) (contracts/BikeNRun.sol#1479)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_node,block.timestamp) (contracts/BikeNRun.sol#1616-1623)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (contracts/BikeNRun.sol#1531)
Apply the check-effects-interactions pattern.
Additional information: link
TokenDividendTracker.canAutoClaim(uint256) (contracts/BikeNRun.sol#1036-1041) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (contracts/BikeNRun.sol#1037)
- block.timestamp.sub(lastClaimTime) >= claimWait (contracts/BikeNRun.sol#1040)
TokenDividendTracker.getAccount(address) (contracts/BikeNRun.sol#979-1016) uses timestamp for comparisons
Dangerous comparisons:
- nextClaimTime > block.timestamp (contracts/BikeNRun.sol#1013-1015)
Avoid relying on block.timestamp.
Additional information: link
SafeMathInt.div(int256,int256) (contracts/BikeNRun.sol#144-150) is never used and should be removed
Clones.predictDeterministicAddress(address,bytes32) (contracts/BikeNRun.sol#250-256) is never used and should be removed
SafeMathInt.abs(int256) (contracts/BikeNRun.sol#173-176) is never used and should be removed
SafeMathInt.mul(int256,int256) (contracts/BikeNRun.sol#132-139) is never used and should be removed
Clones.predictDeterministicAddress(address,bytes32,address) (contracts/BikeNRun.sol#230-245) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (contracts/BikeNRun.sol#119-122) is never used and should be removed
Context._msgData() (contracts/BikeNRun.sol#9-11) is never used and should be removed
SafeMath.mod(uint256,uint256) (contracts/BikeNRun.sol#115-117) is never used and should be removed
Clones.cloneDeterministic(address,bytes32) (contracts/BikeNRun.sol#216-225) is never used and should be removed
Clones.clone(address) (contracts/BikeNRun.sol#198-207) is never used and should be removed
DividendPayingToken._transfer(address,address,uint256) (contracts/BikeNRun.sol#871-876) is never used and should be removed
Remove unused functions.
Additional information: link
Pragma version^0.8.0 (contracts/BikeNRun.sol#2) allows old versions
solc-0.8.15 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
Function TokenDividendTracker.MAPGetKeyAtIndex(uint256) (contracts/BikeNRun.sol#1118-1120) is not in mixedCase
Function TokenDividendTracker.MAPRemove(address) (contracts/BikeNRun.sol#1137-1154) is not in mixedCase
Function TokenDividendTracker.MAPSize() (contracts/BikeNRun.sol#1122-1124) is not in mixedCase
Function BikeNRun.EnemyAddress(address,bool) (contracts/BikeNRun.sol#1323-1325) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (contracts/BikeNRun.sol#684) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (contracts/BikeNRun.sol#701) is not in mixedCase
Variable BikeNRun._isEnemy (contracts/BikeNRun.sol#1184) is not in mixedCase
Constant DividendPayingToken.magnitude (contracts/BikeNRun.sol#775) is not in UPPER_CASE_WITH_UNDERSCORES
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (contracts/BikeNRun.sol#683) is not in mixedCase
Function TokenDividendTracker.MAPGetIndexOfKey(address) (contracts/BikeNRun.sol#1112-1117) is not in mixedCase
Variable BikeNRun.AmountTokenRewardsFee (contracts/BikeNRun.sol#1177) is not in mixedCase
Variable BikeNRun.AmountLiquidityFee (contracts/BikeNRun.sol#1176) is not in mixedCase
Variable BikeNRun._marketingWalletAddress (contracts/BikeNRun.sol#1180) is not in mixedCase
Parameter DividendPayingToken.dividendOf(address)._owner (contracts/BikeNRun.sol#838) is not in mixedCase
Parameter DividendPayingToken.withdrawnDividendOf(address)._owner (contracts/BikeNRun.sol#852) is not in mixedCase
Variable DividendPayingToken.REWARD_TOKEN (contracts/BikeNRun.sol#771) is not in mixedCase
Parameter DividendPayingToken.withdrawableDividendOf(address)._owner (contracts/BikeNRun.sol#845) is not in mixedCase
Function TokenDividendTracker.MAPGet(address) (contracts/BikeNRun.sol#1109-1111) is not in mixedCase
Parameter TokenDividendTracker.getAccount(address)._account (contracts/BikeNRun.sol#979) is not in mixedCase
Function IUniswapV2Router01.WETH() (contracts/BikeNRun.sol#520) is not in mixedCase
Parameter DividendPayingToken.accumulativeDividendOf(address)._owner (contracts/BikeNRun.sol#861) is not in mixedCase
Variable BikeNRun.AmountMarketingFee (contracts/BikeNRun.sol#1178) is not in mixedCase
Function TokenDividendTracker.MAPSet(address,uint256) (contracts/BikeNRun.sol#1126-1135) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable ERC20._totalSupply (contracts/BikeNRun.sol#265) is too similar to BikeNRun.constructor(string,string,uint256,address[4],uint256[4],uint256[4],uint256).totalSupply_ (contracts/BikeNRun.sol#1227)
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (contracts/BikeNRun.sol#525) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (contracts/BikeNRun.sol#526)
Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (contracts/BikeNRun.sol#819) is too similar to TokenDividendTracker.getAccount(address).withdrawableDividends (contracts/BikeNRun.sol#984)
Prevent variables from having similar names.
Additional information: link
BikeNRun.slitherConstructorVariables() (contracts/BikeNRun.sol#1157-1638) uses literals with too many digits:
- deadWallet = 0x000000000000000000000000000000000000dEaD (contracts/BikeNRun.sol#1183)
Clones.clone(address) (contracts/BikeNRun.sol#198-207) uses literals with too many digits:
- mstore(uint256,uint256)(ptr_clone_asm_0,0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000000000000000000000) (contracts/BikeNRun.sol#201)
Clones.clone(address) (contracts/BikeNRun.sol#198-207) uses literals with too many digits:
- mstore(uint256,uint256)(ptr_clone_asm_0 + 0x28,0x5af43d82803e903d91602b57fd5bf30000000000000000000000000000000000) (contracts/BikeNRun.sol#203)
BikeNRun.constructor(string,string,uint256,address[4],uint256[4],uint256[4],uint256) (contracts/BikeNRun.sol#1224-1282) uses literals with too many digits:
- gasForProcessing = 300000 (contracts/BikeNRun.sol#1253)
Clones.predictDeterministicAddress(address,bytes32,address) (contracts/BikeNRun.sol#230-245) uses literals with too many digits:
- mstore(uint256,uint256)(ptr_predictDeterministicAddress_asm_0 + 0x28,0x5af43d82803e903d91602b57fd5bf3ff00000000000000000000000000000000) (contracts/BikeNRun.sol#239)
Clones.cloneDeterministic(address,bytes32) (contracts/BikeNRun.sol#216-225) uses literals with too many digits:
- mstore(uint256,uint256)(ptr_cloneDeterministic_asm_0,0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000000000000000000000) (contracts/BikeNRun.sol#219)
BikeNRun.updateGasForProcessing(uint256) (contracts/BikeNRun.sol#1337-1342) uses literals with too many digits:
- require(bool,string)(newValue >= 200000 && newValue <= 500000,GasForProcessing must be between 200,000 and 500,000) (contracts/BikeNRun.sol#1338)
Clones.predictDeterministicAddress(address,bytes32,address) (contracts/BikeNRun.sol#230-245) uses literals with too many digits:
- mstore(uint256,uint256)(ptr_predictDeterministicAddress_asm_0,0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000000000000000000000) (contracts/BikeNRun.sol#237)
Clones.cloneDeterministic(address,bytes32) (contracts/BikeNRun.sol#216-225) uses literals with too many digits:
- mstore(uint256,uint256)(ptr_cloneDeterministic_asm_0 + 0x28,0x5af43d82803e903d91602b57fd5bf30000000000000000000000000000000000) (contracts/BikeNRun.sol#221)
TokenDividendTracker.getAccountAtIndex(uint256) (contracts/BikeNRun.sol#1018-1034) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (contracts/BikeNRun.sol#1029)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
SafeMathInt.MAX_INT256 (contracts/BikeNRun.sol#127) is never used in SafeMathInt (contracts/BikeNRun.sol#125-182)
Remove unused state variables.
Additional information: link
isExcludedFromFees(address) should be declared external:
- BikeNRun.isExcludedFromFees(address) (contracts/BikeNRun.sol#1356-1358)
distributeCAKEDividends(uint256) should be declared external:
- DividendPayingToken.distributeCAKEDividends(uint256) (contracts/BikeNRun.sol#798-808)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (contracts/BikeNRun.sol#374-382)
swapManual() should be declared external:
- BikeNRun.swapManual() (contracts/BikeNRun.sol#1419-1427)
withdrawBEP20(address,uint256) should be declared external:
- BikeNRun.withdrawBEP20(address,uint256) (contracts/BikeNRun.sol#1607-1610)
setSwapTokensAtAmount(uint256) should be declared external:
- BikeNRun.setSwapTokensAtAmount(uint256) (contracts/BikeNRun.sol#1429-1431)
withdrawBNB() should be declared external:
- BikeNRun.withdrawBNB() (contracts/BikeNRun.sol#1601-1605)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (contracts/BikeNRun.sol#32-34)
MAPGet(address) should be declared external:
- TokenDividendTracker.MAPGet(address) (contracts/BikeNRun.sol#1109-1111)
dividendTokenBalanceOf(address) should be declared external:
- BikeNRun.dividendTokenBalanceOf(address) (contracts/BikeNRun.sol#1364-1366)
withdrawDividend() should be declared external:
- DividendPayingToken.withdrawDividend() (contracts/BikeNRun.sol#812-814)
- TokenDividendTracker.withdrawDividend() (contracts/BikeNRun.sol#943-945)
updateUniswapV2Router(address) should be declared external:
- BikeNRun.updateUniswapV2Router(address) (contracts/BikeNRun.sol#1290-1297)
decimals() should be declared external:
- ERC20.decimals() (contracts/BikeNRun.sol#311-313)
dividendOf(address) should be declared external:
- DividendPayingToken.dividendOf(address) (contracts/BikeNRun.sol#838-840)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- BikeNRun.excludeMultipleAccountsFromFees(address[],bool) (contracts/BikeNRun.sol#1306-1312)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (contracts/BikeNRun.sol#415-418)
symbol() should be declared external:
- ERC20.symbol() (contracts/BikeNRun.sol#294-296)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (contracts/BikeNRun.sol#337-340)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (contracts/BikeNRun.sol#396-399)
setDeadWallet(address) should be declared external:
- BikeNRun.setDeadWallet(address) (contracts/BikeNRun.sol#1433-1435)
updateGasForProcessing(uint256) should be declared external:
- BikeNRun.updateGasForProcessing(uint256) (contracts/BikeNRun.sol#1337-1342)
withdrawableDividendOf(address) should be declared external:
- BikeNRun.withdrawableDividendOf(address) (contracts/BikeNRun.sol#1360-1362)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (contracts/BikeNRun.sol#36-39)
isExcludedFromDividends(address) should be declared external:
- TokenDividendTracker.isExcludedFromDividends(address) (contracts/BikeNRun.sol#975-977)
isExcludedFromDividends(address) should be declared external:
- BikeNRun.isExcludedFromDividends(address) (contracts/BikeNRun.sol#1372-1374)
process(uint256) should be declared external:
- TokenDividendTracker.process(uint256) (contracts/BikeNRun.sol#1059-1096)
name() should be declared external:
- ERC20.name() (contracts/BikeNRun.sol#286-288)
updateMinimumTokenBalanceForDividends(uint256) should be declared external:
- BikeNRun.updateMinimumTokenBalanceForDividends(uint256) (contracts/BikeNRun.sol#1286-1288)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (contracts/BikeNRun.sol#356-359)
getAccountAtIndex(uint256) should be declared external:
- TokenDividendTracker.getAccountAtIndex(uint256) (contracts/BikeNRun.sol#1018-1034)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- BikeNRun.setAutomatedMarketMakerPair(address,bool) (contracts/BikeNRun.sol#1318-1321)
withdrawnDividendOf(address) should be declared external:
- DividendPayingToken.withdrawnDividendOf(address) (contracts/BikeNRun.sol#852-854)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (contracts/BikeNRun.sol#345-347)
Use the external attribute for functions never called from the contract.
Additional information: link
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 KYC or doxxing proof
Unable to verify that token and website are owned by the same team (no listings + unable to find contract on website)
Unable to verify token contract address on the website
Unable to find whitepaper link on the website
Unable to find token on CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
Token is not listed at Mobula.Finance
Additional information: link
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
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Token is relatively young, but twitter if very old (probably it's fake).
Young tokens have high risks of price dump / death
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account