Tick a Lock Token Logo

TIALO [Tick a Lock] Token

About TIALO

Listings

Not Found
Token 2 years
white paper

A strong supporter of puzzles and riddles.

Social

Laser Scorebeta Last Audit: 3 February 2022

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


Contract creator or owner is blacklisted for past scams

Reentrancy in TickALock._transfer(address,address,uint256) (#412-459):
External calls:
- swapContractTokens() (#439)
- _pancakeRouter.addLiquidityETH{value: amountBNB}(address(this),amountTokens,0,0,_burnWallet,block.timestamp) (#641-648)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amount,0,path,to,block.timestamp) (#660-667)
External calls sending eth:
- swapContractTokens() (#439)
- _pancakeRouter.addLiquidityETH{value: amountBNB}(address(this),amountTokens,0,0,_burnWallet,block.timestamp) (#641-648)
State variables written after the call(s):
- _buyTokens(recipient,amount) (#443)
- _balances[account] = newBalance (#569)
- _sellTokens(sender,amount) (#446)
- _balances[account] = newBalance (#569)
- _transferExcluded(sender,recipient,amount) (#454)
- _balances[account] = newBalance (#569)
- _buyTokens(recipient,amount) (#443)
- _holders[recipient].nextSell = block.timestamp + _sellDelay (#490)
- _holders[recipient].pancakeswapTotalPurchased = _holders[recipient].pancakeswapTotalPurchased + amount - taxedTokensLP - taxedTokensMarketing (#492)
- _sellTokens(sender,amount) (#446)
- _holders[sender].nextSell = block.timestamp + _sellDelay (#517)
- _holders[recipient].nextSell = block.timestamp + _sellDelay (#456)
- _sellTokens(sender,amount) (#446)
- _tokensToBurn += amount (#1166)
- _buyTokens(recipient,amount) (#443)
- _totalAllocatedLiquidityContract += amount (#1155)
- _buyTokens(recipient,amount) (#443)
- _totalAllocatedMarketingContract += amount (#1144)
- _sellTokens(sender,amount) (#446)
- _totalAllocatedMarketingContract += amount (#1144)
Reentrancy in TickALock.swapContractTokens() (#587-604):
External calls:
- (tokensLiquidity,BNBLiquidity) = swapAndLiquify(tokensForLP,tokensForMarketing) (#598)
- _pancakeRouter.addLiquidityETH{value: amountBNB}(address(this),amountTokens,0,0,_burnWallet,block.timestamp) (#641-648)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amount,0,path,to,block.timestamp) (#660-667)
External calls sending eth:
- (tokensLiquidity,BNBLiquidity) = swapAndLiquify(tokensForLP,tokensForMarketing) (#598)
- _pancakeRouter.addLiquidityETH{value: amountBNB}(address(this),amountTokens,0,0,_burnWallet,block.timestamp) (#641-648)
State variables written after the call(s):
- totalAllocatedLiquidityContractSubtract(_totalAllocatedLiquidityContract) (#601)
- _totalAllocatedLiquidityContract -= amount (#1161)
- totalAllocatedMarketingContractSubtract(_totalAllocatedMarketingContract) (#602)
- _totalAllocatedMarketingContract -= amount (#1150)
Reentrancy in TickALock.transferFrom(address,address,uint256) (#760-770):
External calls:
- _transfer(sender,recipient,amount) (#767)
- _pancakeRouter.addLiquidityETH{value: amountBNB}(address(this),amountTokens,0,0,_burnWallet,block.timestamp) (#641-648)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amount,0,path,to,block.timestamp) (#660-667)
External calls sending eth:
- _transfer(sender,recipient,amount) (#767)
- _pancakeRouter.addLiquidityETH{value: amountBNB}(address(this),amountTokens,0,0,_burnWallet,block.timestamp) (#641-648)
State variables written after the call(s):
- _approve(sender,msg.sender,allowance_ - amount) (#768)
- _allowances[owner][spender] = amount (#747)
Apply the check-effects-interactions pattern.

Additional information: link


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains

TickALock.slitherConstructorVariables() (#257-1176) uses literals with too many digits:
- _numTokensSellToAddToLiquidity = 60000000 * 10 ** 9 (#270)
TickALock.slitherConstructorConstantVariables() (#257-1176) uses literals with too many digits:
- _initialSupply = 24000000000 * 10 ** 9 (#258)
TickALock.slitherConstructorConstantVariables() (#257-1176) uses literals with too many digits:
- _burnWallet = 0x000000000000000000000000000000000000dEaD (#303)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

TickALock._maxSellDelay (#272) should be constant
TickALock._maxSellSize (#295) should be constant
TickALock._totalSupply2 (#261) should be constant
TickALock._totalSupply24 (#263) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

TickALock.setMaxWalletSize(uint256) (#401-407) performs a multiplication on the result of a division:
-require(bool,string)(maxWalletSize <= _initialSupply / 100 * 3,maxWalletSize must be less than or equal to 3% of the total supply) (#404)
TickALock.calculateBurnTax(address) (#521-536) performs a multiplication on the result of a division:
-percentageOfHoldings = (senderBalance * 10000) / _totalSupply (#529)
-relativePercentageValue = percentageOfHoldings * 100 (#531)
TickALock.setPuzzleSolved(bool,bool,string,address[],address) (#1064-1120) performs a multiplication on the result of a division:
-crossWordBonusPrizeAllotment = (crossWordBonusPrizeTokens + _totalAllocatedCrosswordPotContract) / crossWordWinningWallets.length (#1096)
-totalAllocatedCrosswordPotContractSubtract(crossWordBonusPrizeAllotment * crossWordWinningWallets.length) (#1100)
Consider ordering multiplication before division.

Additional information: link

TickALock._addLiquidity(uint256,uint256) (#637-650) ignores return value by _pancakeRouter.addLiquidityETH{value: amountBNB}(address(this),amountTokens,0,0,_burnWallet,block.timestamp) (#641-648)
Ensure that all the return values of the function calls are used.

Additional information: link

TickALock._approve(address,address,uint256).owner (#741) shadows:
- Ownable.owner() (#76-78) (function)
TickALock.allowance(address,address).owner (#811) shadows:
- Ownable.owner() (#76-78) (function)
Rename the local variables that shadow another component.

Additional information: link

TickALock.setMarketingTax(uint256) (#538-541) should emit an event for:
- _marketingTax = marketingTax (#540)
Emit an event for critical parameter changes.

Additional information: link

TickALock.updateMarketingWallet(address).marketingWalletAddress (#732) lacks a zero-check on :
- _marketingWalletAddress = marketingWalletAddress (#733)
Check that the address is not zero.

Additional information: link

Reentrancy in TickALock._addLiquidity(uint256,uint256) (#637-650):
External calls:
- _pancakeRouter.addLiquidityETH{value: amountBNB}(address(this),amountTokens,0,0,_burnWallet,block.timestamp) (#641-648)
State variables written after the call(s):
- _addingLiquidity = false (#649)
Reentrancy in TickALock._transfer(address,address,uint256) (#412-459):
External calls:
- swapContractTokens() (#439)
- _pancakeRouter.addLiquidityETH{value: amountBNB}(address(this),amountTokens,0,0,_burnWallet,block.timestamp) (#641-648)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amount,0,path,to,block.timestamp) (#660-667)
External calls sending eth:
- swapContractTokens() (#439)
- _pancakeRouter.addLiquidityETH{value: amountBNB}(address(this),amountTokens,0,0,_burnWallet,block.timestamp) (#641-648)
State variables written after the call(s):
- _buyTokens(recipient,amount) (#443)
- _totalTokensHeld += amount - taxedTokensLP - taxedTokensMarketing (#488)
- _sellTokens(sender,amount) (#446)
- _totalTokensHeld -= amount - taxedTokensBurn - taxedTokensMarketing (#515)
Reentrancy in TickALock.constructor() (#371-389):
External calls:
- _pancakePairAddress = IPancakeFactory(_pancakeRouter.factory()).createPair(address(this),_pancakeRouter.WETH()) (#382)
State variables written after the call(s):
- _automatedMarketMakers[_pancakePairAddress] = true (#383)
- _holders[msg.sender].excludeFromFees = true (#386)
- _holders[address(this)].excludeFromFees = true (#387)
- _holders[_devWallet].excludeFromFees = true (#388)
Reentrancy in TickALock.swapAndLiquify(uint256,uint256) (#610-635):
External calls:
- _swapTokensForBNB(tokensForMarketing,_marketingWalletAddress) (#614)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amount,0,path,to,block.timestamp) (#660-667)
- _swapTokensForBNB(half,address(this)) (#627)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amount,0,path,to,block.timestamp) (#660-667)
State variables written after the call(s):
- _swapTokensForBNB(half,address(this)) (#627)
- _allowances[owner][spender] = amount (#747)
Reentrancy in TickALock.swapAndLiquify(uint256,uint256) (#610-635):
External calls:
- _swapTokensForBNB(tokensForMarketing,_marketingWalletAddress) (#614)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amount,0,path,to,block.timestamp) (#660-667)
- _swapTokensForBNB(half,address(this)) (#627)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amount,0,path,to,block.timestamp) (#660-667)
- _addLiquidity(otherHalf,newBalance) (#633)
- _pancakeRouter.addLiquidityETH{value: amountBNB}(address(this),amountTokens,0,0,_burnWallet,block.timestamp) (#641-648)
External calls sending eth:
- _addLiquidity(otherHalf,newBalance) (#633)
- _pancakeRouter.addLiquidityETH{value: amountBNB}(address(this),amountTokens,0,0,_burnWallet,block.timestamp) (#641-648)
State variables written after the call(s):
- _addLiquidity(otherHalf,newBalance) (#633)
- _addingLiquidity = true (#640)
- _addingLiquidity = false (#649)
- _addLiquidity(otherHalf,newBalance) (#633)
- _allowances[owner][spender] = amount (#747)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in TickALock._transfer(address,address,uint256) (#412-459):
External calls:
- swapContractTokens() (#439)
- _pancakeRouter.addLiquidityETH{value: amountBNB}(address(this),amountTokens,0,0,_burnWallet,block.timestamp) (#641-648)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amount,0,path,to,block.timestamp) (#660-667)
External calls sending eth:
- swapContractTokens() (#439)
- _pancakeRouter.addLiquidityETH{value: amountBNB}(address(this),amountTokens,0,0,_burnWallet,block.timestamp) (#641-648)
Event emitted after the call(s):
- TokensAllocatedMarketingAdd(amount) (#1145)
- _buyTokens(recipient,amount) (#443)
- TokensAllocatedMarketingAdd(amount) (#1145)
- _sellTokens(sender,amount) (#446)
- TokensToBurnAdd(amount) (#1167)
- _sellTokens(sender,amount) (#446)
- TokensToLiquidateAdd(amount) (#1156)
- _buyTokens(recipient,amount) (#443)
- Transfer(sender,recipient,amount) (#565)
- _buyTokens(recipient,amount) (#443)
- Transfer(sender,recipient,amount) (#565)
- _transferExcluded(sender,recipient,amount) (#454)
- Transfer(sender,address(this),taxedTokens) (#553)
- _sellTokens(sender,amount) (#446)
- Transfer(sender,address(this),taxedTokens) (#553)
- _buyTokens(recipient,amount) (#443)
- Transfer(sender,recipient,newAmount) (#555)
- _sellTokens(sender,amount) (#446)
- Transfer(sender,recipient,newAmount) (#555)
- _buyTokens(recipient,amount) (#443)
Reentrancy in TickALock.swapAndLiquify(uint256,uint256) (#610-635):
External calls:
- _swapTokensForBNB(tokensForMarketing,_marketingWalletAddress) (#614)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amount,0,path,to,block.timestamp) (#660-667)
- _swapTokensForBNB(half,address(this)) (#627)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amount,0,path,to,block.timestamp) (#660-667)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#748)
- _swapTokensForBNB(half,address(this)) (#627)
Reentrancy in TickALock.swapAndLiquify(uint256,uint256) (#610-635):
External calls:
- _swapTokensForBNB(tokensForMarketing,_marketingWalletAddress) (#614)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amount,0,path,to,block.timestamp) (#660-667)
- _swapTokensForBNB(half,address(this)) (#627)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amount,0,path,to,block.timestamp) (#660-667)
- _addLiquidity(otherHalf,newBalance) (#633)
- _pancakeRouter.addLiquidityETH{value: amountBNB}(address(this),amountTokens,0,0,_burnWallet,block.timestamp) (#641-648)
External calls sending eth:
- _addLiquidity(otherHalf,newBalance) (#633)
- _pancakeRouter.addLiquidityETH{value: amountBNB}(address(this),amountTokens,0,0,_burnWallet,block.timestamp) (#641-648)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#748)
- _addLiquidity(otherHalf,newBalance) (#633)
Reentrancy in TickALock.swapContractTokens() (#587-604):
External calls:
- (tokensLiquidity,BNBLiquidity) = swapAndLiquify(tokensForLP,tokensForMarketing) (#598)
- _pancakeRouter.addLiquidityETH{value: amountBNB}(address(this),amountTokens,0,0,_burnWallet,block.timestamp) (#641-648)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amount,0,path,to,block.timestamp) (#660-667)
External calls sending eth:
- (tokensLiquidity,BNBLiquidity) = swapAndLiquify(tokensForLP,tokensForMarketing) (#598)
- _pancakeRouter.addLiquidityETH{value: amountBNB}(address(this),amountTokens,0,0,_burnWallet,block.timestamp) (#641-648)
Event emitted after the call(s):
- SwapAndLiquify(tokensLiquidity,BNBLiquidity) (#603)
- TokensAllocatedMarketingSubtract(amount) (#1151)
- totalAllocatedMarketingContractSubtract(_totalAllocatedMarketingContract) (#602)
- TokensToLiquidateSubtract(amount) (#1162)
- totalAllocatedLiquidityContractSubtract(_totalAllocatedLiquidityContract) (#601)
Reentrancy in TickALock.transferFrom(address,address,uint256) (#760-770):
External calls:
- _transfer(sender,recipient,amount) (#767)
- _pancakeRouter.addLiquidityETH{value: amountBNB}(address(this),amountTokens,0,0,_burnWallet,block.timestamp) (#641-648)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amount,0,path,to,block.timestamp) (#660-667)
External calls sending eth:
- _transfer(sender,recipient,amount) (#767)
- _pancakeRouter.addLiquidityETH{value: amountBNB}(address(this),amountTokens,0,0,_burnWallet,block.timestamp) (#641-648)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#748)
- _approve(sender,msg.sender,allowance_ - amount) (#768)
Apply the check-effects-interactions pattern.

Additional information: link

TickALock._transfer(address,address,uint256) (#412-459) uses timestamp for comparisons
Dangerous comparisons:
- require(bool)(block.timestamp >= _holders[_devWallet].nextSell) (#451)
TickALock._buyTokens(address,uint256) (#461-494) uses timestamp for comparisons
Dangerous comparisons:
- block.timestamp < _antiBotTimer (#462)
TickALock._sellTokens(address,uint256) (#496-518) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp >= _holders[sender].nextSell,Sell delay not over.) (#498)
TickALock.antiBotTimeLeft() (#793-798) uses timestamp for comparisons
Dangerous comparisons:
- _antiBotTimer > block.timestamp (#794-797)
TickALock.nextSellOf(address) (#800-805) uses timestamp for comparisons
Dangerous comparisons:
- _holders[account].nextSell > block.timestamp (#801-804)
Avoid relying on block.timestamp.

Additional information: link

Pragma version>=0.8.3<0.9.0 (#2) is too complex
solc-0.8.11 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

Function IPancakeERC20.DOMAIN_SEPARATOR() (#53) is not in mixedCase
Function IPancakeERC20.PERMIT_TYPEHASH() (#54) is not in mixedCase
Function IPancakeRouter01.WETH() (#209) is not in mixedCase
Function TickALock._contractSwapAndLiquify() (#575-585) is not in mixedCase
Parameter TickALock.submitGuess(string)._guess (#1018) is not in mixedCase
Constant TickALock._initialSupply (#258) is not in UPPER_CASE_WITH_UNDERSCORES
Constant TickALock._totalSupply (#259) is not in UPPER_CASE_WITH_UNDERSCORES
Variable TickALock._totalSupply2 (#261) is not in mixedCase
Variable TickALock._totalSupply24 (#263) is not in mixedCase
Variable TickALock._canTrade (#266) is not in mixedCase
Variable TickALock._numTokensSellToAddToLiquidity (#270) is not in mixedCase
Variable TickALock._sellDelay (#273) is not in mixedCase
Variable TickALock._totalAllocatedLiquidityContract (#276) is not in mixedCase
Variable TickALock._totalAllocatedMarketingContract (#278) is not in mixedCase
Variable TickALock._totalAllocatedCrosswordPotContract (#280) is not in mixedCase
Variable TickALock._tokensToBurn (#282) is not in mixedCase
Constant TickALock._maxTax (#284) is not in UPPER_CASE_WITH_UNDERSCORES
Variable TickALock._liquidityTax (#285) is not in mixedCase
Variable TickALock._maxBurnTax (#288) is not in mixedCase
Variable TickALock._minBurnTax (#289) is not in mixedCase
Variable TickALock._marketingWalletAddress (#291) is not in mixedCase
Variable TickALock._marketingTax (#292) is not in mixedCase
Variable TickALock._maxWalletSize (#294) is not in mixedCase
Variable TickALock._maxSellSize (#295) is not in mixedCase
Constant TickALock._pancakeRouterAddress (#298) is not in UPPER_CASE_WITH_UNDERSCORES
Variable TickALock._pancakePairAddress (#299) is not in mixedCase
Constant TickALock._devWallet (#302) is not in UPPER_CASE_WITH_UNDERSCORES
Constant TickALock._burnWallet (#303) is not in UPPER_CASE_WITH_UNDERSCORES
Variable TickALock._currentPuzzleWeek (#305) is not in mixedCase
Variable TickALock._minHoldingsForGuess (#307) is not in mixedCase
Variable TickALock._crosswordLetterCost (#309) is not in mixedCase
Variable TickALock._minGuessLength (#310) is not in mixedCase
Variable TickALock._crosswordGuessesPerCoordinate (#312) is not in mixedCase
Variable TickALock._crosswordEnabled (#314) is not in mixedCase
Variable TickALock._puzzleEnabled (#315) is not in mixedCase
Variable TickALock._addressGuessCount (#874) is not in mixedCase
Variable TickALock._puzzleGuesses (#876) is not in mixedCase
Variable TickALock._puzzleGuessesForAddress (#878) is not in mixedCase
Variable TickALock._puzzleWeekFullGuessList (#880) is not in mixedCase
Variable TickALock._puzzleWeekGuessCount (#882) is not in mixedCase
Variable TickALock._puzzleWeek (#884) is not in mixedCase
Variable TickALock._guessCount (#885) is not in mixedCase
Variable TickALock._alphabet (#889) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#128) is too similar to IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#129)
Variable TickALock.setCoordinatesForWeek(uint256,TickALock.Coordinate[]).coordinates (#906) is too similar to TickALock.submitCrosswordLetter(uint256,uint256,string).xCoordinate (#931)
Variable TickALock.setCoordinatesForWeek(uint256,TickALock.Coordinate[]).coordinates (#906) is too similar to TickALock.submitCrosswordLetter(uint256,uint256,string).yCoordinate (#931)
Variable TickALock.submitCrosswordLetter(uint256,uint256,string).xCoordinate (#931) is too similar to TickALock.submitCrosswordLetter(uint256,uint256,string).yCoordinate (#931)
Prevent variables from having similar names.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#95-98)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#104-108)
setMarketingTax(uint256) should be declared external:
- TickALock.setMarketingTax(uint256) (#538-541)
_contractSwapAndLiquify() should be declared external:
- TickALock._contractSwapAndLiquify() (#575-585)
getPancakeRouter() should be declared external:
- TickALock.getPancakeRouter() (#670-672)
getThisAddress() should be declared external:
- TickALock.getThisAddress() (#674-676)
ownerChangeLPTaxes(uint256) should be declared external:
- TickALock.ownerChangeLPTaxes(uint256) (#688-692)
ownerChangeBurnTaxes(uint256,uint256) should be declared external:
- TickALock.ownerChangeBurnTaxes(uint256,uint256) (#694-701)
enableTrading() should be declared external:
- TickALock.enableTrading() (#703-711)
changeSellDelay(uint256) should be declared external:
- TickALock.changeSellDelay(uint256) (#714-719)
switchSwapAndLiquify() should be declared external:
- TickALock.switchSwapAndLiquify() (#721-724)
disableAntiSnipe() should be declared external:
- TickALock.disableAntiSnipe() (#727-729)
updateMarketingWallet(address) should be declared external:
- TickALock.updateMarketingWallet(address) (#732-735)
allowance(address,address) should be declared external:
- TickALock.allowance(address,address) (#811-813)
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.


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


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


Twitter account has less than 100 followers


Telegram account has relatively few subscribers


Last post in Twitter was more than 30 days ago


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Twitter account has few posts


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Unable to verify that token and website are owned by the same team (no listings + unable to find contract on website)


Unable to verify token contract address on the website


Unable to find token on CoinHunt

Additional information: link


Token is marked as scam (rug pull, honeypot, phishing, etc.)

Additional information: link


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


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


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death

Price for TIALO

News for TIALO