Tryvium Token Token Logo

TRYV [Tryvium] Token

About TRYV

Listings

Token 2 years
CoinGecko 2 years
CoinMarketCap 2 years
[CoinGecko] alert: The smart-contract owner can mint new tokens, please proceed with caution.
white paper

Tryvium Travels is a modern booking platform that offers 1.5M accommodations in over 90.000 destinations all around the globe.

The technology incorporates the use of blockchains along with smart contracts systems to deliver real-world solutions to the industry challenges.
The Tryvium Platform eliminates redundant mediators, offering low transaction costs and fees, both on FIAT currencies and Cryptocurrencies.
Thanks to partnerships such as Rakuten, HPROtravel and Hotelbeds Tryvium Travels connects the customers with more than 1.500.000 accommodations all over the world, from the small B&Bs to the extra luxury hotels.

The Tryvium Token TRYV plays a key role into the Tryvium ecosystem: not only it delivers a decentralized network that creates a cost-effective and peer-to-peer booking platform, but it allows customers to benefit from special tokenized rewards such as TRYV cashback, loyalty rewards, special offers, the Tryvium Gift Experience and an exclusive system of NFT booking/minting, that will generate real value collectibles with each booking on the Tryvium Travels platform.

Laser Scorebeta Last Audit: 29 December 2022

report
Token seems to be (relatively) fine. It still become a scam, but probability is moderate.

TokenVault._vaultTransfer(uint256,address,string) (#1190-1199) sends eth to arbitrary user
Dangerous calls:
- _to.transfer(_amount) (#1197)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link


Contract ownership is not renounced (belongs to a wallet)

Address.functionCallWithValue(address,bytes,uint256,string) (#834-845) has external calls inside a loop: (success,returndata) = target.call{value: value}(data) (#843)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in TokenVault._vaultTokenTransfer(IERC20,uint256,address,string) (#1209-1219):
External calls:
- _token.safeTransfer(_to,_amount) (#1217)
Event emitted after the call(s):
- VaultTokenTransfer(_token,_amount,_to,_reason) (#1218)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#738-748) uses assembly
- INLINE ASM (#744-746)
Address._verifyCallResult(bool,bytes,string) (#901-921) uses assembly
- INLINE ASM (#913-916)
Do not use evm assembly.

Additional information: link

Address.sendValue(address,uint256) (#766-771) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#820-826) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#890-899) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#880-882) is never used and should be removed
SafeERC20.safeIncreaseAllowance(IERC20,address,uint256) (#984-991) is never used and should be removed
SafeERC20.safeApprove(IERC20,address,uint256) (#969-982) is never used and should be removed
SafeERC20.safeTransferFrom(IERC20,address,address,uint256) (#953-960) is never used and should be removed
Context._msgData() (#77-79) is never used and should be removed
Address.functionStaticCall(address,bytes) (#853-855) is never used and should be removed
SafeERC20.safeDecreaseAllowance(IERC20,address,uint256) (#993-1004) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#863-872) is never used and should be removed
Address.functionCall(address,bytes) (#791-793) is never used and should be removed
Remove unused functions.

Additional information: link

Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#834-845):
- (success,returndata) = target.call{value: value}(data) (#843)
Low level call in Address.sendValue(address,uint256) (#766-771):
- (success) = recipient.call{value: amount}() (#769)
Low level call in Address.functionDelegateCall(address,bytes,string) (#890-899):
- (success,returndata) = target.delegatecall(data) (#897)
Low level call in Address.functionStaticCall(address,bytes,string) (#863-872):
- (success,returndata) = target.staticcall(data) (#870)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Parameter BountyVault.airdropTokens(IERC20,uint256,address[],string)._token (#1256) is not in mixedCase
Parameter TokenVault.vaultBalance(IERC20)._token (#1164) is not in mixedCase
Parameter BountyVault.airdropTokens(IERC20,uint256,address[],string)._amount (#1257) is not in mixedCase
Variable TryviumToken.TEAM_VAULT (#1294) is not in mixedCase
Parameter TokenVault.transferTokens(IERC20,uint256,address,string)._token (#1150) is not in mixedCase
Variable TryviumToken.SALES_VAULT (#1307) is not in mixedCase
Parameter TokenVault.transferTokens(IERC20,uint256,address,string)._amount (#1151) is not in mixedCase
Parameter TokenVault.transfer(uint256,address,string)._to (#1177) is not in mixedCase
Variable TryviumToken.BOUNTY_VAULT (#1300) is not in mixedCase
Parameter BountyVault.airdropTokens(IERC20,uint256,address[],string)._to (#1258) is not in mixedCase
Parameter BountyVault.airdropTokens(IERC20,uint256,address[],string)._reason (#1259) is not in mixedCase
Parameter TokenVault.transfer(uint256,address,string)._reason (#1178) is not in mixedCase
Variable TryviumToken.RESERVED_FUNDS_VAULT (#1314) is not in mixedCase
Parameter TokenVault.transferTokens(IERC20,uint256,address,string)._to (#1152) is not in mixedCase
Parameter TokenVault.transfer(uint256,address,string)._amount (#1176) is not in mixedCase
Parameter TokenVault.transferTokens(IERC20,uint256,address,string)._reason (#1153) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Reentrancy in TokenVault._vaultTransfer(uint256,address,string) (#1190-1199):
External calls:
- _to.transfer(_amount) (#1197)
Event emitted after the call(s):
- VaultTransfer(_amount,_to,_reason) (#1198)
Apply the check-effects-interactions pattern.

Additional information: link

Variable TryviumToken.BOUNTY_VAULT (#1300) is too similar to TryviumToken.constructor(uint256,TokenVault,BountyVault,TokenVault,TokenVault)._bountyVault (#1333)
Variable TryviumToken.SALES_VAULT (#1307) is too similar to TryviumToken.constructor(uint256,TokenVault,BountyVault,TokenVault,TokenVault)._salesVault (#1334)
Prevent variables from having similar names.

Additional information: link

transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#419-433)
burnFrom(address,uint256) should be declared external:
- ERC20Burnable.burnFrom(address,uint256) (#662-669)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#136-138)
decimals() should be declared external:
- ERC20.decimals() (#356-358)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#466-474)
symbol() should be declared external:
- ERC20.symbol() (#339-341)
balanceOf(address) should be declared external:
- ERC20.balanceOf(address) (#370-372)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#382-385)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#447-450)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#144-147)
name() should be declared external:
- ERC20.name() (#331-333)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#401-404)
burn(uint256) should be declared external:
- ERC20Burnable.burn(uint256) (#647-649)
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 Youtube account


Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap

Additional information: link


Unable to find audit link on the website


Token is not listed at Mobula.Finance

Additional information: link


Unable to find token on CoinHunt

Additional information: link


Young tokens have high risks of scam / price dump / death


Token has no active CoinMarketCap listing / rank


Token has a considerable age, but average PancakeSwap 30d trading volume is low


Token has relatively low CoinGecko rank

Price for TRYV

News for TRYV