PAWGcoin Token Logo

PAWG [PAWGcoin] Token

About PAWG

Listings

Token 2 years

PAWGcoin is disrupting the viral meme coin market by providing a cryptocurrency that powers transactions between content creators and content enthusiasts of tasteful noods.

Our product roadmap is centered around the creation of a platform for content creators and consumers where creators can create and offer exclusive NFTs and NSFW content to their fans. All NFTs and content will be available for purchase with PAWGcoin!

Content Creators will have the tools to upload pictures, GIFs, and videos, determine the amount available for purchase, and have the ability to set a $PAWG price or allow fans to place $PAWG bids on their NFTs.

Social

Laser Scorebeta Last Audit: 30 November 2021

report
Token has too many issues. Scam probability is high.

Anti-Scam

Links


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

Pawg.transferContractBalance(uint256) (#891-894) sends eth to arbitrary user
Dangerous calls:
- address(creator()).transfer(amount) (#893)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in Pawg._transfer(address,address,uint256) (#619-652):
External calls:
- swapAndLiquify(contractTokenBalance) (#640)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#706-713)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#692-698)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#640)
- recipient.transfer(amount) (#897)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#706-713)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#651)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#822)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#738)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#747)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#758)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#768)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#739)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#749)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#759)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#770)
- _tokenTransfer(from,to,amount,takeFee) (#651)
- _rTotal = _rTotal.sub(rFee) (#777)
- _tokenTransfer(from,to,amount,takeFee) (#651)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#824)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#767)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#757)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#748)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#769)
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.

Pawg.addLiquidity(uint256,uint256) (#701-714) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#706-713)
Ensure that all the return values of the function calls are used.

Additional information: link

Pawg._approve(address,address,uint256).owner (#611) shadows:
- Ownable.owner() (#170-172) (function)
Rename the local variables that shadow another component.

Additional information: link

Pawg.setNumTokensSellToAddToLiquidity(uint256) (#878-880) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#879)
Emit an event for critical parameter changes.

Additional information: link

Pawg.setMarketingAddress(address)._marketingAddress (#882) lacks a zero-check on :
- marketingAddress = _marketingAddress (#883)
Check that the address is not zero.

Additional information: link

Reentrancy in Pawg.transferFrom(address,address,uint256) (#533-537):
External calls:
- _transfer(sender,recipient,amount) (#534)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#706-713)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#692-698)
External calls sending eth:
- _transfer(sender,recipient,amount) (#534)
- recipient.transfer(amount) (#897)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#706-713)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#535)
- _allowances[owner][spender] = amount (#615)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Pawg.transferFrom(address,address,uint256) (#533-537):
External calls:
- _transfer(sender,recipient,amount) (#534)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#706-713)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#692-698)
External calls sending eth:
- _transfer(sender,recipient,amount) (#534)
- recipient.transfer(amount) (#897)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#706-713)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#616)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#535)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#135-152) uses assembly
- INLINE ASM (#144-147)
Do not use evm assembly.

Additional information: link

SafeMath.mod(uint256,uint256,string) (#90-93) is never used and should be removed
Remove unused functions.

Additional information: link

Pawg._previousLiquidityFee (#458) 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

Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#135-152):
- (success,returndata) = target.call{value: weiValue}(data) (#138)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable Pawg._maxTxAmount (#460) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#22)" inContext (#16-25)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in Pawg.transferFrom(address,address,uint256) (#533-537):
External calls:
- _transfer(sender,recipient,amount) (#534)
- recipient.transfer(amount) (#897)
External calls sending eth:
- _transfer(sender,recipient,amount) (#534)
- recipient.transfer(amount) (#897)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#706-713)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#535)
- _allowances[owner][spender] = amount (#615)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#616)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#535)
Apply the check-effects-interactions pattern.

Additional information: link

Variable Pawg.reflectionFromToken(uint256,bool).rTransferAmount (#577) is too similar to Pawg._transferToExcluded(address,address,uint256).tTransferAmount (#746)
Prevent variables from having similar names.

Additional information: link

Pawg.slitherConstructorVariables() (#429-903) uses literals with too many digits:
- minimumTokensBeforeSwap = 600000 * 10 ** 6 * 10 ** 9 (#461)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Pawg._tTotal (#444) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

transferContractBalance(uint256) should be declared external:
- Pawg.transferContractBalance(uint256) (#891-894)
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.


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.


Telegram account link seems to be invalid


Twitter account link seems to be invalid


Unable to find Youtube account


Unable to find Discord account


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


Token has a considerable age, but we're still unable to find its website


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


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


Young tokens have high risks of price dump / death

Price for PAWG