Sphynx Labs is localizing the decentralized space by being an All-In-One (AIO) Crypto Investing Ecosystem that is designed to simplify the trading experience.
Founded by CEO Zaidoun ""Lonzo"" Al-Owbydi and Brandon Dey, the two had a goal of creating a safe, effortless, stress-free platform where users can streamline the process of trading in the DeFi space.
Sphynx Labs has already met much of this goal by producing various utilities that include a DEX, charts, staking and farming pools, NFT staking, a written learning hub, and a launchpad.
The Sphynx DEX leverages technology from their strategic collaboration with Chainlink to offer a stop loss feature not unlike that offered by a CEX. This allows traders to sleep soundly on more speculative plays knowing that they can set their own terms for trade without having to be glued to their screens.
Sphynx is here to offer a unique platform for other projects as well. With the staking and farming pools mentioned above and launchpad, Sphynx gives projects a way to launch that is safe and accessible.
Projects can choose to work with Sphynx if they would like to offer built-in utility to their investors through staking without the need to develop and set up pools themselves. Support is available throughout the entire process for any services they use from Sphynx.
Soon, future developments will be released to the public, such as a Wallet Extension and Mobile Application which offers CEX like functionality in the DeFi space, Sphynx Pay for real-world purchases with the token, token bridge, NFT marketplace, and a visual learning hub with Sphynx TV.
The future Sphynx Labs bridge will be cross-chain. By linking the BRC-BSC-ERC chains, the bridge will focus on Alt and Stable Coins, making it simpler for investors to move from one network to another. In addition, Sphynx Labs has plans to bridge more networks together, such as Polygon, Avalanche, Harmony, Moonriver, Fantom, and many others.
Sphynx offers two NFTs on the BSC and ETH blockchain respectively. Holders of the “Genesis” NFT on ETH will receive a portion of all bridge fees when it goes live directly by just holding the NFTs. Holders of the “Scion” NFTs on the BSC can stake their NFTs on the Sphynx platform and earn the native Sphynx token. Holding two “Scion” NFTs grants holders special access to IDOs that Sphynx procures, such as the recent IDO for Fight of the Ages. Each NFT, regardless of chain, grants five whitelist spots a month to projects that are launching on the SphynxPad.
Lastly, Sphynx Labs continues to innovate by being the premier DEX on BRISE. As a result, BRISE users can trade, invest, and swap on the fastest and easiest to use DEX in Crypto. With its well-educated and dedicated team offering top-notch customer support, unparalleled utilities, and professional environment, Sphynx is poised to be one of the top ecosystems in the crypto space.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
SphynxToken.transferBNBToMarketingWallet(uint256) (contracts/SphynxToken.sol#358-360) sends eth to arbitrary user
Dangerous calls:
- marketingWallet.transfer(amount) (contracts/SphynxToken.sol#359)
SphynxToken.transferBNBToDevelopmentWallet(uint256) (contracts/SphynxToken.sol#362-364) sends eth to arbitrary user
Dangerous calls:
- developmentWallet.transfer(amount) (contracts/SphynxToken.sol#363)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in SphynxToken._transfer(address,address,uint256) (contracts/SphynxToken.sol#256-317):
External calls:
- swapTokens(contractTokenBalance) (contracts/SphynxToken.sol#280)
- sphynxSwapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/SphynxToken.sol#338-344)
External calls sending eth:
- swapTokens(contractTokenBalance) (contracts/SphynxToken.sol#280)
- marketingWallet.transfer(amount) (contracts/SphynxToken.sol#359)
- developmentWallet.transfer(amount) (contracts/SphynxToken.sol#363)
State variables written after the call(s):
- super._transfer(from,lotteryAddress,lotteryAmount) (contracts/SphynxToken.sol#307)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (@sphynxswap/sphynx-swap-lib/contracts/token/BEP20/BEP20.sol#248)
- _balances[recipient] = _balances[recipient].add(amount) (@sphynxswap/sphynx-swap-lib/contracts/token/BEP20/BEP20.sol#249)
- super._transfer(from,address(this),fees) (contracts/SphynxToken.sol#312)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (@sphynxswap/sphynx-swap-lib/contracts/token/BEP20/BEP20.sol#248)
- _balances[recipient] = _balances[recipient].add(amount) (@sphynxswap/sphynx-swap-lib/contracts/token/BEP20/BEP20.sol#249)
- super._transfer(from,to,amount) (contracts/SphynxToken.sol#316)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (@sphynxswap/sphynx-swap-lib/contracts/token/BEP20/BEP20.sol#248)
- _balances[recipient] = _balances[recipient].add(amount) (@sphynxswap/sphynx-swap-lib/contracts/token/BEP20/BEP20.sol#249)
- swapping = false (contracts/SphynxToken.sol#281)
Apply the check-effects-interactions pattern.
Additional information: link
SphynxToken._owner (contracts/SphynxToken.sol#24) shadows:
- Ownable._owner (@sphynxswap/sphynx-swap-lib/contracts/access/Ownable.sol#20)
Remove the state variable shadowing.
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.
Contract ownership is not renounced (belongs to a wallet)
BEP20.constructor(string,string).name (@sphynxswap/sphynx-swap-lib/contracts/token/BEP20/BEP20.sol#58) shadows:
- BEP20.name() (@sphynxswap/sphynx-swap-lib/contracts/token/BEP20/BEP20.sol#74-76) (function)
- IBEP20.name() (@sphynxswap/sphynx-swap-lib/contracts/token/BEP20/IBEP20.sol#24) (function)
BEP20.constructor(string,string).symbol (@sphynxswap/sphynx-swap-lib/contracts/token/BEP20/BEP20.sol#58) shadows:
- BEP20.symbol() (@sphynxswap/sphynx-swap-lib/contracts/token/BEP20/BEP20.sol#88-90) (function)
- IBEP20.symbol() (@sphynxswap/sphynx-swap-lib/contracts/token/BEP20/IBEP20.sol#19) (function)
BEP20.allowance(address,address).owner (@sphynxswap/sphynx-swap-lib/contracts/token/BEP20/BEP20.sol#122) shadows:
- Ownable.owner() (@sphynxswap/sphynx-swap-lib/contracts/access/Ownable.sol#36-38) (function)
BEP20._approve(address,address,uint256).owner (@sphynxswap/sphynx-swap-lib/contracts/token/BEP20/BEP20.sol#303) shadows:
- Ownable.owner() (@sphynxswap/sphynx-swap-lib/contracts/access/Ownable.sol#36-38) (function)
Rename the local variables that shadow another component.
Additional information: link
SphynxToken.updateSphynxSwapRouter(address)._sphynxSwapPair (contracts/SphynxToken.sol#165) lacks a zero-check on :
- sphynxSwapPair = _sphynxSwapPair (contracts/SphynxToken.sol#167)
Check that the address is not zero.
Additional information: link
Reentrancy in SphynxToken.constructor() (contracts/SphynxToken.sol#75-106):
External calls:
- _sphynxSwapPair = ISphynxFactory(_sphynxSwapRouter.factory()).createPair(address(this),_sphynxSwapRouter.WETH()) (contracts/SphynxToken.sol#88)
State variables written after the call(s):
- _mint(_owner,1000000000 * (10 ** 18)) (contracts/SphynxToken.sol#105)
- _balances[account] = _balances[account].add(amount) (@sphynxswap/sphynx-swap-lib/contracts/token/BEP20/BEP20.sol#266)
- excludeFromFees(marketingWallet,true) (contracts/SphynxToken.sol#96)
- _isExcludedFromFees[account] = excluded (contracts/SphynxToken.sol#187)
- excludeFromFees(developmentWallet,true) (contracts/SphynxToken.sol#97)
- _isExcludedFromFees[account] = excluded (contracts/SphynxToken.sol#187)
- excludeFromFees(address(this),true) (contracts/SphynxToken.sol#98)
- _isExcludedFromFees[account] = excluded (contracts/SphynxToken.sol#187)
- excludeFromFees(owner(),true) (contracts/SphynxToken.sol#99)
- _isExcludedFromFees[account] = excluded (contracts/SphynxToken.sol#187)
- _isGetFees[address(_sphynxSwapRouter)] = true (contracts/SphynxToken.sol#102)
- _isGetFees[_sphynxSwapPair] = true (contracts/SphynxToken.sol#103)
- _mint(_owner,1000000000 * (10 ** 18)) (contracts/SphynxToken.sol#105)
- _totalSupply = _totalSupply.add(amount) (@sphynxswap/sphynx-swap-lib/contracts/token/BEP20/BEP20.sol#265)
- _setAutomatedMarketMakerPair(sphynxSwapPair,true) (contracts/SphynxToken.sol#93)
- automatedMarketMakerPairs[pair] = value (contracts/SphynxToken.sol#213)
- sphynxSwapPair = _sphynxSwapPair (contracts/SphynxToken.sol#91)
- sphynxSwapRouter = _sphynxSwapRouter (contracts/SphynxToken.sol#90)
Reentrancy in SphynxToken.updateSphynxSwapRouter(address) (contracts/SphynxToken.sol#161-169):
External calls:
- _sphynxSwapPair = ISphynxFactory(sphynxSwapRouter.factory()).createPair(address(this),sphynxSwapRouter.WETH()) (contracts/SphynxToken.sol#165)
State variables written after the call(s):
- _setAutomatedMarketMakerPair(sphynxSwapPair,false) (contracts/SphynxToken.sol#166)
- automatedMarketMakerPairs[pair] = value (contracts/SphynxToken.sol#213)
- _setAutomatedMarketMakerPair(sphynxSwapPair,true) (contracts/SphynxToken.sol#168)
- automatedMarketMakerPairs[pair] = value (contracts/SphynxToken.sol#213)
- sphynxSwapPair = _sphynxSwapPair (contracts/SphynxToken.sol#167)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in SphynxToken._transfer(address,address,uint256) (contracts/SphynxToken.sol#256-317):
External calls:
- swapTokens(contractTokenBalance) (contracts/SphynxToken.sol#280)
- sphynxSwapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/SphynxToken.sol#338-344)
External calls sending eth:
- swapTokens(contractTokenBalance) (contracts/SphynxToken.sol#280)
- marketingWallet.transfer(amount) (contracts/SphynxToken.sol#359)
- developmentWallet.transfer(amount) (contracts/SphynxToken.sol#363)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (@sphynxswap/sphynx-swap-lib/contracts/token/BEP20/BEP20.sol#250)
- super._transfer(from,lotteryAddress,lotteryAmount) (contracts/SphynxToken.sol#307)
- Transfer(sender,recipient,amount) (@sphynxswap/sphynx-swap-lib/contracts/token/BEP20/BEP20.sol#250)
- super._transfer(from,address(this),fees) (contracts/SphynxToken.sol#312)
- Transfer(sender,recipient,amount) (@sphynxswap/sphynx-swap-lib/contracts/token/BEP20/BEP20.sol#250)
- super._transfer(from,to,amount) (contracts/SphynxToken.sol#316)
Reentrancy in SphynxToken.constructor() (contracts/SphynxToken.sol#75-106):
External calls:
- _sphynxSwapPair = ISphynxFactory(_sphynxSwapRouter.factory()).createPair(address(this),_sphynxSwapRouter.WETH()) (contracts/SphynxToken.sol#88)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (contracts/SphynxToken.sol#189)
- excludeFromFees(developmentWallet,true) (contracts/SphynxToken.sol#97)
- ExcludeFromFees(account,excluded) (contracts/SphynxToken.sol#189)
- excludeFromFees(marketingWallet,true) (contracts/SphynxToken.sol#96)
- ExcludeFromFees(account,excluded) (contracts/SphynxToken.sol#189)
- excludeFromFees(owner(),true) (contracts/SphynxToken.sol#99)
- ExcludeFromFees(account,excluded) (contracts/SphynxToken.sol#189)
- excludeFromFees(address(this),true) (contracts/SphynxToken.sol#98)
- SetAutomatedMarketMakerPair(pair,value) (contracts/SphynxToken.sol#215)
- _setAutomatedMarketMakerPair(sphynxSwapPair,true) (contracts/SphynxToken.sol#93)
- Transfer(address(0),account,amount) (@sphynxswap/sphynx-swap-lib/contracts/token/BEP20/BEP20.sol#267)
- _mint(_owner,1000000000 * (10 ** 18)) (contracts/SphynxToken.sol#105)
Reentrancy in SphynxToken.updateSphynxSwapRouter(address) (contracts/SphynxToken.sol#161-169):
External calls:
- _sphynxSwapPair = ISphynxFactory(sphynxSwapRouter.factory()).createPair(address(this),sphynxSwapRouter.WETH()) (contracts/SphynxToken.sol#165)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (contracts/SphynxToken.sol#215)
- _setAutomatedMarketMakerPair(sphynxSwapPair,true) (contracts/SphynxToken.sol#168)
- SetAutomatedMarketMakerPair(pair,value) (contracts/SphynxToken.sol#215)
- _setAutomatedMarketMakerPair(sphynxSwapPair,false) (contracts/SphynxToken.sol#166)
Apply the check-effects-interactions pattern.
Additional information: link
Address.isContract(address) (@sphynxswap/sphynx-swap-lib/contracts/utils/Address.sol#26-37) uses assembly
- INLINE ASM (@sphynxswap/sphynx-swap-lib/contracts/utils/Address.sol#33-35)
Address._functionCallWithValue(address,bytes,uint256,string) (@sphynxswap/sphynx-swap-lib/contracts/utils/Address.sol#134-160) uses assembly
- INLINE ASM (@sphynxswap/sphynx-swap-lib/contracts/utils/Address.sol#152-155)
Do not use evm assembly.
Additional information: link
Different versions of Solidity is used:
- Version used: ['0.6.12', '>=0.4.0', '>=0.5.0', '>=0.6.2', '^0.6.2']
- >=0.4.0 (@sphynxswap/sphynx-swap-lib/contracts/GSN/Context.sol#3)
- >=0.4.0 (@sphynxswap/sphynx-swap-lib/contracts/access/Manageable.sol#3)
- >=0.4.0 (@sphynxswap/sphynx-swap-lib/contracts/access/Ownable.sol#3)
- >=0.4.0 (@sphynxswap/sphynx-swap-lib/contracts/math/SafeMath.sol#3)
- >=0.4.0 (@sphynxswap/sphynx-swap-lib/contracts/token/BEP20/BEP20.sol#3)
- >=0.4.0 (@sphynxswap/sphynx-swap-lib/contracts/token/BEP20/IBEP20.sol#3)
- ^0.6.2 (@sphynxswap/sphynx-swap-lib/contracts/utils/Address.sol#3)
- >=0.5.0 (@sphynxswap/swap-core/contracts/interfaces/ISphynxFactory.sol#1)
- >=0.5.0 (@sphynxswap/swap-core/contracts/interfaces/ISphynxPair.sol#1)
- >=0.6.2 (@sphynxswap/swap-periphery/contracts/interfaces/ISphynxRouter01.sol#1)
- >=0.6.2 (@sphynxswap/swap-periphery/contracts/interfaces/ISphynxRouter02.sol#1)
- 0.6.12 (contracts/SphynxToken.sol#3)
Use one Solidity version.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (@sphynxswap/sphynx-swap-lib/contracts/utils/Address.sol#134-160) is never used and should be removed
Address.functionCall(address,bytes) (@sphynxswap/sphynx-swap-lib/contracts/utils/Address.sol#81-83) is never used and should be removed
Address.functionCall(address,bytes,string) (@sphynxswap/sphynx-swap-lib/contracts/utils/Address.sol#91-97) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (@sphynxswap/sphynx-swap-lib/contracts/utils/Address.sol#110-116) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (@sphynxswap/sphynx-swap-lib/contracts/utils/Address.sol#124-132) is never used and should be removed
Address.isContract(address) (@sphynxswap/sphynx-swap-lib/contracts/utils/Address.sol#26-37) is never used and should be removed
Address.sendValue(address,uint256) (@sphynxswap/sphynx-swap-lib/contracts/utils/Address.sol#55-61) is never used and should be removed
BEP20._burnFrom(address,uint256) (@sphynxswap/sphynx-swap-lib/contracts/token/BEP20/BEP20.sol#320-327) is never used and should be removed
Context._msgData() (@sphynxswap/sphynx-swap-lib/contracts/GSN/Context.sol#24-27) is never used and should be removed
SafeMath.min(uint256,uint256) (@sphynxswap/sphynx-swap-lib/contracts/math/SafeMath.sol#172-174) is never used and should be removed
SafeMath.mod(uint256,uint256) (@sphynxswap/sphynx-swap-lib/contracts/math/SafeMath.sol#147-149) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (@sphynxswap/sphynx-swap-lib/contracts/math/SafeMath.sol#163-170) is never used and should be removed
SafeMath.sqrt(uint256) (@sphynxswap/sphynx-swap-lib/contracts/math/SafeMath.sol#177-188) is never used and should be removed
Remove unused functions.
Additional information: link
Pragma version>=0.4.0 (@sphynxswap/sphynx-swap-lib/contracts/GSN/Context.sol#3) allows old versions
Pragma version>=0.4.0 (@sphynxswap/sphynx-swap-lib/contracts/access/Manageable.sol#3) allows old versions
Pragma version>=0.4.0 (@sphynxswap/sphynx-swap-lib/contracts/access/Ownable.sol#3) allows old versions
Pragma version>=0.4.0 (@sphynxswap/sphynx-swap-lib/contracts/math/SafeMath.sol#3) allows old versions
Pragma version>=0.4.0 (@sphynxswap/sphynx-swap-lib/contracts/token/BEP20/BEP20.sol#3) allows old versions
Pragma version>=0.4.0 (@sphynxswap/sphynx-swap-lib/contracts/token/BEP20/IBEP20.sol#3) allows old versions
Pragma version^0.6.2 (@sphynxswap/sphynx-swap-lib/contracts/utils/Address.sol#3) allows old versions
Pragma version>=0.5.0 (@sphynxswap/swap-core/contracts/interfaces/ISphynxFactory.sol#1) allows old versions
Pragma version>=0.5.0 (@sphynxswap/swap-core/contracts/interfaces/ISphynxPair.sol#1) allows old versions
Pragma version>=0.6.2 (@sphynxswap/swap-periphery/contracts/interfaces/ISphynxRouter01.sol#1) allows old versions
Pragma version>=0.6.2 (@sphynxswap/swap-periphery/contracts/interfaces/ISphynxRouter02.sol#1) allows old versions
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 Address.sendValue(address,uint256) (@sphynxswap/sphynx-swap-lib/contracts/utils/Address.sol#55-61):
- (success) = recipient.call{value: amount}() (@sphynxswap/sphynx-swap-lib/contracts/utils/Address.sol#59)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (@sphynxswap/sphynx-swap-lib/contracts/utils/Address.sol#134-160):
- (success,returndata) = target.call{value: weiValue}(data) (@sphynxswap/sphynx-swap-lib/contracts/utils/Address.sol#143)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function ISphynxPair.DOMAIN_SEPARATOR() (@sphynxswap/swap-core/contracts/interfaces/ISphynxPair.sol#18) is not in mixedCase
Function ISphynxPair.PERMIT_TYPEHASH() (@sphynxswap/swap-core/contracts/interfaces/ISphynxPair.sol#19) is not in mixedCase
Function ISphynxPair.MINIMUM_LIQUIDITY() (@sphynxswap/swap-core/contracts/interfaces/ISphynxPair.sol#36) is not in mixedCase
Function ISphynxRouter01.WETH() (@sphynxswap/swap-periphery/contracts/interfaces/ISphynxRouter01.sol#5) is not in mixedCase
Parameter SphynxToken.updateMasterChef(address)._masterChef (contracts/SphynxToken.sol#171) is not in mixedCase
Parameter SphynxToken.updateSphynxBridge(address)._sphynxBridge (contracts/SphynxToken.sol#177) is not in mixedCase
Parameter SphynxToken.setBnbAmountToSwap(uint256)._bnbAmount (contracts/SphynxToken.sol#218) is not in mixedCase
Variable SphynxToken._owner (contracts/SphynxToken.sol#24) is not in mixedCase
Variable SphynxToken.SwapAndLiquifyEnabled (contracts/SphynxToken.sol#35) is not in mixedCase
Variable SphynxToken._isGetFees (contracts/SphynxToken.sol#42) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (@sphynxswap/sphynx-swap-lib/contracts/GSN/Context.sol#25)" inContext (@sphynxswap/sphynx-swap-lib/contracts/GSN/Context.sol#15-28)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in SphynxToken._transfer(address,address,uint256) (contracts/SphynxToken.sol#256-317):
External calls:
- swapTokens(contractTokenBalance) (contracts/SphynxToken.sol#280)
- marketingWallet.transfer(amount) (contracts/SphynxToken.sol#359)
- developmentWallet.transfer(amount) (contracts/SphynxToken.sol#363)
State variables written after the call(s):
- super._transfer(from,lotteryAddress,lotteryAmount) (contracts/SphynxToken.sol#307)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (@sphynxswap/sphynx-swap-lib/contracts/token/BEP20/BEP20.sol#248)
- _balances[recipient] = _balances[recipient].add(amount) (@sphynxswap/sphynx-swap-lib/contracts/token/BEP20/BEP20.sol#249)
- super._transfer(from,address(this),fees) (contracts/SphynxToken.sol#312)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (@sphynxswap/sphynx-swap-lib/contracts/token/BEP20/BEP20.sol#248)
- _balances[recipient] = _balances[recipient].add(amount) (@sphynxswap/sphynx-swap-lib/contracts/token/BEP20/BEP20.sol#249)
- super._transfer(from,to,amount) (contracts/SphynxToken.sol#316)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (@sphynxswap/sphynx-swap-lib/contracts/token/BEP20/BEP20.sol#248)
- _balances[recipient] = _balances[recipient].add(amount) (@sphynxswap/sphynx-swap-lib/contracts/token/BEP20/BEP20.sol#249)
- swapping = false (contracts/SphynxToken.sol#281)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (@sphynxswap/sphynx-swap-lib/contracts/token/BEP20/BEP20.sol#250)
- super._transfer(from,lotteryAddress,lotteryAmount) (contracts/SphynxToken.sol#307)
- Transfer(sender,recipient,amount) (@sphynxswap/sphynx-swap-lib/contracts/token/BEP20/BEP20.sol#250)
- super._transfer(from,address(this),fees) (contracts/SphynxToken.sol#312)
- Transfer(sender,recipient,amount) (@sphynxswap/sphynx-swap-lib/contracts/token/BEP20/BEP20.sol#250)
- super._transfer(from,to,amount) (contracts/SphynxToken.sol#316)
Apply the check-effects-interactions pattern.
Additional information: link
Variable ISphynxRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (@sphynxswap/swap-periphery/contracts/interfaces/ISphynxRouter01.sol#10) is too similar to ISphynxRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (@sphynxswap/swap-periphery/contracts/interfaces/ISphynxRouter01.sol#11)
Prevent variables from having similar names.
Additional information: link
SphynxToken.constructor() (contracts/SphynxToken.sol#75-106) uses literals with too many digits:
- _mint(_owner,1000000000 * (10 ** 18)) (contracts/SphynxToken.sol#105)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
SphynxToken._owner (contracts/SphynxToken.sol#24) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
manager() should be declared external:
- Manageable.manager() (@sphynxswap/sphynx-swap-lib/contracts/access/Manageable.sol#36-38)
renounceManagement() should be declared external:
- Manageable.renounceManagement() (@sphynxswap/sphynx-swap-lib/contracts/access/Manageable.sol#55-58)
transferManagement(address) should be declared external:
- Manageable.transferManagement(address) (@sphynxswap/sphynx-swap-lib/contracts/access/Manageable.sol#64-66)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (@sphynxswap/sphynx-swap-lib/contracts/access/Ownable.sol#55-58)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (@sphynxswap/sphynx-swap-lib/contracts/access/Ownable.sol#64-66)
name() should be declared external:
- BEP20.name() (@sphynxswap/sphynx-swap-lib/contracts/token/BEP20/BEP20.sol#74-76)
decimals() should be declared external:
- BEP20.decimals() (@sphynxswap/sphynx-swap-lib/contracts/token/BEP20/BEP20.sol#81-83)
symbol() should be declared external:
- BEP20.symbol() (@sphynxswap/sphynx-swap-lib/contracts/token/BEP20/BEP20.sol#88-90)
totalSupply() should be declared external:
- BEP20.totalSupply() (@sphynxswap/sphynx-swap-lib/contracts/token/BEP20/BEP20.sol#95-97)
transfer(address,uint256) should be declared external:
- BEP20.transfer(address,uint256) (@sphynxswap/sphynx-swap-lib/contracts/token/BEP20/BEP20.sol#114-117)
allowance(address,address) should be declared external:
- BEP20.allowance(address,address) (@sphynxswap/sphynx-swap-lib/contracts/token/BEP20/BEP20.sol#122-124)
approve(address,uint256) should be declared external:
- BEP20.approve(address,uint256) (@sphynxswap/sphynx-swap-lib/contracts/token/BEP20/BEP20.sol#133-136)
transferFrom(address,address,uint256) should be declared external:
- BEP20.transferFrom(address,address,uint256) (@sphynxswap/sphynx-swap-lib/contracts/token/BEP20/BEP20.sol#150-162)
increaseAllowance(address,uint256) should be declared external:
- BEP20.increaseAllowance(address,uint256) (@sphynxswap/sphynx-swap-lib/contracts/token/BEP20/BEP20.sol#176-179)
decreaseAllowance(address,uint256) should be declared external:
- BEP20.decreaseAllowance(address,uint256) (@sphynxswap/sphynx-swap-lib/contracts/token/BEP20/BEP20.sol#195-202)
mint(uint256) should be declared external:
- BEP20.mint(uint256) (@sphynxswap/sphynx-swap-lib/contracts/token/BEP20/BEP20.sol#212-215)
burn(uint256) should be declared external:
- BEP20.burn(uint256) (@sphynxswap/sphynx-swap-lib/contracts/token/BEP20/BEP20.sol#221-224)
mint(address,uint256) should be declared external:
- SphynxToken.mint(address,uint256) (contracts/SphynxToken.sol#111-113)
updateSwapAndLiquifiy(bool) should be declared external:
- SphynxToken.updateSwapAndLiquifiy(bool) (contracts/SphynxToken.sol#115-118)
updateSendToLottery(bool) should be declared external:
- SphynxToken.updateSendToLottery(bool) (contracts/SphynxToken.sol#120-123)
updateSphynxSwapRouter(address) should be declared external:
- SphynxToken.updateSphynxSwapRouter(address) (contracts/SphynxToken.sol#161-169)
updateMasterChef(address) should be declared external:
- SphynxToken.updateMasterChef(address) (contracts/SphynxToken.sol#171-175)
updateSphynxBridge(address) should be declared external:
- SphynxToken.updateSphynxBridge(address) (contracts/SphynxToken.sol#177-183)
setFeeAccount(address,bool) should be declared external:
- SphynxToken.setFeeAccount(address,bool) (contracts/SphynxToken.sol#192-197)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- SphynxToken.excludeMultipleAccountsFromFees(address[],bool) (contracts/SphynxToken.sol#199-205)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- SphynxToken.setAutomatedMarketMakerPair(address,bool) (contracts/SphynxToken.sol#207-209)
setBnbAmountToSwap(uint256) should be declared external:
- SphynxToken.setBnbAmountToSwap(uint256) (contracts/SphynxToken.sol#218-221)
updateMarketingWallet(address) should be declared external:
- SphynxToken.updateMarketingWallet(address) (contracts/SphynxToken.sol#223-229)
updateDevelopmentgWallet(address) should be declared external:
- SphynxToken.updateDevelopmentgWallet(address) (contracts/SphynxToken.sol#231-237)
updateLotteryAddress(address) should be declared external:
- SphynxToken.updateLotteryAddress(address) (contracts/SphynxToken.sol#239-245)
setBlockNumber() should be declared external:
- SphynxToken.setBlockNumber() (contracts/SphynxToken.sol#247-250)
isExcludedFromFees(address) should be declared external:
- SphynxToken.isExcludedFromFees(address) (contracts/SphynxToken.sol#252-254)
Use the external attribute for functions never called from the contract.
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
Alexa traffic rank is very low
Additional information: link
Young tokens have high risks of price dump / death
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Token has relatively low CoinGecko rank
Telegram account link seems to be invalid