Pixl Coin Token Logo

PXLC [Pixl Coin] Token

About PXLC

Listings

Token 2 years
white paper

PIXL fuses the world of advertising with the metaverse. In true Web 3.0 fashion, it is a fresh way for advertisers to reach a new and engaged audience. Today, the crypto space is manipulated and flooded with a vast variety of different projects of which a large number are dishonest.

Through PIXL’s community and dedication to the values of transparency, honesty and integrity, this is a space for investors to interact with vetted and trusted projects, and for those projects to demonstrate and advertise their true value.

Laser Scorebeta Last Audit: 30 November 2021

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...)

PixlCoin.swapTokens(uint256) (#664-681) sends eth to arbitrary user
Dangerous calls:
- _marketingWallet.transfer(marketingWalletETH) (#673)
- _operationsWallet.transfer(operationsWalletETH) (#674)
- _buybackWallet.transfer(transferredBalance.sub(marketingWalletETH).sub(operationsWalletETH)) (#675)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in PixlCoin._transfer(address,address,uint256) (#635-662):
External calls:
- swapTokens(contractTokenBalance) (#650)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#692-698)
External calls sending eth:
- swapTokens(contractTokenBalance) (#650)
- _marketingWallet.transfer(marketingWalletETH) (#673)
- _operationsWallet.transfer(operationsWalletETH) (#674)
- _buybackWallet.transfer(transferredBalance.sub(marketingWalletETH).sub(operationsWalletETH)) (#675)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#661)
- _buybackWalletTokens = _buybackWalletTokens.add(rLiquidity.div(_liquidityFee).mul(_buybackFee)) (#811)
- _tokenTransfer(from,to,amount,takeFee) (#661)
- _marketingWalletTokens = _marketingWalletTokens.add(rLiquidity.sub(rLiquidity.div(_liquidityFee).mul(_buybackFee)).sub(rLiquidity.div(_liquidityFee).mul(_operationsFee))) (#813)
- _tokenTransfer(from,to,amount,takeFee) (#661)
- _operationsWalletTokens = _operationsWalletTokens.add(rLiquidity.div(_liquidityFee).mul(_operationsFee)) (#812)
- _tokenTransfer(from,to,amount,takeFee) (#661)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#807)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#726)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#728)
- _rOwned[deadAddress] = _rOwned[deadAddress].add(rBurn) (#730)
- _tokenTransfer(from,to,amount,takeFee) (#661)
- _rTotal = _rTotal.sub(rFee) (#752)
- _tokenTransfer(from,to,amount,takeFee) (#661)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#809)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#727)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#729)
- _tOwned[deadAddress] = _tOwned[deadAddress].add(tBurn) (#731)
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.

PixlCoin._takeLiquidity(uint256) (#804-815) performs a multiplication on the result of a division:
-_marketingWalletTokens = _marketingWalletTokens.add(rLiquidity.sub(rLiquidity.div(_liquidityFee).mul(_buybackFee)).sub(rLiquidity.div(_liquidityFee).mul(_operationsFee))) (#813)
Consider ordering multiplication before division.

Additional information: link

PixlCoin._getRValues(uint256,uint256,uint256,uint256,uint256)._rValues (#779) is a local variable never initialized
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.

Additional information: link

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

Additional information: link

PixlCoin.setNumTokensSellToAddToLiquidity(uint256) (#896-898) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#897)
Emit an event for critical parameter changes.

Additional information: link

PixlCoin.setBuybackWallet(address).buyBackWallet (#747) lacks a zero-check on :
- _buybackWallet = address(buyBackWallet) (#748)
Check that the address is not zero.

Additional information: link

Reentrancy in PixlCoin.transferFrom(address,address,uint256) (#550-554):
External calls:
- _transfer(sender,recipient,amount) (#551)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#692-698)
External calls sending eth:
- _transfer(sender,recipient,amount) (#551)
- _marketingWallet.transfer(marketingWalletETH) (#673)
- _operationsWallet.transfer(operationsWalletETH) (#674)
- _buybackWallet.transfer(transferredBalance.sub(marketingWalletETH).sub(operationsWalletETH)) (#675)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#552)
- _allowances[owner][spender] = amount (#631)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in PixlCoin.transferFrom(address,address,uint256) (#550-554):
External calls:
- _transfer(sender,recipient,amount) (#551)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#692-698)
External calls sending eth:
- _transfer(sender,recipient,amount) (#551)
- _marketingWallet.transfer(marketingWalletETH) (#673)
- _operationsWallet.transfer(operationsWalletETH) (#674)
- _buybackWallet.transfer(transferredBalance.sub(marketingWalletETH).sub(operationsWalletETH)) (#675)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#632)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#552)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#126-143) uses assembly
- INLINE ASM (#135-138)
Do not use evm assembly.

Additional information: link

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

Additional information: link

PixlCoin._previousBurnFee (#455) is set pre-construction with a non-constant function or state variable:
- _burnFee
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

solc-0.8.4 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._functionCallWithValue(address,bytes,uint256,string) (#126-143):
- (success,returndata) = target.call{value: weiValue}(data) (#129)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable PixlCoin._buybackWallet (#459) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

Reentrancy in PixlCoin.transferFrom(address,address,uint256) (#550-554):
External calls:
- _transfer(sender,recipient,amount) (#551)
- _marketingWallet.transfer(marketingWalletETH) (#673)
- _operationsWallet.transfer(operationsWalletETH) (#674)
- _buybackWallet.transfer(transferredBalance.sub(marketingWalletETH).sub(operationsWalletETH)) (#675)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#552)
- _allowances[owner][spender] = amount (#631)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#632)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#552)
Apply the check-effects-interactions pattern.

Additional information: link

Variable PixlCoin.reflectionFromToken(uint256,bool).rTransferAmount (#593) is too similar to PixlCoin._transferStandard(address,address,uint256,uint256).tTransferAmount (#725)
Prevent variables from having similar names.

Additional information: link

PixlCoin.slitherConstructorVariables() (#413-903) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#460)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

PixlCoin._previousOperationsFee (#449) is never used in PixlCoin (#413-903)
Remove unused state variables.

Additional information: link

PixlCoin.deadAddress (#460) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

includeInFee(address) should be declared external:
- PixlCoin.includeInFee(address) (#876-878)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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 number of swaps.


Twitter account link seems to be invalid


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 audit link on the website


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 price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinMarketCap rank

Price for PXLC