TechnoLAND is a technology market established on the metaverse.TechnoLAND is a project where you can reach all electronic devices by shopping in the Metaverse.
After the existence of this project,u will stop shopping from e-commerce sites and By navigating, experiencing and using crypto on the Metaverse, you will safely buy all your electronic needs from anywhere in the world.You can find all brands in TechnoLAND and without shipping fee.
Our goal is to bring you the devices that will combine the metaverse and the real world with one click, when the whole world is included in the metaverse.
Reentrancy in Technoland._transfer(address,address,uint256) (#456-493):
External calls:
- contractSwap(contractTokenBalance) (#487)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(contractTokenBalance,0,path,address(this),block.timestamp) (#507-515)
- (success,None) = _taxWallets.marketing.call{gas: 35000,value: address(this).balance}() (#517)
- finalizeTransfer(from,to,amount,buy,sell,other) (#492)
- antiSnipe.checkUser(from,to,amount) (#569-570)
External calls sending eth:
- contractSwap(contractTokenBalance) (#487)
- (success,None) = _taxWallets.marketing.call{gas: 35000,value: address(this).balance}() (#517)
State variables written after the call(s):
- finalizeTransfer(from,to,amount,buy,sell,other) (#492)
- _liquidityHolders[from] = true (#523)
- finalizeTransfer(from,to,amount,buy,sell,other) (#492)
- _tOwned[address(this)] += feeAmount (#601)
- _tOwned[from] -= amount (#579)
- _tOwned[to] += amountReceived (#581)
- finalizeTransfer(from,to,amount,buy,sell,other) (#492)
- antiSnipe = AntiSnipe(address(this)) (#527)
- finalizeTransfer(from,to,amount,buy,sell,other) (#492)
- contractSwapEnabled = true (#529)
Apply the check-effects-interactions pattern.
Additional information: link
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
Contract ownership is not renounced (belongs to a wallet)
Reentrancy in Technoland.enableTrading() (#534-545):
External calls:
- antiSnipe.setLaunch(lpPair,uint32(block.number),uint64(block.timestamp),_decimals) (#540)
State variables written after the call(s):
- tradingEnabled = true (#541)
Reentrancy in Technoland.transferOwner(address) (#229-243):
External calls:
- finalizeTransfer(_owner,newOwner,balanceOf(_owner),false,false,true) (#236)
- antiSnipe.checkUser(from,to,amount) (#569-570)
State variables written after the call(s):
- _owner = newOwner (#240)
Apply the check-effects-interactions pattern.
Additional information: link
Technoland.finalizeTransfer(address,address,uint256,bool,bool,bool).checked (#568) is a local variable never initialized
Technoland.finalizeTransfer(address,address,uint256,bool,bool,bool).check (#569) is a local variable never initialized
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
Technoland.finalizeTransfer(address,address,uint256,bool,bool,bool) (#560-585) ignores return value by antiSnipe.checkUser(from,to,amount) (#569-570)
Ensure that all the return values of the function calls are used.
Additional information: link
Technoland.setSwapSettings(uint256,uint256,uint256,uint256) (#408-414) should emit an event for:
- swapThreshold = (_tTotal * thresholdPercent) / thresholdDivisor (#409)
- swapAmount = (_tTotal * amountPercent) / amountDivisor (#410)
Technoland.setPriceImpactSwapAmount(uint256) (#416-419) should emit an event for:
- piSwapPercent = priceImpactSwapPercent (#418)
Emit an event for critical parameter changes.
Additional information: link
Technoland.setOperator(address).newOperator (#254) lacks a zero-check on :
- operator = newOperator (#261)
Check that the address is not zero.
Additional information: link
Technoland.finalizeTransfer(address,address,uint256,bool,bool,bool) (#560-585) has external calls inside a loop: antiSnipe.checkUser(from,to,amount) (#569-570)
Favor pull over push strategy for external calls.
Additional information: link
Variable 'Technoland.finalizeTransfer(address,address,uint256,bool,bool,bool).check (#569)' in Technoland.finalizeTransfer(address,address,uint256,bool,bool,bool) (#560-585) potentially used before declaration: checked = check (#570)
Move all variable declarations prior to any usage of the variable, and ensure that reaching a variable declaration does not depend on some conditional if it is used unconditionally.
Additional information: link
Reentrancy in Technoland.constructor() (#187-220):
External calls:
- lpPair = IFactoryV2(dexRouter.factory()).createPair(dexRouter.WETH(),address(this)) (#210)
State variables written after the call(s):
- _approve(_owner,address(dexRouter),type()(uint256).max) (#213)
- _allowances[sender][spender] = amount (#298)
- _approve(address(this),address(dexRouter),type()(uint256).max) (#214)
- _allowances[sender][spender] = amount (#298)
- _isExcludedFromFees[_owner] = true (#216)
- _isExcludedFromFees[address(this)] = true (#217)
- _isExcludedFromFees[DEAD] = true (#218)
- _liquidityHolders[_owner] = true (#219)
- lpPairs[lpPair] = true (#211)
Reentrancy in Technoland.enableTrading() (#534-545):
External calls:
- antiSnipe.setLaunch(lpPair,uint32(block.number),uint64(block.timestamp),_decimals) (#540)
State variables written after the call(s):
- allowedPresaleExclusion = false (#542)
- swapAmount = (balanceOf(lpPair) * 30) / 10000 (#544)
- swapThreshold = (balanceOf(lpPair) * 10) / 10000 (#543)
Reentrancy in Technoland.finalizeTransfer(address,address,uint256,bool,bool,bool) (#560-585):
External calls:
- antiSnipe.checkUser(from,to,amount) (#569-570)
State variables written after the call(s):
- _tOwned[from] -= amount (#579)
- _tOwned[to] += amountReceived (#581)
- amountReceived = takeTaxes(from,buy,sell,amount) (#580)
- _tOwned[address(this)] += feeAmount (#601)
Reentrancy in Technoland.setNewRouter(address) (#315-327):
External calls:
- lpPair = IFactoryV2(_newRouter.factory()).createPair(address(this),_newRouter.WETH()) (#320)
State variables written after the call(s):
- _approve(address(this),address(dexRouter),type()(uint256).max) (#326)
- _allowances[sender][spender] = amount (#298)
- dexRouter = _newRouter (#325)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in Technoland._transfer(address,address,uint256) (#456-493):
External calls:
- contractSwap(contractTokenBalance) (#487)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(contractTokenBalance,0,path,address(this),block.timestamp) (#507-515)
- (success,None) = _taxWallets.marketing.call{gas: 35000,value: address(this).balance}() (#517)
- finalizeTransfer(from,to,amount,buy,sell,other) (#492)
- antiSnipe.checkUser(from,to,amount) (#569-570)
External calls sending eth:
- contractSwap(contractTokenBalance) (#487)
- (success,None) = _taxWallets.marketing.call{gas: 35000,value: address(this).balance}() (#517)
Event emitted after the call(s):
- ContractSwapEnabledUpdated(true) (#530)
- finalizeTransfer(from,to,amount,buy,sell,other) (#492)
- Transfer(from,address(this),feeAmount) (#602)
- finalizeTransfer(from,to,amount,buy,sell,other) (#492)
- Transfer(from,to,amountReceived) (#583)
- finalizeTransfer(from,to,amount,buy,sell,other) (#492)
Reentrancy in Technoland.constructor() (#187-220):
External calls:
- lpPair = IFactoryV2(dexRouter.factory()).createPair(dexRouter.WETH(),address(this)) (#210)
Event emitted after the call(s):
- Approval(sender,spender,amount) (#299)
- _approve(address(this),address(dexRouter),type()(uint256).max) (#214)
- Approval(sender,spender,amount) (#299)
- _approve(_owner,address(dexRouter),type()(uint256).max) (#213)
Reentrancy in Technoland.finalizeTransfer(address,address,uint256,bool,bool,bool) (#560-585):
External calls:
- antiSnipe.checkUser(from,to,amount) (#569-570)
Event emitted after the call(s):
- Transfer(from,address(this),feeAmount) (#602)
- amountReceived = takeTaxes(from,buy,sell,amount) (#580)
- Transfer(from,to,amountReceived) (#583)
Reentrancy in Technoland.setNewRouter(address) (#315-327):
External calls:
- lpPair = IFactoryV2(_newRouter.factory()).createPair(address(this),_newRouter.WETH()) (#320)
Event emitted after the call(s):
- Approval(sender,spender,amount) (#299)
- _approve(address(this),address(dexRouter),type()(uint256).max) (#326)
Reentrancy in Technoland.transferOwner(address) (#229-243):
External calls:
- finalizeTransfer(_owner,newOwner,balanceOf(_owner),false,false,true) (#236)
- antiSnipe.checkUser(from,to,amount) (#569-570)
Event emitted after the call(s):
- OwnershipTransferred(oldOwner,newOwner) (#241)
Apply the check-effects-interactions pattern.
Additional information: link
Technoland.setLpPair(address,bool) (#329-341) uses timestamp for comparisons
Dangerous comparisons:
- timeSinceLastPair != 0 (#334)
- require(bool,string)(block.timestamp - timeSinceLastPair > 259200,3 Day cooldown.!) (#335)
Avoid relying on block.timestamp.
Additional information: link
Technoland._checkLiquidityAdd(address,address) (#520-532) has costly operations inside a loop:
- _hasLiqBeenAdded = true (#525)
Technoland._checkLiquidityAdd(address,address) (#520-532) has costly operations inside a loop:
- antiSnipe = AntiSnipe(address(this)) (#527)
Technoland._checkLiquidityAdd(address,address) (#520-532) has costly operations inside a loop:
- contractSwapEnabled = true (#529)
Use a local variable to hold the loop computation result.
Additional information: link
Pragma version>=0.6.0<0.9.0 (#2) is too complex
solc-0.8.16 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 Technoland.contractSwap(uint256) (#495-518):
- (success,None) = _taxWallets.marketing.call{gas: 35000,value: address(this).balance}() (#517)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IRouter01.WETH() (#33) is not in mixedCase
Parameter Technoland.setProtectionSettings(bool,bool)._antiSnipe (#382) is not in mixedCase
Parameter Technoland.setProtectionSettings(bool,bool)._antiBlock (#382) is not in mixedCase
Constant Technoland.startingSupply (#118) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Technoland._name (#119) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Technoland._symbol (#120) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Technoland._decimals (#121) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Technoland._tTotal (#122) is not in UPPER_CASE_WITH_UNDERSCORES
Variable Technoland._taxRates (#136-140) is not in mixedCase
Constant Technoland.maxBuyTaxes (#142) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Technoland.maxSellTaxes (#143) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Technoland.maxTransferTaxes (#144) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Technoland.maxRoundtripTax (#145) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Technoland.masterTaxDivisor (#146) is not in UPPER_CASE_WITH_UNDERSCORES
Variable Technoland._taxWallets (#157-159) is not in mixedCase
Variable Technoland._hasLiqBeenAdded (#169) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable IRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#45) is too similar to IRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#46)
Prevent variables from having similar names.
Additional information: link
Technoland.slitherConstructorConstantVariables() (#101-608) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#151)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
transfer(address,uint256) should be declared external:
- Technoland.transfer(address,uint256) (#284-287)
getCirculatingSupply() should be declared external:
- Technoland.getCirculatingSupply() (#365-367)
enableTrading() should be declared external:
- Technoland.enableTrading() (#534-545)
Use the external attribute for functions never called from the contract.
Additional information: link
Contract has 0% buy tax and 10% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.
Average 30d PancakeSwap liquidity is low.
Number of Binance Smart Chain (BSC) token holders is low.
Token is deployed only at one blockchain
Token has only one trading pair
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
Token is not listed at Mobula.Finance
Additional information: link
Unable to find token on CoinHunt
Additional information: link
Unable to find code repository for the project
Young tokens have high risks of scam / price dump / death
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
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account