Sweety INU Token Logo

SWT [Sweety INU] Token

About SWT

Listings

Token 2 years
white paper

Sweety Inu is a project created to be an active participant in the NFT community. The Urgaming project is built from a business point of view, that is, as a real business project that will generate products and services for the NFT community, while the profits from these will be reinvested within the same ecosystem to enhance our tokens and benefit our holders.
Team is KYC Verified and experienced..
Sweety Inu is an Ecosystem which willbring several projects very soon as per its roadmap.
Symbol: SWT
Supply: 1,000,000,000,000
Slippage: 11%
4% of every transaction will be redistributed to holders
4% of every transaction will go to burn.e

Social

Laser Scorebeta Last Audit: 30 November 2021

report
Token is either risky or in presale. For presale 30+ is a fine score.

Anti-Scam

Links

Reentrancy in SweetyInu._transfer(address,address,uint256) (#639-672):
External calls:
- swapAndLiquify(contractTokenBalance) (#660)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#689-695)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#660)
- recipient.transfer(amount) (#899)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#671)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#817)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#734)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#723)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#747)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#759)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#724)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#736)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#748)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#761)
- _tokenTransfer(from,to,amount,takeFee) (#671)
- _rTotal = _rTotal.sub(rFee).sub(rBurn) (#768)
- _tokenTransfer(from,to,amount,takeFee) (#671)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#819)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#758)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#746)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#735)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#760)
- _tokenTransfer(from,to,amount,takeFee) (#671)
- _tTotal = _tTotal.sub(tBurn) (#771)
Apply the check-effects-interactions pattern.

Additional information: link


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

SweetyInu._approve(address,address,uint256).owner (#631) shadows:
- Ownable.owner() (#171-173) (function)
Rename the local variables that shadow another component.

Additional information: link

SweetyInu.setNumTokensSellToAddToLiquidity(uint256) (#888-890) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#889)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in SweetyInu.transferFrom(address,address,uint256) (#544-548):
External calls:
- _transfer(sender,recipient,amount) (#545)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#689-695)
External calls sending eth:
- _transfer(sender,recipient,amount) (#545)
- recipient.transfer(amount) (#899)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#546)
- _allowances[owner][spender] = amount (#635)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in SweetyInu.transferFrom(address,address,uint256) (#544-548):
External calls:
- _transfer(sender,recipient,amount) (#545)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#689-695)
External calls sending eth:
- _transfer(sender,recipient,amount) (#545)
- recipient.transfer(amount) (#899)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#636)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#546)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#212-217) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#214)
Avoid relying on block.timestamp.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#138-155) uses assembly
- INLINE ASM (#147-150)
Do not use evm assembly.

Additional information: link

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

Additional information: link

SweetyInu._previousDonationFee (#465) is set pre-construction with a non-constant function or state variable:
- _donationFee
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

Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#138-155):
- (success,returndata) = target.call{value: weiValue}(data) (#141)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable SweetyInu._maxTxAmount (#467) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#25)" inContext (#19-28)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in SweetyInu.transferFrom(address,address,uint256) (#544-548):
External calls:
- _transfer(sender,recipient,amount) (#545)
- recipient.transfer(amount) (#899)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#546)
- _allowances[owner][spender] = amount (#635)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#636)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#546)
Apply the check-effects-interactions pattern.

Additional information: link

Variable SweetyInu._transferBothExcluded(address,address,uint256).rTransferAmount (#756) is too similar to SweetyInu._transferToExcluded(address,address,uint256).tTransferAmount (#732)
Prevent variables from having similar names.

Additional information: link

SweetyInu.slitherConstructorVariables() (#432-906) uses literals with too many digits:
- _maxTxAmount = 5000000 * 10 ** 6 * 10 ** 9 (#467)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SweetyInu.charityAddress (#470) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

setSwapAndLiquifyEnabled(bool) should be declared external:
- SweetyInu.setSwapAndLiquifyEnabled(bool) (#892-895)
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 Blog account (Reddit or Medium)


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 code repository for the project


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 SWT