TRUST Token Logo

TRUST Token

About TRUST

Listings

Not Found
Token 3 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 17 December 2021

report
Token seems to be anonymous. As long as we are unable to find website score is limited.


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


Not a direct threat, but may indicate unreliable intentions of developer. Widespread names (e.g. Elon, King, Moon, Doge) are common among meme-tokens and scams. The allow to gain free hype and attract unexperienced investors.

TRUST.allowance(address,address).owner (TRUST.sol#68) shadows:
- Ownable.owner() (Ownable.sol#36-38) (function)
TRUST._approve(address,address,uint256).owner (TRUST.sol#140) shadows:
- Ownable.owner() (Ownable.sol#36-38) (function)
Rename the local variables that shadow another component.

Additional information: link

TRUST.setTreasury(address).account (TRUST.sol#108) lacks a zero-check on :
- treasuryAddress = account (TRUST.sol#109)
Check that the address is not zero.

Additional information: link

Address.isContract(address) (Address.sol#26-36) uses assembly
- INLINE ASM (Address.sol#32-34)
Address._verifyCallResult(bool,bytes,string) (Address.sol#189-209) uses assembly
- INLINE ASM (Address.sol#201-204)
Do not use evm assembly.

Additional information: link

Address.functionCall(address,bytes) (Address.sol#79-81) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (Address.sol#108-114) is never used and should be removed
Address.functionDelegateCall(address,bytes) (Address.sol#168-170) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (Address.sol#178-187) is never used and should be removed
Address.functionStaticCall(address,bytes) (Address.sol#141-143) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (Address.sol#151-160) is never used and should be removed
Address.sendValue(address,uint256) (Address.sol#54-59) is never used and should be removed
Context._msgData() (Context.sol#20-22) is never used and should be removed
SafeERC20.safeApprove(IERC20,address,uint256) (SafeERC20.sol#44-57) is never used and should be removed
SafeERC20.safeDecreaseAllowance(IERC20,address,uint256) (SafeERC20.sol#68-79) is never used and should be removed
SafeERC20.safeIncreaseAllowance(IERC20,address,uint256) (SafeERC20.sol#59-66) is never used and should be removed
SafeERC20.safeTransferFrom(IERC20,address,address,uint256) (SafeERC20.sol#28-35) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version^0.8.0 (Address.sol#3) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6
Pragma version^0.8.0 (Context.sol#3) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6
Pragma version^0.8.0 (IERC20.sol#3) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6
Pragma version^0.8.0 (IERC20Metadata.sol#3) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6
Pragma version^0.8.0 (Ownable.sol#3) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6
Pragma version^0.8.0 (SafeERC20.sol#3) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6
Pragma version^0.8.0 (TRUST.sol#1) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6
solc-0.8.0 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.sendValue(address,uint256) (Address.sol#54-59):
- (success) = recipient.call{value: amount}() (Address.sol#57)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (Address.sol#122-133):
- (success,returndata) = target.call{value: value}(data) (Address.sol#131)
Low level call in Address.functionStaticCall(address,bytes,string) (Address.sol#151-160):
- (success,returndata) = target.staticcall(data) (Address.sol#158)
Low level call in Address.functionDelegateCall(address,bytes,string) (Address.sol#178-187):
- (success,returndata) = target.delegatecall(data) (Address.sol#185)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Parameter TRUST.setContractSendEnabled(bool)._enabled (TRUST.sol#112) is not in mixedCase
Parameter TRUST.transferAnyBEP20Tokens(address,uint256)._tokenAddr (TRUST.sol#156) is not in mixedCase
Parameter TRUST.transferAnyBEP20Tokens(address,uint256)._amount (TRUST.sol#156) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

TRUST.slitherConstructorVariables() (TRUST.sol#11-161) uses literals with too many digits:
- burnAddress = 0x000000000000000000000000000000000000dEaD (TRUST.sol#28)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

TRUST._decimals (TRUST.sol#25) should be constant
TRUST._name (TRUST.sol#23) should be constant
TRUST._symbol (TRUST.sol#24) should be constant
TRUST._totalSupply (TRUST.sol#21) should be constant
TRUST.burnAddress (TRUST.sol#28) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (Ownable.sol#52-56)
name() should be declared external:
- TRUST.name() (TRUST.sol#35-37)
symbol() should be declared external:
- TRUST.symbol() (TRUST.sol#39-41)
decimals() should be declared external:
- TRUST.decimals() (TRUST.sol#43-45)
circulatingSupply() should be declared external:
- TRUST.circulatingSupply() (TRUST.sol#51-57)
transfer(address,uint256) should be declared external:
- TRUST.transfer(address,uint256) (TRUST.sol#63-66)
allowance(address,address) should be declared external:
- TRUST.allowance(address,address) (TRUST.sol#68-70)
approve(address,uint256) should be declared external:
- TRUST.approve(address,uint256) (TRUST.sol#72-75)
transferFrom(address,address,uint256) should be declared external:
- TRUST.transferFrom(address,address,uint256) (TRUST.sol#77-91)
increaseAllowance(address,uint256) should be declared external:
- TRUST.increaseAllowance(address,uint256) (TRUST.sol#93-96)
decreaseAllowance(address,uint256) should be declared external:
- TRUST.decreaseAllowance(address,uint256) (TRUST.sol#98-106)
transferAnyBEP20Tokens(address,uint256) should be declared external:
- TRUST.transferAnyBEP20Tokens(address,uint256) (TRUST.sol#156-160)
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.


Unable to find Telegram and Twitter accounts


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 TRUST