TPDAO Token Logo

TPDAO Token

ALERT: rug pull scam

About TPDAO

Listings

Not Found
Token 4 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 29 June 2022

report
Token seems to be a scam (type: rug pull scam).

TPDAO._tFeeTotal (#239) is never initialized. It is used in:
- TPDAO.totalFees() (#370-372)
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


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


Contract ownership is not renounced (belongs to a wallet)

TPDAO._tokenTransferBuy(address,address,uint256) (#465-499) performs a multiplication on the result of a division:
-_takeTransfer(sender,_fundAddressB,tAmount.div(50).mul(3),currentRate) (#481-486)
TPDAO._tokenTransferBuy(address,address,uint256) (#465-499) performs a multiplication on the result of a division:
-_rOwned[recipient] = _rOwned[recipient].add(rAmount.div(100).mul(92)) (#495-497)
TPDAO._tokenTransferBuy(address,address,uint256) (#465-499) performs a multiplication on the result of a division:
-Transfer(sender,recipient,tAmount.div(100).mul(92)) (#498)
TPDAO._tokenTransferSell(address,address,uint256) (#501-535) performs a multiplication on the result of a division:
-_takeTransfer(sender,_fundAddressD,tAmount.div(50).mul(9),currentRate) (#517-522)
TPDAO._tokenTransferSell(address,address,uint256) (#501-535) performs a multiplication on the result of a division:
-_rOwned[recipient] = _rOwned[recipient].add(rAmount.div(5).mul(4)) (#531-533)
TPDAO._tokenTransferSell(address,address,uint256) (#501-535) performs a multiplication on the result of a division:
-Transfer(sender,recipient,tAmount.div(5).mul(4)) (#534)
Consider ordering multiplication before division.

Additional information: link

TPDAO.allowance(address,address).owner (#306) shadows:
- Ownable.owner() (#92-94) (function)
TPDAO._approve(address,address,uint256).owner (#419) shadows:
- Ownable.owner() (#92-94) (function)
Rename the local variables that shadow another component.

Additional information: link

Ownable.changeOwner(address) (#104-106) should emit an event for:
- _owner = newOwner (#105)
Emit an event for critical parameter changes.

Additional information: link

Ownable.changeOwner(address).newOwner (#104) lacks a zero-check on :
- _owner = newOwner (#105)
TPDAO.constructor(address,address,address,address,address).fundAddressA (#256) lacks a zero-check on :
- _fundAddressA = fundAddressA (#268)
TPDAO.constructor(address,address,address,address,address).fundAddressB (#256) lacks a zero-check on :
- _fundAddressB = fundAddressB (#269)
TPDAO.constructor(address,address,address,address,address).fundAddressC (#256) lacks a zero-check on :
- _fundAddressC = fundAddressC (#270)
TPDAO.constructor(address,address,address,address,address).fundAddressD (#256) lacks a zero-check on :
- _fundAddressD = fundAddressD (#271)
TPDAO.changeRouter(address).router (#549) lacks a zero-check on :
- uniswapV2Pair = router (#550)
Check that the address is not zero.

Additional information: link

Variable Ownable._owner (#87) is not in mixedCase
Variable TPDAO._liquidityFee (#245) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable TPDAO._fundAddressA (#251) is too similar to TPDAO._fundAddressB (#252)
Variable TPDAO._fundAddressA (#251) is too similar to TPDAO._fundAddressC (#253)
Variable TPDAO._fundAddressA (#251) is too similar to TPDAO._fundAddressD (#254)
Variable TPDAO._fundAddressB (#252) is too similar to TPDAO._fundAddressC (#253)
Variable TPDAO._fundAddressB (#252) is too similar to TPDAO._fundAddressD (#254)
Variable TPDAO._fundAddressC (#253) is too similar to TPDAO._fundAddressD (#254)
Variable TPDAO.constructor(address,address,address,address,address).fundAddressA (#256) is too similar to TPDAO.constructor(address,address,address,address,address).fundAddressB (#256)
Variable TPDAO.constructor(address,address,address,address,address).fundAddressA (#256) is too similar to TPDAO.constructor(address,address,address,address,address).fundAddressC (#256)
Variable TPDAO.constructor(address,address,address,address,address).fundAddressA (#256) is too similar to TPDAO.constructor(address,address,address,address,address).fundAddressD (#256)
Variable TPDAO.constructor(address,address,address,address,address).fundAddressB (#256) is too similar to TPDAO.constructor(address,address,address,address,address).fundAddressC (#256)
Variable TPDAO.constructor(address,address,address,address,address).fundAddressB (#256) is too similar to TPDAO.constructor(address,address,address,address,address).fundAddressD (#256)
Variable TPDAO.constructor(address,address,address,address,address).fundAddressC (#256) is too similar to TPDAO.constructor(address,address,address,address,address).fundAddressD (#256)
Prevent variables from having similar names.

Additional information: link

TPDAO.constructor(address,address,address,address,address) (#256-275) uses literals with too many digits:
- _tTotal = 1000000000000000 * 10 ** _decimals (#261)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

TPDAO._tOwned (#231) is never used in TPDAO (#227-553)
Remove unused state variables.

Additional information: link

TPDAO._liquidityFee (#245) should be constant
TPDAO._tFeeTotal (#239) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

owner() should be declared external:
- Ownable.owner() (#92-94)
changeOwner(address) should be declared external:
- Ownable.changeOwner(address) (#104-106)
name() should be declared external:
- TPDAO.name() (#277-279)
symbol() should be declared external:
- TPDAO.symbol() (#281-283)
decimals() should be declared external:
- TPDAO.decimals() (#285-287)
totalSupply() should be declared external:
- TPDAO.totalSupply() (#289-291)
balanceOf(address) should be declared external:
- TPDAO.balanceOf(address) (#293-295)
transfer(address,uint256) should be declared external:
- TPDAO.transfer(address,uint256) (#297-304)
allowance(address,address) should be declared external:
- TPDAO.allowance(address,address) (#306-313)
approve(address,uint256) should be declared external:
- TPDAO.approve(address,uint256) (#315-322)
transferFrom(address,address,uint256) should be declared external:
- TPDAO.transferFrom(address,address,uint256) (#324-339)
increaseAllowance(address,uint256) should be declared external:
- TPDAO.increaseAllowance(address,uint256) (#341-352)
decreaseAllowance(address,uint256) should be declared external:
- TPDAO.decreaseAllowance(address,uint256) (#354-368)
totalFees() should be declared external:
- TPDAO.totalFees() (#370-372)
excludeFromFee(address) should be declared external:
- TPDAO.excludeFromFee(address) (#387-389)
includeInFee(address) should be declared external:
- TPDAO.includeInFee(address) (#391-393)
claimTokens() should be declared external:
- TPDAO.claimTokens() (#410-412)
isExcludedFromFee(address) should be declared external:
- TPDAO.isExcludedFromFee(address) (#414-416)
changeRouter(address) should be declared external:
- TPDAO.changeRouter(address) (#549-551)
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 PancakeSwap volume 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 PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.


Token is deployed only at one blockchain


Unable to find Telegram and Twitter accounts


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


Young tokens have high risks of price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for TPDAO