HealingRiceDumpling Token Logo

HealingRiceDumpling Token

ALERT: rug pull scam

About HealingRiceDumpling

Listings

Token 18 months

Website

Not Found

Cheaper and faster than Uniswap? Discover PancakeSwap, the leading DEX on BNB Smart Chain (BSC) with the best farms in DeFi and a lottery for CAKE.

Social

Laser Scorebeta Last Audit: 11 June 2022

report
Token seems to be a scam (type: rug pull scam).


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

HealingRiceDumpling.addLiquidity(uint256,uint256) (#718-731) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#723-730)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in HealingRiceDumpling._transfer(address,address,uint256) (#628-665):
External calls:
- swapAndLiquify(contractTokenBalance) (#649)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#723-730)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#707-713)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#649)
- recipient.transfer(amount) (#591)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#723-730)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#652)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#660)
- finalAmount = takeFee(sender,recipient,amount) (#654-655)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#744)
Apply the check-effects-interactions pattern.

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.

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#250) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#251)
Prevent variables from having similar names.

Additional information: link

Reentrancy in HealingRiceDumpling.changeRouterVersion(address) (#594-611):
External calls:
- newPairAddress = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#602-603)
State variables written after the call(s):
- isMarketPair[address(uniswapPair)] = true (#610)
- isWalletLimitExempt[address(uniswapPair)] = true (#609)
- uniswapPair = newPairAddress (#606)
- uniswapV2Router = _uniswapV2Router (#607)
Reentrancy in HealingRiceDumpling.constructor() (#441-468):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#444-445)
State variables written after the call(s):
- _allowances[address(this)][address(uniswapV2Router)] = _totalSupply (#448)
- _balances[_msgSender()] = _totalSupply (#466)
- _totalDistributionShares = _liquidityShare.add(_marketingShare).add(_teamShare) (#455)
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyMarketingFee).add(_buyTeamFee) (#453)
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellMarketingFee).add(_sellTeamFee) (#454)
- isExcludedFromFee[owner()] = true (#450)
- isExcludedFromFee[address(this)] = true (#451)
- isMarketPair[address(uniswapPair)] = true (#464)
- isTxLimitExempt[owner()] = true (#461)
- isTxLimitExempt[address(this)] = true (#462)
- isWalletLimitExempt[owner()] = true (#457)
- isWalletLimitExempt[address(uniswapPair)] = true (#458)
- isWalletLimitExempt[address(this)] = true (#459)
- uniswapV2Router = _uniswapV2Router (#447)
Reentrancy in HealingRiceDumpling.swapAndLiquify(uint256) (#674-696):
External calls:
- swapTokensForEth(tokensForSwap) (#679)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#707-713)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#695)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#723-730)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#689)
- recipient.transfer(amount) (#591)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#692)
- recipient.transfer(amount) (#591)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#695)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#723-730)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#695)
- _allowances[owner][spender] = amount (#533)
Reentrancy in HealingRiceDumpling.transferFrom(address,address,uint256) (#621-625):
External calls:
- _transfer(sender,recipient,amount) (#622)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#723-730)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#707-713)
External calls sending eth:
- _transfer(sender,recipient,amount) (#622)
- recipient.transfer(amount) (#591)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#723-730)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#623)
- _allowances[owner][spender] = amount (#533)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in HealingRiceDumpling._transfer(address,address,uint256) (#628-665):
External calls:
- swapAndLiquify(contractTokenBalance) (#649)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#723-730)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#707-713)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#649)
- recipient.transfer(amount) (#591)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#723-730)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#745)
- finalAmount = takeFee(sender,recipient,amount) (#654-655)
- Transfer(sender,recipient,finalAmount) (#662)
Reentrancy in HealingRiceDumpling.constructor() (#441-468):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#444-445)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_totalSupply) (#467)
Reentrancy in HealingRiceDumpling.swapAndLiquify(uint256) (#674-696):
External calls:
- swapTokensForEth(tokensForSwap) (#679)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#707-713)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#695)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#723-730)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#689)
- recipient.transfer(amount) (#591)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#692)
- recipient.transfer(amount) (#591)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#695)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#723-730)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#534)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#695)
Reentrancy in HealingRiceDumpling.swapTokensForEth(uint256) (#698-716):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#707-713)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#715)
Reentrancy in HealingRiceDumpling.transferFrom(address,address,uint256) (#621-625):
External calls:
- _transfer(sender,recipient,amount) (#622)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#723-730)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#707-713)
External calls sending eth:
- _transfer(sender,recipient,amount) (#622)
- recipient.transfer(amount) (#591)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#723-730)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#534)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#623)
Apply the check-effects-interactions pattern.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#119-136) is never used and should be removed
Address.functionCall(address,bytes) (#102-104) is never used and should be removed
Address.functionCall(address,bytes,string) (#106-108) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#110-112) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#114-117) is never used and should be removed
Address.isContract(address) (#83-92) is never used and should be removed
Address.sendValue(address,uint256) (#94-100) is never used and should be removed
Context._msgData() (#10-13) is never used and should be removed
SafeMath.mod(uint256,uint256) (#71-73) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#75-78) is never used and should be removed
Remove unused functions.

Additional information: link

HealingRiceDumpling._totalSupply (#423) is set pre-construction with a non-constant function or state variable:
- 1000000 * 10 ** _decimals
HealingRiceDumpling._maxTxAmount (#424) is set pre-construction with a non-constant function or state variable:
- 1000000 * 10 ** _decimals
HealingRiceDumpling._walletMax (#425) is set pre-construction with a non-constant function or state variable:
- 1000000 * 10 ** _decimals
HealingRiceDumpling.minimumTokensBeforeSwap (#426) is set pre-construction with a non-constant function or state variable:
- 1 * 10 ** _decimals
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

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#209) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#210) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#226) is not in mixedCase
Function IUniswapV2Router01.WETH() (#245) is not in mixedCase
Parameter HealingRiceDumpling.setSwapAndLiquifyEnabled(bool)._enabled (#577) is not in mixedCase
Variable HealingRiceDumpling._balances (#411) is not in mixedCase
Variable HealingRiceDumpling._maxTxAmount (#424) is not in mixedCase
Variable HealingRiceDumpling._walletMax (#425) is not in mixedCase
Variable HealingRiceDumpling._buyLiquidityFee (#470) is not in mixedCase
Variable HealingRiceDumpling._buyMarketingFee (#471) is not in mixedCase
Variable HealingRiceDumpling._buyTeamFee (#472) is not in mixedCase
Variable HealingRiceDumpling._sellLiquidityFee (#474) is not in mixedCase
Variable HealingRiceDumpling._sellMarketingFee (#475) is not in mixedCase
Variable HealingRiceDumpling._sellTeamFee (#476) is not in mixedCase
Variable HealingRiceDumpling._liquidityShare (#478) is not in mixedCase
Variable HealingRiceDumpling._marketingShare (#479) is not in mixedCase
Variable HealingRiceDumpling._teamShare (#480) is not in mixedCase
Variable HealingRiceDumpling._totalTaxIfBuying (#482) is not in mixedCase
Variable HealingRiceDumpling._totalTaxIfSelling (#483) is not in mixedCase
Variable HealingRiceDumpling._totalDistributionShares (#484) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Reentrancy in HealingRiceDumpling._transfer(address,address,uint256) (#628-665):
External calls:
- swapAndLiquify(contractTokenBalance) (#649)
- recipient.transfer(amount) (#591)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#649)
- recipient.transfer(amount) (#591)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#723-730)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#652)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#660)
- finalAmount = takeFee(sender,recipient,amount) (#654-655)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#744)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#745)
- finalAmount = takeFee(sender,recipient,amount) (#654-655)
- Transfer(sender,recipient,finalAmount) (#662)
Reentrancy in HealingRiceDumpling.swapAndLiquify(uint256) (#674-696):
External calls:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#689)
- recipient.transfer(amount) (#591)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#692)
- recipient.transfer(amount) (#591)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#689)
- recipient.transfer(amount) (#591)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#692)
- recipient.transfer(amount) (#591)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#695)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#723-730)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#695)
- _allowances[owner][spender] = amount (#533)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#534)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#695)
Reentrancy in HealingRiceDumpling.transferFrom(address,address,uint256) (#621-625):
External calls:
- _transfer(sender,recipient,amount) (#622)
- recipient.transfer(amount) (#591)
External calls sending eth:
- _transfer(sender,recipient,amount) (#622)
- recipient.transfer(amount) (#591)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#723-730)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#623)
- _allowances[owner][spender] = amount (#533)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#534)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#623)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.waiveOwnership() (#161-164) uses literals with too many digits:
- OwnershipTransferred(_owner,address(0x000000000000000000000000000000000000dEaD)) (#162)
Ownable.waiveOwnership() (#161-164) uses literals with too many digits:
- _owner = address(0x000000000000000000000000000000000000dEaD) (#163)
HealingRiceDumpling.slitherConstructorVariables() (#378-752) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#409)
HealingRiceDumpling.slitherConstructorVariables() (#378-752) uses literals with too many digits:
- _totalSupply = 1000000 * 10 ** _decimals (#423)
HealingRiceDumpling.slitherConstructorVariables() (#378-752) uses literals with too many digits:
- _maxTxAmount = 1000000 * 10 ** _decimals (#424)
HealingRiceDumpling.slitherConstructorVariables() (#378-752) uses literals with too many digits:
- _walletMax = 1000000 * 10 ** _decimals (#425)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Ownable.asdasd (#141) is never used in HealingRiceDumpling (#378-752)
Ownable._lockTime (#142) is never used in HealingRiceDumpling (#378-752)
Remove unused state variables.

Additional information: link

HealingRiceDumpling._buyLiquidityFee (#470) should be constant
HealingRiceDumpling._buyMarketingFee (#471) should be constant
HealingRiceDumpling._buyTeamFee (#472) should be constant
HealingRiceDumpling._decimals (#422) should be constant
HealingRiceDumpling._name (#437) should be constant
HealingRiceDumpling._sellLiquidityFee (#474) should be constant
HealingRiceDumpling._sellMarketingFee (#475) should be constant
HealingRiceDumpling._sellTeamFee (#476) should be constant
HealingRiceDumpling._symbol (#438) should be constant
HealingRiceDumpling.launchAt (#419) should be constant
HealingRiceDumpling.liq1 (#420) should be constant
Ownable._lockTime (#142) should be constant
Ownable.asdasd (#141) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

waiveOwnership() should be declared external:
- Ownable.waiveOwnership() (#161-164)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#166-170)
getTime() should be declared external:
- Ownable.getTime() (#172-174)
name() should be declared external:
- HealingRiceDumpling.name() (#486-488)
symbol() should be declared external:
- HealingRiceDumpling.symbol() (#490-492)
decimals() should be declared external:
- HealingRiceDumpling.decimals() (#494-496)
totalSupply() should be declared external:
- HealingRiceDumpling.totalSupply() (#498-500)
allowance(address,address) should be declared external:
- HealingRiceDumpling.allowance(address,address) (#506-508)
increaseAllowance(address,uint256) should be declared external:
- HealingRiceDumpling.increaseAllowance(address,uint256) (#510-513)
decreaseAllowance(address,uint256) should be declared external:
- HealingRiceDumpling.decreaseAllowance(address,uint256) (#515-518)
minimumTokensBeforeSwapAmount() should be declared external:
- HealingRiceDumpling.minimumTokensBeforeSwapAmount() (#520-522)
approve(address,uint256) should be declared external:
- HealingRiceDumpling.approve(address,uint256) (#524-527)
setMarketPairStatus(address,bool) should be declared external:
- HealingRiceDumpling.setMarketPairStatus(address,bool) (#537-539)
setIsExcludedFromFee(address,bool) should be declared external:
- HealingRiceDumpling.setIsExcludedFromFee(address,bool) (#545-547)
setSwapAndLiquifyEnabled(bool) should be declared external:
- HealingRiceDumpling.setSwapAndLiquifyEnabled(bool) (#577-580)
setSwapAndLiquifyByLimitOnly(bool) should be declared external:
- HealingRiceDumpling.setSwapAndLiquifyByLimitOnly(bool) (#582-584)
getCirculatingSupply() should be declared external:
- HealingRiceDumpling.getCirculatingSupply() (#586-588)
changeRouterVersion(address) should be declared external:
- HealingRiceDumpling.changeRouterVersion(address) (#594-611)
transfer(address,uint256) should be declared external:
- HealingRiceDumpling.transfer(address,uint256) (#616-619)
transferFrom(address,address,uint256) should be declared external:
- HealingRiceDumpling.transferFrom(address,address,uint256) (#621-625)
Use the external attribute for functions never called from the contract.

Additional information: link

HealingRiceDumpling.addLiquidity(uint256,uint256) (#718-731) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#723-730)
Ensure that all the return values of the function calls are used.

Additional information: link

HealingRiceDumpling.allowance(address,address).owner (#506) shadows:
- Ownable.owner() (#152-154) (function)
HealingRiceDumpling._approve(address,address,uint256).owner (#529) shadows:
- Ownable.owner() (#152-154) (function)
Rename the local variables that shadow another component.

Additional information: link

Contract ticker (HealingRiceDumpling) has length of 19 chars.
Not a direct threat, but may indicate unreliable intentions of developer.

Address.isContract(address) (#83-92) uses assembly
- INLINE ASM (#90)
Address._functionCallWithValue(address,bytes,uint256,string) (#119-136) uses assembly
- INLINE ASM (#128-131)
Do not use evm assembly.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#94-100):
- (success) = recipient.call{value: amount}() (#98)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#119-136):
- (success,returndata) = target.call{value: weiValue}(data) (#122)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

HealingRiceDumpling.setDistributionSettings(uint256,uint256,uint256) (#549-555) should emit an event for:
- _liquidityShare = newLiquidityShare (#550)
- _teamShare = newTeamShare (#552)
- _totalDistributionShares = _liquidityShare.add(_marketingShare).add(_teamShare) (#554)
HealingRiceDumpling.setNumTokensBeforeSwap(uint256) (#565-567) should emit an event for:
- minimumTokensBeforeSwap = newLimit (#566)
Emit an event for critical parameter changes.

Additional information: link

HealingRiceDumpling.setMarketingWalletAddress(address).newAddress (#569) lacks a zero-check on :
- marketingWalletAddress = address(newAddress) (#570)
HealingRiceDumpling.setTeamWalletAddress(address).newAddress (#573) lacks a zero-check on :
- teamWalletAddress = address(newAddress) (#574)
Check that the address is not zero.

Additional information: link

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

Additional information: link

Holders:


Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


Average 30d PancakeSwap volume is low.


Token is deployed only at one blockchain


Token has only one trading pair

Contract has 6% buy tax and 6% sell tax.
Taxes are low and contract ownership is renounced.


Telegram account link seems to be invalid


Unable to find Twitter account


Unable to find Blog account (Reddit or Medium)


Unable to find Discord account


Unable to find Youtube account


Unable to find website, listings and other project-related information


Token is marked as scam (rug pull, honeypot, phishing, etc.)

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

Price for HealingRiceDumpling