PAWN MY NFT Token Logo

PNFT [PAWN MY NFT] Token

About PNFT

Listings

Token 2 years
CoinMarketCap 2 years
white paper

PawnMyNFT is a revolutionary new project launched on Binance Smart Chain. It uses a platform and smart contract to support lending on Non-Fungible Tokens.

Social

Laser Scorebeta Last Audit: 28 February 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...)

PawnMyNft.addLiquidity(uint256,uint256) (#753-766) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#758-765)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in PawnMyNft._transfer(address,address,uint256) (#662-700):
External calls:
- swapAndLiquify(contractTokenBalance) (#684)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#758-765)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#742-748)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#684)
- recipient.transfer(amount) (#626)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#758-765)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#687)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#695)
- finalAmount = takeFee(sender,recipient,amount) (#689-690)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#780)
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.

PawnMyNft.addLiquidity(uint256,uint256) (#753-766) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#758-765)
Ensure that all the return values of the function calls are used.

Additional information: link

PawnMyNft.allowance(address,address).owner (#517) shadows:
- Ownable.owner() (#152-154) (function)
PawnMyNft._approve(address,address,uint256).owner (#540) shadows:
- Ownable.owner() (#152-154) (function)
Rename the local variables that shadow another component.

Additional information: link

PawnMyNft.setBuyTaxes(uint256,uint256,uint256) (#560-566) should emit an event for:
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyMarketingFee).add(_buyTeamFee) (#565)
PawnMyNft.setSellTaxes(uint256,uint256,uint256) (#568-574) should emit an event for:
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellMarketingFee).add(_sellTeamFee) (#573)
PawnMyNft.setDistributionSettings(uint256,uint256,uint256) (#576-582) should emit an event for:
- _liquidityShare = newLiquidityShare (#577)
- _teamShare = newTeamShare (#579)
- _totalDistributionShares = _liquidityShare.add(_marketingShare).add(_teamShare) (#581)
PawnMyNft.setMaxTxAmount(uint256) (#584-586) should emit an event for:
- _maxTxAmount = maxTxAmount (#585)
PawnMyNft.setWalletLimit(uint256) (#596-598) should emit an event for:
- _walletMax = newLimit (#597)
PawnMyNft.setNumTokensBeforeSwap(uint256) (#600-602) should emit an event for:
- minimumTokensBeforeSwap = newLimit (#601)
Emit an event for critical parameter changes.

Additional information: link

PawnMyNft.setMarketingWalletAddress(address).newAddress (#604) lacks a zero-check on :
- marketingWalletAddress = address(newAddress) (#605)
PawnMyNft.setTeamWalletAddress(address).newAddress (#608) lacks a zero-check on :
- teamWalletAddress = address(newAddress) (#609)
Check that the address is not zero.

Additional information: link

Reentrancy in PawnMyNft.changeRouterVersion(address) (#629-646):
External calls:
- newPairAddress = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#637-638)
State variables written after the call(s):
- isMarketPair[address(uniswapPair)] = true (#645)
- isWalletLimitExempt[address(uniswapPair)] = true (#644)
- uniswapPair = newPairAddress (#641)
- uniswapV2Router = _uniswapV2Router (#642)
Reentrancy in PawnMyNft.constructor() (#467-495):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#471-472)
State variables written after the call(s):
- _allowances[address(this)][address(uniswapV2Router)] = _totalSupply (#475)
- _balances[_msgSender()] = _totalSupply (#493)
- _totalDistributionShares = _liquidityShare.add(_marketingShare).add(_teamShare) (#482)
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyMarketingFee).add(_buyTeamFee) (#480)
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellMarketingFee).add(_sellTeamFee) (#481)
- isExcludedFromFee[owner()] = true (#477)
- isExcludedFromFee[address(this)] = true (#478)
- isMarketPair[address(uniswapPair)] = true (#491)
- isTxLimitExempt[owner()] = true (#488)
- isTxLimitExempt[address(this)] = true (#489)
- isWalletLimitExempt[owner()] = true (#484)
- isWalletLimitExempt[address(uniswapPair)] = true (#485)
- isWalletLimitExempt[address(this)] = true (#486)
- uniswapV2Router = _uniswapV2Router (#474)
Reentrancy in PawnMyNft.swapAndLiquify(uint256) (#709-731):
External calls:
- swapTokensForEth(tokensForSwap) (#714)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#742-748)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#730)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#758-765)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#724)
- recipient.transfer(amount) (#626)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#727)
- recipient.transfer(amount) (#626)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#730)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#758-765)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#730)
- _allowances[owner][spender] = amount (#544)
Reentrancy in PawnMyNft.transferFrom(address,address,uint256) (#656-660):
External calls:
- _transfer(sender,recipient,amount) (#657)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#758-765)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#742-748)
External calls sending eth:
- _transfer(sender,recipient,amount) (#657)
- recipient.transfer(amount) (#626)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#758-765)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#658)
- _allowances[owner][spender] = amount (#544)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in PawnMyNft._transfer(address,address,uint256) (#662-700):
External calls:
- swapAndLiquify(contractTokenBalance) (#684)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#758-765)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#742-748)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#684)
- recipient.transfer(amount) (#626)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#758-765)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#781)
- finalAmount = takeFee(sender,recipient,amount) (#689-690)
- Transfer(sender,recipient,finalAmount) (#697)
Reentrancy in PawnMyNft.constructor() (#467-495):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#471-472)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_totalSupply) (#494)
Reentrancy in PawnMyNft.swapAndLiquify(uint256) (#709-731):
External calls:
- swapTokensForEth(tokensForSwap) (#714)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#742-748)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#730)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#758-765)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#724)
- recipient.transfer(amount) (#626)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#727)
- recipient.transfer(amount) (#626)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#730)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#758-765)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#545)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#730)
Reentrancy in PawnMyNft.swapTokensForEth(uint256) (#733-751):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#742-748)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#750)
Reentrancy in PawnMyNft.transferFrom(address,address,uint256) (#656-660):
External calls:
- _transfer(sender,recipient,amount) (#657)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#758-765)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#742-748)
External calls sending eth:
- _transfer(sender,recipient,amount) (#657)
- recipient.transfer(amount) (#626)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#758-765)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#545)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#658)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#187-192) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#189)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#83-92) uses assembly
- INLINE ASM (#90)
Address._functionCallWithValue(address,bytes,uint256,string) (#119-136) uses assembly
- INLINE ASM (#128-131)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#119-136) is never used and should be removed
Address.functionCall(address,bytes) (#102-104) is never used and should be removed
Address.functionCall(address,bytes,string) (#106-108) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#110-112) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#114-117) is never used and should be removed
Address.isContract(address) (#83-92) is never used and should be removed
Address.sendValue(address,uint256) (#94-100) is never used and should be removed
Context._msgData() (#10-13) is never used and should be removed
SafeMath.mod(uint256,uint256) (#71-73) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#75-78) is never used and should be removed
Remove unused functions.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#94-100):
- (success) = recipient.call{value: amount}() (#98)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#119-136):
- (success,returndata) = target.call{value: weiValue}(data) (#122)
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() (#226) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#227) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#243) is not in mixedCase
Function IUniswapV2Router01.WETH() (#262) is not in mixedCase
Parameter PawnMyNft.setSwapAndLiquifyEnabled(bool)._enabled (#612) is not in mixedCase
Variable PawnMyNft._balances (#408) is not in mixedCase
Variable PawnMyNft._buyLiquidityFee (#416) is not in mixedCase
Variable PawnMyNft._buyMarketingFee (#417) is not in mixedCase
Variable PawnMyNft._buyTeamFee (#418) is not in mixedCase
Variable PawnMyNft._sellLiquidityFee (#419) is not in mixedCase
Variable PawnMyNft._sellMarketingFee (#420) is not in mixedCase
Variable PawnMyNft._sellTeamFee (#421) is not in mixedCase
Variable PawnMyNft._liquidityShare (#423) is not in mixedCase
Variable PawnMyNft._marketingShare (#424) is not in mixedCase
Variable PawnMyNft._teamShare (#425) is not in mixedCase
Variable PawnMyNft._totalTaxIfBuying (#427) is not in mixedCase
Variable PawnMyNft._totalTaxIfSelling (#428) is not in mixedCase
Variable PawnMyNft._totalDistributionShares (#429) is not in mixedCase
Variable PawnMyNft._maxTxAmount (#432) is not in mixedCase
Variable PawnMyNft._walletMax (#433) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#11)" inContext (#4-14)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in PawnMyNft._transfer(address,address,uint256) (#662-700):
External calls:
- swapAndLiquify(contractTokenBalance) (#684)
- recipient.transfer(amount) (#626)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#684)
- recipient.transfer(amount) (#626)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#758-765)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#687)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#695)
- finalAmount = takeFee(sender,recipient,amount) (#689-690)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#780)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#781)
- finalAmount = takeFee(sender,recipient,amount) (#689-690)
- Transfer(sender,recipient,finalAmount) (#697)
Reentrancy in PawnMyNft.swapAndLiquify(uint256) (#709-731):
External calls:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#724)
- recipient.transfer(amount) (#626)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#727)
- recipient.transfer(amount) (#626)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#724)
- recipient.transfer(amount) (#626)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#727)
- recipient.transfer(amount) (#626)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#730)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#758-765)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#730)
- _allowances[owner][spender] = amount (#544)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#545)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#730)
Reentrancy in PawnMyNft.transferFrom(address,address,uint256) (#656-660):
External calls:
- _transfer(sender,recipient,amount) (#657)
- recipient.transfer(amount) (#626)
External calls sending eth:
- _transfer(sender,recipient,amount) (#657)
- recipient.transfer(amount) (#626)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#758-765)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#658)
- _allowances[owner][spender] = amount (#544)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#545)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#658)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

PawnMyNft.slitherConstructorVariables() (#395-788) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#406)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

PawnMyNft._decimals (#402) should be constant
PawnMyNft._name (#400) should be constant
PawnMyNft._symbol (#401) should be constant
PawnMyNft._totalSupply (#431) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

waiveOwnership() should be declared external:
- Ownable.waiveOwnership() (#161-164)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#166-170)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#172-174)
getTime() should be declared external:
- Ownable.getTime() (#176-178)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#180-185)
unlock() should be declared external:
- Ownable.unlock() (#187-192)
name() should be declared external:
- PawnMyNft.name() (#497-499)
symbol() should be declared external:
- PawnMyNft.symbol() (#501-503)
decimals() should be declared external:
- PawnMyNft.decimals() (#505-507)
totalSupply() should be declared external:
- PawnMyNft.totalSupply() (#509-511)
allowance(address,address) should be declared external:
- PawnMyNft.allowance(address,address) (#517-519)
increaseAllowance(address,uint256) should be declared external:
- PawnMyNft.increaseAllowance(address,uint256) (#521-524)
decreaseAllowance(address,uint256) should be declared external:
- PawnMyNft.decreaseAllowance(address,uint256) (#526-529)
minimumTokensBeforeSwapAmount() should be declared external:
- PawnMyNft.minimumTokensBeforeSwapAmount() (#531-533)
approve(address,uint256) should be declared external:
- PawnMyNft.approve(address,uint256) (#535-538)
setMarketPairStatus(address,bool) should be declared external:
- PawnMyNft.setMarketPairStatus(address,bool) (#548-550)
setIsExcludedFromFee(address,bool) should be declared external:
- PawnMyNft.setIsExcludedFromFee(address,bool) (#556-558)
setSwapAndLiquifyEnabled(bool) should be declared external:
- PawnMyNft.setSwapAndLiquifyEnabled(bool) (#612-615)
setSwapAndLiquifyByLimitOnly(bool) should be declared external:
- PawnMyNft.setSwapAndLiquifyByLimitOnly(bool) (#617-619)
getCirculatingSupply() should be declared external:
- PawnMyNft.getCirculatingSupply() (#621-623)
changeRouterVersion(address) should be declared external:
- PawnMyNft.changeRouterVersion(address) (#629-646)
transfer(address,uint256) should be declared external:
- PawnMyNft.transfer(address,uint256) (#651-654)
transferFrom(address,address,uint256) should be declared external:
- PawnMyNft.transferFrom(address,address,uint256) (#656-660)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap liquidity 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 30d PancakeSwap volume is low.


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


Token is deployed only at one blockchain


Token has only one trading pair

Contract has 9% buy tax and 10% sell tax.
Taxes are low and contract ownership is renounced.


Unable to find Discord account


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 code repository for the project


Young tokens have high risks of price dump / death


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

Price for PNFT

News for PNFT