Pig Punk Token Logo

$Punk [Pig Punk] Token

About $Punk

Listings

Not Found
Token 3 years

Website

white paper

$PUNK is Fully community-owned and managed. Every decision is made as a community.
Pig Punk is ownerless, fully decentralized and supported by its community of enthusiasts. Everyone can participate in every step of Pig Punk’s growth!

In the cryptocurrency market, Trust is paramount. That means full transparency not only in the community support and development, but also in any security effort. Examples include top-grade audits of $PUNK's code, and liquidity tokens being burnt to strongly reduce any risk of malicious behavior.

Laser Scorebeta Last Audit: 29 June 2022

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

Anti-Scam

Links


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

Reentrancy in PigPunk._transfer(address,address,uint256) (#693-769):
External calls:
- swapAndLiquify(contractTokenBalance) (#746)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#816-822)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#746)
- wallet.transfer(amount) (#785)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#768)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#865)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#866)
- _tOwned[address(this)] = _tOwned[address(this)].add(tDev) (#867)
- _tokenTransfer(from,to,amount,takeFee) (#768)
- txCount ++ (#854)
Apply the check-effects-interactions pattern.

Additional information: link

PigPunk.allowance(address,address).owner (#526) shadows:
- Ownable.owner() (#159-161) (function)
PigPunk._approve(address,address,uint256).owner (#685) shadows:
- Ownable.owner() (#159-161) (function)
Rename the local variables that shadow another component.

Additional information: link

Address.isContract(address) (#79-83) uses assembly
- INLINE ASM (#81)
Address._verifyCallResult(bool,bytes,string) (#131-144) uses assembly
- INLINE ASM (#136-139)
Do not use evm assembly.

Additional information: link

PigPunk._previousTotalFee (#423) is set pre-construction with a non-constant function or state variable:
- _TotalFee
PigPunk._previousBuyFee (#424) is set pre-construction with a non-constant function or state variable:
- _buyFee
PigPunk._previousSellFee (#425) is set pre-construction with a non-constant function or state variable:
- _sellFee
PigPunk._maxWalletToken (#434) is set pre-construction with a non-constant function or state variable:
- _tTotal.mul(1).div(100)
PigPunk._previousMaxWalletToken (#435) is set pre-construction with a non-constant function or state variable:
- _maxWalletToken
PigPunk._maxTxAmount (#439) is set pre-construction with a non-constant function or state variable:
- _tTotal.mul(1).div(100)
PigPunk._previousMaxTxAmount (#440) is set pre-construction with a non-constant function or state variable:
- _maxTxAmount
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) (#85-89):
- (success) = recipient.call{value: amount}() (#87)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#103-108):
- (success,returndata) = target.call{value: value}(data) (#106)
Low level call in Address.functionStaticCall(address,bytes,string) (#114-118):
- (success,returndata) = target.staticcall(data) (#116)
Low level call in Address.functionDelegateCall(address,bytes,string) (#125-129):
- (success,returndata) = target.delegatecall(data) (#127)
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() (#207) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#208) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#221) is not in mixedCase
Function IUniswapV2Router01.WETH() (#238) is not in mixedCase
Function PigPunk._set_Fees(uint256,uint256) (#587-593) is not in mixedCase
Parameter PigPunk._set_Fees(uint256,uint256).Buy_Fee (#587) is not in mixedCase
Parameter PigPunk._set_Fees(uint256,uint256).Sell_Fee (#587) is not in mixedCase
Function PigPunk.set_Swap_And_Liquify_Enabled(bool) (#603-606) is not in mixedCase
Parameter PigPunk.set_Swap_And_Liquify_Enabled(bool).true_or_false (#603) is not in mixedCase
Function PigPunk.set_Transfers_Without_Fees(bool) (#627-629) is not in mixedCase
Parameter PigPunk.set_Transfers_Without_Fees(bool).true_or_false (#627) is not in mixedCase
Function PigPunk.set_Max_Transaction_Percent(uint256) (#649-651) is not in mixedCase
Parameter PigPunk.set_Max_Transaction_Percent(uint256).maxTxPercent_x100 (#649) is not in mixedCase
Function PigPunk.set_Max_Wallet_Percent(uint256) (#654-656) is not in mixedCase
Parameter PigPunk.set_Max_Wallet_Percent(uint256).maxWallPercent_x100 (#654) is not in mixedCase
Function PigPunk.process_Tokens_Now(uint256) (#799-806) is not in mixedCase
Parameter PigPunk.process_Tokens_Now(uint256).percent_Of_Tokens_To_Process (#799) is not in mixedCase
Function PigPunk.remove_Random_Tokens(address,address,uint256) (#832-837) is not in mixedCase
Parameter PigPunk.remove_Random_Tokens(address,address,uint256).random_Token_Address (#832) is not in mixedCase
Parameter PigPunk.remove_Random_Tokens(address,address,uint256).send_to_wallet (#832) is not in mixedCase
Parameter PigPunk.remove_Random_Tokens(address,address,uint256).number_of_tokens (#832) is not in mixedCase
Variable PigPunk._isExcludedFromFee (#379) is not in mixedCase
Variable PigPunk.Wallet_Marketing (#389) is not in mixedCase
Variable PigPunk.Wallet_Burn (#390) is not in mixedCase
Variable PigPunk.Wallet_zero (#391) is not in mixedCase
Variable PigPunk._TotalFee (#417) is not in mixedCase
Variable PigPunk._buyFee (#418) is not in mixedCase
Variable PigPunk._sellFee (#419) is not in mixedCase
Variable PigPunk._maxWalletToken (#434) is not in mixedCase
Variable PigPunk._maxTxAmount (#439) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#71)" inContext (#65-74)
Remove redundant statements if they congest code but offer no value.

Additional information: link

PigPunk.slitherConstructorVariables() (#371-885) uses literals with too many digits:
- Wallet_Burn = address(0x000000000000000000000000000000000000dEaD) (#390)
PigPunk.slitherConstructorVariables() (#371-885) uses literals with too many digits:
- Wallet_zero = address(0x0000000000000000000000000000000000000000) (#391)
PigPunk.slitherConstructorVariables() (#371-885) uses literals with too many digits:
- _tTotal = 100000000000000 * 10 ** 18 (#404)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Contract ticker ($Punk) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.

PigPunk._set_Fees(uint256,uint256) (#587-593) should emit an event for:
- _sellFee = Sell_Fee (#590)
- _buyFee = Buy_Fee (#591)
PigPunk.set_Max_Transaction_Percent(uint256) (#649-651) should emit an event for:
- _maxTxAmount = _tTotal * maxTxPercent_x100 / 10000 (#650)
PigPunk.set_Max_Wallet_Percent(uint256) (#654-656) should emit an event for:
- _maxWalletToken = _tTotal * maxWallPercent_x100 / 10000 (#655)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in PigPunk._transfer(address,address,uint256) (#693-769):
External calls:
- swapAndLiquify(contractTokenBalance) (#746)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#816-822)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#746)
- wallet.transfer(amount) (#785)
State variables written after the call(s):
- _TotalFee = _buyFee (#766)
- _TotalFee = _sellFee (#766)
- _tokenTransfer(from,to,amount,takeFee) (#768)
- _TotalFee = _previousTotalFee (#677)
- _TotalFee = 0 (#670)
- _tokenTransfer(from,to,amount,takeFee) (#768)
- _buyFee = _previousBuyFee (#678)
- _buyFee = 0 (#668)
- _tokenTransfer(from,to,amount,takeFee) (#768)
- _previousBuyFee = _buyFee (#665)
- _tokenTransfer(from,to,amount,takeFee) (#768)
- _previousSellFee = _sellFee (#666)
- _tokenTransfer(from,to,amount,takeFee) (#768)
- _previousTotalFee = _TotalFee (#667)
- _tokenTransfer(from,to,amount,takeFee) (#768)
- _sellFee = _previousSellFee (#679)
- _sellFee = 0 (#669)
Reentrancy in PigPunk.constructor() (#477-492):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#484-485)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#487)
- _isExcludedFromFee[address(this)] = true (#488)
- _isExcludedFromFee[Wallet_Marketing] = true (#489)
- uniswapV2Router = _uniswapV2Router (#486)
Reentrancy in PigPunk.transferFrom(address,address,uint256) (#535-539):
External calls:
- _transfer(sender,recipient,amount) (#536)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#816-822)
External calls sending eth:
- _transfer(sender,recipient,amount) (#536)
- wallet.transfer(amount) (#785)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#537)
- _allowances[owner][spender] = amount (#688)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in PigPunk._transfer(address,address,uint256) (#693-769):
External calls:
- swapAndLiquify(contractTokenBalance) (#746)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#816-822)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#746)
- wallet.transfer(amount) (#785)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#868)
- _tokenTransfer(from,to,amount,takeFee) (#768)
Reentrancy in PigPunk.constructor() (#477-492):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#484-485)
Event emitted after the call(s):
- Transfer(address(0),owner(),_tTotal) (#491)
Reentrancy in PigPunk.transferFrom(address,address,uint256) (#535-539):
External calls:
- _transfer(sender,recipient,amount) (#536)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#816-822)
External calls sending eth:
- _transfer(sender,recipient,amount) (#536)
- wallet.transfer(amount) (#785)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#689)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#537)
Apply the check-effects-interactions pattern.

Additional information: link

Address._verifyCallResult(bool,bytes,string) (#131-144) is never used and should be removed
Address.functionCall(address,bytes) (#91-93) is never used and should be removed
Address.functionCall(address,bytes,string) (#95-97) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#99-101) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#103-108) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#121-123) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#125-129) is never used and should be removed
Address.functionStaticCall(address,bytes) (#110-112) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#114-118) is never used and should be removed
Address.isContract(address) (#79-83) is never used and should be removed
Address.sendValue(address,uint256) (#85-89) is never used and should be removed
Context._msgData() (#70-73) is never used and should be removed
SafeMath.div(uint256,uint256) (#43-45) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#54-59) is never used and should be removed
SafeMath.mul(uint256,uint256) (#39-41) is never used and should be removed
Remove unused functions.

Additional information: link

Reentrancy in PigPunk._transfer(address,address,uint256) (#693-769):
External calls:
- swapAndLiquify(contractTokenBalance) (#746)
- wallet.transfer(amount) (#785)
State variables written after the call(s):
- _TotalFee = _buyFee (#766)
- _TotalFee = _sellFee (#766)
- _tokenTransfer(from,to,amount,takeFee) (#768)
- _TotalFee = _previousTotalFee (#677)
- _TotalFee = 0 (#670)
- _tokenTransfer(from,to,amount,takeFee) (#768)
- _buyFee = _previousBuyFee (#678)
- _buyFee = 0 (#668)
- _tokenTransfer(from,to,amount,takeFee) (#768)
- _previousBuyFee = _buyFee (#665)
- _tokenTransfer(from,to,amount,takeFee) (#768)
- _previousSellFee = _sellFee (#666)
- _tokenTransfer(from,to,amount,takeFee) (#768)
- _previousTotalFee = _TotalFee (#667)
- _tokenTransfer(from,to,amount,takeFee) (#768)
- _sellFee = _previousSellFee (#679)
- _sellFee = 0 (#669)
- _tokenTransfer(from,to,amount,takeFee) (#768)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#865)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#866)
- _tOwned[address(this)] = _tOwned[address(this)].add(tDev) (#867)
- _tokenTransfer(from,to,amount,takeFee) (#768)
- txCount ++ (#854)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#868)
- _tokenTransfer(from,to,amount,takeFee) (#768)
Reentrancy in PigPunk.transferFrom(address,address,uint256) (#535-539):
External calls:
- _transfer(sender,recipient,amount) (#536)
- wallet.transfer(amount) (#785)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#537)
- _allowances[owner][spender] = amount (#688)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#689)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#537)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

PigPunk.Wallet_zero (#391) is never used in PigPunk (#371-885)
PigPunk._tFeeTotal (#405) is never used in PigPunk (#371-885)
PigPunk._previousMaxWalletToken (#435) is never used in PigPunk (#371-885)
PigPunk._previousMaxTxAmount (#440) is never used in PigPunk (#371-885)
Remove unused state variables.

Additional information: link

PigPunk.Wallet_Burn (#390) should be constant
PigPunk.Wallet_Marketing (#389) should be constant
PigPunk.Wallet_zero (#391) should be constant
PigPunk._decimals (#403) should be constant
PigPunk._name (#401) should be constant
PigPunk._symbol (#402) should be constant
PigPunk._tFeeTotal (#405) should be constant
PigPunk._tTotal (#404) should be constant
PigPunk.maxPossibleFee (#413) should be constant
PigPunk.swapTrigger (#409) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#170-173)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#176-180)
name() should be declared external:
- PigPunk.name() (#501-503)
symbol() should be declared external:
- PigPunk.symbol() (#505-507)
decimals() should be declared external:
- PigPunk.decimals() (#509-511)
totalSupply() should be declared external:
- PigPunk.totalSupply() (#513-515)
transfer(address,uint256) should be declared external:
- PigPunk.transfer(address,uint256) (#521-524)
allowance(address,address) should be declared external:
- PigPunk.allowance(address,address) (#526-528)
approve(address,uint256) should be declared external:
- PigPunk.approve(address,uint256) (#530-533)
transferFrom(address,address,uint256) should be declared external:
- PigPunk.transferFrom(address,address,uint256) (#535-539)
increaseAllowance(address,uint256) should be declared external:
- PigPunk.increaseAllowance(address,uint256) (#541-544)
decreaseAllowance(address,uint256) should be declared external:
- PigPunk.decreaseAllowance(address,uint256) (#546-549)
excludeFromFee(address) should be declared external:
- PigPunk.excludeFromFee(address) (#568-570)
includeInFee(address) should be declared external:
- PigPunk.includeInFee(address) (#573-575)
set_Swap_And_Liquify_Enabled(bool) should be declared external:
- PigPunk.set_Swap_And_Liquify_Enabled(bool) (#603-606)
process_Tokens_Now(uint256) should be declared external:
- PigPunk.process_Tokens_Now(uint256) (#799-806)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token seems to be untradeable: there is no PancakeSwap trading pair and no trading volumes. Ignore for presale.


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


Telegram account has less than 100 subscribers


Twitter account has less than 100 followers


Twitter account has few posts


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 find KYC or doxxing proof


Unable to find audit 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


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


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 $Punk

News for $Punk