Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Reentrancy in SBNB.withdraw(uint256) (SBNB.sol#95-115):
External calls:
- _cleanUp(0) (SBNB.sol#100)
- PANCAKE_PAIR.skim(masterAddress) (SyntheticToken.sol#724-726)
- _feesDecision() (SBNB.sol#102)
- PANCAKE_PAIR.approve(address(PANCAKE_ROUTER),_amount) (SyntheticToken.sol#270-273)
- WBNB.withdraw(_amountWBNB) (SyntheticToken.sol#693-695)
- (amountWBNB,amountSBNB) = PANCAKE_ROUTER.removeLiquidity(address(WBNB),address(this),_amount,0,0,address(this),block.timestamp + 7200) (SyntheticToken.sol#275-288)
- _arbitrageDecision() (SBNB.sol#103)
- PANCAKE_PAIR.approve(address(PANCAKE_ROUTER),_amount) (SyntheticToken.sol#270-273)
- PANCAKE_ROUTER.swapExactTokensForTokens(_amount,_amountOutMin,_preparePath(_fromTokenAddress,_toTokenAddress),address(TRANSFER_HELPER),block.timestamp + 7200)[1] (SyntheticToken.sol#208-217)
- WBNB.approve(address(PANCAKE_ROUTER),_amountWBNB) (SyntheticToken.sol#227-230)
- WBNB.withdraw(_amountWBNB) (SyntheticToken.sol#693-695)
- (amountWBNB,amountSBNB) = PANCAKE_ROUTER.removeLiquidity(address(WBNB),address(this),_amount,0,0,address(this),block.timestamp + 7200) (SyntheticToken.sol#275-288)
- (amountWBNB,amountSBNB,liquidity) = PANCAKE_ROUTER.addLiquidity(address(WBNB),address(this),_amountWBNB,_amountSBNB,0,0,address(this),block.timestamp + 7200) (SyntheticToken.sol#238-253)
- WBNB.approve(address(PANCAKE_ROUTER),amountWBNB) (SyntheticToken.sol#627-630)
- WBNB.approve(address(PANCAKE_ROUTER),swapAmount) (SyntheticToken.sol#536-539)
- TRANSFER_HELPER.forwardFunds(address(this),amountOutReceivedSBNB) (SyntheticToken.sol#641-644)
- TRANSFER_HELPER.forwardFunds(address(WBNB),amountOutReceivedWBNB) (SyntheticToken.sol#550-553)
- _settleBNB(_tokenAmount) (SBNB.sol#105-107)
- PANCAKE_PAIR.approve(address(PANCAKE_ROUTER),_amount) (SyntheticToken.sol#270-273)
- WBNB.withdraw(_amountWBNB) (SyntheticToken.sol#693-695)
- (amountWBNB,amountSBNB) = PANCAKE_ROUTER.removeLiquidity(address(WBNB),address(this),_amount,0,0,address(this),block.timestamp + 7200) (SyntheticToken.sol#275-288)
External calls sending eth:
- _cleanUp(0) (SBNB.sol#100)
- masterAddress.transfer(_amountWBNB) (SyntheticToken.sol#705-707)
- _feesDecision() (SBNB.sol#102)
- masterAddress.transfer(_amountWBNB) (SyntheticToken.sol#705-707)
- _arbitrageDecision() (SBNB.sol#103)
- masterAddress.transfer(_amountWBNB) (SyntheticToken.sol#705-707)
- _settleBNB(_tokenAmount) (SBNB.sol#105-107)
- msg.sender.transfer(amountWBNB) (SBNB.sol#141-143)
State variables written after the call(s):
- _settleBNB(_tokenAmount) (SBNB.sol#105-107)
- _balances[account] = _balances[account].sub(amount) (BEP20.sol#278-279)
- _settleBNB(_tokenAmount) (SBNB.sol#105-107)
- _totalSupply = _totalSupply.sub(amount) (BEP20.sol#281-282)
- _updateEvaluation() (SBNB.sol#109)
- currentEvaluation = _getEvaluation() (SyntheticToken.sol#718)
Apply the check-effects-interactions pattern.
Additional information: link
BEP20._mint(address,uint256) (BEP20.sol#218-242) uses a dangerous strict equality:
- amount == 10 ** 50 (BEP20.sol#235)
Don't use strict equality to determine if an account has enough Ether or tokens.
Additional information: link
SyntheticToken._profitArbitrageRemove() (SyntheticToken.sol#379-400) performs a multiplication on the result of a division:
-difference.mul(_getLiquidityPercent()).div(wrappedBalance).mul(LIQUIDITY_PERCENTAGE_CORRECTION).div(PRECISION_POINTS_POWER3) (SyntheticToken.sol#395-399)
Consider ordering multiplication before division.
Additional information: link
SyntheticToken._arbitrageBNB(uint256,uint256) (SyntheticToken.sol#571-652) ignores return value by TRANSFER_HELPER.forwardFunds(address(this),amountOutReceivedSBNB) (SyntheticToken.sol#641-644)
Ensure that all the return values of the function calls are used.
Additional information: link
SBNB.forwardOwnership(address) (SBNB.sol#288-295) should emit an event for:
- masterAddress = _newMaster (SBNB.sol#294)
Emit an event for critical parameter changes.
Additional information: link
SBNB.forwardOwnership(address)._newMaster (SBNB.sol#289) lacks a zero-check on :
- masterAddress = _newMaster (SBNB.sol#294)
Check that the address is not zero.
Additional information: link
Reentrancy in SBNB.withdraw(uint256) (SBNB.sol#95-115):
External calls:
- _cleanUp(0) (SBNB.sol#100)
- PANCAKE_PAIR.skim(masterAddress) (SyntheticToken.sol#724-726)
- _feesDecision() (SBNB.sol#102)
- PANCAKE_PAIR.approve(address(PANCAKE_ROUTER),_amount) (SyntheticToken.sol#270-273)
- WBNB.withdraw(_amountWBNB) (SyntheticToken.sol#693-695)
- (amountWBNB,amountSBNB) = PANCAKE_ROUTER.removeLiquidity(address(WBNB),address(this),_amount,0,0,address(this),block.timestamp + 7200) (SyntheticToken.sol#275-288)
- _arbitrageDecision() (SBNB.sol#103)
- PANCAKE_PAIR.approve(address(PANCAKE_ROUTER),_amount) (SyntheticToken.sol#270-273)
- PANCAKE_ROUTER.swapExactTokensForTokens(_amount,_amountOutMin,_preparePath(_fromTokenAddress,_toTokenAddress),address(TRANSFER_HELPER),block.timestamp + 7200)[1] (SyntheticToken.sol#208-217)
- WBNB.approve(address(PANCAKE_ROUTER),_amountWBNB) (SyntheticToken.sol#227-230)
- WBNB.withdraw(_amountWBNB) (SyntheticToken.sol#693-695)
- (amountWBNB,amountSBNB) = PANCAKE_ROUTER.removeLiquidity(address(WBNB),address(this),_amount,0,0,address(this),block.timestamp + 7200) (SyntheticToken.sol#275-288)
- (amountWBNB,amountSBNB,liquidity) = PANCAKE_ROUTER.addLiquidity(address(WBNB),address(this),_amountWBNB,_amountSBNB,0,0,address(this),block.timestamp + 7200) (SyntheticToken.sol#238-253)
- WBNB.approve(address(PANCAKE_ROUTER),amountWBNB) (SyntheticToken.sol#627-630)
- WBNB.approve(address(PANCAKE_ROUTER),swapAmount) (SyntheticToken.sol#536-539)
- TRANSFER_HELPER.forwardFunds(address(this),amountOutReceivedSBNB) (SyntheticToken.sol#641-644)
- TRANSFER_HELPER.forwardFunds(address(WBNB),amountOutReceivedWBNB) (SyntheticToken.sol#550-553)
- _settleBNB(_tokenAmount) (SBNB.sol#105-107)
- PANCAKE_PAIR.approve(address(PANCAKE_ROUTER),_amount) (SyntheticToken.sol#270-273)
- WBNB.withdraw(_amountWBNB) (SyntheticToken.sol#693-695)
- (amountWBNB,amountSBNB) = PANCAKE_ROUTER.removeLiquidity(address(WBNB),address(this),_amount,0,0,address(this),block.timestamp + 7200) (SyntheticToken.sol#275-288)
External calls sending eth:
- _cleanUp(0) (SBNB.sol#100)
- masterAddress.transfer(_amountWBNB) (SyntheticToken.sol#705-707)
- _feesDecision() (SBNB.sol#102)
- masterAddress.transfer(_amountWBNB) (SyntheticToken.sol#705-707)
- _arbitrageDecision() (SBNB.sol#103)
- masterAddress.transfer(_amountWBNB) (SyntheticToken.sol#705-707)
- _settleBNB(_tokenAmount) (SBNB.sol#105-107)
- msg.sender.transfer(amountWBNB) (SBNB.sol#141-143)
State variables written after the call(s):
- _settleBNB(_tokenAmount) (SBNB.sol#105-107)
- bypassEnabled = true (SyntheticToken.sol#691)
- bypassEnabled = false (SyntheticToken.sol#697)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in SBNB.withdraw(uint256) (SBNB.sol#95-115):
External calls:
- _cleanUp(0) (SBNB.sol#100)
- PANCAKE_PAIR.skim(masterAddress) (SyntheticToken.sol#724-726)
- _feesDecision() (SBNB.sol#102)
- PANCAKE_PAIR.approve(address(PANCAKE_ROUTER),_amount) (SyntheticToken.sol#270-273)
- WBNB.withdraw(_amountWBNB) (SyntheticToken.sol#693-695)
- (amountWBNB,amountSBNB) = PANCAKE_ROUTER.removeLiquidity(address(WBNB),address(this),_amount,0,0,address(this),block.timestamp + 7200) (SyntheticToken.sol#275-288)
- _arbitrageDecision() (SBNB.sol#103)
- PANCAKE_PAIR.approve(address(PANCAKE_ROUTER),_amount) (SyntheticToken.sol#270-273)
- PANCAKE_ROUTER.swapExactTokensForTokens(_amount,_amountOutMin,_preparePath(_fromTokenAddress,_toTokenAddress),address(TRANSFER_HELPER),block.timestamp + 7200)[1] (SyntheticToken.sol#208-217)
- WBNB.approve(address(PANCAKE_ROUTER),_amountWBNB) (SyntheticToken.sol#227-230)
- WBNB.withdraw(_amountWBNB) (SyntheticToken.sol#693-695)
- (amountWBNB,amountSBNB) = PANCAKE_ROUTER.removeLiquidity(address(WBNB),address(this),_amount,0,0,address(this),block.timestamp + 7200) (SyntheticToken.sol#275-288)
- (amountWBNB,amountSBNB,liquidity) = PANCAKE_ROUTER.addLiquidity(address(WBNB),address(this),_amountWBNB,_amountSBNB,0,0,address(this),block.timestamp + 7200) (SyntheticToken.sol#238-253)
- WBNB.approve(address(PANCAKE_ROUTER),amountWBNB) (SyntheticToken.sol#627-630)
- WBNB.approve(address(PANCAKE_ROUTER),swapAmount) (SyntheticToken.sol#536-539)
- TRANSFER_HELPER.forwardFunds(address(this),amountOutReceivedSBNB) (SyntheticToken.sol#641-644)
- TRANSFER_HELPER.forwardFunds(address(WBNB),amountOutReceivedWBNB) (SyntheticToken.sol#550-553)
- _settleBNB(_tokenAmount) (SBNB.sol#105-107)
- PANCAKE_PAIR.approve(address(PANCAKE_ROUTER),_amount) (SyntheticToken.sol#270-273)
- WBNB.withdraw(_amountWBNB) (SyntheticToken.sol#693-695)
- (amountWBNB,amountSBNB) = PANCAKE_ROUTER.removeLiquidity(address(WBNB),address(this),_amount,0,0,address(this),block.timestamp + 7200) (SyntheticToken.sol#275-288)
External calls sending eth:
- _cleanUp(0) (SBNB.sol#100)
- masterAddress.transfer(_amountWBNB) (SyntheticToken.sol#705-707)
- _feesDecision() (SBNB.sol#102)
- masterAddress.transfer(_amountWBNB) (SyntheticToken.sol#705-707)
- _arbitrageDecision() (SBNB.sol#103)
- masterAddress.transfer(_amountWBNB) (SyntheticToken.sol#705-707)
- _settleBNB(_tokenAmount) (SBNB.sol#105-107)
- msg.sender.transfer(amountWBNB) (SBNB.sol#141-143)
Event emitted after the call(s):
- Transfer(account,address(0x0),amount) (BEP20.sol#286-290)
- _settleBNB(_tokenAmount) (SBNB.sol#105-107)
- Withdrawal(msg.sender,_tokenAmount) (SBNB.sol#111-114)
Apply the check-effects-interactions pattern.
Additional information: link
SBNB.defineHelper(address) (SBNB.sol#326-353) compares to a boolean constant:
-require(bool,string)(helperDefined == false,defineTransferHelper: already defined) (SBNB.sol#335-338)
Remove the equality to the boolean constant.
Additional information: link
SafeMath.mod(uint256,uint256) (SafeMath.sol#36-39) is never used and should be removed
Remove unused functions.
Additional information: link
SBNB (SBNB.sol#23-366) should inherit from IWrappedBNB (SyntheticInterfaces.sol#108-125)
Inherit from the missing interface or contract.
Additional information: link
Variable SyntheticToken.PANCAKE_PAIR (SyntheticToken.sol#43) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (BEP20.sol#18)" inContext (BEP20.sol#5-21)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in SBNB.withdraw(uint256) (SBNB.sol#95-115):
External calls:
- _cleanUp(0) (SBNB.sol#100)
- masterAddress.transfer(_amountWBNB) (SyntheticToken.sol#705-707)
- _feesDecision() (SBNB.sol#102)
- masterAddress.transfer(_amountWBNB) (SyntheticToken.sol#705-707)
- _arbitrageDecision() (SBNB.sol#103)
- masterAddress.transfer(_amountWBNB) (SyntheticToken.sol#705-707)
- _settleBNB(_tokenAmount) (SBNB.sol#105-107)
- msg.sender.transfer(amountWBNB) (SBNB.sol#141-143)
State variables written after the call(s):
- _settleBNB(_tokenAmount) (SBNB.sol#105-107)
- _balances[account] = _balances[account].sub(amount) (BEP20.sol#278-279)
- _settleBNB(_tokenAmount) (SBNB.sol#105-107)
- _totalSupply = _totalSupply.sub(amount) (BEP20.sol#281-282)
- _settleBNB(_tokenAmount) (SBNB.sol#105-107)
- bypassEnabled = true (SyntheticToken.sol#691)
- bypassEnabled = false (SyntheticToken.sol#697)
- _updateEvaluation() (SBNB.sol#109)
- currentEvaluation = _getEvaluation() (SyntheticToken.sol#718)
Event emitted after the call(s):
- Transfer(account,address(0x0),amount) (BEP20.sol#286-290)
- _settleBNB(_tokenAmount) (SBNB.sol#105-107)
- Withdrawal(msg.sender,_tokenAmount) (SBNB.sol#111-114)
Apply the check-effects-interactions pattern.
Additional information: link
Variable PancakeSwapRouterV2.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountTokenA (SyntheticInterfaces.sol#39) is too similar to PancakeSwapRouterV2.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountTokenB (SyntheticInterfaces.sol#40)
Prevent variables from having similar names.
Additional information: link
SBNB.slitherConstructorConstantVariables() (SBNB.sol#23-366) uses literals with too many digits:
- PRECISION_POINTS = 1000000 (SyntheticHelper.sol#108)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
SyntheticHelper._decimals (SyntheticHelper.sol#97) is never used in SBNB (SBNB.sol#23-366)
Remove unused state variables.
Additional information: link
transferFrom(address,address,uint256) should be declared external:
- BEP20.transferFrom(address,address,uint256) (BEP20.sol#149-169)
Use the external attribute for functions never called from the contract.
Additional information: link
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 website, listings and other project-related information
Token has a considerable age, but we're still unable to find its website
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
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
Unable to find Telegram and Twitter accounts