TitanApe Token Logo

TAC [TitanApe] Token

About TAC

Listings

Not Found
Token 2 years
white paper

Holders of the TAC tokens get rewarded 8% in BUSD from each transaction, 4% liquidity fees ,2% buy back and burn, anti Whale system discouraging whales by limiting the sale amount to a maximum of 0.25% of the circulating supply.

Social

Laser Scorebeta Last Audit: 30 November 2021

report
Token has too many issues. Scam probability is high.

Anti-Scam

Links


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

TitanApe.swapBack() (#601-643) sends eth to arbitrary user
Dangerous calls:
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#628)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in TitanApe._transferFrom(address,address,uint256) (#526-549):
External calls:
- swapBack() (#531)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#611-617)
- distributor.deposit{value: amountBNBReflection}() (#627)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#633-640)
- triggerAutoBuyback() (#532)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#677-682)
External calls sending eth:
- swapBack() (#531)
- distributor.deposit{value: amountBNBReflection}() (#627)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#628)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#633-640)
- triggerAutoBuyback() (#532)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#677-682)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#536)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#540)
- amountReceived = takeFee(sender,recipient,amount) (#538)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#588)
- triggerAutoBuyback() (#532)
- inSwap = true (#465)
- inSwap = false (#465)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#357-368) ignores return value by BUSD.transfer(shareholder,amount) (#363)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


Combination 1: Reentrancy vulnerabilities + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.


Combination 2: Unchecked transfer + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.


Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.

Reentrancy in DividendDistributor.setShare(address,uint256) (#290-304):
External calls:
- distributeDividend(shareholder) (#292)
- BUSD.transfer(shareholder,amount) (#363)
State variables written after the call(s):
- shares[shareholder].amount = amount (#302)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#303)
Apply the check-effects-interactions pattern.

Additional information: link

TitanApe.swapBack() (#601-643) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#633-640)
Ensure that all the return values of the function calls are used.

Additional information: link

TitanApe.setTargetLiquidity(uint256,uint256) (#754-757) should emit an event for:
- targetLiquidity = _target (#755)
- targetLiquidityDenominator = _denominator (#756)
Emit an event for critical parameter changes.

Additional information: link

TitanApe.setFeeReceivers(address,address)._marketingFeeReceiver (#744) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#746)
Check that the address is not zero.

Additional information: link

Reentrancy in TitanApe.triggerZeusBuyback(uint256,bool) (#653-659):
External calls:
- buyTokens(amount,DEAD) (#654)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#677-682)
State variables written after the call(s):
- buybackMultiplierTriggeredAt = block.timestamp (#656)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in TitanApe.triggerZeusBuyback(uint256,bool) (#653-659):
External calls:
- buyTokens(amount,DEAD) (#654)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#677-682)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#657)
Apply the check-effects-interactions pattern.

Additional information: link

TitanApe.isOverLiquified(uint256,uint256) (#776-778) uses timestamp for comparisons
Dangerous comparisons:
- getLiquidityBacking(accuracy) > target (#777)
Avoid relying on block.timestamp.

Additional information: link

TitanApe.onlyBuybacker() (#500) compares to a boolean constant:
-require(bool,string)(buyBacker[msg.sender] == true,) (#500)
Remove the equality to the boolean constant.

Additional information: link

DividendDistributor.process(uint256) (#326-350) has costly operations inside a loop:
- currentIndex ++ (#347)
Use a local variable to hold the loop computation result.

Additional information: link

TitanApe.launched() (#701-703) is never used and should be removed
Remove unused functions.

Additional information: link

TitanApe.swapThreshold (#463) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 2000
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.

Additional information: link

solc-0.8.4 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

Variable TitanApe._allowances (#419) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Reentrancy in TitanApe.swapBack() (#601-643):
External calls:
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#628)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#627)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#628)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#633-640)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#641)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#187) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#188)
Prevent variables from having similar names.

Additional information: link

TitanApe.slitherConstructorVariables() (#401-783) uses literals with too many digits:
- distributorGas = 500000 (#460)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

TitanApe.DEAD_NON_CHECKSUM (#409) is never used in TitanApe (#401-783)
Remove unused state variables.

Additional information: link

TitanApe._totalSupply (#415) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

launch() should be declared external:
- TitanApe.launch() (#705-709)
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.


Number of Binance Smart Chain (BSC) token holders is low.


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.


Twitter account link seems to be invalid


Unable to find Youtube account


Unable to find Discord account


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 find token contract audit


Unable to find audit link on the website


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


Young tokens have high risks of 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

Price for TAC