Sphynx Network Token Logo

SPH [Sphynx Network] Token

About SPH

Listings

Token 4 years
CoinGecko 4 years
CoinMarketCap 4 years
white paper

Sphynx Network is focusing on changing the fundamental nature of DeFi by using alchemy in blockchain technology to build the next generation of yield farming.

Laser Scorebeta Last Audit: 26 August 2022

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

SphynxNetwork.addLiquidity(uint256,uint256) (#1105-1118) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1110-1117)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in SphynxNetwork._transfer(address,address,uint256) (#1018-1062):
External calls:
- swapAndLiquify(contractTokenBalance) (#1049)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1110-1117)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1096-1102)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1049)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1110-1117)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1061)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#974)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1152)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1143)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1144)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1163)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#890)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1164)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1154)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#892)
- _tokenTransfer(from,to,amount,takeFee) (#1061)
- _rTotal = _rTotal.sub(rFee) (#929)
- _tokenTransfer(from,to,amount,takeFee) (#1061)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#976)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1162)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#889)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1153)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#891)
Apply the check-effects-interactions pattern.

Additional information: link


Combination 1: Reentrancy vulnerabilities + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.


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


Contract ownership is not renounced (belongs to a wallet)

SphynxNetwork.addLiquidity(uint256,uint256) (#1105-1118) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1110-1117)
Ensure that all the return values of the function calls are used.

Additional information: link

SphynxNetwork.allowance(address,address).owner (#806) shadows:
- Ownable.owner() (#424-426) (function)
SphynxNetwork._approve(address,address,uint256).owner (#1010) shadows:
- Ownable.owner() (#424-426) (function)
Rename the local variables that shadow another component.

Additional information: link

SphynxNetwork.updateTokenLimit(uint256) (#775-778) should emit an event for:
- numTokensSellToAddToLiquidity = newLimit * 10 ** 18 (#776)
SphynxNetwork.setTaxFeePercent(uint256) (#906-908) should emit an event for:
- _taxFee = taxFee (#907)
SphynxNetwork.setLiquidityFeePercent(uint256) (#910-912) should emit an event for:
- _liquidityFee = liquidityFee (#911)
SphynxNetwork.setMaxTxPercent(uint256) (#914-918) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#915-917)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in SphynxNetwork._transfer(address,address,uint256) (#1018-1062):
External calls:
- swapAndLiquify(contractTokenBalance) (#1049)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1110-1117)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1096-1102)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1049)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1110-1117)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1061)
- _liquidityFee = _previousLiquidityFee (#1003)
- _liquidityFee = 0 (#998)
- _tokenTransfer(from,to,amount,takeFee) (#1061)
- _previousLiquidityFee = _liquidityFee (#995)
- _tokenTransfer(from,to,amount,takeFee) (#1061)
- _previousTaxFee = _taxFee (#994)
- _tokenTransfer(from,to,amount,takeFee) (#1061)
- _tFeeTotal = _tFeeTotal.add(tFee) (#930)
- _tokenTransfer(from,to,amount,takeFee) (#1061)
- _taxFee = _previousTaxFee (#1002)
- _taxFee = 0 (#997)
Reentrancy in SphynxNetwork.constructor() (#746-762):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#751-752)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#758)
- _isExcludedFromFee[address(this)] = true (#759)
- uniswapV2Router = _uniswapV2Router (#755)
Reentrancy in SphynxNetwork.swapAndLiquify(uint256) (#1064-1085):
External calls:
- swapTokensForEth(half) (#1076)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1096-1102)
- addLiquidity(otherHalf,newBalance) (#1082)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1110-1117)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1082)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1110-1117)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1082)
- _allowances[owner][spender] = amount (#1014)
Reentrancy in SphynxNetwork.transferFrom(address,address,uint256) (#815-819):
External calls:
- _transfer(sender,recipient,amount) (#816)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1110-1117)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1096-1102)
External calls sending eth:
- _transfer(sender,recipient,amount) (#816)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1110-1117)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#817)
- _allowances[owner][spender] = amount (#1014)
Reentrancy in SphynxNetwork.updateDex(address) (#764-772):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#767-768)
State variables written after the call(s):
- uniswapV2Router = _uniswapV2Router (#771)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in SphynxNetwork._transfer(address,address,uint256) (#1018-1062):
External calls:
- swapAndLiquify(contractTokenBalance) (#1049)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1110-1117)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1096-1102)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1049)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1110-1117)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1147)
- _tokenTransfer(from,to,amount,takeFee) (#1061)
- Transfer(sender,recipient,tTransferAmount) (#1157)
- _tokenTransfer(from,to,amount,takeFee) (#1061)
- Transfer(sender,recipient,tTransferAmount) (#1167)
- _tokenTransfer(from,to,amount,takeFee) (#1061)
- Transfer(sender,recipient,tTransferAmount) (#895)
- _tokenTransfer(from,to,amount,takeFee) (#1061)
Reentrancy in SphynxNetwork.constructor() (#746-762):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#751-752)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#761)
Reentrancy in SphynxNetwork.swapAndLiquify(uint256) (#1064-1085):
External calls:
- swapTokensForEth(half) (#1076)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1096-1102)
- addLiquidity(otherHalf,newBalance) (#1082)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1110-1117)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1082)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1110-1117)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1015)
- addLiquidity(otherHalf,newBalance) (#1082)
- SwapAndLiquify(half,newBalance,otherHalf) (#1084)
Reentrancy in SphynxNetwork.transferFrom(address,address,uint256) (#815-819):
External calls:
- _transfer(sender,recipient,amount) (#816)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1110-1117)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1096-1102)
External calls sending eth:
- _transfer(sender,recipient,amount) (#816)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1110-1117)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1015)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#817)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#471-476) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#473)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#276-285) uses assembly
- INLINE ASM (#283)
Address._functionCallWithValue(address,bytes,uint256,string) (#369-390) uses assembly
- INLINE ASM (#382-385)
Do not use evm assembly.

Additional information: link

SphynxNetwork.includeInReward(address) (#875-886) has costly operations inside a loop:
- _excluded.pop() (#882)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#369-390) is never used and should be removed
Address.functionCall(address,bytes) (#329-331) is never used and should be removed
Address.functionCall(address,bytes,string) (#339-341) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#354-356) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#364-367) is never used and should be removed
Address.isContract(address) (#276-285) is never used and should be removed
Address.sendValue(address,uint256) (#303-309) is never used and should be removed
Context._msgData() (#248-251) is never used and should be removed
SafeMath.mod(uint256,uint256) (#221-223) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#237-240) is never used and should be removed
Remove unused functions.

Additional information: link

SphynxNetwork._rTotal (#708) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
SphynxNetwork._previousTaxFee (#716) is set pre-construction with a non-constant function or state variable:
- _taxFee
SphynxNetwork._previousLiquidityFee (#719) 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) (#303-309):
- (success) = recipient.call{value: amount}() (#307)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#369-390):
- (success,returndata) = target.call{value: weiValue}(data) (#373)
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() (#515) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#516) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#533) is not in mixedCase
Function IUniswapV2Router01.WETH() (#555) is not in mixedCase
Parameter SphynxNetwork.updateDex(address)._newDexAddress (#764) is not in mixedCase
Parameter SphynxNetwork.setSwapAndLiquifyEnabled(bool)._enabled (#920) is not in mixedCase
Parameter SphynxNetwork.calculateTaxFee(uint256)._amount (#979) is not in mixedCase
Parameter SphynxNetwork.calculateLiquidityFee(uint256)._amount (#985) is not in mixedCase
Variable SphynxNetwork._taxFee (#715) is not in mixedCase
Variable SphynxNetwork._liquidityFee (#718) is not in mixedCase
Variable SphynxNetwork._maxTxAmount (#727) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#249)" inContext (#243-252)
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 (#560) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#561)
Variable SphynxNetwork.reflectionFromToken(uint256,bool).rTransferAmount (#854) is too similar to SphynxNetwork._getTValues(uint256).tTransferAmount (#942)
Variable SphynxNetwork._transferToExcluded(address,address,uint256).rTransferAmount (#1151) is too similar to SphynxNetwork._getTValues(uint256).tTransferAmount (#942)
Variable SphynxNetwork._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#950) is too similar to SphynxNetwork._transferToExcluded(address,address,uint256).tTransferAmount (#1151)
Variable SphynxNetwork._transferStandard(address,address,uint256).rTransferAmount (#1142) is too similar to SphynxNetwork._getTValues(uint256).tTransferAmount (#942)
Variable SphynxNetwork._transferFromExcluded(address,address,uint256).rTransferAmount (#1161) is too similar to SphynxNetwork._transferStandard(address,address,uint256).tTransferAmount (#1142)
Variable SphynxNetwork._transferBothExcluded(address,address,uint256).rTransferAmount (#888) is too similar to SphynxNetwork._getTValues(uint256).tTransferAmount (#942)
Variable SphynxNetwork._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#950) is too similar to SphynxNetwork._getValues(uint256).tTransferAmount (#934)
Variable SphynxNetwork.reflectionFromToken(uint256,bool).rTransferAmount (#854) is too similar to SphynxNetwork._transferStandard(address,address,uint256).tTransferAmount (#1142)
Variable SphynxNetwork._transferStandard(address,address,uint256).rTransferAmount (#1142) is too similar to SphynxNetwork._transferStandard(address,address,uint256).tTransferAmount (#1142)
Variable SphynxNetwork._transferFromExcluded(address,address,uint256).rTransferAmount (#1161) is too similar to SphynxNetwork._transferBothExcluded(address,address,uint256).tTransferAmount (#888)
Variable SphynxNetwork._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#950) is too similar to SphynxNetwork._getTValues(uint256).tTransferAmount (#942)
Variable SphynxNetwork._transferBothExcluded(address,address,uint256).rTransferAmount (#888) is too similar to SphynxNetwork._transferStandard(address,address,uint256).tTransferAmount (#1142)
Variable SphynxNetwork._transferFromExcluded(address,address,uint256).rTransferAmount (#1161) is too similar to SphynxNetwork._transferFromExcluded(address,address,uint256).tTransferAmount (#1161)
Variable SphynxNetwork._transferFromExcluded(address,address,uint256).rTransferAmount (#1161) is too similar to SphynxNetwork._transferToExcluded(address,address,uint256).tTransferAmount (#1151)
Variable SphynxNetwork.reflectionFromToken(uint256,bool).rTransferAmount (#854) is too similar to SphynxNetwork._transferBothExcluded(address,address,uint256).tTransferAmount (#888)
Variable SphynxNetwork._transferToExcluded(address,address,uint256).rTransferAmount (#1151) is too similar to SphynxNetwork._transferToExcluded(address,address,uint256).tTransferAmount (#1151)
Variable SphynxNetwork._transferFromExcluded(address,address,uint256).rTransferAmount (#1161) is too similar to SphynxNetwork._getValues(uint256).tTransferAmount (#934)
Variable SphynxNetwork.reflectionFromToken(uint256,bool).rTransferAmount (#854) is too similar to SphynxNetwork._transferFromExcluded(address,address,uint256).tTransferAmount (#1161)
Variable SphynxNetwork.reflectionFromToken(uint256,bool).rTransferAmount (#854) is too similar to SphynxNetwork._transferToExcluded(address,address,uint256).tTransferAmount (#1151)
Variable SphynxNetwork._getValues(uint256).rTransferAmount (#935) is too similar to SphynxNetwork._getTValues(uint256).tTransferAmount (#942)
Variable SphynxNetwork._transferBothExcluded(address,address,uint256).rTransferAmount (#888) is too similar to SphynxNetwork._transferBothExcluded(address,address,uint256).tTransferAmount (#888)
Variable SphynxNetwork._transferStandard(address,address,uint256).rTransferAmount (#1142) is too similar to SphynxNetwork._transferToExcluded(address,address,uint256).tTransferAmount (#1151)
Variable SphynxNetwork._transferToExcluded(address,address,uint256).rTransferAmount (#1151) is too similar to SphynxNetwork._getValues(uint256).tTransferAmount (#934)
Variable SphynxNetwork.reflectionFromToken(uint256,bool).rTransferAmount (#854) is too similar to SphynxNetwork._getValues(uint256).tTransferAmount (#934)
Variable SphynxNetwork._transferBothExcluded(address,address,uint256).rTransferAmount (#888) is too similar to SphynxNetwork._transferFromExcluded(address,address,uint256).tTransferAmount (#1161)
Variable SphynxNetwork._transferBothExcluded(address,address,uint256).rTransferAmount (#888) is too similar to SphynxNetwork._transferToExcluded(address,address,uint256).tTransferAmount (#1151)
Variable SphynxNetwork._transferFromExcluded(address,address,uint256).rTransferAmount (#1161) is too similar to SphynxNetwork._getTValues(uint256).tTransferAmount (#942)
Variable SphynxNetwork._transferStandard(address,address,uint256).rTransferAmount (#1142) is too similar to SphynxNetwork._getValues(uint256).tTransferAmount (#934)
Variable SphynxNetwork._transferBothExcluded(address,address,uint256).rTransferAmount (#888) is too similar to SphynxNetwork._getValues(uint256).tTransferAmount (#934)
Variable SphynxNetwork._transferToExcluded(address,address,uint256).rTransferAmount (#1151) is too similar to SphynxNetwork._transferBothExcluded(address,address,uint256).tTransferAmount (#888)
Variable SphynxNetwork._getValues(uint256).rTransferAmount (#935) is too similar to SphynxNetwork._getValues(uint256).tTransferAmount (#934)
Variable SphynxNetwork._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#950) is too similar to SphynxNetwork._transferFromExcluded(address,address,uint256).tTransferAmount (#1161)
Variable SphynxNetwork._transferStandard(address,address,uint256).rTransferAmount (#1142) is too similar to SphynxNetwork._transferFromExcluded(address,address,uint256).tTransferAmount (#1161)
Variable SphynxNetwork._getValues(uint256).rTransferAmount (#935) is too similar to SphynxNetwork._transferToExcluded(address,address,uint256).tTransferAmount (#1151)
Variable SphynxNetwork._getValues(uint256).rTransferAmount (#935) is too similar to SphynxNetwork._transferFromExcluded(address,address,uint256).tTransferAmount (#1161)
Variable SphynxNetwork._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#950) is too similar to SphynxNetwork._transferStandard(address,address,uint256).tTransferAmount (#1142)
Variable SphynxNetwork._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#950) is too similar to SphynxNetwork._transferBothExcluded(address,address,uint256).tTransferAmount (#888)
Variable SphynxNetwork._transferStandard(address,address,uint256).rTransferAmount (#1142) is too similar to SphynxNetwork._transferBothExcluded(address,address,uint256).tTransferAmount (#888)
Variable SphynxNetwork._getValues(uint256).rTransferAmount (#935) is too similar to SphynxNetwork._transferStandard(address,address,uint256).tTransferAmount (#1142)
Variable SphynxNetwork._transferToExcluded(address,address,uint256).rTransferAmount (#1151) is too similar to SphynxNetwork._transferFromExcluded(address,address,uint256).tTransferAmount (#1161)
Variable SphynxNetwork._getValues(uint256).rTransferAmount (#935) is too similar to SphynxNetwork._transferBothExcluded(address,address,uint256).tTransferAmount (#888)
Variable SphynxNetwork._transferToExcluded(address,address,uint256).rTransferAmount (#1151) is too similar to SphynxNetwork._transferStandard(address,address,uint256).tTransferAmount (#1142)
Prevent variables from having similar names.

Additional information: link

SphynxNetwork.slitherConstructorVariables() (#693-1171) uses literals with too many digits:
- _tTotal = 1000000 * 10 ** 6 * 10 ** 18 (#707)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SphynxNetwork._decimals (#713) should be constant
SphynxNetwork._name (#711) should be constant
SphynxNetwork._symbol (#712) should be constant
SphynxNetwork._tTotal (#707) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#443-446)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#452-456)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#458-460)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#463-468)
unlock() should be declared external:
- Ownable.unlock() (#471-476)
updateTokenLimit(uint256) should be declared external:
- SphynxNetwork.updateTokenLimit(uint256) (#775-778)
name() should be declared external:
- SphynxNetwork.name() (#780-782)
symbol() should be declared external:
- SphynxNetwork.symbol() (#784-786)
decimals() should be declared external:
- SphynxNetwork.decimals() (#788-790)
totalSupply() should be declared external:
- SphynxNetwork.totalSupply() (#792-794)
transfer(address,uint256) should be declared external:
- SphynxNetwork.transfer(address,uint256) (#801-804)
allowance(address,address) should be declared external:
- SphynxNetwork.allowance(address,address) (#806-808)
approve(address,uint256) should be declared external:
- SphynxNetwork.approve(address,uint256) (#810-813)
transferFrom(address,address,uint256) should be declared external:
- SphynxNetwork.transferFrom(address,address,uint256) (#815-819)
increaseAllowance(address,uint256) should be declared external:
- SphynxNetwork.increaseAllowance(address,uint256) (#821-824)
decreaseAllowance(address,uint256) should be declared external:
- SphynxNetwork.decreaseAllowance(address,uint256) (#826-829)
isExcludedFromReward(address) should be declared external:
- SphynxNetwork.isExcludedFromReward(address) (#831-833)
totalFees() should be declared external:
- SphynxNetwork.totalFees() (#835-837)
deliver(uint256) should be declared external:
- SphynxNetwork.deliver(uint256) (#839-846)
reflectionFromToken(uint256,bool) should be declared external:
- SphynxNetwork.reflectionFromToken(uint256,bool) (#848-857)
excludeFromReward(address) should be declared external:
- SphynxNetwork.excludeFromReward(address) (#865-873)
excludeFromFee(address) should be declared external:
- SphynxNetwork.excludeFromFee(address) (#898-900)
includeInFee(address) should be declared external:
- SphynxNetwork.includeInFee(address) (#902-904)
setSwapAndLiquifyEnabled(bool) should be declared external:
- SphynxNetwork.setSwapAndLiquifyEnabled(bool) (#920-923)
isExcludedFromFee(address) should be declared external:
- SphynxNetwork.isExcludedFromFee(address) (#1006-1008)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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


Average 30d PancakeSwap liquidity is low.

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


Swap operations require suspiciously high gas. Contract logic is complex and may disguise some form of scam.


Average 30d number of PancakeSwap swaps is low.


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


Token is deployed only at one blockchain


Last post in Twitter was more than 30 days ago


Unable to find Youtube account


Token was delisted from CoinGecko

Additional information: link


Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap

Additional information: link


Token is not listed at Mobula.Finance

Additional information: link


Unable to find token on CoinHunt

Additional information: link


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


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

Price for SPH

News for SPH