$PINKPANDA is a utility token that will allow token holders to use the upcoming PinkPanda DEX which will have fees denominated in $PINKPANDA. Pink Panda is creating a non-custodial, fully on-chain, mobile-first decentralized exchange (DEX) that supports up to 5x margin/leverage trading--all with a seamless, centralized-exchange feel for the BSC ecosystem. The Founder, Adam Carlton, is Fully Doxxed. Liquidity Pool is Locked.
Pink Panda is also making a social impact with an initial focus on cancer charities, we are also building out the ability for community voting to determine causes in the future.
We will be launching the initial version of our mobile app for both iOS and Android after only two weeks of development.
Pink Panda has a 10% tax on every transaction. 5% is distributed to holders, 5% is auto locked into the LP pool, increasing rewards for holders and making the coin more stable over time.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Reentrancy in PinkPanda._transfer(address,address,uint256) (#1322-1369):
External calls:
- swapAndLiquify(contractTokenBalance) (#1356)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1417-1424)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1403-1409)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1356)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1417-1424)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1368)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1274)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1484)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1464)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1465)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1148)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1506)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1486)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1507)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1150)
- _tokenTransfer(from,to,amount,takeFee) (#1368)
- _rTotal = _rTotal.sub(rFee) (#1185)
- _tokenTransfer(from,to,amount,takeFee) (#1368)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1276)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1147)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1505)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1485)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1149)
Apply the check-effects-interactions pattern.
Additional information: link
PinkPanda.includeInReward(address) (#1121-1132) has costly operations inside a loop:
- _excluded.pop() (#1128)
Use a local variable to hold the loop computation result.
Additional information: link
Low level call in Address.sendValue(address,uint256) (#326-338):
- (success) = recipient.call{value: amount}() (#333)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#423-450):
- (success,returndata) = target.call{value: weiValue}(data) (#432-433)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
PinkPanda.addLiquidity(uint256,uint256) (#1412-1425) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1417-1424)
Ensure that all the return values of the function calls are used.
Additional information: link
PinkPanda.allowance(address,address).owner (#999) shadows:
- Ownable.owner() (#487-489) (function)
PinkPanda._approve(address,address,uint256).owner (#1311) shadows:
- Ownable.owner() (#487-489) (function)
Rename the local variables that shadow another component.
Additional information: link
PinkPanda.setTaxFeePercent(uint256) (#1164-1166) should emit an event for:
- _taxFee = taxFee (#1165)
PinkPanda.setLiquidityFeePercent(uint256) (#1168-1170) should emit an event for:
- _liquidityFee = liquidityFee (#1169)
PinkPanda.setMaxTxPercent(uint256) (#1172-1174) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#1173)
Emit an event for critical parameter changes.
Additional information: link
Reentrancy in PinkPanda._transfer(address,address,uint256) (#1322-1369):
External calls:
- swapAndLiquify(contractTokenBalance) (#1356)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1417-1424)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1403-1409)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1356)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1417-1424)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1368)
- _liquidityFee = _previousLiquidityFee (#1303)
- _liquidityFee = 0 (#1298)
- _tokenTransfer(from,to,amount,takeFee) (#1368)
- _previousLiquidityFee = _liquidityFee (#1295)
- _tokenTransfer(from,to,amount,takeFee) (#1368)
- _previousTaxFee = _taxFee (#1294)
- _tokenTransfer(from,to,amount,takeFee) (#1368)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1186)
- _tokenTransfer(from,to,amount,takeFee) (#1368)
- _taxFee = _previousTaxFee (#1302)
- _taxFee = 0 (#1297)
Reentrancy in PinkPanda.constructor() (#950-967):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#956-957)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#963)
- _isExcludedFromFee[address(this)] = true (#964)
- uniswapV2Router = _uniswapV2Router (#960)
Reentrancy in PinkPanda.swapAndLiquify(uint256) (#1371-1392):
External calls:
- swapTokensForEth(half) (#1383)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1403-1409)
- addLiquidity(otherHalf,newBalance) (#1389)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1417-1424)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1389)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1417-1424)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1389)
- _allowances[owner][spender] = amount (#1318)
Reentrancy in PinkPanda.transferFrom(address,address,uint256) (#1017-1032):
External calls:
- _transfer(sender,recipient,amount) (#1022)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1417-1424)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1403-1409)
External calls sending eth:
- _transfer(sender,recipient,amount) (#1022)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1417-1424)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#1023-1030)
- _allowances[owner][spender] = amount (#1318)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in PinkPanda._transfer(address,address,uint256) (#1322-1369):
External calls:
- swapAndLiquify(contractTokenBalance) (#1356)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1417-1424)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1403-1409)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1356)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1417-1424)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1468)
- _tokenTransfer(from,to,amount,takeFee) (#1368)
- Transfer(sender,recipient,tTransferAmount) (#1489)
- _tokenTransfer(from,to,amount,takeFee) (#1368)
- Transfer(sender,recipient,tTransferAmount) (#1510)
- _tokenTransfer(from,to,amount,takeFee) (#1368)
- Transfer(sender,recipient,tTransferAmount) (#1153)
- _tokenTransfer(from,to,amount,takeFee) (#1368)
Reentrancy in PinkPanda.constructor() (#950-967):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#956-957)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#966)
Reentrancy in PinkPanda.swapAndLiquify(uint256) (#1371-1392):
External calls:
- swapTokensForEth(half) (#1383)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1403-1409)
- addLiquidity(otherHalf,newBalance) (#1389)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1417-1424)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1389)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1417-1424)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1319)
- addLiquidity(otherHalf,newBalance) (#1389)
- SwapAndLiquify(half,newBalance,otherHalf) (#1391)
Reentrancy in PinkPanda.transferFrom(address,address,uint256) (#1017-1032):
External calls:
- _transfer(sender,recipient,amount) (#1022)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1417-1424)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1403-1409)
External calls sending eth:
- _transfer(sender,recipient,amount) (#1022)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1417-1424)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1319)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#1023-1030)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#537-545) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#542)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#296-308) uses assembly
- INLINE ASM (#304-306)
Address._functionCallWithValue(address,bytes,uint256,string) (#423-450) uses assembly
- INLINE ASM (#442-445)
Do not use evm assembly.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#423-450) is never used and should be removed
Address.functionCall(address,bytes) (#358-363) is never used and should be removed
Address.functionCall(address,bytes,string) (#371-377) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#390-402) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#410-421) is never used and should be removed
Address.isContract(address) (#296-308) is never used and should be removed
Address.sendValue(address,uint256) (#326-338) is never used and should be removed
Context._msgData() (#269-272) is never used and should be removed
SafeMath.mod(uint256,uint256) (#238-240) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#254-261) is never used and should be removed
Remove unused functions.
Additional information: link
PinkPanda._rTotal (#914) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
PinkPanda._previousTaxFee (#922) is set pre-construction with a non-constant function or state variable:
- _taxFee
PinkPanda._previousLiquidityFee (#925) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
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
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#615) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#617) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#648) is not in mixedCase
Function IUniswapV2Router01.WETH() (#694) is not in mixedCase
Parameter PinkPanda.setSwapAndLiquifyEnabled(bool)._enabled (#1176) is not in mixedCase
Parameter PinkPanda.calculateTaxFee(uint256)._amount (#1279) is not in mixedCase
Parameter PinkPanda.calculateLiquidityFee(uint256)._amount (#1283) is not in mixedCase
Variable PinkPanda._taxFee (#921) is not in mixedCase
Variable PinkPanda._liquidityFee (#924) is not in mixedCase
Variable PinkPanda._maxTxAmount (#933) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#270)" inContext (#264-273)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#699) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#700)
Variable PinkPanda._transferFromExcluded(address,address,uint256).rTransferAmount (#1499) is too similar to PinkPanda._transferFromExcluded(address,address,uint256).tTransferAmount (#1501)
Variable PinkPanda._transferFromExcluded(address,address,uint256).rTransferAmount (#1499) is too similar to PinkPanda._getValues(uint256).tTransferAmount (#1201)
Variable PinkPanda._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1247) is too similar to PinkPanda._transferStandard(address,address,uint256).tTransferAmount (#1460)
Variable PinkPanda._transferBothExcluded(address,address,uint256).rTransferAmount (#1141) is too similar to PinkPanda._transferToExcluded(address,address,uint256).tTransferAmount (#1480)
Variable PinkPanda._getValues(uint256).rTransferAmount (#1203) is too similar to PinkPanda._transferToExcluded(address,address,uint256).tTransferAmount (#1480)
Variable PinkPanda._transferStandard(address,address,uint256).rTransferAmount (#1458) is too similar to PinkPanda._transferToExcluded(address,address,uint256).tTransferAmount (#1480)
Variable PinkPanda._transferFromExcluded(address,address,uint256).rTransferAmount (#1499) is too similar to PinkPanda._transferToExcluded(address,address,uint256).tTransferAmount (#1480)
Variable PinkPanda._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1247) is too similar to PinkPanda._getTValues(uint256).tTransferAmount (#1226)
Variable PinkPanda._transferStandard(address,address,uint256).rTransferAmount (#1458) is too similar to PinkPanda._transferStandard(address,address,uint256).tTransferAmount (#1460)
Variable PinkPanda._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1247) is too similar to PinkPanda._transferBothExcluded(address,address,uint256).tTransferAmount (#1143)
Variable PinkPanda._transferFromExcluded(address,address,uint256).rTransferAmount (#1499) is too similar to PinkPanda._transferStandard(address,address,uint256).tTransferAmount (#1460)
Variable PinkPanda._getValues(uint256).rTransferAmount (#1203) is too similar to PinkPanda._getTValues(uint256).tTransferAmount (#1226)
Variable PinkPanda._transferStandard(address,address,uint256).rTransferAmount (#1458) is too similar to PinkPanda._getTValues(uint256).tTransferAmount (#1226)
Variable PinkPanda._transferBothExcluded(address,address,uint256).rTransferAmount (#1141) is too similar to PinkPanda._transferBothExcluded(address,address,uint256).tTransferAmount (#1143)
Variable PinkPanda._transferFromExcluded(address,address,uint256).rTransferAmount (#1499) is too similar to PinkPanda._getTValues(uint256).tTransferAmount (#1226)
Variable PinkPanda._getValues(uint256).rTransferAmount (#1203) is too similar to PinkPanda._transferBothExcluded(address,address,uint256).tTransferAmount (#1143)
Variable PinkPanda._transferStandard(address,address,uint256).rTransferAmount (#1458) is too similar to PinkPanda._transferBothExcluded(address,address,uint256).tTransferAmount (#1143)
Variable PinkPanda._transferToExcluded(address,address,uint256).rTransferAmount (#1478) is too similar to PinkPanda._transferToExcluded(address,address,uint256).tTransferAmount (#1480)
Variable PinkPanda._transferFromExcluded(address,address,uint256).rTransferAmount (#1499) is too similar to PinkPanda._transferBothExcluded(address,address,uint256).tTransferAmount (#1143)
Variable PinkPanda._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1247) is too similar to PinkPanda._transferToExcluded(address,address,uint256).tTransferAmount (#1480)
Variable PinkPanda._transferBothExcluded(address,address,uint256).rTransferAmount (#1141) is too similar to PinkPanda._transferStandard(address,address,uint256).tTransferAmount (#1460)
Variable PinkPanda.reflectionFromToken(uint256,bool).rTransferAmount (#1093) is too similar to PinkPanda._transferToExcluded(address,address,uint256).tTransferAmount (#1480)
Variable PinkPanda.reflectionFromToken(uint256,bool).rTransferAmount (#1093) is too similar to PinkPanda._getTValues(uint256).tTransferAmount (#1226)
Variable PinkPanda._transferToExcluded(address,address,uint256).rTransferAmount (#1478) is too similar to PinkPanda._transferBothExcluded(address,address,uint256).tTransferAmount (#1143)
Variable PinkPanda._transferToExcluded(address,address,uint256).rTransferAmount (#1478) is too similar to PinkPanda._transferFromExcluded(address,address,uint256).tTransferAmount (#1501)
Variable PinkPanda._transferToExcluded(address,address,uint256).rTransferAmount (#1478) is too similar to PinkPanda._getValues(uint256).tTransferAmount (#1201)
Variable PinkPanda._transferToExcluded(address,address,uint256).rTransferAmount (#1478) is too similar to PinkPanda._transferStandard(address,address,uint256).tTransferAmount (#1460)
Variable PinkPanda._transferBothExcluded(address,address,uint256).rTransferAmount (#1141) is too similar to PinkPanda._getTValues(uint256).tTransferAmount (#1226)
Variable PinkPanda._transferStandard(address,address,uint256).rTransferAmount (#1458) is too similar to PinkPanda._transferFromExcluded(address,address,uint256).tTransferAmount (#1501)
Variable PinkPanda._transferStandard(address,address,uint256).rTransferAmount (#1458) is too similar to PinkPanda._getValues(uint256).tTransferAmount (#1201)
Variable PinkPanda._getValues(uint256).rTransferAmount (#1203) is too similar to PinkPanda._transferFromExcluded(address,address,uint256).tTransferAmount (#1501)
Variable PinkPanda._getValues(uint256).rTransferAmount (#1203) is too similar to PinkPanda._getValues(uint256).tTransferAmount (#1201)
Variable PinkPanda.reflectionFromToken(uint256,bool).rTransferAmount (#1093) is too similar to PinkPanda._transferBothExcluded(address,address,uint256).tTransferAmount (#1143)
Variable PinkPanda.reflectionFromToken(uint256,bool).rTransferAmount (#1093) is too similar to PinkPanda._transferFromExcluded(address,address,uint256).tTransferAmount (#1501)
Variable PinkPanda.reflectionFromToken(uint256,bool).rTransferAmount (#1093) is too similar to PinkPanda._getValues(uint256).tTransferAmount (#1201)
Variable PinkPanda._getValues(uint256).rTransferAmount (#1203) is too similar to PinkPanda._transferStandard(address,address,uint256).tTransferAmount (#1460)
Variable PinkPanda._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1247) is too similar to PinkPanda._transferFromExcluded(address,address,uint256).tTransferAmount (#1501)
Variable PinkPanda._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1247) is too similar to PinkPanda._getValues(uint256).tTransferAmount (#1201)
Variable PinkPanda.reflectionFromToken(uint256,bool).rTransferAmount (#1093) is too similar to PinkPanda._transferStandard(address,address,uint256).tTransferAmount (#1460)
Variable PinkPanda._transferToExcluded(address,address,uint256).rTransferAmount (#1478) is too similar to PinkPanda._getTValues(uint256).tTransferAmount (#1226)
Variable PinkPanda._transferBothExcluded(address,address,uint256).rTransferAmount (#1141) is too similar to PinkPanda._transferFromExcluded(address,address,uint256).tTransferAmount (#1501)
Variable PinkPanda._transferBothExcluded(address,address,uint256).rTransferAmount (#1141) is too similar to PinkPanda._getValues(uint256).tTransferAmount (#1201)
Prevent variables from having similar names.
Additional information: link
PinkPanda.slitherConstructorVariables() (#899-1513) uses literals with too many digits:
- _tTotal = 1000000000 * 10 ** 6 * 10 ** 9 (#913)
PinkPanda.slitherConstructorVariables() (#899-1513) uses literals with too many digits:
- _maxTxAmount = 1000000000 * 10 ** 6 * 10 ** 9 (#933)
PinkPanda.slitherConstructorVariables() (#899-1513) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 500000 * 10 ** 6 * 10 ** 9 (#934)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
PinkPanda._decimals (#919) should be constant
PinkPanda._name (#917) should be constant
PinkPanda._symbol (#918) should be constant
PinkPanda._tTotal (#913) should be constant
PinkPanda.numTokensSellToAddToLiquidity (#934) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#506-509)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#515-522)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#524-526)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#529-534)
unlock() should be declared external:
- Ownable.unlock() (#537-545)
name() should be declared external:
- PinkPanda.name() (#969-971)
symbol() should be declared external:
- PinkPanda.symbol() (#973-975)
decimals() should be declared external:
- PinkPanda.decimals() (#977-979)
totalSupply() should be declared external:
- PinkPanda.totalSupply() (#981-983)
transfer(address,uint256) should be declared external:
- PinkPanda.transfer(address,uint256) (#990-997)
allowance(address,address) should be declared external:
- PinkPanda.allowance(address,address) (#999-1006)
approve(address,uint256) should be declared external:
- PinkPanda.approve(address,uint256) (#1008-1015)
transferFrom(address,address,uint256) should be declared external:
- PinkPanda.transferFrom(address,address,uint256) (#1017-1032)
increaseAllowance(address,uint256) should be declared external:
- PinkPanda.increaseAllowance(address,uint256) (#1034-1045)
decreaseAllowance(address,uint256) should be declared external:
- PinkPanda.decreaseAllowance(address,uint256) (#1047-1061)
isExcludedFromReward(address) should be declared external:
- PinkPanda.isExcludedFromReward(address) (#1063-1065)
totalFees() should be declared external:
- PinkPanda.totalFees() (#1067-1069)
deliver(uint256) should be declared external:
- PinkPanda.deliver(uint256) (#1071-1081)
reflectionFromToken(uint256,bool) should be declared external:
- PinkPanda.reflectionFromToken(uint256,bool) (#1083-1096)
excludeFromReward(address) should be declared external:
- PinkPanda.excludeFromReward(address) (#1111-1119)
excludeFromFee(address) should be declared external:
- PinkPanda.excludeFromFee(address) (#1156-1158)
includeInFee(address) should be declared external:
- PinkPanda.includeInFee(address) (#1160-1162)
setSwapAndLiquifyEnabled(bool) should be declared external:
- PinkPanda.setSwapAndLiquifyEnabled(bool) (#1176-1179)
isExcludedFromFee(address) should be declared external:
- PinkPanda.isExcludedFromFee(address) (#1306-1308)
Use the external attribute for functions never called from the contract.
Additional information: link
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.
Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.
Token is deployed only at one blockchain
Token has only one trading pair
Contract has 10% buy tax and 8% sell tax.
Taxes are low and contract ownership is renounced.
Token has a considerable age, but social accounts / website are missing or have few users
Token has a considerable age, but average PancakeSwap 30d trading volume is low
Token has no active CoinMarketCap listing / rank
Token has relatively low CoinGecko rank
Telegram account has relatively few subscribers
Last post in Twitter was more than 30 days ago
Unable to find Youtube account