Parabolic Token has been carefully designed to achieve a single purpose – GOING PARABOLIC! Our super addictive game and tokenomics will benefit the coin and consistently take it to new heights. Our game will be released in November, so don’t miss your chance to get in early!
There are NO team tokens and NO ridiculously high taxes! Every single penny of tax collected gets pumped straight back into the project. Please read through our website to find out more, or join our telegram and ask any questions you may have.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Parabolic.addLiquidity(address,uint256,uint256) (#1013-1026) sends eth to arbitrary user
Dangerous calls:
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,recipient,block.timestamp) (#1018-1025)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in Parabolic._transfer(address,address,uint256) (#889-952):
External calls:
- swapAndLiquify(contractTokenBalance) (#939)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,recipient,block.timestamp) (#1018-1025)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,recipient,block.timestamp) (#1004-1010)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#939)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,recipient,block.timestamp) (#1018-1025)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#951)
- _externalFee = _previousExternalFee (#867)
- _externalFee = 0 (#858)
- _tokenTransfer(from,to,amount,takeFee) (#951)
- _liquidityFee = _previousLiquidityFee (#865)
- _liquidityFee = 0 (#860)
- _tokenTransfer(from,to,amount,takeFee) (#951)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#824)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1062)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1074)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1086)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1075)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1051)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1052)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1064)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1088)
- _tokenTransfer(from,to,amount,takeFee) (#951)
- _rTotal = _rTotal.sub(rFee) (#777)
- _rTotal = _rTotal.sub(amount.mul(_getRate())) (#673)
- _tokenTransfer(from,to,amount,takeFee) (#951)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#826)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1050)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1085)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1063)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1087)
- _tokenTransfer(from,to,amount,takeFee) (#951)
- _tTotal = _tTotal.sub(amount) (#672)
- _tokenTransfer(from,to,amount,takeFee) (#951)
- _totalLiquidityFee = _previousTLiquidityFee (#869)
- _totalLiquidityFee = 0 (#861)
Apply the check-effects-interactions pattern.
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.
Parabolic.includeInReward(address) (#650-661) has costly operations inside a loop:
- _excluded.pop() (#657)
Use a local variable to hold the loop computation result.
Additional information: link
Parabolic.unBlacklistMultipleWallets(address[]).i (#1119) is a local variable never initialized
Parabolic.blacklistMultipleWallets(address[]).i (#1103) 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
Parabolic.addLiquidity(address,uint256,uint256) (#1013-1026) ignores return value by pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,recipient,block.timestamp) (#1018-1025)
Ensure that all the return values of the function calls are used.
Additional information: link
Parabolic.allowance(address,address).owner (#581) shadows:
- Ownable.owner() (#174-176) (function)
Parabolic._approve(address,address,uint256).owner (#881) shadows:
- Ownable.owner() (#174-176) (function)
Rename the local variables that shadow another component.
Additional information: link
Parabolic.setBurnFeePercent(uint256) (#711-713) should emit an event for:
- _burnFee = Fee (#712)
Parabolic.setExternalFeePercent(uint256) (#715-718) should emit an event for:
- _externalFee = Fee (#716)
- _totalLiquidityFee = _liquidityFee.add(_externalFee) (#717)
Parabolic.setReflectFeePercent(uint256) (#720-722) should emit an event for:
- _reflectionFee = Fee (#721)
Parabolic.setLiquidityFeePercent(uint256) (#724-727) should emit an event for:
- _liquidityFee = Fee (#725)
- _totalLiquidityFee = _liquidityFee.add(_externalFee) (#726)
Parabolic.setMaxTxTokensSell(uint256) (#729-731) should emit an event for:
- _maxTxAmountSell = maxTxTokens.mul(10 ** _decimals) (#730)
Parabolic.setMaxTxTokensBuy(uint256) (#733-735) should emit an event for:
- _maxTxAmountBuy = maxTxTokens.mul(10 ** _decimals) (#734)
Parabolic.setMaxTokenPerAddress(uint256) (#737-739) should emit an event for:
- _maxTokensPerAddress = maxTokens.mul(10 ** _decimals) (#738)
Parabolic.setExternalTokenMinAmount(uint256) (#741-743) should emit an event for:
- _externalTokenMinAmount = minTokens.mul(10 ** _decimals) (#742)
Parabolic.setTransactionlockTime(uint256) (#753-755) should emit an event for:
- _transactionLockTime = transactiontime (#754)
Parabolic.setMinTokensSellToAndTransfer(uint256) (#876-879) should emit an event for:
- _numTokensSellToAndTransfer = minTokensValue.mul(10 ** _decimals) (#878)
Emit an event for critical parameter changes.
Additional information: link
Parabolic.setExternalAddress(address).externalAddress (#745) lacks a zero-check on :
- _externalAddress = externalAddress (#746)
Parabolic.setLiquidityAddress(address).liquidityAddress (#749) lacks a zero-check on :
- autoLiquidityReceiver = liquidityAddress (#750)
Check that the address is not zero.
Additional information: link
Reentrancy in Parabolic._transfer(address,address,uint256) (#889-952):
External calls:
- swapAndLiquify(contractTokenBalance) (#939)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,recipient,block.timestamp) (#1018-1025)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,recipient,block.timestamp) (#1004-1010)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#939)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,recipient,block.timestamp) (#1018-1025)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#951)
- _burnFee = _previousBurnFee (#866)
- _burnFee = 0 (#857)
- _tokenTransfer(from,to,amount,takeFee) (#951)
- _previousBurnFee = _burnFee (#852)
- _tokenTransfer(from,to,amount,takeFee) (#951)
- _previousExternalFee = _externalFee (#853)
- _tokenTransfer(from,to,amount,takeFee) (#951)
- _previousLiquidityFee = _liquidityFee (#851)
- _tokenTransfer(from,to,amount,takeFee) (#951)
- _previousReflectionFee = _reflectionFee (#854)
- _tokenTransfer(from,to,amount,takeFee) (#951)
- _previousTLiquidityFee = _totalLiquidityFee (#855)
- _tokenTransfer(from,to,amount,takeFee) (#951)
- _reflectionFee = _previousReflectionFee (#868)
- _reflectionFee = 0 (#859)
- _tokenTransfer(from,to,amount,takeFee) (#951)
- _tFeeTotal = _tFeeTotal.add(tFee) (#778)
Reentrancy in Parabolic.constructor() (#509-553):
External calls:
- pancakePair = IPancakeFactory(_pancakeRouter.factory()).createPair(address(this),_pancakeRouter.WETH()) (#514-515)
State variables written after the call(s):
- _isExcludeFromExternalTokenMinAmount[owner()] = true (#529)
- _isExcludeFromExternalTokenMinAmount[address(this)] = true (#530)
- _isExcludeFromExternalTokenMinAmount[pancakePair] = true (#531)
- _isExcludeFromExternalTokenMinAmount[address(_pancakeRouter)] = true (#532)
- _isExcludeFromExternalTokenMinAmount[_burnAddress] = true (#533)
- _isExcluded[address(0)] = true (#547)
- _isExcluded[_burnAddress] = true (#548)
- _isExcludedFromAntiWhale[owner()] = true (#541)
- _isExcludedFromAntiWhale[address(this)] = true (#542)
- _isExcludedFromAntiWhale[pancakePair] = true (#543)
- _isExcludedFromAntiWhale[address(_pancakeRouter)] = true (#544)
- _isExcludedFromAntiWhale[_burnAddress] = true (#545)
- _isExcludedFromFee[owner()] = true (#519)
- _isExcludedFromFee[address(this)] = true (#520)
- _isExcludedFromFee[_externalAddress] = true (#521)
- _isExcludedFromMaxTxAmount[owner()] = true (#535)
- _isExcludedFromMaxTxAmount[address(this)] = true (#536)
- _isExcludedFromMaxTxAmount[pancakePair] = true (#537)
- _isExcludedFromMaxTxAmount[address(_pancakeRouter)] = true (#538)
- _isExcludedFromMaxTxAmount[_burnAddress] = true (#539)
- _isExcludedFromTransactionlock[owner()] = true (#523)
- _isExcludedFromTransactionlock[address(this)] = true (#524)
- _isExcludedFromTransactionlock[pancakePair] = true (#525)
- _isExcludedFromTransactionlock[address(_pancakeRouter)] = true (#526)
- _isExcludedFromTransactionlock[_burnAddress] = true (#527)
- autoLiquidityReceiver = _msgSender() (#550)
- pancakeRouter = _pancakeRouter (#517)
Reentrancy in Parabolic.setRouterAddress(address) (#1157-1161):
External calls:
- pancakePair = IPancakeFactory(_newPancakeRouter.factory()).createPair(address(this),_newPancakeRouter.WETH()) (#1159)
State variables written after the call(s):
- pancakeRouter = _newPancakeRouter (#1160)
Reentrancy in Parabolic.swapAndLiquify(uint256) (#954-993):
External calls:
- swapTokensForEth(_externalAddress,externalAmount) (#967)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,recipient,block.timestamp) (#1004-1010)
- swapTokensForEth(address(this),half) (#983)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,recipient,block.timestamp) (#1004-1010)
State variables written after the call(s):
- swapTokensForEth(address(this),half) (#983)
- _allowances[owner][spender] = amount (#885)
Reentrancy in Parabolic.swapAndLiquify(uint256) (#954-993):
External calls:
- swapTokensForEth(_externalAddress,externalAmount) (#967)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,recipient,block.timestamp) (#1004-1010)
- swapTokensForEth(address(this),half) (#983)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,recipient,block.timestamp) (#1004-1010)
- addLiquidity(autoLiquidityReceiver,otherHalf,newBalance) (#989)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,recipient,block.timestamp) (#1018-1025)
External calls sending eth:
- addLiquidity(autoLiquidityReceiver,otherHalf,newBalance) (#989)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,recipient,block.timestamp) (#1018-1025)
State variables written after the call(s):
- addLiquidity(autoLiquidityReceiver,otherHalf,newBalance) (#989)
- _allowances[owner][spender] = amount (#885)
Reentrancy in Parabolic.transferFrom(address,address,uint256) (#590-594):
External calls:
- _transfer(sender,recipient,amount) (#591)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,recipient,block.timestamp) (#1018-1025)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,recipient,block.timestamp) (#1004-1010)
External calls sending eth:
- _transfer(sender,recipient,amount) (#591)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,recipient,block.timestamp) (#1018-1025)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#592)
- _allowances[owner][spender] = amount (#885)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in Parabolic._transfer(address,address,uint256) (#889-952):
External calls:
- swapAndLiquify(contractTokenBalance) (#939)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,recipient,block.timestamp) (#1018-1025)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,recipient,block.timestamp) (#1004-1010)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#939)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,recipient,block.timestamp) (#1018-1025)
Event emitted after the call(s):
- Transfer(msg.sender,address(this),amount) (#675)
- _tokenTransfer(from,to,amount,takeFee) (#951)
- Transfer(sender,recipient,tTransferAmount) (#1080)
- _tokenTransfer(from,to,amount,takeFee) (#951)
- Transfer(sender,recipient,tTransferAmount) (#1057)
- _tokenTransfer(from,to,amount,takeFee) (#951)
- Transfer(sender,recipient,tTransferAmount) (#1069)
- _tokenTransfer(from,to,amount,takeFee) (#951)
- Transfer(sender,recipient,tTransferAmount) (#1093)
- _tokenTransfer(from,to,amount,takeFee) (#951)
Reentrancy in Parabolic.constructor() (#509-553):
External calls:
- pancakePair = IPancakeFactory(_pancakeRouter.factory()).createPair(address(this),_pancakeRouter.WETH()) (#514-515)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#552)
Reentrancy in Parabolic.swapAndLiquify(uint256) (#954-993):
External calls:
- swapTokensForEth(_externalAddress,externalAmount) (#967)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,recipient,block.timestamp) (#1004-1010)
- swapTokensForEth(address(this),half) (#983)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,recipient,block.timestamp) (#1004-1010)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#886)
- swapTokensForEth(address(this),half) (#983)
Reentrancy in Parabolic.swapAndLiquify(uint256) (#954-993):
External calls:
- swapTokensForEth(_externalAddress,externalAmount) (#967)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,recipient,block.timestamp) (#1004-1010)
- swapTokensForEth(address(this),half) (#983)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,recipient,block.timestamp) (#1004-1010)
- addLiquidity(autoLiquidityReceiver,otherHalf,newBalance) (#989)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,recipient,block.timestamp) (#1018-1025)
External calls sending eth:
- addLiquidity(autoLiquidityReceiver,otherHalf,newBalance) (#989)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,recipient,block.timestamp) (#1018-1025)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#886)
- addLiquidity(autoLiquidityReceiver,otherHalf,newBalance) (#989)
- SwapAndLiquify(half,newBalance,otherHalf) (#991)
Reentrancy in Parabolic.transferFrom(address,address,uint256) (#590-594):
External calls:
- _transfer(sender,recipient,amount) (#591)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,recipient,block.timestamp) (#1018-1025)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,recipient,block.timestamp) (#1004-1010)
External calls sending eth:
- _transfer(sender,recipient,amount) (#591)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,recipient,block.timestamp) (#1018-1025)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#886)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#592)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#205-211) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#207)
Parabolic._transfer(address,address,uint256) (#889-952) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(_isExcludedFromTransactionlock[from] || block.timestamp - _transactionCheckpoint[from] >= _transactionLockTime,Please wait for transaction cooldown time to finish) (#901-903)
- require(bool,string)(_isExcludedFromTransactionlock[to] || block.timestamp - _transactionCheckpoint[to] >= _transactionLockTime,Please wait for recepients transaction cooldown time to finish) (#904-906)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#101-110) uses assembly
- INLINE ASM (#108)
Address._functionCallWithValue(address,bytes,uint256,string) (#137-158) uses assembly
- INLINE ASM (#150-153)
Do not use evm assembly.
Additional information: link
Parabolic.blacklistSingleWallet(address) (#1096-1099) compares to a boolean constant:
-_isBlacklisted[addresses] == true (#1097)
Parabolic.unBlacklistSingleWallet(address) (#1112-1115) compares to a boolean constant:
-_isBlacklisted[addresses] == false (#1113)
Remove the equality to the boolean constant.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#137-158) is never used and should be removed
Address.functionCall(address,bytes) (#120-122) is never used and should be removed
Address.functionCall(address,bytes,string) (#124-126) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#128-130) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#132-135) is never used and should be removed
Address.isContract(address) (#101-110) is never used and should be removed
Address.sendValue(address,uint256) (#112-118) is never used and should be removed
Context._msgData() (#93-96) is never used and should be removed
SafeMath.mod(uint256,uint256) (#78-80) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#82-85) is never used and should be removed
Remove unused functions.
Additional information: link
Parabolic._tTotal (#458) is set pre-construction with a non-constant function or state variable:
- 1000000 * 10 ** 6 * 10 ** _decimals
Parabolic._rTotal (#459) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
Parabolic._previousBurnFee (#463) is set pre-construction with a non-constant function or state variable:
- _burnFee
Parabolic._previousReflectionFee (#466) is set pre-construction with a non-constant function or state variable:
- _reflectionFee
Parabolic._previousExternalFee (#469) is set pre-construction with a non-constant function or state variable:
- _externalFee
Parabolic._previousLiquidityFee (#472) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
Parabolic._totalLiquidityFee (#474) is set pre-construction with a non-constant function or state variable:
- _externalFee.add(_liquidityFee)
Parabolic._previousTLiquidityFee (#475) is set pre-construction with a non-constant function or state variable:
- _totalLiquidityFee
Parabolic._externalTokenMinAmount (#488) is set pre-construction with a non-constant function or state variable:
- 500 * 10 ** 6 * 10 ** _decimals
Parabolic._maxTxAmountBuy (#489) is set pre-construction with a non-constant function or state variable:
- 1000000000 * 10 ** 6 * 10 ** _decimals
Parabolic._maxTxAmountSell (#490) is set pre-construction with a non-constant function or state variable:
- 1000000000 * 10 ** 6 * 10 ** _decimals
Parabolic._numTokensSellToAndTransfer (#491) is set pre-construction with a non-constant function or state variable:
- 1000 * 10 ** 6 * 10 ** _decimals
Parabolic._maxTokensPerAddress (#492) is set pre-construction with a non-constant function or state variable:
- 1000000000 * 10 ** 6 * 10 ** _decimals
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
Low level call in Address.sendValue(address,uint256) (#112-118):
- (success) = recipient.call{value: amount}() (#116)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#137-158):
- (success,returndata) = target.call{value: weiValue}(data) (#141)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IPancakePair.DOMAIN_SEPARATOR() (#250) is not in mixedCase
Function IPancakePair.PERMIT_TYPEHASH() (#251) is not in mixedCase
Function IPancakePair.MINIMUM_LIQUIDITY() (#268) is not in mixedCase
Function IPancakeRouter01.WETH() (#290) is not in mixedCase
Parameter Parabolic.setBurnFeePercent(uint256).Fee (#711) is not in mixedCase
Parameter Parabolic.setExternalFeePercent(uint256).Fee (#715) is not in mixedCase
Parameter Parabolic.setReflectFeePercent(uint256).Fee (#720) is not in mixedCase
Parameter Parabolic.setLiquidityFeePercent(uint256).Fee (#724) is not in mixedCase
Parameter Parabolic.setSwapAndLiquifyEnabled(bool)._enabled (#757) is not in mixedCase
Parameter Parabolic.calculateBurnFee(uint256)._amount (#829) is not in mixedCase
Parameter Parabolic.calculateReflectionFee(uint256)._amount (#835) is not in mixedCase
Parameter Parabolic.calculateLiquidityFee(uint256)._amount (#841) is not in mixedCase
Variable Parabolic._isExcludedFromAntiWhale (#436) is not in mixedCase
Variable Parabolic._isExcludeFromExternalTokenMinAmount (#437) is not in mixedCase
Variable Parabolic._externalAddress (#449) is not in mixedCase
Variable Parabolic._burnAddress (#450) is not in mixedCase
Variable Parabolic._burnFee (#462) is not in mixedCase
Variable Parabolic._reflectionFee (#465) is not in mixedCase
Variable Parabolic._externalFee (#468) is not in mixedCase
Variable Parabolic._liquidityFee (#471) is not in mixedCase
Variable Parabolic._externalToken (#483) is not in mixedCase
Variable Parabolic._externalTokenMinAmount (#488) is not in mixedCase
Variable Parabolic._maxTxAmountBuy (#489) is not in mixedCase
Variable Parabolic._maxTxAmountSell (#490) is not in mixedCase
Variable Parabolic._numTokensSellToAndTransfer (#491) is not in mixedCase
Variable Parabolic._maxTokensPerAddress (#492) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#94)" inContext (#88-97)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#295) is too similar to IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#296)
Variable Parabolic._transferStandard(address,address,uint256).rTransferAmount (#1073) is too similar to Parabolic._getTValues(uint256).tTransferAmount (#791)
Variable Parabolic._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#800) is too similar to Parabolic._transferFromExcluded(address,address,uint256).tTransferAmount (#1049)
Variable Parabolic._transferToExcluded(address,address,uint256).rTransferAmount (#1061) is too similar to Parabolic._transferBothExcluded(address,address,uint256).tTransferAmount (#1084)
Variable Parabolic._transferFromExcluded(address,address,uint256).rTransferAmount (#1049) is too similar to Parabolic._getValues(uint256).tTransferAmount (#782)
Variable Parabolic._transferBothExcluded(address,address,uint256).rTransferAmount (#1084) is too similar to Parabolic._transferToExcluded(address,address,uint256).tTransferAmount (#1061)
Variable Parabolic._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#800) is too similar to Parabolic._transferToExcluded(address,address,uint256).tTransferAmount (#1061)
Variable Parabolic._transferToExcluded(address,address,uint256).rTransferAmount (#1061) is too similar to Parabolic._transferStandard(address,address,uint256).tTransferAmount (#1073)
Variable Parabolic.reflectionFromToken(uint256,bool).rTransferAmount (#629) is too similar to Parabolic._getTValues(uint256).tTransferAmount (#791)
Variable Parabolic._transferStandard(address,address,uint256).rTransferAmount (#1073) is too similar to Parabolic._getValues(uint256).tTransferAmount (#782)
Variable Parabolic._transferFromExcluded(address,address,uint256).rTransferAmount (#1049) is too similar to Parabolic._transferFromExcluded(address,address,uint256).tTransferAmount (#1049)
Variable Parabolic._transferToExcluded(address,address,uint256).rTransferAmount (#1061) is too similar to Parabolic._getTValues(uint256).tTransferAmount (#791)
Variable Parabolic._transferBothExcluded(address,address,uint256).rTransferAmount (#1084) is too similar to Parabolic._transferBothExcluded(address,address,uint256).tTransferAmount (#1084)
Variable Parabolic._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#800) is too similar to Parabolic._transferBothExcluded(address,address,uint256).tTransferAmount (#1084)
Variable Parabolic._transferFromExcluded(address,address,uint256).rTransferAmount (#1049) is too similar to Parabolic._transferToExcluded(address,address,uint256).tTransferAmount (#1061)
Variable Parabolic._transferBothExcluded(address,address,uint256).rTransferAmount (#1084) is too similar to Parabolic._transferStandard(address,address,uint256).tTransferAmount (#1073)
Variable Parabolic.reflectionFromToken(uint256,bool).rTransferAmount (#629) is too similar to Parabolic._getValues(uint256).tTransferAmount (#782)
Variable Parabolic._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#800) is too similar to Parabolic._transferStandard(address,address,uint256).tTransferAmount (#1073)
Variable Parabolic._transferToExcluded(address,address,uint256).rTransferAmount (#1061) is too similar to Parabolic._getValues(uint256).tTransferAmount (#782)
Variable Parabolic._transferBothExcluded(address,address,uint256).rTransferAmount (#1084) is too similar to Parabolic._getTValues(uint256).tTransferAmount (#791)
Variable Parabolic._getValues(uint256).rTransferAmount (#783) is too similar to Parabolic._getTValues(uint256).tTransferAmount (#791)
Variable Parabolic._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#800) is too similar to Parabolic._getTValues(uint256).tTransferAmount (#791)
Variable Parabolic._transferToExcluded(address,address,uint256).rTransferAmount (#1061) is too similar to Parabolic._transferFromExcluded(address,address,uint256).tTransferAmount (#1049)
Variable Parabolic._transferFromExcluded(address,address,uint256).rTransferAmount (#1049) is too similar to Parabolic._transferBothExcluded(address,address,uint256).tTransferAmount (#1084)
Variable Parabolic._transferStandard(address,address,uint256).rTransferAmount (#1073) is too similar to Parabolic._transferBothExcluded(address,address,uint256).tTransferAmount (#1084)
Variable Parabolic._transferFromExcluded(address,address,uint256).rTransferAmount (#1049) is too similar to Parabolic._transferStandard(address,address,uint256).tTransferAmount (#1073)
Variable Parabolic._transferToExcluded(address,address,uint256).rTransferAmount (#1061) is too similar to Parabolic._transferToExcluded(address,address,uint256).tTransferAmount (#1061)
Variable Parabolic._transferBothExcluded(address,address,uint256).rTransferAmount (#1084) is too similar to Parabolic._getValues(uint256).tTransferAmount (#782)
Variable Parabolic._transferStandard(address,address,uint256).rTransferAmount (#1073) is too similar to Parabolic._transferStandard(address,address,uint256).tTransferAmount (#1073)
Variable Parabolic._transferFromExcluded(address,address,uint256).rTransferAmount (#1049) is too similar to Parabolic._getTValues(uint256).tTransferAmount (#791)
Variable Parabolic._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#800) is too similar to Parabolic._getValues(uint256).tTransferAmount (#782)
Variable Parabolic.reflectionFromToken(uint256,bool).rTransferAmount (#629) is too similar to Parabolic._transferBothExcluded(address,address,uint256).tTransferAmount (#1084)
Variable Parabolic._getValues(uint256).rTransferAmount (#783) is too similar to Parabolic._transferStandard(address,address,uint256).tTransferAmount (#1073)
Variable Parabolic._transferStandard(address,address,uint256).rTransferAmount (#1073) is too similar to Parabolic._transferToExcluded(address,address,uint256).tTransferAmount (#1061)
Variable Parabolic._getValues(uint256).rTransferAmount (#783) is too similar to Parabolic._transferToExcluded(address,address,uint256).tTransferAmount (#1061)
Variable Parabolic.reflectionFromToken(uint256,bool).rTransferAmount (#629) is too similar to Parabolic._transferFromExcluded(address,address,uint256).tTransferAmount (#1049)
Variable Parabolic._getValues(uint256).rTransferAmount (#783) is too similar to Parabolic._getValues(uint256).tTransferAmount (#782)
Variable Parabolic.reflectionFromToken(uint256,bool).rTransferAmount (#629) is too similar to Parabolic._transferStandard(address,address,uint256).tTransferAmount (#1073)
Variable Parabolic._getValues(uint256).rTransferAmount (#783) is too similar to Parabolic._transferBothExcluded(address,address,uint256).tTransferAmount (#1084)
Variable Parabolic._transferBothExcluded(address,address,uint256).rTransferAmount (#1084) is too similar to Parabolic._transferFromExcluded(address,address,uint256).tTransferAmount (#1049)
Variable Parabolic.reflectionFromToken(uint256,bool).rTransferAmount (#629) is too similar to Parabolic._transferToExcluded(address,address,uint256).tTransferAmount (#1061)
Variable Parabolic._transferStandard(address,address,uint256).rTransferAmount (#1073) is too similar to Parabolic._transferFromExcluded(address,address,uint256).tTransferAmount (#1049)
Variable Parabolic._getValues(uint256).rTransferAmount (#783) is too similar to Parabolic._transferFromExcluded(address,address,uint256).tTransferAmount (#1049)
Prevent variables from having similar names.
Additional information: link
Parabolic.slitherConstructorVariables() (#428-1164) uses literals with too many digits:
- _burnAddress = address(0x000000000000000000000000000000000000dEaD) (#450)
Parabolic.slitherConstructorVariables() (#428-1164) uses literals with too many digits:
- _tTotal = 1000000 * 10 ** 6 * 10 ** _decimals (#458)
Parabolic.slitherConstructorVariables() (#428-1164) uses literals with too many digits:
- _maxTxAmountBuy = 1000000000 * 10 ** 6 * 10 ** _decimals (#489)
Parabolic.slitherConstructorVariables() (#428-1164) uses literals with too many digits:
- _maxTxAmountSell = 1000000000 * 10 ** 6 * 10 ** _decimals (#490)
Parabolic.slitherConstructorVariables() (#428-1164) uses literals with too many digits:
- _maxTokensPerAddress = 1000000000 * 10 ** 6 * 10 ** _decimals (#492)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Parabolic._burnAddress (#450) should be constant
Parabolic._decimals (#455) should be constant
Parabolic._name (#453) should be constant
Parabolic._symbol (#454) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#183-186)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#188-192)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#194-196)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#198-203)
unlock() should be declared external:
- Ownable.unlock() (#205-211)
name() should be declared external:
- Parabolic.name() (#555-557)
symbol() should be declared external:
- Parabolic.symbol() (#559-561)
decimals() should be declared external:
- Parabolic.decimals() (#563-565)
totalSupply() should be declared external:
- Parabolic.totalSupply() (#567-569)
transfer(address,uint256) should be declared external:
- Parabolic.transfer(address,uint256) (#576-579)
allowance(address,address) should be declared external:
- Parabolic.allowance(address,address) (#581-583)
approve(address,uint256) should be declared external:
- Parabolic.approve(address,uint256) (#585-588)
transferFrom(address,address,uint256) should be declared external:
- Parabolic.transferFrom(address,address,uint256) (#590-594)
increaseAllowance(address,uint256) should be declared external:
- Parabolic.increaseAllowance(address,uint256) (#596-599)
decreaseAllowance(address,uint256) should be declared external:
- Parabolic.decreaseAllowance(address,uint256) (#601-604)
isExcludedFromReward(address) should be declared external:
- Parabolic.isExcludedFromReward(address) (#606-608)
totalFeesCollected() should be declared external:
- Parabolic.totalFeesCollected() (#610-612)
deliver(uint256) should be declared external:
- Parabolic.deliver(uint256) (#614-621)
reflectionFromToken(uint256,bool) should be declared external:
- Parabolic.reflectionFromToken(uint256,bool) (#623-632)
excludeFromReward(address) should be declared external:
- Parabolic.excludeFromReward(address) (#640-648)
excludeFromFee(address) should be declared external:
- Parabolic.excludeFromFee(address) (#679-681)
includeInFee(address) should be declared external:
- Parabolic.includeInFee(address) (#683-685)
excludedFromMaxTxAmount(address) should be declared external:
- Parabolic.excludedFromMaxTxAmount(address) (#687-689)
includeInMaxTxAmount(address) should be declared external:
- Parabolic.includeInMaxTxAmount(address) (#691-693)
excludedFromExternalTokenMinAmount(address) should be declared external:
- Parabolic.excludedFromExternalTokenMinAmount(address) (#695-697)
includeInExternalTokenMinAmount(address) should be declared external:
- Parabolic.includeInExternalTokenMinAmount(address) (#699-701)
excludedFromAntiWhale(address) should be declared external:
- Parabolic.excludedFromAntiWhale(address) (#703-705)
includeInAntiWhale(address) should be declared external:
- Parabolic.includeInAntiWhale(address) (#707-709)
setTransactionlockTime(uint256) should be declared external:
- Parabolic.setTransactionlockTime(uint256) (#753-755)
setSwapAndLiquifyEnabled(bool) should be declared external:
- Parabolic.setSwapAndLiquifyEnabled(bool) (#757-760)
excludedFromTransactionlock(address) should be declared external:
- Parabolic.excludedFromTransactionlock(address) (#762-764)
includeInTransactionlock(address) should be declared external:
- Parabolic.includeInTransactionlock(address) (#766-768)
getIsExcludedFromTransactionlock(address) should be declared external:
- Parabolic.getIsExcludedFromTransactionlock(address) (#770-772)
isExcludedFromFee(address) should be declared external:
- Parabolic.isExcludedFromFee(address) (#872-874)
setMinTokensSellToAndTransfer(uint256) should be declared external:
- Parabolic.setMinTokensSellToAndTransfer(uint256) (#876-879)
blacklistSingleWallet(address) should be declared external:
- Parabolic.blacklistSingleWallet(address) (#1096-1099)
blacklistMultipleWallets(address[]) should be declared external:
- Parabolic.blacklistMultipleWallets(address[]) (#1101-1106)
isBlacklisted(address) should be declared external:
- Parabolic.isBlacklisted(address) (#1108-1110)
unBlacklistMultipleWallets(address[]) should be declared external:
- Parabolic.unBlacklistMultipleWallets(address[]) (#1117-1122)
recoverBNB() should be declared external:
- Parabolic.recoverBNB() (#1148-1153)
setRouterAddress(address) should be declared external:
- Parabolic.setRouterAddress(address) (#1157-1161)
Use the external attribute for functions never called from the contract.
Additional information: link
Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.
Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.
Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.
Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.
Contract has 12% buy tax and 12% sell tax.
Taxes are high (over 10%) but contract ownership is renounced.
Token is deployed only at one blockchain
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find token contract audit
Unable to verify token contract address on the website
Unable to find audit link on the website
Unable to find whitepaper link on the website
Unable to find token on CoinHunt
Additional information: link
Unable to find code repository for the project
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Token has relatively low CoinGecko rank
Token has relatively low CoinMarketCap rank
Last post in Twitter was more than 30 days ago
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account