Wrapped BSC GRECAS Token Logo

WBGCS [Wrapped BSC GRECAS] Token

ALERT: dead

About WBGCS

Listings

Token 2 years
white paper

Wrapped BSC GRECAS (WBGCS) - is a secretly launched, community-driven DeFi token, programmed to reward holders through a frictionless yield and liquidity generation protocol.

Laser Scorebeta Last Audit: 14 October 2022

report
Token seems to be unmaintained (no trading, inactive website, inactive socials, etc.).

Anti-Scam

Links


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

Reentrancy in WrappedBSCGRECAS._transfer(address,address,uint256) (#990-1034):
External calls:
- swapAndLiquify(contractTokenBalance) (#1021)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1082-1089)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1068-1074)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1021)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1082-1089)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1033)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#946)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1124)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1115)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#862)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1116)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1135)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1136)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1126)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#864)
- _tokenTransfer(from,to,amount,takeFee) (#1033)
- _rTotal = _rTotal.sub(rFee) (#901)
- _tokenTransfer(from,to,amount,takeFee) (#1033)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#948)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1134)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#861)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1125)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#863)
Apply the check-effects-interactions pattern.

Additional information: link


Contract ownership is not renounced (belongs to a wallet)


Not a direct threat, but may indicate unreliable intentions of developer. Widespread names (e.g. Elon, King, Moon, Doge) are common among meme-tokens and scams. The allow to gain free hype and attract unexperienced investors.

WrappedBSCGRECAS.addLiquidity(uint256,uint256) (#1077-1090) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1082-1089)
Ensure that all the return values of the function calls are used.

Additional information: link

Redundant expression "this (#239)" inContext (#233-242)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Ownable.unlock() (#461-466) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 13 days) (#463)
Avoid relying on block.timestamp.

Additional information: link

WrappedBSCGRECAS._name (#701) should be constant
WrappedBSCGRECAS._decimals (#703) should be constant
WrappedBSCGRECAS._symbol (#702) should be constant
WrappedBSCGRECAS.numTokensSellToAddToLiquidity (#718) should be constant
WrappedBSCGRECAS._tTotal (#697) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

Reentrancy in WrappedBSCGRECAS.transferFrom(address,address,uint256) (#787-791):
External calls:
- _transfer(sender,recipient,amount) (#788)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1082-1089)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1068-1074)
External calls sending eth:
- _transfer(sender,recipient,amount) (#788)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1082-1089)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#987)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#789)
Reentrancy in WrappedBSCGRECAS._transfer(address,address,uint256) (#990-1034):
External calls:
- swapAndLiquify(contractTokenBalance) (#1021)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1082-1089)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1068-1074)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1021)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1082-1089)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1119)
- _tokenTransfer(from,to,amount,takeFee) (#1033)
- Transfer(sender,recipient,tTransferAmount) (#1139)
- _tokenTransfer(from,to,amount,takeFee) (#1033)
- Transfer(sender,recipient,tTransferAmount) (#1129)
- _tokenTransfer(from,to,amount,takeFee) (#1033)
- Transfer(sender,recipient,tTransferAmount) (#867)
- _tokenTransfer(from,to,amount,takeFee) (#1033)
Reentrancy in WrappedBSCGRECAS.swapAndLiquify(uint256) (#1036-1057):
External calls:
- swapTokensForEth(half) (#1048)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1068-1074)
- addLiquidity(otherHalf,newBalance) (#1054)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1082-1089)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1054)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1082-1089)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#987)
- addLiquidity(otherHalf,newBalance) (#1054)
- SwapAndLiquify(half,newBalance,otherHalf) (#1056)
Apply the check-effects-interactions pattern.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#359-380) uses assembly
- INLINE ASM (#372-375)
Address.isContract(address) (#266-275) uses assembly
- INLINE ASM (#273)
Do not use evm assembly.

Additional information: link

WrappedBSCGRECAS.includeInReward(address) (#847-858) has costly operations inside a loop:
- _excluded.pop() (#854)
Use a local variable to hold the loop computation result.

Additional information: link

WrappedBSCGRECAS._previousTaxFee (#706) is set pre-construction with a non-constant function or state variable:
- _taxFee
WrappedBSCGRECAS._rTotal (#698) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
WrappedBSCGRECAS._previousLiquidityFee (#709) 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

Low level call in Address.sendValue(address,uint256) (#293-299):
- (success) = recipient.call{value: amount}() (#297)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#359-380):
- (success,returndata) = target.call{value: weiValue}(data) (#363)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable WrappedBSCGRECAS._maxTxAmount (#717) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#506) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#523) is not in mixedCase
Parameter WrappedBSCGRECAS.calculateLiquidityFee(uint256)._amount (#957) is not in mixedCase
Parameter WrappedBSCGRECAS.calculateTaxFee(uint256)._amount (#951) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#505) is not in mixedCase
Variable WrappedBSCGRECAS._liquidityFee (#708) is not in mixedCase
Variable WrappedBSCGRECAS._taxFee (#705) is not in mixedCase
Function IUniswapV2Router01.WETH() (#545) is not in mixedCase
Parameter WrappedBSCGRECAS.setSwapAndLiquifyEnabled(bool)._enabled (#892) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable WrappedBSCGRECAS.reflectionFromToken(uint256,bool).rTransferAmount (#826) is too similar to WrappedBSCGRECAS._getTValues(uint256).tTransferAmount (#914)
Variable WrappedBSCGRECAS._transferFromExcluded(address,address,uint256).rTransferAmount (#1133) is too similar to WrappedBSCGRECAS._getTValues(uint256).tTransferAmount (#914)
Variable WrappedBSCGRECAS._transferBothExcluded(address,address,uint256).rTransferAmount (#860) is too similar to WrappedBSCGRECAS._getValues(uint256).tTransferAmount (#906)
Variable WrappedBSCGRECAS.reflectionFromToken(uint256,bool).rTransferAmount (#826) is too similar to WrappedBSCGRECAS._transferBothExcluded(address,address,uint256).tTransferAmount (#860)
Variable WrappedBSCGRECAS._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#922) is too similar to WrappedBSCGRECAS._transferToExcluded(address,address,uint256).tTransferAmount (#1123)
Variable WrappedBSCGRECAS._transferFromExcluded(address,address,uint256).rTransferAmount (#1133) is too similar to WrappedBSCGRECAS._transferToExcluded(address,address,uint256).tTransferAmount (#1123)
Variable WrappedBSCGRECAS._transferStandard(address,address,uint256).rTransferAmount (#1114) is too similar to WrappedBSCGRECAS._transferFromExcluded(address,address,uint256).tTransferAmount (#1133)
Variable WrappedBSCGRECAS.reflectionFromToken(uint256,bool).rTransferAmount (#826) is too similar to WrappedBSCGRECAS._transferFromExcluded(address,address,uint256).tTransferAmount (#1133)
Variable WrappedBSCGRECAS._transferBothExcluded(address,address,uint256).rTransferAmount (#860) is too similar to WrappedBSCGRECAS._transferStandard(address,address,uint256).tTransferAmount (#1114)
Variable WrappedBSCGRECAS._transferToExcluded(address,address,uint256).rTransferAmount (#1123) is too similar to WrappedBSCGRECAS._getValues(uint256).tTransferAmount (#906)
Variable WrappedBSCGRECAS._transferBothExcluded(address,address,uint256).rTransferAmount (#860) is too similar to WrappedBSCGRECAS._getTValues(uint256).tTransferAmount (#914)
Variable WrappedBSCGRECAS._transferStandard(address,address,uint256).rTransferAmount (#1114) is too similar to WrappedBSCGRECAS._getTValues(uint256).tTransferAmount (#914)
Variable WrappedBSCGRECAS._transferFromExcluded(address,address,uint256).rTransferAmount (#1133) is too similar to WrappedBSCGRECAS._transferBothExcluded(address,address,uint256).tTransferAmount (#860)
Variable WrappedBSCGRECAS._transferToExcluded(address,address,uint256).rTransferAmount (#1123) is too similar to WrappedBSCGRECAS._transferToExcluded(address,address,uint256).tTransferAmount (#1123)
Variable WrappedBSCGRECAS._getValues(uint256).rTransferAmount (#907) is too similar to WrappedBSCGRECAS._getTValues(uint256).tTransferAmount (#914)
Variable WrappedBSCGRECAS._getValues(uint256).rTransferAmount (#907) is too similar to WrappedBSCGRECAS._transferBothExcluded(address,address,uint256).tTransferAmount (#860)
Variable WrappedBSCGRECAS._getValues(uint256).rTransferAmount (#907) is too similar to WrappedBSCGRECAS._transferStandard(address,address,uint256).tTransferAmount (#1114)
Variable WrappedBSCGRECAS._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#922) is too similar to WrappedBSCGRECAS._getTValues(uint256).tTransferAmount (#914)
Variable WrappedBSCGRECAS._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#922) is too similar to WrappedBSCGRECAS._transferBothExcluded(address,address,uint256).tTransferAmount (#860)
Variable WrappedBSCGRECAS._getValues(uint256).rTransferAmount (#907) is too similar to WrappedBSCGRECAS._transferToExcluded(address,address,uint256).tTransferAmount (#1123)
Variable WrappedBSCGRECAS.reflectionFromToken(uint256,bool).rTransferAmount (#826) is too similar to WrappedBSCGRECAS._transferStandard(address,address,uint256).tTransferAmount (#1114)
Variable WrappedBSCGRECAS._transferToExcluded(address,address,uint256).rTransferAmount (#1123) is too similar to WrappedBSCGRECAS._transferBothExcluded(address,address,uint256).tTransferAmount (#860)
Variable WrappedBSCGRECAS._transferBothExcluded(address,address,uint256).rTransferAmount (#860) is too similar to WrappedBSCGRECAS._transferToExcluded(address,address,uint256).tTransferAmount (#1123)
Variable WrappedBSCGRECAS._transferToExcluded(address,address,uint256).rTransferAmount (#1123) is too similar to WrappedBSCGRECAS._transferFromExcluded(address,address,uint256).tTransferAmount (#1133)
Variable WrappedBSCGRECAS._transferFromExcluded(address,address,uint256).rTransferAmount (#1133) is too similar to WrappedBSCGRECAS._transferStandard(address,address,uint256).tTransferAmount (#1114)
Variable WrappedBSCGRECAS._transferStandard(address,address,uint256).rTransferAmount (#1114) is too similar to WrappedBSCGRECAS._getValues(uint256).tTransferAmount (#906)
Variable WrappedBSCGRECAS._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#922) is too similar to WrappedBSCGRECAS._transferFromExcluded(address,address,uint256).tTransferAmount (#1133)
Variable WrappedBSCGRECAS._transferStandard(address,address,uint256).rTransferAmount (#1114) is too similar to WrappedBSCGRECAS._transferStandard(address,address,uint256).tTransferAmount (#1114)
Variable WrappedBSCGRECAS._transferToExcluded(address,address,uint256).rTransferAmount (#1123) is too similar to WrappedBSCGRECAS._getTValues(uint256).tTransferAmount (#914)
Variable WrappedBSCGRECAS._getValues(uint256).rTransferAmount (#907) is too similar to WrappedBSCGRECAS._transferFromExcluded(address,address,uint256).tTransferAmount (#1133)
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#550) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#551)
Variable WrappedBSCGRECAS._transferBothExcluded(address,address,uint256).rTransferAmount (#860) is too similar to WrappedBSCGRECAS._transferBothExcluded(address,address,uint256).tTransferAmount (#860)
Variable WrappedBSCGRECAS._transferFromExcluded(address,address,uint256).rTransferAmount (#1133) is too similar to WrappedBSCGRECAS._getValues(uint256).tTransferAmount (#906)
Variable WrappedBSCGRECAS._getValues(uint256).rTransferAmount (#907) is too similar to WrappedBSCGRECAS._getValues(uint256).tTransferAmount (#906)
Variable WrappedBSCGRECAS._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#922) is too similar to WrappedBSCGRECAS._transferStandard(address,address,uint256).tTransferAmount (#1114)
Variable WrappedBSCGRECAS.reflectionFromToken(uint256,bool).rTransferAmount (#826) is too similar to WrappedBSCGRECAS._transferToExcluded(address,address,uint256).tTransferAmount (#1123)
Variable WrappedBSCGRECAS._transferStandard(address,address,uint256).rTransferAmount (#1114) is too similar to WrappedBSCGRECAS._transferBothExcluded(address,address,uint256).tTransferAmount (#860)
Variable WrappedBSCGRECAS._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#922) is too similar to WrappedBSCGRECAS._getValues(uint256).tTransferAmount (#906)
Variable WrappedBSCGRECAS._transferStandard(address,address,uint256).rTransferAmount (#1114) is too similar to WrappedBSCGRECAS._transferToExcluded(address,address,uint256).tTransferAmount (#1123)
Variable WrappedBSCGRECAS._transferFromExcluded(address,address,uint256).rTransferAmount (#1133) is too similar to WrappedBSCGRECAS._transferFromExcluded(address,address,uint256).tTransferAmount (#1133)
Variable WrappedBSCGRECAS._transferBothExcluded(address,address,uint256).rTransferAmount (#860) is too similar to WrappedBSCGRECAS._transferFromExcluded(address,address,uint256).tTransferAmount (#1133)
Variable WrappedBSCGRECAS.reflectionFromToken(uint256,bool).rTransferAmount (#826) is too similar to WrappedBSCGRECAS._getValues(uint256).tTransferAmount (#906)
Variable WrappedBSCGRECAS._transferToExcluded(address,address,uint256).rTransferAmount (#1123) is too similar to WrappedBSCGRECAS._transferStandard(address,address,uint256).tTransferAmount (#1114)
Prevent variables from having similar names.

Additional information: link

WrappedBSCGRECAS.slitherConstructorVariables() (#683-1146) uses literals with too many digits:
- _maxTxAmount = 50000000 * 10 ** 12 * 10 ** 18 (#717)
WrappedBSCGRECAS.slitherConstructorVariables() (#683-1146) uses literals with too many digits:
- _tTotal = 10000000000000 * 10 ** 12 * 10 ** 18 (#697)
WrappedBSCGRECAS.slitherConstructorVariables() (#683-1146) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 5000000 * 10 ** 12 * 10 ** 18 (#718)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

reflectionFromToken(uint256,bool) should be declared external:
- WrappedBSCGRECAS.reflectionFromToken(uint256,bool) (#820-829)
allowance(address,address) should be declared external:
- WrappedBSCGRECAS.allowance(address,address) (#778-780)
transferFrom(address,address,uint256) should be declared external:
- WrappedBSCGRECAS.transferFrom(address,address,uint256) (#787-791)
excludeFromFee(address) should be declared external:
- WrappedBSCGRECAS.excludeFromFee(address) (#870-872)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#433-436)
approve(address,uint256) should be declared external:
- WrappedBSCGRECAS.approve(address,uint256) (#782-785)
totalFees() should be declared external:
- WrappedBSCGRECAS.totalFees() (#807-809)
excludeFromReward(address) should be declared external:
- WrappedBSCGRECAS.excludeFromReward(address) (#837-845)
deliver(uint256) should be declared external:
- WrappedBSCGRECAS.deliver(uint256) (#811-818)
totalSupply() should be declared external:
- WrappedBSCGRECAS.totalSupply() (#764-766)
name() should be declared external:
- WrappedBSCGRECAS.name() (#752-754)
decimals() should be declared external:
- WrappedBSCGRECAS.decimals() (#760-762)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#442-446)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#448-450)
transfer(address,uint256) should be declared external:
- WrappedBSCGRECAS.transfer(address,uint256) (#773-776)
increaseAllowance(address,uint256) should be declared external:
- WrappedBSCGRECAS.increaseAllowance(address,uint256) (#793-796)
isExcludedFromFee(address) should be declared external:
- WrappedBSCGRECAS.isExcludedFromFee(address) (#978-980)
includeInFee(address) should be declared external:
- WrappedBSCGRECAS.includeInFee(address) (#874-876)
unlock() should be declared external:
- Ownable.unlock() (#461-466)
symbol() should be declared external:
- WrappedBSCGRECAS.symbol() (#756-758)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#453-458)
setSwapAndLiquifyEnabled(bool) should be declared external:
- WrappedBSCGRECAS.setSwapAndLiquifyEnabled(bool) (#892-895)
decreaseAllowance(address,uint256) should be declared external:
- WrappedBSCGRECAS.decreaseAllowance(address,uint256) (#798-801)
isExcludedFromReward(address) should be declared external:
- WrappedBSCGRECAS.isExcludedFromReward(address) (#803-805)
Use the external attribute for functions never called from the contract.

Additional information: link

Address.sendValue(address,uint256) (#293-299) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#344-346) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#227-230) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#354-357) is never used and should be removed
Context._msgData() (#238-241) is never used and should be removed
SafeMath.mod(uint256,uint256) (#211-213) is never used and should be removed
Address._functionCallWithValue(address,bytes,uint256,string) (#359-380) is never used and should be removed
Address.isContract(address) (#266-275) is never used and should be removed
Address.functionCall(address,bytes,string) (#329-331) is never used and should be removed
Address.functionCall(address,bytes) (#319-321) is never used and should be removed
Remove unused functions.

Additional information: link

Reentrancy in WrappedBSCGRECAS.swapAndLiquify(uint256) (#1036-1057):
External calls:
- swapTokensForEth(half) (#1048)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1068-1074)
- addLiquidity(otherHalf,newBalance) (#1054)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1082-1089)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1054)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1082-1089)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1054)
- _allowances[owner][spender] = amount (#986)
Reentrancy in WrappedBSCGRECAS.transferFrom(address,address,uint256) (#787-791):
External calls:
- _transfer(sender,recipient,amount) (#788)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1082-1089)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1068-1074)
External calls sending eth:
- _transfer(sender,recipient,amount) (#788)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1082-1089)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#789)
- _allowances[owner][spender] = amount (#986)
Reentrancy in WrappedBSCGRECAS._transfer(address,address,uint256) (#990-1034):
External calls:
- swapAndLiquify(contractTokenBalance) (#1021)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1082-1089)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1068-1074)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1021)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1082-1089)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1033)
- _liquidityFee = _previousLiquidityFee (#975)
- _liquidityFee = 0 (#970)
- _tokenTransfer(from,to,amount,takeFee) (#1033)
- _previousLiquidityFee = _liquidityFee (#967)
- _tokenTransfer(from,to,amount,takeFee) (#1033)
- _previousTaxFee = _taxFee (#966)
- _tokenTransfer(from,to,amount,takeFee) (#1033)
- _tFeeTotal = _tFeeTotal.add(tFee) (#902)
- _tokenTransfer(from,to,amount,takeFee) (#1033)
- _taxFee = _previousTaxFee (#974)
- _taxFee = 0 (#969)
Apply the check-effects-interactions pattern.

Additional information: link

WrappedBSCGRECAS.setTaxFeePercent(uint256) (#878-880) should emit an event for:
- _taxFee = taxFee (#879)
WrappedBSCGRECAS.setLiquidityFeePercent(uint256) (#882-884) should emit an event for:
- _liquidityFee = liquidityFee (#883)
WrappedBSCGRECAS.setMaxTxPercent(uint256) (#886-890) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#887-889)
Emit an event for critical parameter changes.

Additional information: link

WrappedBSCGRECAS.allowance(address,address).owner (#778) shadows:
- Ownable.owner() (#414-416) (function)
WrappedBSCGRECAS._approve(address,address,uint256).owner (#982) shadows:
- Ownable.owner() (#414-416) (function)
Rename the local variables that shadow another component.

Additional information: link

Holders:


Token has no transactions for more than 100 days. It seems dead / abandoned.


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


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


Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.


Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.

Contract has 10% buy tax and 6% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Number of Binance Smart Chain (BSC) token holders is low.


Token is deployed only at one blockchain


Twitter account has relatively few followers


Last post in Twitter was more than 30 days ago


Unable to find Youtube account


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


Token is not listed at Mobula.Finance

Additional information: link


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Token is marked as risky (blacklisted creator, fake name, dead project, etc.)

Additional information: link


Token has a considerable age, but social accounts / website are missing or have few users


Token has a considerable age, but average PancakeSwap 30d trading volume is low


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death

Price for WBGCS

News for WBGCS