ArcaneGirl Token Logo

ArcaneGirl Token

ALERT: honeypot scam

About ArcaneGirl

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 30 November 2021

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


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


Contract creator or owner is blacklisted for past scams

ArcaneGirl.swapBack() (#333-374) sends eth to arbitrary user
Dangerous calls:
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#358)
- (BuyBackSuccess) = address(buybackFeeReceiver).call{gas: 30000,value: amountBNBbuyback}() (#360)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in ArcaneGirl._transferFrom(address,address,uint256) (#274-294):
External calls:
- swapBack() (#283)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#344-350)
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#358)
- (BuyBackSuccess) = address(buybackFeeReceiver).call{gas: 30000,value: amountBNBbuyback}() (#360)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,marketingFeeReceiver,block.timestamp) (#364-371)
External calls sending eth:
- swapBack() (#283)
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#358)
- (BuyBackSuccess) = address(buybackFeeReceiver).call{gas: 30000,value: amountBNBbuyback}() (#360)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,marketingFeeReceiver,block.timestamp) (#364-371)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#287)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#290)
- amountReceived = takeFee(sender,recipient,amount) (#289)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#320)
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.

ArcaneGirl.slitherConstructorVariables() (#189-458) performs a multiplication on the result of a division:
-swapThreshold = _totalSupply / 1000 * 3 (#225)
Consider ordering multiplication before division.

Additional information: link

ArcaneGirl.swapBack() (#333-374) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,marketingFeeReceiver,block.timestamp) (#364-371)
Ensure that all the return values of the function calls are used.

Additional information: link

ArcaneGirl.setFees(uint256,uint256,uint256,uint256) (#415-421) should emit an event for:
- liquidityFee = _liquidityFee (#416)
- buybackFee = _buybackFee (#417)
- marketingFee = _marketingFee (#418)
- totalFee = _liquidityFee.add(_buybackFee).add(_marketingFee) (#419)
- feeDenominator = _feeDenominator (#420)
Emit an event for critical parameter changes.

Additional information: link

ArcaneGirl.setFeeReceiver(address,address)._buybackFeeReceiver (#423) lacks a zero-check on :
- buybackFeeReceiver = _buybackFeeReceiver (#425)
Check that the address is not zero.

Additional information: link

Reentrancy in ArcaneGirl.constructor() (#229-240):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#231)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = type()(uint256).max (#232)
- _balances[_owner] = _totalSupply (#238)
- isFeeExempt[_owner] = true (#235)
- isTxLimitExempt[_owner] = true (#236)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in ArcaneGirl.swapBack() (#333-374):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#344-350)
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#358)
- (BuyBackSuccess) = address(buybackFeeReceiver).call{gas: 30000,value: amountBNBbuyback}() (#360)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,marketingFeeReceiver,block.timestamp) (#364-371)
External calls sending eth:
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#358)
- (BuyBackSuccess) = address(buybackFeeReceiver).call{gas: 30000,value: amountBNBbuyback}() (#360)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,marketingFeeReceiver,block.timestamp) (#364-371)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#372)
Apply the check-effects-interactions pattern.

Additional information: link

ArcaneGirl.buyTokens(uint256,address) (#376-387) is never used and should be removed
Remove unused functions.

Additional information: link

ArcaneGirl.swapThreshold (#225) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 1000 * 3
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 ArcaneGirl.swapBack() (#333-374):
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#358)
- (BuyBackSuccess) = address(buybackFeeReceiver).call{gas: 30000,value: amountBNBbuyback}() (#360)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable ArcaneGirl._allowances (#205) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

ArcaneGirl.slitherConstructorVariables() (#189-458) uses literals with too many digits:
- _totalSupply = 100000000000 * (10 ** _decimals) (#200)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

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

Additional information: link

isOverLiquified(uint256,uint256) should be declared external:
- ArcaneGirl.isOverLiquified(uint256,uint256) (#452-454)
Use the external attribute for functions never called from the contract.

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.


Unable to find Telegram and Twitter accounts


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 price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for ArcaneGirl