DORSEY INU Token Logo

DORINU [DORSEY INU] Token

About DORINU

Listings

Not Found
Token 2 years

Dorsey Inu is building the first DAPP group messaging app with built-in NFT and crypto functionality! It will be a competitor to Telegram!
This will be the new preferred platform for new crypto projects. It will offer:
marketing

integrated wallet functionality

integrated NFT functionality

and more!

Dorsey Inu is the first true memecoin inspired by the true godfather of crypto, Jack Dorsey. Our goal is to create a new messaging application that is purpose-built for the crypto community.

Social

Laser Scorebeta Last Audit: 30 November 2021

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

Anti-Scam

Links

DORINU.sendETHToFee(uint256) (#652-654) sends eth to arbitrary user
Dangerous calls:
- marketingAddress.transfer(amount) (#653)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in DORINU._transfer(address,address,uint256) (#593-640):
External calls:
- swapTokens(contractTokenBalance) (#627)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#667-673)
External calls sending eth:
- swapTokens(contractTokenBalance) (#627)
- marketingAddress.transfer(amount) (#653)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#639)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#798)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#714)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#723)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#734)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#744)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#715)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#725)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#735)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#746)
- _tokenTransfer(from,to,amount,takeFee) (#639)
- _rTotal = _rTotal.sub(rFee) (#753)
- _tokenTransfer(from,to,amount,takeFee) (#639)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#800)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#743)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#733)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#724)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#745)
Apply the check-effects-interactions pattern.

Additional information: link


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

DORINU._transfer(address,address,uint256) (#593-640) uses a dangerous strict equality:
- block.timestamp == launchTime (#610)
Don't use strict equality to determine if an account has enough Ether or tokens.

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.

isRemovedSniper(address) should be declared external:
- DORINU.isRemovedSniper(address) (#860-862)
Use the external attribute for functions never called from the contract.

Additional information: link

DORINU.slitherConstructorVariables() (#389-894) uses literals with too many digits:
- _tTotal = 10000000000000 * 10 ** 9 (#406)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Ownable._lockTime (#147) is never used in DORINU (#389-894)
Remove unused state variables.

Additional information: link

DORINU.addLiquidity(uint256,uint256) (#679-692) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#684-691)
Ensure that all the return values of the function calls are used.

Additional information: link

DORINU._approve(address,address,uint256).owner (#585) shadows:
- Ownable.owner() (#157-159) (function)
Rename the local variables that shadow another component.

Additional information: link

DORINU.setFeeRate(uint256) (#885-887) should emit an event for:
- _feeRate = rate (#886)
Emit an event for critical parameter changes.

Additional information: link

DORINU.setMarketingAddress(address)._marketingAddress (#851) lacks a zero-check on :
- marketingAddress = address(_marketingAddress) (#852)
Check that the address is not zero.

Additional information: link

Reentrancy in DORINU.transferFrom(address,address,uint256) (#509-513):
External calls:
- _transfer(sender,recipient,amount) (#510)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#667-673)
External calls sending eth:
- _transfer(sender,recipient,amount) (#510)
- marketingAddress.transfer(amount) (#653)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#511)
- _allowances[owner][spender] = amount (#589)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in DORINU.transferFrom(address,address,uint256) (#509-513):
External calls:
- _transfer(sender,recipient,amount) (#510)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#667-673)
External calls sending eth:
- _transfer(sender,recipient,amount) (#510)
- marketingAddress.transfer(amount) (#653)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#590)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#511)
Apply the check-effects-interactions pattern.

Additional information: link

DORINU._transfer(address,address,uint256) (#593-640) uses timestamp for comparisons
Dangerous comparisons:
- block.timestamp == launchTime (#610)
Avoid relying on block.timestamp.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#124-141) uses assembly
- INLINE ASM (#133-136)
Do not use evm assembly.

Additional information: link

SafeMath.mod(uint256,uint256,string) (#79-82) is never used and should be removed
Remove unused functions.

Additional information: link

DORINU._previousLiquidityFee (#419) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
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.7 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 Address._functionCallWithValue(address,bytes,uint256,string) (#124-141):
- (success,returndata) = target.call{value: weiValue}(data) (#127)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable DORINU._liquidityFee (#418) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#11)" inContext (#5-14)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in DORINU.transferFrom(address,address,uint256) (#509-513):
External calls:
- _transfer(sender,recipient,amount) (#510)
- marketingAddress.transfer(amount) (#653)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#511)
- _allowances[owner][spender] = amount (#589)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#590)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#511)
Apply the check-effects-interactions pattern.

Additional information: link

Variable DORINU._transferToExcluded(address,address,uint256).rTransferAmount (#722) is too similar to DORINU._transferStandard(address,address,uint256).tTransferAmount (#713)
Prevent variables from having similar names.

Additional information: link

Ownable._previousOwner (#146) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

Holders:


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


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/project description on the website or on BscScan, CoinMarketCap


Unable to find token contract audit


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 audit link on the website


Unable to find whitepaper link on the website


Unable to find Telegram link on the website


Unable to find Twitter 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 DORINU