SpaceBunny Token Logo

SPB [SpaceBunny] Token

About SPB

Listings

Token 4 years
white paper

SpaceBunny is a fun and unique NFT Play To Earn game on the Binance Smart Chain. ✅Fully KYCed & Audited ✅ NFT MarketPlace ✅ PVP & MiniGame ✅ Staking Platform with VIP grades ✅ Simple Tokenomics with 10% Buy/Sell tax with 4% redistribution to holders 🎁 First 500 contributors will receive 1 Special Bunny NFT for each 0.5 BNB participating in Fairlaunch.

Social

Laser Scorebeta Last Audit: 28 April 2022

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

Reentrancy in SpaceBunny._transfer(address,address,uint256) (#645-675):
External calls:
- swapAndLiquify(contractTokenBalance) (#668)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#700-707)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#690-696)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#668)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#700-707)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#674)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#596)
- _rOwned[_StackingWalletAddress] = _rOwned[_StackingWalletAddress].add(rDevelopment) (#603)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#737)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#728)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#748)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#521)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#729)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#749)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#739)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#523)
- _tokenTransfer(from,to,amount,takeFee) (#674)
- _rTotal = _rTotal.sub(rFee) (#555)
- _tokenTransfer(from,to,amount,takeFee) (#674)
- _tOwned[_StackingWalletAddress] = _tOwned[_StackingWalletAddress].add(tDevelopment) (#605)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#598)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#747)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#520)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#738)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#522)
Apply the check-effects-interactions pattern.

Additional information: link

SpaceBunny.rescueBEP20(address,uint256) (#756-758) ignores return value by IERC20(tokenAddress).transfer(owner(),amount) (#757)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains


Contract ownership is not renounced (belongs to a wallet)

SpaceBunny.includeInReward(address) (#506-517) has costly operations inside a loop:
- _excluded.pop() (#513)
Use a local variable to hold the loop computation result.

Additional information: link

Address._verifyCallResult(bool,bytes,string) (#149-162) is never used and should be removed
Address.functionCall(address,bytes) (#118-120) is never used and should be removed
Address.functionCall(address,bytes,string) (#121-123) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#124-126) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#127-132) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#141-143) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#144-148) is never used and should be removed
Address.functionStaticCall(address,bytes) (#133-135) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#136-140) is never used and should be removed
Address.isContract(address) (#108-112) is never used and should be removed
Address.sendValue(address,uint256) (#113-117) is never used and should be removed
Context._msgData() (#101-104) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#83-88) is never used and should be removed
SafeMath.mod(uint256,uint256) (#74-76) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#89-94) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#29-35) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#50-55) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#56-61) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#42-49) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#36-41) is never used and should be removed
Remove unused functions.

Additional information: link

SpaceBunny._rTotal (#389) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
SpaceBunny._previousTaxFee (#395) is set pre-construction with a non-constant function or state variable:
- _taxFee
SpaceBunny._previousDevelopmentFee (#397) is set pre-construction with a non-constant function or state variable:
- _StackingFee
SpaceBunny._previousLiquidityFee (#399) 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) (#113-117):
- (success) = recipient.call{value: amount}() (#115)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#127-132):
- (success,returndata) = target.call{value: value}(data) (#130)
Low level call in Address.functionStaticCall(address,bytes,string) (#136-140):
- (success,returndata) = target.staticcall(data) (#138)
Low level call in Address.functionDelegateCall(address,bytes,string) (#144-148):
- (success,returndata) = target.delegatecall(data) (#146)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#214) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#215) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#229) is not in mixedCase
Function IUniswapV2Router01.WETH() (#247) is not in mixedCase
Parameter SpaceBunny.setSwapAndLiquifyEnabled(bool)._enabled (#549) is not in mixedCase
Parameter SpaceBunny.calculateTaxFee(uint256)._amount (#607) is not in mixedCase
Parameter SpaceBunny.calculateDevelopmentFee(uint256)._amount (#612) is not in mixedCase
Parameter SpaceBunny.calculateLiquidityFee(uint256)._amount (#617) is not in mixedCase
Variable SpaceBunny._StackingWalletAddress (#386) is not in mixedCase
Variable SpaceBunny._taxFee (#394) is not in mixedCase
Variable SpaceBunny._StackingFee (#396) is not in mixedCase
Variable SpaceBunny._liquidityFee (#398) is not in mixedCase
Variable SpaceBunny._maxTxAmount (#405) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#102)" inContext (#97-105)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#251) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#252)
Variable SpaceBunny._takeDevelopment(uint256).rDevelopment (#602) is too similar to SpaceBunny._transferBothExcluded(address,address,uint256).tDevelopment (#519)
Variable SpaceBunny._takeDevelopment(uint256).rDevelopment (#602) is too similar to SpaceBunny._transferToExcluded(address,address,uint256).tDevelopment (#736)
Variable SpaceBunny._takeDevelopment(uint256).rDevelopment (#602) is too similar to SpaceBunny._getTValues(uint256).tDevelopment (#566)
Variable SpaceBunny._getValues(uint256).rTransferAmount (#560) is too similar to SpaceBunny._transferToExcluded(address,address,uint256).tTransferAmount (#736)
Variable SpaceBunny._transferToExcluded(address,address,uint256).rTransferAmount (#736) is too similar to SpaceBunny._getTValues(uint256).tTransferAmount (#567)
Variable SpaceBunny._transferBothExcluded(address,address,uint256).rTransferAmount (#519) is too similar to SpaceBunny._transferBothExcluded(address,address,uint256).tTransferAmount (#519)
Variable SpaceBunny._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#575) is too similar to SpaceBunny._getTValues(uint256).tTransferAmount (#567)
Variable SpaceBunny._transferFromExcluded(address,address,uint256).rTransferAmount (#746) is too similar to SpaceBunny._getTValues(uint256).tTransferAmount (#567)
Variable SpaceBunny._transferToExcluded(address,address,uint256).rTransferAmount (#736) is too similar to SpaceBunny._transferStandard(address,address,uint256).tTransferAmount (#727)
Variable SpaceBunny._transferBothExcluded(address,address,uint256).rTransferAmount (#519) is too similar to SpaceBunny._transferToExcluded(address,address,uint256).tTransferAmount (#736)
Variable SpaceBunny._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#575) is too similar to SpaceBunny._transferStandard(address,address,uint256).tTransferAmount (#727)
Variable SpaceBunny.reflectionFromToken(uint256,bool).rTransferAmount (#489) is too similar to SpaceBunny._getTValues(uint256).tTransferAmount (#567)
Variable SpaceBunny._transferFromExcluded(address,address,uint256).rTransferAmount (#746) is too similar to SpaceBunny._transferStandard(address,address,uint256).tTransferAmount (#727)
Variable SpaceBunny._getValues(uint256).rTransferAmount (#560) is too similar to SpaceBunny._getTValues(uint256).tTransferAmount (#567)
Variable SpaceBunny._transferToExcluded(address,address,uint256).rTransferAmount (#736) is too similar to SpaceBunny._transferFromExcluded(address,address,uint256).tTransferAmount (#746)
Variable SpaceBunny._transferStandard(address,address,uint256).rTransferAmount (#727) is too similar to SpaceBunny._getTValues(uint256).tTransferAmount (#567)
Variable SpaceBunny._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#575) is too similar to SpaceBunny._transferFromExcluded(address,address,uint256).tTransferAmount (#746)
Variable SpaceBunny._transferFromExcluded(address,address,uint256).rTransferAmount (#746) is too similar to SpaceBunny._transferFromExcluded(address,address,uint256).tTransferAmount (#746)
Variable SpaceBunny.reflectionFromToken(uint256,bool).rTransferAmount (#489) is too similar to SpaceBunny._transferStandard(address,address,uint256).tTransferAmount (#727)
Variable SpaceBunny._getValues(uint256).rTransferAmount (#560) is too similar to SpaceBunny._transferStandard(address,address,uint256).tTransferAmount (#727)
Variable SpaceBunny._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#575) is too similar to SpaceBunny._transferBothExcluded(address,address,uint256).tTransferAmount (#519)
Variable SpaceBunny._transferStandard(address,address,uint256).rTransferAmount (#727) is too similar to SpaceBunny._transferStandard(address,address,uint256).tTransferAmount (#727)
Variable SpaceBunny._transferBothExcluded(address,address,uint256).rTransferAmount (#519) is too similar to SpaceBunny._getTValues(uint256).tTransferAmount (#567)
Variable SpaceBunny.reflectionFromToken(uint256,bool).rTransferAmount (#489) is too similar to SpaceBunny._transferFromExcluded(address,address,uint256).tTransferAmount (#746)
Variable SpaceBunny._transferToExcluded(address,address,uint256).rTransferAmount (#736) is too similar to SpaceBunny._transferToExcluded(address,address,uint256).tTransferAmount (#736)
Variable SpaceBunny._transferStandard(address,address,uint256).rTransferAmount (#727) is too similar to SpaceBunny._transferFromExcluded(address,address,uint256).tTransferAmount (#746)
Variable SpaceBunny._getValues(uint256).rTransferAmount (#560) is too similar to SpaceBunny._transferFromExcluded(address,address,uint256).tTransferAmount (#746)
Variable SpaceBunny._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#575) is too similar to SpaceBunny._transferToExcluded(address,address,uint256).tTransferAmount (#736)
Variable SpaceBunny._transferFromExcluded(address,address,uint256).rTransferAmount (#746) is too similar to SpaceBunny._transferToExcluded(address,address,uint256).tTransferAmount (#736)
Variable SpaceBunny.reflectionFromToken(uint256,bool).rTransferAmount (#489) is too similar to SpaceBunny._transferBothExcluded(address,address,uint256).tTransferAmount (#519)
Variable SpaceBunny._transferBothExcluded(address,address,uint256).rTransferAmount (#519) is too similar to SpaceBunny._transferStandard(address,address,uint256).tTransferAmount (#727)
Variable SpaceBunny._getValues(uint256).rTransferAmount (#560) is too similar to SpaceBunny._transferBothExcluded(address,address,uint256).tTransferAmount (#519)
Variable SpaceBunny.reflectionFromToken(uint256,bool).rTransferAmount (#489) is too similar to SpaceBunny._transferToExcluded(address,address,uint256).tTransferAmount (#736)
Variable SpaceBunny._transferBothExcluded(address,address,uint256).rTransferAmount (#519) is too similar to SpaceBunny._transferFromExcluded(address,address,uint256).tTransferAmount (#746)
Variable SpaceBunny._getRValues(uint256,uint256,uint256,uint256,uint256).rDevelopment (#574) is too similar to SpaceBunny._transferBothExcluded(address,address,uint256).tDevelopment (#519)
Variable SpaceBunny._getRValues(uint256,uint256,uint256,uint256,uint256).rDevelopment (#574) is too similar to SpaceBunny._getTValues(uint256).tDevelopment (#566)
Variable SpaceBunny._getRValues(uint256,uint256,uint256,uint256,uint256).rDevelopment (#574) is too similar to SpaceBunny._transferStandard(address,address,uint256).tDevelopment (#727)
Variable SpaceBunny._takeDevelopment(uint256).rDevelopment (#602) is too similar to SpaceBunny._takeDevelopment(uint256).tDevelopment (#600)
Variable SpaceBunny._takeDevelopment(uint256).rDevelopment (#602) is too similar to SpaceBunny._getRValues(uint256,uint256,uint256,uint256,uint256).tDevelopment (#570)
Variable SpaceBunny._getRValues(uint256,uint256,uint256,uint256,uint256).rDevelopment (#574) is too similar to SpaceBunny._takeDevelopment(uint256).tDevelopment (#600)
Variable SpaceBunny._getRValues(uint256,uint256,uint256,uint256,uint256).rDevelopment (#574) is too similar to SpaceBunny._getRValues(uint256,uint256,uint256,uint256,uint256).tDevelopment (#570)
Variable SpaceBunny._takeDevelopment(uint256).rDevelopment (#602) is too similar to SpaceBunny._getValues(uint256).tDevelopment (#559)
Variable SpaceBunny._getRValues(uint256,uint256,uint256,uint256,uint256).rDevelopment (#574) is too similar to SpaceBunny._transferToExcluded(address,address,uint256).tDevelopment (#736)
Variable SpaceBunny._takeDevelopment(uint256).rDevelopment (#602) is too similar to SpaceBunny._transferFromExcluded(address,address,uint256).tDevelopment (#746)
Variable SpaceBunny._getRValues(uint256,uint256,uint256,uint256,uint256).rDevelopment (#574) is too similar to SpaceBunny._getValues(uint256).tDevelopment (#559)
Variable SpaceBunny._getRValues(uint256,uint256,uint256,uint256,uint256).rDevelopment (#574) is too similar to SpaceBunny._transferFromExcluded(address,address,uint256).tDevelopment (#746)
Variable SpaceBunny._takeDevelopment(uint256).rDevelopment (#602) is too similar to SpaceBunny._transferStandard(address,address,uint256).tDevelopment (#727)
Variable SpaceBunny._transferToExcluded(address,address,uint256).rTransferAmount (#736) is too similar to SpaceBunny._getValues(uint256).tTransferAmount (#559)
Variable SpaceBunny._transferStandard(address,address,uint256).rTransferAmount (#727) is too similar to SpaceBunny._transferBothExcluded(address,address,uint256).tTransferAmount (#519)
Variable SpaceBunny._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#575) is too similar to SpaceBunny._getValues(uint256).tTransferAmount (#559)
Variable SpaceBunny._getValues(uint256).rTransferAmount (#560) is too similar to SpaceBunny._getValues(uint256).tTransferAmount (#559)
Variable SpaceBunny._transferFromExcluded(address,address,uint256).rTransferAmount (#746) is too similar to SpaceBunny._transferBothExcluded(address,address,uint256).tTransferAmount (#519)
Variable SpaceBunny._transferStandard(address,address,uint256).rTransferAmount (#727) is too similar to SpaceBunny._transferToExcluded(address,address,uint256).tTransferAmount (#736)
Variable SpaceBunny._transferToExcluded(address,address,uint256).rTransferAmount (#736) is too similar to SpaceBunny._transferBothExcluded(address,address,uint256).tTransferAmount (#519)
Variable SpaceBunny._transferStandard(address,address,uint256).rTransferAmount (#727) is too similar to SpaceBunny._getValues(uint256).tTransferAmount (#559)
Variable SpaceBunny._transferFromExcluded(address,address,uint256).rTransferAmount (#746) is too similar to SpaceBunny._getValues(uint256).tTransferAmount (#559)
Variable SpaceBunny.reflectionFromToken(uint256,bool).rTransferAmount (#489) is too similar to SpaceBunny._getValues(uint256).tTransferAmount (#559)
Variable SpaceBunny._transferBothExcluded(address,address,uint256).rTransferAmount (#519) is too similar to SpaceBunny._getValues(uint256).tTransferAmount (#559)
Prevent variables from having similar names.

Additional information: link

SpaceBunny.slitherConstructorVariables() (#377-764) uses literals with too many digits:
- _tTotal = 50000000000 * 10 ** 18 (#388)
SpaceBunny.slitherConstructorVariables() (#377-764) uses literals with too many digits:
- _maxTxAmount = 50000000000 * 10 ** 18 (#405)
SpaceBunny.slitherConstructorVariables() (#377-764) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 1000000000 * 10 ** 18 (#406)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SpaceBunny._StackingWalletAddress (#386) should be constant
SpaceBunny._decimals (#393) should be constant
SpaceBunny._name (#391) should be constant
SpaceBunny._symbol (#392) should be constant
SpaceBunny._tTotal (#388) should be constant
SpaceBunny.numTokensSellToAddToLiquidity (#406) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#179-182)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#183-187)
name() should be declared external:
- SpaceBunny.name() (#429-431)
symbol() should be declared external:
- SpaceBunny.symbol() (#432-434)
decimals() should be declared external:
- SpaceBunny.decimals() (#435-437)
totalSupply() should be declared external:
- SpaceBunny.totalSupply() (#438-440)
transfer(address,uint256) should be declared external:
- SpaceBunny.transfer(address,uint256) (#445-448)
allowance(address,address) should be declared external:
- SpaceBunny.allowance(address,address) (#449-451)
approve(address,uint256) should be declared external:
- SpaceBunny.approve(address,uint256) (#452-455)
transferFrom(address,address,uint256) should be declared external:
- SpaceBunny.transferFrom(address,address,uint256) (#456-460)
increaseAllowance(address,uint256) should be declared external:
- SpaceBunny.increaseAllowance(address,uint256) (#461-464)
decreaseAllowance(address,uint256) should be declared external:
- SpaceBunny.decreaseAllowance(address,uint256) (#465-468)
isExcludedFromReward(address) should be declared external:
- SpaceBunny.isExcludedFromReward(address) (#469-471)
totalFees() should be declared external:
- SpaceBunny.totalFees() (#472-474)
deliver(uint256) should be declared external:
- SpaceBunny.deliver(uint256) (#475-482)
reflectionFromToken(uint256,bool) should be declared external:
- SpaceBunny.reflectionFromToken(uint256,bool) (#483-492)
excludeFromReward(address) should be declared external:
- SpaceBunny.excludeFromReward(address) (#498-505)
excludeFromFee(address) should be declared external:
- SpaceBunny.excludeFromFee(address) (#529-531)
includeInFee(address) should be declared external:
- SpaceBunny.includeInFee(address) (#532-534)
setSwapAndLiquifyEnabled(bool) should be declared external:
- SpaceBunny.setSwapAndLiquifyEnabled(bool) (#549-552)
isExcludedFromFee(address) should be declared external:
- SpaceBunny.isExcludedFromFee(address) (#636-638)
Use the external attribute for functions never called from the contract.

Additional information: link

SpaceBunny.addLiquidity(uint256,uint256) (#698-708) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#700-707)
Ensure that all the return values of the function calls are used.

Additional information: link

SpaceBunny.allowance(address,address).owner (#449) shadows:
- Ownable.owner() (#172-174) (function)
SpaceBunny._approve(address,address,uint256).owner (#639) shadows:
- Ownable.owner() (#172-174) (function)
Rename the local variables that shadow another component.

Additional information: link

SpaceBunny.setTaxFeePercent(uint256) (#535-537) should emit an event for:
- _taxFee = taxFee (#536)
SpaceBunny.setStackingFeePercent(uint256) (#538-540) should emit an event for:
- _StackingFee = developmentFee (#539)
SpaceBunny.setLiquidityFeePercent(uint256) (#541-543) should emit an event for:
- _liquidityFee = liquidityFee (#542)
SpaceBunny.setMaxTxPercent(uint256) (#544-548) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 3) (#545-547)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in SpaceBunny._transfer(address,address,uint256) (#645-675):
External calls:
- swapAndLiquify(contractTokenBalance) (#668)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#700-707)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#690-696)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#668)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#700-707)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#674)
- _StackingFee = _previousDevelopmentFee (#633)
- _StackingFee = 0 (#628)
- _tokenTransfer(from,to,amount,takeFee) (#674)
- _liquidityFee = _previousLiquidityFee (#634)
- _liquidityFee = 0 (#629)
- _tokenTransfer(from,to,amount,takeFee) (#674)
- _previousDevelopmentFee = _StackingFee (#625)
- _tokenTransfer(from,to,amount,takeFee) (#674)
- _previousLiquidityFee = _liquidityFee (#626)
- _tokenTransfer(from,to,amount,takeFee) (#674)
- _previousTaxFee = _taxFee (#624)
- _tokenTransfer(from,to,amount,takeFee) (#674)
- _tFeeTotal = _tFeeTotal.add(tFee) (#556)
- _tokenTransfer(from,to,amount,takeFee) (#674)
- _taxFee = _previousTaxFee (#632)
- _taxFee = 0 (#627)
Reentrancy in SpaceBunny.constructor() (#419-428):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#422-423)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#425)
- _isExcludedFromFee[address(this)] = true (#426)
- uniswapV2Router = _uniswapV2Router (#424)
Reentrancy in SpaceBunny.swapAndLiquify(uint256) (#676-684):
External calls:
- swapTokensForEth(half) (#680)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#690-696)
- addLiquidity(otherHalf,newBalance) (#682)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#700-707)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#682)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#700-707)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#682)
- _allowances[owner][spender] = amount (#642)
Reentrancy in SpaceBunny.transferFrom(address,address,uint256) (#456-460):
External calls:
- _transfer(sender,recipient,amount) (#457)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#700-707)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#690-696)
External calls sending eth:
- _transfer(sender,recipient,amount) (#457)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#700-707)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#458)
- _allowances[owner][spender] = amount (#642)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in SpaceBunny._transfer(address,address,uint256) (#645-675):
External calls:
- swapAndLiquify(contractTokenBalance) (#668)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#700-707)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#690-696)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#668)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#700-707)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#733)
- _tokenTransfer(from,to,amount,takeFee) (#674)
- Transfer(sender,recipient,tTransferAmount) (#753)
- _tokenTransfer(from,to,amount,takeFee) (#674)
- Transfer(sender,recipient,tTransferAmount) (#743)
- _tokenTransfer(from,to,amount,takeFee) (#674)
- Transfer(sender,recipient,tTransferAmount) (#527)
- _tokenTransfer(from,to,amount,takeFee) (#674)
Reentrancy in SpaceBunny.constructor() (#419-428):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#422-423)
Event emitted after the call(s):
- Transfer(address(0),owner(),_tTotal) (#427)
Reentrancy in SpaceBunny.swapAndLiquify(uint256) (#676-684):
External calls:
- swapTokensForEth(half) (#680)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#690-696)
- addLiquidity(otherHalf,newBalance) (#682)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#700-707)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#682)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#700-707)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#643)
- addLiquidity(otherHalf,newBalance) (#682)
- SwapAndLiquify(half,newBalance,otherHalf) (#683)
Reentrancy in SpaceBunny.transferFrom(address,address,uint256) (#456-460):
External calls:
- _transfer(sender,recipient,amount) (#457)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#700-707)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#690-696)
External calls sending eth:
- _transfer(sender,recipient,amount) (#457)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#700-707)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#643)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#458)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#108-112) uses assembly
- INLINE ASM (#110)
Address._verifyCallResult(bool,bytes,string) (#149-162) uses assembly
- INLINE ASM (#154-157)
Do not use evm assembly.

Additional information: link

Holders:


Token seems to be untradeable: there is no PancakeSwap trading pair and no trading volumes. Ignore for presale.


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


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Twitter account has few posts


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


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


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Unable to find token on CoinHunt

Additional information: link


Young tokens have high risks of scam / price dump / death


Young tokens have high risks of scam / 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 SPB

News for SPB