TorrentShiba Token Logo

TSHIBA [TorrentShiba] Token

About TSHIBA

Listings

Not Found
Token 2 years
white paper

TorrentShiba rewards its holders with 15% BTT token reflections based on their share of holdings. The reflections are made from the tax levied on each transaction.

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...)

TorrentShiba.swapBack() (#608-652) sends eth to arbitrary user
Dangerous calls:
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#636)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in TorrentShiba._transferFrom(address,address,uint256) (#508-556):
External calls:
- swapBack() (#535)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#619-625)
- distributor.deposit{value: amountBNBReflection}() (#635)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#636)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#642-649)
External calls sending eth:
- swapBack() (#535)
- distributor.deposit{value: amountBNBReflection}() (#635)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#636)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#642-649)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#538)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#541)
- amountReceived = takeFee(sender,amount) (#540)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#576)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#336-347) ignores return value by BTT.transfer(shareholder,amount) (#342)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


Too many vulnerabilities (Unchecked transfer, Reentrancy vulnerability, etc.). High risk of a scam. DYOR & manual audit are advised.

TorrentShiba.swapBack().tmpSuccess (#636) is written in both
(tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#636)
tmpSuccess = false (#639)
Fix or remove the writes.

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.

solc-0.7.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

TorrentShiba.swapThreshold (#433) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 20 / 10000
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

TorrentShiba._transferFrom(address,address,uint256) (#508-556) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,Please wait for cooldown between buys) (#526)
Avoid relying on block.timestamp.

Additional information: link

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

Additional information: link

Reentrancy in DividendDistributor.setShare(address,uint256) (#269-283):
External calls:
- distributeDividend(shareholder) (#271)
- BTT.transfer(shareholder,amount) (#342)
State variables written after the call(s):
- shares[shareholder].amount = amount (#281)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#282)
Apply the check-effects-interactions pattern.

Additional information: link

TorrentShiba.swapBack() (#608-652) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#642-649)
Ensure that all the return values of the function calls are used.

Additional information: link

TorrentShiba.setTargetLiquidity(uint256,uint256) (#700-703) should emit an event for:
- targetLiquidity = _target (#701)
- targetLiquidityDenominator = _denominator (#702)
Emit an event for critical parameter changes.

Additional information: link

TorrentShiba.setFeeReceivers(address,address)._marketingFeeReceiver (#690) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#692)
Check that the address is not zero.

Additional information: link

TorrentShiba.airdrop(address,address[],uint256[]) (#731-754) has external calls inside a loop: distributor.setShare(addresses[i_scope_0],_balances[addresses[i_scope_0]]) (#746)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in DividendDistributor.setShare(address,uint256) (#269-283):
External calls:
- distributeDividend(shareholder) (#271)
- BTT.transfer(shareholder,amount) (#342)
State variables written after the call(s):
- addShareholder(shareholder) (#275)
- shareholderIndexes[shareholder] = shareholders.length (#369)
- removeShareholder(shareholder) (#277)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#375)
- addShareholder(shareholder) (#275)
- shareholders.push(shareholder) (#370)
- removeShareholder(shareholder) (#277)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#374)
- shareholders.pop() (#376)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#280)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in TorrentShiba.swapBack() (#608-652):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#619-625)
- distributor.deposit{value: amountBNBReflection}() (#635)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#636)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#642-649)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#635)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#636)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#642-649)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#650)
Apply the check-effects-interactions pattern.

Additional information: link

Low level call in TorrentShiba.swapBack() (#608-652):
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#636)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable TorrentShiba._allowances (#399) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

TorrentShiba.slitherConstructorVariables() (#380-758) uses literals with too many digits:
- distributorGas = 500000 (#425)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

TorrentShiba.BTT (#383) is never used in TorrentShiba (#380-758)
Remove unused state variables.

Additional information: link

TorrentShiba.launchedAt (#421) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

cooldownEnabled(bool,uint8) should be declared external:
- TorrentShiba.cooldownEnabled(bool,uint8) (#601-604)
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.


Telegram account link seems to be invalid


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


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 TSHIBA