Polymorphic Inu Token Logo

PINU [Polymorphic Inu] Token

About PINU

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 4 January 2022

report
Token seems to be anonymous. As long as we are unable to find website score is limited.


Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)

Reentrancy in DEPLOYABLE._transfer(address,address,uint256) (#922-973):
External calls:
- swapAndLiquify(contractTokenBalance) (#952)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1049-1056)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1033-1039)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#952)
- recipient.transfer(amount) (#890)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1049-1056)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#955-958)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#968)
- finalAmount = takeFee(sender,recipient,amount) (#960-963)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#1073)
Apply the check-effects-interactions pattern.

Additional information: link

DEPLOYABLE.BuyBackWalletAddress (#643-644) should be constant
DEPLOYABLE._BuyBackShare (#665) should be constant
DEPLOYABLE._decimals (#639) should be constant
DEPLOYABLE._liquidityShare (#663) should be constant
DEPLOYABLE._marketingShare (#664) should be constant
DEPLOYABLE._maxTxAmount (#672) should be constant
DEPLOYABLE._name (#637) should be constant
DEPLOYABLE._symbol (#638) should be constant
DEPLOYABLE._totalSupply (#671) should be constant
DEPLOYABLE._walletMax (#673) should be constant
DEPLOYABLE.checkWalletLimit (#682) should be constant
DEPLOYABLE.marketingWalletAddress (#641-642) should be constant
DEPLOYABLE.minimumTokensBeforeSwap (#674) should be constant
DEPLOYABLE.swapAndLiquifyByLimitOnly (#681) should be constant
Ownable._previousOwner (#254) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

Reentrancy in DEPLOYABLE._transfer(address,address,uint256) (#922-973):
External calls:
- swapAndLiquify(contractTokenBalance) (#952)
- recipient.transfer(amount) (#890)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#952)
- recipient.transfer(amount) (#890)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1049-1056)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#955-958)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#968)
- finalAmount = takeFee(sender,recipient,amount) (#960-963)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#1073)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#1074)
- finalAmount = takeFee(sender,recipient,amount) (#960-963)
- Transfer(sender,recipient,finalAmount) (#970)
Reentrancy in DEPLOYABLE.swapAndLiquify(uint256) (#989-1022):
External calls:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#1015)
- recipient.transfer(amount) (#890)
- transferToAddressETH(BuyBackWalletAddress,amountBNBBuyBack) (#1018)
- recipient.transfer(amount) (#890)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#1015)
- recipient.transfer(amount) (#890)
- transferToAddressETH(BuyBackWalletAddress,amountBNBBuyBack) (#1018)
- recipient.transfer(amount) (#890)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#1021)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1049-1056)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#1021)
- _allowances[owner][spender] = amount (#825)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#826)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#1021)
Reentrancy in DEPLOYABLE.transferFrom(address,address,uint256) (#905-920):
External calls:
- _transfer(sender,recipient,amount) (#910)
- recipient.transfer(amount) (#890)
External calls sending eth:
- _transfer(sender,recipient,amount) (#910)
- recipient.transfer(amount) (#890)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1049-1056)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#911-918)
- _allowances[owner][spender] = amount (#825)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#826)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#911-918)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#435) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#436)
Prevent variables from having similar names.

Additional information: link

DEPLOYABLE.slitherConstructorVariables() (#633-1080) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#645-646)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Ownable._previousOwner (#254) is never used in DEPLOYABLE (#633-1080)
Remove unused state variables.

Additional information: link

DEPLOYABLE.addLiquidity(uint256,uint256) (#1044-1057) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1049-1056)
Ensure that all the return values of the function calls are used.

Additional information: link

DEPLOYABLE.allowance(address,address).owner (#770) shadows:
- Ownable.owner() (#267-269) (function)
DEPLOYABLE._approve(address,address,uint256).owner (#818) shadows:
- Ownable.owner() (#267-269) (function)
Rename the local variables that shadow another component.

Additional information: link

DEPLOYABLE.setBuyTaxes(uint256,uint256,uint256) (#843-855) should emit an event for:
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyMarketingFee).add(_buyBuyBackFee) (#852-854)
DEPLOYABLE.setSellTaxes(uint256,uint256,uint256) (#857-869) should emit an event for:
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellMarketingFee).add(_sellBuyBackFee) (#866-868)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in DEPLOYABLE.constructor() (#701-748):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#709-712)
State variables written after the call(s):
- _allowances[address(this)][address(uniswapV2Router)] = _totalSupply (#715)
- _balances[_msgSender()] = _totalSupply (#746)
- _totalDistributionShares = _liquidityShare.add(_marketingShare).add(_BuyBackShare) (#726-728)
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyMarketingFee).add(_buyBuyBackFee) (#720-722)
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellMarketingFee).add(_sellBuyBackFee) (#723-725)
- isExcludedFromFee[owner()] = true (#717)
- isExcludedFromFee[address(this)] = true (#718)
- isMarketPair[address(uniswapPair)] = true (#744)
- isTxLimitExempt[owner()] = true (#737)
- isTxLimitExempt[address(uniswapPair)] = true (#738)
- isTxLimitExempt[address(this)] = true (#739)
- isTxLimitExempt[marketingWalletAddress] = true (#740)
- isTxLimitExempt[BuyBackWalletAddress] = true (#741)
- isTxLimitExempt[deadAddress] = true (#742)
- isWalletLimitExempt[owner()] = true (#730)
- isWalletLimitExempt[address(uniswapPair)] = true (#731)
- isWalletLimitExempt[address(this)] = true (#732)
- isWalletLimitExempt[marketingWalletAddress] = true (#733)
- isWalletLimitExempt[BuyBackWalletAddress] = true (#734)
- isWalletLimitExempt[deadAddress] = true (#735)
- uniswapV2Router = _uniswapV2Router (#714)
Reentrancy in DEPLOYABLE.swapAndLiquify(uint256) (#989-1022):
External calls:
- swapTokensForEth(tokensForSwap) (#996)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1033-1039)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#1021)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1049-1056)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#1015)
- recipient.transfer(amount) (#890)
- transferToAddressETH(BuyBackWalletAddress,amountBNBBuyBack) (#1018)
- recipient.transfer(amount) (#890)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#1021)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1049-1056)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#1021)
- _allowances[owner][spender] = amount (#825)
Reentrancy in DEPLOYABLE.transferFrom(address,address,uint256) (#905-920):
External calls:
- _transfer(sender,recipient,amount) (#910)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1049-1056)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1033-1039)
External calls sending eth:
- _transfer(sender,recipient,amount) (#910)
- recipient.transfer(amount) (#890)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1049-1056)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#911-918)
- _allowances[owner][spender] = amount (#825)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in DEPLOYABLE._transfer(address,address,uint256) (#922-973):
External calls:
- swapAndLiquify(contractTokenBalance) (#952)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1049-1056)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1033-1039)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#952)
- recipient.transfer(amount) (#890)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1049-1056)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#1074)
- finalAmount = takeFee(sender,recipient,amount) (#960-963)
- Transfer(sender,recipient,finalAmount) (#970)
Reentrancy in DEPLOYABLE.constructor() (#701-748):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#709-712)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_totalSupply) (#747)
Reentrancy in DEPLOYABLE.swapAndLiquify(uint256) (#989-1022):
External calls:
- swapTokensForEth(tokensForSwap) (#996)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1033-1039)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#1021)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1049-1056)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#1015)
- recipient.transfer(amount) (#890)
- transferToAddressETH(BuyBackWalletAddress,amountBNBBuyBack) (#1018)
- recipient.transfer(amount) (#890)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#1021)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1049-1056)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#826)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#1021)
Reentrancy in DEPLOYABLE.swapTokensForEth(uint256) (#1024-1042):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1033-1039)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#1041)
Reentrancy in DEPLOYABLE.transferFrom(address,address,uint256) (#905-920):
External calls:
- _transfer(sender,recipient,amount) (#910)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1049-1056)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1033-1039)
External calls sending eth:
- _transfer(sender,recipient,amount) (#910)
- recipient.transfer(amount) (#890)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1049-1056)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#826)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#911-918)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#157-168) uses assembly
- INLINE ASM (#164-166)
Address._functionCallWithValue(address,bytes,uint256,string) (#226-249) uses assembly
- INLINE ASM (#241-244)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#226-249) is never used and should be removed
Address.functionCall(address,bytes) (#184-189) is never used and should be removed
Address.functionCall(address,bytes,string) (#191-197) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#199-211) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#213-224) is never used and should be removed
Address.isContract(address) (#157-168) is never used and should be removed
Address.sendValue(address,uint256) (#170-182) is never used and should be removed
Context._msgData() (#56-59) is never used and should be removed
SafeMath.mod(uint256,uint256) (#142-144) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#146-153) is never used and should be removed
Remove unused functions.

Additional information: link

solc-0.8.11 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

Low level call in Address.sendValue(address,uint256) (#170-182):
- (success) = recipient.call{value: amount}() (#177)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#226-249):
- (success,returndata) = target.call{value: weiValue}(data) (#234-236)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#354) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#356) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#386) is not in mixedCase
Function IUniswapV2Router01.WETH() (#430) is not in mixedCase
Parameter DEPLOYABLE.setSwapAndLiquifyEnabled(bool)._enabled (#878) is not in mixedCase
Variable DEPLOYABLE.BuyBackWalletAddress (#643-644) is not in mixedCase
Variable DEPLOYABLE._balances (#648) is not in mixedCase
Variable DEPLOYABLE._buyLiquidityFee (#656) is not in mixedCase
Variable DEPLOYABLE._buyMarketingFee (#657) is not in mixedCase
Variable DEPLOYABLE._buyBuyBackFee (#658) is not in mixedCase
Variable DEPLOYABLE._sellLiquidityFee (#659) is not in mixedCase
Variable DEPLOYABLE._sellMarketingFee (#660) is not in mixedCase
Variable DEPLOYABLE._sellBuyBackFee (#661) is not in mixedCase
Variable DEPLOYABLE._liquidityShare (#663) is not in mixedCase
Variable DEPLOYABLE._marketingShare (#664) is not in mixedCase
Variable DEPLOYABLE._BuyBackShare (#665) is not in mixedCase
Variable DEPLOYABLE._totalTaxIfBuying (#667) is not in mixedCase
Variable DEPLOYABLE._totalTaxIfSelling (#668) is not in mixedCase
Variable DEPLOYABLE._totalDistributionShares (#669) is not in mixedCase
Variable DEPLOYABLE._maxTxAmount (#672) is not in mixedCase
Variable DEPLOYABLE._walletMax (#673) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#57)" inContext (#51-60)
Remove redundant statements if they congest code but offer no value.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#276-279)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#281-288)
name() should be declared external:
- DEPLOYABLE.name() (#750-752)
symbol() should be declared external:
- DEPLOYABLE.symbol() (#754-756)
decimals() should be declared external:
- DEPLOYABLE.decimals() (#758-760)
totalSupply() should be declared external:
- DEPLOYABLE.totalSupply() (#762-764)
allowance(address,address) should be declared external:
- DEPLOYABLE.allowance(address,address) (#770-777)
increaseAllowance(address,uint256) should be declared external:
- DEPLOYABLE.increaseAllowance(address,uint256) (#779-790)
decreaseAllowance(address,uint256) should be declared external:
- DEPLOYABLE.decreaseAllowance(address,uint256) (#792-806)
approve(address,uint256) should be declared external:
- DEPLOYABLE.approve(address,uint256) (#808-815)
setIsExcludedFromFee(address,bool) should be declared external:
- DEPLOYABLE.setIsExcludedFromFee(address,bool) (#836-841)
setSwapAndLiquifyEnabled(bool) should be declared external:
- DEPLOYABLE.setSwapAndLiquifyEnabled(bool) (#878-881)
getCirculatingSupply() should be declared external:
- DEPLOYABLE.getCirculatingSupply() (#883-885)
transfer(address,uint256) should be declared external:
- DEPLOYABLE.transfer(address,uint256) (#896-903)
transferFrom(address,address,uint256) should be declared external:
- DEPLOYABLE.transferFrom(address,address,uint256) (#905-920)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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


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


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute volume.


Unable to find PancakeSwap trading pair to compute number of swaps.


Unable to find Telegram and Twitter accounts


Unable to find website, listings and other project-related information


Young tokens have high risks of scam / price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for PINU