TrustPad is a decentralized multi-chain fundraising platform enabling projects to raise capital and promise safety to early stage investors. Stake TrustPad tokens to get priority-access to promising projects.
Address.isContract(address) (@openzeppelin/contracts/utils/Address.sol#26-35) uses assembly
- INLINE ASM (@openzeppelin/contracts/utils/Address.sol#33)
Address._verifyCallResult(bool,bytes,string) (@openzeppelin/contracts/utils/Address.sol#171-188) uses assembly
- INLINE ASM (@openzeppelin/contracts/utils/Address.sol#180-183)
Do not use evm assembly.
Additional information: link
TrustPad.allowance(address,address).owner (contracts/TrustPad.sol#75) shadows:
- Ownable.owner() (@openzeppelin/contracts/access/Ownable.sol#35-37) (function)
TrustPad._approve(address,address,uint256).owner (contracts/TrustPad.sol#174) shadows:
- Ownable.owner() (@openzeppelin/contracts/access/Ownable.sol#35-37) (function)
Rename the local variables that shadow another component.
Additional information: link
TrustPad.setFeePercent(uint256) (contracts/TrustPad.sol#290-294) should emit an event for:
- _tFeePercent = fee (contracts/TrustPad.sol#293)
Emit an event for critical parameter changes.
Additional information: link
TrustPad.includeAccount(address) (contracts/TrustPad.sol#155-167) has costly operations inside a loop:
- _excluded.pop() (contracts/TrustPad.sol#163)
Use a local variable to hold the loop computation result.
Additional information: link
Address._verifyCallResult(bool,bytes,string) (@openzeppelin/contracts/utils/Address.sol#171-188) is never used and should be removed
Address.functionCall(address,bytes) (@openzeppelin/contracts/utils/Address.sol#79-81) is never used and should be removed
Address.functionCall(address,bytes,string) (@openzeppelin/contracts/utils/Address.sol#89-91) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (@openzeppelin/contracts/utils/Address.sol#104-106) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (@openzeppelin/contracts/utils/Address.sol#114-121) is never used and should be removed
Address.functionDelegateCall(address,bytes) (@openzeppelin/contracts/utils/Address.sol#153-155) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (@openzeppelin/contracts/utils/Address.sol#163-169) is never used and should be removed
Address.functionStaticCall(address,bytes) (@openzeppelin/contracts/utils/Address.sol#129-131) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (@openzeppelin/contracts/utils/Address.sol#139-145) is never used and should be removed
Address.isContract(address) (@openzeppelin/contracts/utils/Address.sol#26-35) is never used and should be removed
Address.sendValue(address,uint256) (@openzeppelin/contracts/utils/Address.sol#53-59) is never used and should be removed
Context._msgData() (@openzeppelin/contracts/utils/Context.sol#20-23) is never used and should be removed
Remove unused functions.
Additional information: link
Pragma version^0.8.0 (@openzeppelin/contracts/access/Ownable.sol#3) allows old versions
Pragma version^0.8.0 (@openzeppelin/contracts/token/ERC20/IERC20.sol#3) allows old versions
Pragma version^0.8.0 (@openzeppelin/contracts/utils/Address.sol#3) allows old versions
Pragma version^0.8.0 (@openzeppelin/contracts/utils/Context.sol#3) allows old versions
Pragma version^0.8.0 (contracts/TrustPad.sol#3) allows old versions
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.sendValue(address,uint256) (@openzeppelin/contracts/utils/Address.sol#53-59):
- (success) = recipient.call{value: amount}() (@openzeppelin/contracts/utils/Address.sol#57)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (@openzeppelin/contracts/utils/Address.sol#114-121):
- (success,returndata) = target.call{value: value}(data) (@openzeppelin/contracts/utils/Address.sol#119)
Low level call in Address.functionStaticCall(address,bytes,string) (@openzeppelin/contracts/utils/Address.sol#139-145):
- (success,returndata) = target.staticcall(data) (@openzeppelin/contracts/utils/Address.sol#143)
Low level call in Address.functionDelegateCall(address,bytes,string) (@openzeppelin/contracts/utils/Address.sol#163-169):
- (success,returndata) = target.delegatecall(data) (@openzeppelin/contracts/utils/Address.sol#167)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Constant TrustPad._tTotal (contracts/TrustPad.sol#31) is not in UPPER_CASE_WITH_UNDERSCORES
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (@openzeppelin/contracts/utils/Context.sol#21)" inContext (@openzeppelin/contracts/utils/Context.sol#15-24)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable TrustPad.reflectionFromToken(uint256,bool).rTransferAmount (contracts/TrustPad.sol#134) is too similar to TrustPad._getValues(uint256,bool).tTransferAmount (contracts/TrustPad.sol#249)
Variable TrustPad._getRValues(uint256,uint256,uint256).rTransferAmount (contracts/TrustPad.sol#268) is too similar to TrustPad._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/TrustPad.sol#230)
Variable TrustPad._transferStandard(address,address,uint256).rTransferAmount (contracts/TrustPad.sol#201) is too similar to TrustPad._transferStandard(address,address,uint256).tTransferAmount (contracts/TrustPad.sol#201)
Variable TrustPad._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/TrustPad.sol#220) is too similar to TrustPad._getTValues(uint256,bool).tTransferAmount (contracts/TrustPad.sol#261)
Variable TrustPad._transferToExcluded(address,address,uint256).rTransferAmount (contracts/TrustPad.sol#210) is too similar to TrustPad._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/TrustPad.sol#230)
Variable TrustPad._transferStandard(address,address,uint256).rTransferAmount (contracts/TrustPad.sol#201) is too similar to TrustPad._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/TrustPad.sol#220)
Variable TrustPad._getValues(uint256,bool).rTransferAmount (contracts/TrustPad.sol#251) is too similar to TrustPad._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/TrustPad.sol#230)
Variable TrustPad._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/TrustPad.sol#230) is too similar to TrustPad._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/TrustPad.sol#230)
Variable TrustPad._transferStandard(address,address,uint256).rTransferAmount (contracts/TrustPad.sol#201) is too similar to TrustPad._transferToExcluded(address,address,uint256).tTransferAmount (contracts/TrustPad.sol#210)
Variable TrustPad.reflectionFromToken(uint256,bool).rTransferAmount (contracts/TrustPad.sol#134) is too similar to TrustPad._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/TrustPad.sol#230)
Variable TrustPad._getRValues(uint256,uint256,uint256).rTransferAmount (contracts/TrustPad.sol#268) is too similar to TrustPad._transferStandard(address,address,uint256).tTransferAmount (contracts/TrustPad.sol#201)
Variable TrustPad._getRValues(uint256,uint256,uint256).rTransferAmount (contracts/TrustPad.sol#268) is too similar to TrustPad._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/TrustPad.sol#220)
Variable TrustPad._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/TrustPad.sol#220) is too similar to TrustPad._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/TrustPad.sol#230)
Variable TrustPad._transferToExcluded(address,address,uint256).rTransferAmount (contracts/TrustPad.sol#210) is too similar to TrustPad._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/TrustPad.sol#220)
Variable TrustPad._transferStandard(address,address,uint256).rTransferAmount (contracts/TrustPad.sol#201) is too similar to TrustPad._getValues(uint256,bool).tTransferAmount (contracts/TrustPad.sol#249)
Variable TrustPad._transferStandard(address,address,uint256).rTransferAmount (contracts/TrustPad.sol#201) is too similar to TrustPad._getTValues(uint256,bool).tTransferAmount (contracts/TrustPad.sol#261)
Variable TrustPad._getRValues(uint256,uint256,uint256).rTransferAmount (contracts/TrustPad.sol#268) is too similar to TrustPad._transferToExcluded(address,address,uint256).tTransferAmount (contracts/TrustPad.sol#210)
Variable TrustPad._getValues(uint256,bool).rTransferAmount (contracts/TrustPad.sol#251) is too similar to TrustPad._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/TrustPad.sol#220)
Variable TrustPad._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/TrustPad.sol#230) is too similar to TrustPad._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/TrustPad.sol#220)
Variable TrustPad._transferToExcluded(address,address,uint256).rTransferAmount (contracts/TrustPad.sol#210) is too similar to TrustPad._transferToExcluded(address,address,uint256).tTransferAmount (contracts/TrustPad.sol#210)
Variable TrustPad.reflectionFromToken(uint256,bool).rTransferAmount (contracts/TrustPad.sol#134) is too similar to TrustPad._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/TrustPad.sol#220)
Variable TrustPad._getValues(uint256,bool).rTransferAmount (contracts/TrustPad.sol#251) is too similar to TrustPad._transferToExcluded(address,address,uint256).tTransferAmount (contracts/TrustPad.sol#210)
Variable TrustPad._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/TrustPad.sol#230) is too similar to TrustPad._transferToExcluded(address,address,uint256).tTransferAmount (contracts/TrustPad.sol#210)
Variable TrustPad._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/TrustPad.sol#220) is too similar to TrustPad._transferToExcluded(address,address,uint256).tTransferAmount (contracts/TrustPad.sol#210)
Variable TrustPad._getRValues(uint256,uint256,uint256).rTransferAmount (contracts/TrustPad.sol#268) is too similar to TrustPad._getTValues(uint256,bool).tTransferAmount (contracts/TrustPad.sol#261)
Variable TrustPad.reflectionFromToken(uint256,bool).rTransferAmount (contracts/TrustPad.sol#134) is too similar to TrustPad._transferToExcluded(address,address,uint256).tTransferAmount (contracts/TrustPad.sol#210)
Variable TrustPad._getRValues(uint256,uint256,uint256).rTransferAmount (contracts/TrustPad.sol#268) is too similar to TrustPad._getValues(uint256,bool).tTransferAmount (contracts/TrustPad.sol#249)
Variable TrustPad._transferStandard(address,address,uint256).rTransferAmount (contracts/TrustPad.sol#201) is too similar to TrustPad._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/TrustPad.sol#230)
Variable TrustPad._transferToExcluded(address,address,uint256).rTransferAmount (contracts/TrustPad.sol#210) is too similar to TrustPad._getTValues(uint256,bool).tTransferAmount (contracts/TrustPad.sol#261)
Variable TrustPad._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/TrustPad.sol#220) is too similar to TrustPad._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/TrustPad.sol#220)
Variable TrustPad._getValues(uint256,bool).rTransferAmount (contracts/TrustPad.sol#251) is too similar to TrustPad._getTValues(uint256,bool).tTransferAmount (contracts/TrustPad.sol#261)
Variable TrustPad._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/TrustPad.sol#230) is too similar to TrustPad._getTValues(uint256,bool).tTransferAmount (contracts/TrustPad.sol#261)
Variable TrustPad.reflectionFromToken(uint256,bool).rTransferAmount (contracts/TrustPad.sol#134) is too similar to TrustPad._getTValues(uint256,bool).tTransferAmount (contracts/TrustPad.sol#261)
Variable TrustPad._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/TrustPad.sol#230) is too similar to TrustPad._transferStandard(address,address,uint256).tTransferAmount (contracts/TrustPad.sol#201)
Variable TrustPad._getValues(uint256,bool).rTransferAmount (contracts/TrustPad.sol#251) is too similar to TrustPad._transferStandard(address,address,uint256).tTransferAmount (contracts/TrustPad.sol#201)
Variable TrustPad._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/TrustPad.sol#230) is too similar to TrustPad._getValues(uint256,bool).tTransferAmount (contracts/TrustPad.sol#249)
Variable TrustPad.reflectionFromToken(uint256,bool).rTransferAmount (contracts/TrustPad.sol#134) is too similar to TrustPad._transferStandard(address,address,uint256).tTransferAmount (contracts/TrustPad.sol#201)
Variable TrustPad._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/TrustPad.sol#220) is too similar to TrustPad._transferStandard(address,address,uint256).tTransferAmount (contracts/TrustPad.sol#201)
Variable TrustPad._transferToExcluded(address,address,uint256).rTransferAmount (contracts/TrustPad.sol#210) is too similar to TrustPad._transferStandard(address,address,uint256).tTransferAmount (contracts/TrustPad.sol#201)
Variable TrustPad._getValues(uint256,bool).rTransferAmount (contracts/TrustPad.sol#251) is too similar to TrustPad._getValues(uint256,bool).tTransferAmount (contracts/TrustPad.sol#249)
Variable TrustPad._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/TrustPad.sol#220) is too similar to TrustPad._getValues(uint256,bool).tTransferAmount (contracts/TrustPad.sol#249)
Variable TrustPad._transferToExcluded(address,address,uint256).rTransferAmount (contracts/TrustPad.sol#210) is too similar to TrustPad._getValues(uint256,bool).tTransferAmount (contracts/TrustPad.sol#249)
Prevent variables from having similar names.
Additional information: link
TrustPad._decimals (contracts/TrustPad.sol#38) should be constant
TrustPad._name (contracts/TrustPad.sol#36) should be constant
TrustPad._symbol (contracts/TrustPad.sol#37) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (@openzeppelin/contracts/access/Ownable.sol#54-57)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (@openzeppelin/contracts/access/Ownable.sol#63-67)
name() should be declared external:
- TrustPad.name() (contracts/TrustPad.sol#49-51)
symbol() should be declared external:
- TrustPad.symbol() (contracts/TrustPad.sol#53-55)
decimals() should be declared external:
- TrustPad.decimals() (contracts/TrustPad.sol#57-59)
totalSupply() should be declared external:
- TrustPad.totalSupply() (contracts/TrustPad.sol#61-63)
isExcluded(address) should be declared external:
- TrustPad.isExcluded(address) (contracts/TrustPad.sol#107-109)
isFeeless(address) should be declared external:
- TrustPad.isFeeless(address) (contracts/TrustPad.sol#111-113)
totalFees() should be declared external:
- TrustPad.totalFees() (contracts/TrustPad.sol#115-117)
reflectionFromToken(uint256,bool) should be declared external:
- TrustPad.reflectionFromToken(uint256,bool) (contracts/TrustPad.sol#128-137)
Use the external attribute for functions never called from the contract.
Additional information: link
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.
Token is deployed only at one blockchain
Contract has 1% buy tax and 1% sell tax.
Taxes are low and contract ownership is renounced.
Unable to find token on CoinHunt
Additional information: link
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 CoinGecko rank
Unable to find Youtube account
Unable to find Discord account