SavePlanetEarth v2 Token Logo

SPE [SavePlanetEarth v2] Token

About SPE

Listings

Token 2 years
CoinMarketCap 3 years
[CoinGecko] alert: SavePlanetEarth (SPE) has recently migrated from their old contract to a new one. For more information, please view this announcement on Twitter.
white paper

Our vision is to combat climate change by means of planting trees as a means for carbon sequestration.

Direct from our whitepaper: SAVEPLANETEARTH is a Global Initiative dedicated to developing programs
aiming to combat Global Warming and Climate Change and is involved to develop
realistic Carbon Sequestration Harvests to achieve reduced levels of Global
Warming, employing a myriad of activities including Afforestation, Reforestation,
and Enhanced Marine Climate Management, and utilizing enhanced public
interest and innovative financing mechanisms.

The Vision of SAVEPLANETEARTH is to inculcate simple, affordable, and effective
mechanisms to reduce Carbon Sequestration and institute effective Emissions Control
Systems so that Global Warming and Climate Change can be kept at manageable
levels, to be enabled by empowered climate conservation processes.
Long term vision: Supporting activities to avert Global Warming and Expand Efforts in
Carbon Sequestration.

We are in the midst of establishing meaningful partnerships with both the UN/UNDP and UNICEF as well as many other likeminded climate change activist groups.

Laser Scorebeta Last Audit: 4 January 2022

report
Token seems to be (relatively) fine. It still become a scam, but probability is moderate.

SavePlanetEarth.addLiquidity(uint256,uint256) (SPE.sol#731-745) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (SPE.sol#736-743)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in SavePlanetEarth._transfer(address,address,uint256) (SPE.sol#614-688):
External calls:
- swapAndLiquify(contractTokenBalance) (SPE.sol#651)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (SPE.sol#736-743)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (SPE.sol#722-728)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (SPE.sol#651)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (SPE.sol#736-743)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (SPE.sol#687)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (SPE.sol#565)
- _rOwned[_devWalletAddress] = _rOwned[_devWalletAddress].add(rdev) (SPE.sol#573)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (SPE.sol#775)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (SPE.sol#765)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (SPE.sol#787)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (SPE.sol#414)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (SPE.sol#766)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (SPE.sol#788)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (SPE.sol#777)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (SPE.sol#416)
- _tokenTransfer(from,to,amount,takeFee) (SPE.sol#687)
- _rTotal = _rTotal.sub(rFee) (SPE.sol#518)
- _tokenTransfer(from,to,amount,takeFee) (SPE.sol#687)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (SPE.sol#567)
- _tOwned[_devWalletAddress] = _tOwned[_devWalletAddress].add(tdev) (SPE.sol#575)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (SPE.sol#413)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (SPE.sol#786)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (SPE.sol#776)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (SPE.sol#415)
Apply the check-effects-interactions pattern.

Additional information: link

SavePlanetEarth.withdrawalToken(address,uint256,address) (SPE.sol#806-810) ignores return value by token.transfer(to,_amount) (SPE.sol#808)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

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.


Combination 2: Unchecked transfer + 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.


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.


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

SavePlanetEarth.addLiquidity(uint256,uint256) (SPE.sol#731-745) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (SPE.sol#736-743)
Ensure that all the return values of the function calls are used.

Additional information: link

SavePlanetEarth.allowance(address,address).owner (SPE.sol#339) shadows:
- Ownable.owner() (Ownable.sol#34-36) (function)
SavePlanetEarth._approve(address,address,uint256).owner (SPE.sol#606) shadows:
- Ownable.owner() (Ownable.sol#34-36) (function)
Rename the local variables that shadow another component.

Additional information: link

SavePlanetEarth.setBuyTaxFeePercent(uint256) (SPE.sol#431-434) should emit an event for:
- _buyTaxFee = taxFee (SPE.sol#432)
SavePlanetEarth.setBuyDevFeePercent(uint256) (SPE.sol#436-439) should emit an event for:
- _buyDevFee = devFee (SPE.sol#437)
SavePlanetEarth.setBuyLiquidityFeePercent(uint256) (SPE.sol#441-444) should emit an event for:
- _buyLiquidityFee = liquidityFee (SPE.sol#442)
SavePlanetEarth.setSellTaxFeePercent(uint256) (SPE.sol#446-449) should emit an event for:
- _sellTaxFee = taxFee (SPE.sol#447)
SavePlanetEarth.setSellDevFeePercent(uint256) (SPE.sol#451-454) should emit an event for:
- _sellDevFee = devFee (SPE.sol#452)
SavePlanetEarth.setSellLiquidityFeePercent(uint256) (SPE.sol#456-459) should emit an event for:
- _sellLiquidityFee = liquidityFee (SPE.sol#457)
SavePlanetEarth.setMaxTxPercent(uint256) (SPE.sol#461-465) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (SPE.sol#462-464)
Emit an event for critical parameter changes.

Additional information: link

SavePlanetEarth.constructor(address,address,address).devWallet (SPE.sol#297) lacks a zero-check on :
- _devWalletAddress = devWallet (SPE.sol#301)
SavePlanetEarth.constructor(address,address,address).liqWallet (SPE.sol#297) lacks a zero-check on :
- _liqWalletAddress = liqWallet (SPE.sol#302)
SavePlanetEarth.withdrawalBNB(uint256,address).to (SPE.sol#812) lacks a zero-check on :
- address(to).transfer(_amount) (SPE.sol#814)
Check that the address is not zero.

Additional information: link

Reentrancy in SavePlanetEarth._setRouter(address) (SPE.sol#500-508):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (SPE.sol#504)
State variables written after the call(s):
- setIsPair(uniswapV2Pair,true) (SPE.sol#506)
- _isPair[_address] = value (SPE.sol#796)
- uniswapV2Router = _uniswapV2Router (SPE.sol#505)
Reentrancy in SavePlanetEarth._transfer(address,address,uint256) (SPE.sol#614-688):
External calls:
- swapAndLiquify(contractTokenBalance) (SPE.sol#651)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (SPE.sol#736-743)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (SPE.sol#722-728)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (SPE.sol#651)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (SPE.sol#736-743)
State variables written after the call(s):
- _devFee = _buyDevFee (SPE.sol#675)
- _devFee = _sellDevFee (SPE.sol#682)
- _tokenTransfer(from,to,amount,takeFee) (SPE.sol#687)
- _devFee = 0 (SPE.sol#598)
- _liquidityFee = _buyLiquidityFee (SPE.sol#676)
- _liquidityFee = _sellLiquidityFee (SPE.sol#683)
- _tokenTransfer(from,to,amount,takeFee) (SPE.sol#687)
- _liquidityFee = 0 (SPE.sol#599)
- _tokenTransfer(from,to,amount,takeFee) (SPE.sol#687)
- _tFeeTotal = _tFeeTotal.add(tFee) (SPE.sol#519)
- _taxFee = _buyTaxFee (SPE.sol#674)
- _taxFee = _sellTaxFee (SPE.sol#681)
- _tokenTransfer(from,to,amount,takeFee) (SPE.sol#687)
- _taxFee = 0 (SPE.sol#597)
Reentrancy in SavePlanetEarth.constructor(address,address,address) (SPE.sol#297-311):
External calls:
- _setRouter(router) (SPE.sol#300)
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (SPE.sol#504)
State variables written after the call(s):
- _devWalletAddress = devWallet (SPE.sol#301)
- _isExcludedFromFee[owner()] = true (SPE.sol#305)
- _isExcludedFromFee[devWallet] = true (SPE.sol#306)
- _isExcludedFromFee[liqWallet] = true (SPE.sol#307)
- _isExcludedFromFee[address(this)] = true (SPE.sol#308)
- _liqWalletAddress = liqWallet (SPE.sol#302)
Reentrancy in SavePlanetEarth.swapAndLiquify(uint256) (SPE.sol#690-711):
External calls:
- swapTokensForEth(half) (SPE.sol#702)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (SPE.sol#722-728)
- addLiquidity(otherHalf,newBalance) (SPE.sol#708)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (SPE.sol#736-743)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (SPE.sol#708)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (SPE.sol#736-743)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (SPE.sol#708)
- _allowances[owner][spender] = amount (SPE.sol#610)
Reentrancy in SavePlanetEarth.transferFrom(address,address,uint256) (SPE.sol#348-352):
External calls:
- _transfer(sender,recipient,amount) (SPE.sol#349)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (SPE.sol#736-743)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (SPE.sol#722-728)
External calls sending eth:
- _transfer(sender,recipient,amount) (SPE.sol#349)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (SPE.sol#736-743)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (SPE.sol#350)
- _allowances[owner][spender] = amount (SPE.sol#610)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in SavePlanetEarth._setRouter(address) (SPE.sol#500-508):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (SPE.sol#504)
Event emitted after the call(s):
- RouterSet(_router) (SPE.sol#507)
- SetIsPair(_address,value) (SPE.sol#797)
- setIsPair(uniswapV2Pair,true) (SPE.sol#506)
Reentrancy in SavePlanetEarth._transfer(address,address,uint256) (SPE.sol#614-688):
External calls:
- swapAndLiquify(contractTokenBalance) (SPE.sol#651)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (SPE.sol#736-743)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (SPE.sol#722-728)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (SPE.sol#651)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (SPE.sol#736-743)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (SPE.sol#770)
- _tokenTransfer(from,to,amount,takeFee) (SPE.sol#687)
- Transfer(sender,recipient,tTransferAmount) (SPE.sol#781)
- _tokenTransfer(from,to,amount,takeFee) (SPE.sol#687)
- Transfer(sender,recipient,tTransferAmount) (SPE.sol#792)
- _tokenTransfer(from,to,amount,takeFee) (SPE.sol#687)
- Transfer(sender,recipient,tTransferAmount) (SPE.sol#420)
- _tokenTransfer(from,to,amount,takeFee) (SPE.sol#687)
Reentrancy in SavePlanetEarth.addLiquidity(uint256,uint256) (SPE.sol#731-745):
External calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (SPE.sol#736-743)
Event emitted after the call(s):
- Transfer(address(this),uniswapV2Pair,tokenAmount) (SPE.sol#744)
Reentrancy in SavePlanetEarth.constructor(address,address,address) (SPE.sol#297-311):
External calls:
- _setRouter(router) (SPE.sol#300)
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (SPE.sol#504)
Event emitted after the call(s):
- Transfer(address(0),owner(),_tTotal) (SPE.sol#310)
Reentrancy in SavePlanetEarth.swapAndLiquify(uint256) (SPE.sol#690-711):
External calls:
- swapTokensForEth(half) (SPE.sol#702)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (SPE.sol#722-728)
- addLiquidity(otherHalf,newBalance) (SPE.sol#708)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (SPE.sol#736-743)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (SPE.sol#708)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (SPE.sol#736-743)
Event emitted after the call(s):
- Approval(owner,spender,amount) (SPE.sol#611)
- addLiquidity(otherHalf,newBalance) (SPE.sol#708)
- SwapAndLiquify(half,newBalance,otherHalf) (SPE.sol#710)
- Transfer(address(this),uniswapV2Pair,tokenAmount) (SPE.sol#744)
- addLiquidity(otherHalf,newBalance) (SPE.sol#708)
Reentrancy in SavePlanetEarth.transferFrom(address,address,uint256) (SPE.sol#348-352):
External calls:
- _transfer(sender,recipient,amount) (SPE.sol#349)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (SPE.sol#736-743)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (SPE.sol#722-728)
External calls sending eth:
- _transfer(sender,recipient,amount) (SPE.sol#349)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (SPE.sol#736-743)
Event emitted after the call(s):
- Approval(owner,spender,amount) (SPE.sol#611)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (SPE.sol#350)
Reentrancy in SavePlanetEarth.withdrawalToken(address,uint256,address) (SPE.sol#806-810):
External calls:
- token.transfer(to,_amount) (SPE.sol#808)
Event emitted after the call(s):
- WithdrawalToken(_tokenAddr,_amount,to) (SPE.sol#809)
Apply the check-effects-interactions pattern.

Additional information: link

SavePlanetEarth.includeInReward(address) (SPE.sol#398-409) has costly operations inside a loop:
- _excluded.pop() (SPE.sol#405)
Use a local variable to hold the loop computation result.

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (SPE.sol#42) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (SPE.sol#43) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (SPE.sol#60) is not in mixedCase
Function IUniswapV2Router01.WETH() (SPE.sol#80) is not in mixedCase
Parameter SavePlanetEarth.setSwapAndLiquifyEnabled(bool)._enabled (SPE.sol#467) is not in mixedCase
Parameter SavePlanetEarth.setSwapEnabled(bool)._enabled (SPE.sol#472) is not in mixedCase
Parameter SavePlanetEarth.setDevWalletAddress(address)._address (SPE.sol#477) is not in mixedCase
Parameter SavePlanetEarth.setLiqWalletAddress(address)._address (SPE.sol#483) is not in mixedCase
Parameter SavePlanetEarth.setNumTokensSellToAddToLiquidity(uint256)._amount (SPE.sol#489) is not in mixedCase
Parameter SavePlanetEarth.setContractFeesEnabled(bool)._bool (SPE.sol#495) is not in mixedCase
Parameter SavePlanetEarth.setRouter(address)._router (SPE.sol#510) is not in mixedCase
Parameter SavePlanetEarth.calculateTaxFee(uint256)._amount (SPE.sol#578) is not in mixedCase
Parameter SavePlanetEarth.calculateDevFee(uint256)._amount (SPE.sol#584) is not in mixedCase
Parameter SavePlanetEarth.calculateLiquidityFee(uint256)._amount (SPE.sol#590) is not in mixedCase
Parameter SavePlanetEarth.setIsPair(address,bool)._address (SPE.sol#795) is not in mixedCase
Parameter SavePlanetEarth.setIsBanned(address,bool)._address (SPE.sol#800) is not in mixedCase
Parameter SavePlanetEarth.withdrawalToken(address,uint256,address)._tokenAddr (SPE.sol#806) is not in mixedCase
Parameter SavePlanetEarth.withdrawalToken(address,uint256,address)._amount (SPE.sol#806) is not in mixedCase
Parameter SavePlanetEarth.withdrawalBNB(uint256,address)._amount (SPE.sol#812) is not in mixedCase
Variable SavePlanetEarth._isPair (SPE.sol#226) is not in mixedCase
Variable SavePlanetEarth._isBanned (SPE.sol#229) is not in mixedCase
Constant SavePlanetEarth._tTotal (SPE.sol#232) is not in UPPER_CASE_WITH_UNDERSCORES
Constant SavePlanetEarth._name (SPE.sol#236) is not in UPPER_CASE_WITH_UNDERSCORES
Constant SavePlanetEarth._symbol (SPE.sol#237) is not in UPPER_CASE_WITH_UNDERSCORES
Constant SavePlanetEarth._decimals (SPE.sol#238) is not in UPPER_CASE_WITH_UNDERSCORES
Variable SavePlanetEarth._devWalletAddress (SPE.sol#241) is not in mixedCase
Variable SavePlanetEarth._liqWalletAddress (SPE.sol#242) is not in mixedCase
Variable SavePlanetEarth._buyTaxFee (SPE.sol#247) is not in mixedCase
Variable SavePlanetEarth._buyDevFee (SPE.sol#248) is not in mixedCase
Variable SavePlanetEarth._buyLiquidityFee (SPE.sol#249) is not in mixedCase
Variable SavePlanetEarth._sellTaxFee (SPE.sol#252) is not in mixedCase
Variable SavePlanetEarth._sellDevFee (SPE.sol#253) is not in mixedCase
Variable SavePlanetEarth._sellLiquidityFee (SPE.sol#254) is not in mixedCase
Variable SavePlanetEarth._contractFeesEnabled (SPE.sol#261) is not in mixedCase
Variable SavePlanetEarth._maxTxAmount (SPE.sol#270) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Reentrancy in SavePlanetEarth.withdrawalBNB(uint256,address) (SPE.sol#812-816):
External calls:
- address(to).transfer(_amount) (SPE.sol#814)
Event emitted after the call(s):
- WithdrawalBNB(_amount,to) (SPE.sol#815)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (SPE.sol#85) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (SPE.sol#86)
Variable SavePlanetEarth._transferToExcluded(address,address,uint256).rTransferAmount (SPE.sol#774) is too similar to SavePlanetEarth._transferStandard(address,address,uint256).tTransferAmount (SPE.sol#764)
Variable SavePlanetEarth._transferBothExcluded(address,address,uint256).rTransferAmount (SPE.sol#412) is too similar to SavePlanetEarth._transferStandard(address,address,uint256).tTransferAmount (SPE.sol#764)
Variable SavePlanetEarth._transferToExcluded(address,address,uint256).rTransferAmount (SPE.sol#774) is too similar to SavePlanetEarth._transferToExcluded(address,address,uint256).tTransferAmount (SPE.sol#774)
Variable SavePlanetEarth._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (SPE.sol#541) is too similar to SavePlanetEarth._transferStandard(address,address,uint256).tTransferAmount (SPE.sol#764)
Variable SavePlanetEarth._transferToExcluded(address,address,uint256).rTransferAmount (SPE.sol#774) is too similar to SavePlanetEarth._transferFromExcluded(address,address,uint256).tTransferAmount (SPE.sol#785)
Variable SavePlanetEarth._getValues(uint256).rTransferAmount (SPE.sol#524) is too similar to SavePlanetEarth._transferStandard(address,address,uint256).tTransferAmount (SPE.sol#764)
Variable SavePlanetEarth._transferBothExcluded(address,address,uint256).rTransferAmount (SPE.sol#412) is too similar to SavePlanetEarth._transferFromExcluded(address,address,uint256).tTransferAmount (SPE.sol#785)
Variable SavePlanetEarth._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (SPE.sol#541) is too similar to SavePlanetEarth._transferToExcluded(address,address,uint256).tTransferAmount (SPE.sol#774)
Variable SavePlanetEarth._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (SPE.sol#541) is too similar to SavePlanetEarth._transferFromExcluded(address,address,uint256).tTransferAmount (SPE.sol#785)
Variable SavePlanetEarth._getValues(uint256).rTransferAmount (SPE.sol#524) is too similar to SavePlanetEarth._transferFromExcluded(address,address,uint256).tTransferAmount (SPE.sol#785)
Variable SavePlanetEarth._transferBothExcluded(address,address,uint256).rTransferAmount (SPE.sol#412) is too similar to SavePlanetEarth._getTValues(uint256).tTransferAmount (SPE.sol#532)
Variable SavePlanetEarth._transferToExcluded(address,address,uint256).rTransferAmount (SPE.sol#774) is too similar to SavePlanetEarth._getTValues(uint256).tTransferAmount (SPE.sol#532)
Variable SavePlanetEarth._transferFromExcluded(address,address,uint256).rTransferAmount (SPE.sol#785) is too similar to SavePlanetEarth._transferStandard(address,address,uint256).tTransferAmount (SPE.sol#764)
Variable SavePlanetEarth._transferToExcluded(address,address,uint256).rTransferAmount (SPE.sol#774) is too similar to SavePlanetEarth._transferBothExcluded(address,address,uint256).tTransferAmount (SPE.sol#412)
Variable SavePlanetEarth._transferBothExcluded(address,address,uint256).rTransferAmount (SPE.sol#412) is too similar to SavePlanetEarth._transferBothExcluded(address,address,uint256).tTransferAmount (SPE.sol#412)
Variable SavePlanetEarth._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (SPE.sol#541) is too similar to SavePlanetEarth._getTValues(uint256).tTransferAmount (SPE.sol#532)
Variable SavePlanetEarth._getValues(uint256).rTransferAmount (SPE.sol#524) is too similar to SavePlanetEarth._getTValues(uint256).tTransferAmount (SPE.sol#532)
Variable SavePlanetEarth._transferFromExcluded(address,address,uint256).rTransferAmount (SPE.sol#785) is too similar to SavePlanetEarth._transferFromExcluded(address,address,uint256).tTransferAmount (SPE.sol#785)
Variable SavePlanetEarth._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (SPE.sol#541) is too similar to SavePlanetEarth._transferBothExcluded(address,address,uint256).tTransferAmount (SPE.sol#412)
Variable SavePlanetEarth._getValues(uint256).rTransferAmount (SPE.sol#524) is too similar to SavePlanetEarth._transferBothExcluded(address,address,uint256).tTransferAmount (SPE.sol#412)
Variable SavePlanetEarth._transferStandard(address,address,uint256).rTransferAmount (SPE.sol#764) is too similar to SavePlanetEarth._transferStandard(address,address,uint256).tTransferAmount (SPE.sol#764)
Variable SavePlanetEarth._transferToExcluded(address,address,uint256).rTransferAmount (SPE.sol#774) is too similar to SavePlanetEarth._getValues(uint256).tTransferAmount (SPE.sol#523)
Variable SavePlanetEarth._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (SPE.sol#541) is too similar to SavePlanetEarth._getValues(uint256).tTransferAmount (SPE.sol#523)
Variable SavePlanetEarth._transferStandard(address,address,uint256).rTransferAmount (SPE.sol#764) is too similar to SavePlanetEarth._transferFromExcluded(address,address,uint256).tTransferAmount (SPE.sol#785)
Variable SavePlanetEarth.reflectionFromToken(uint256,bool).rTransferAmount (SPE.sol#378) is too similar to SavePlanetEarth._transferFromExcluded(address,address,uint256).tTransferAmount (SPE.sol#785)
Variable SavePlanetEarth.reflectionFromToken(uint256,bool).rTransferAmount (SPE.sol#378) is too similar to SavePlanetEarth._transferStandard(address,address,uint256).tTransferAmount (SPE.sol#764)
Variable SavePlanetEarth._transferStandard(address,address,uint256).rTransferAmount (SPE.sol#764) is too similar to SavePlanetEarth._getValues(uint256).tTransferAmount (SPE.sol#523)
Variable SavePlanetEarth._transferStandard(address,address,uint256).rTransferAmount (SPE.sol#764) is too similar to SavePlanetEarth._transferBothExcluded(address,address,uint256).tTransferAmount (SPE.sol#412)
Variable SavePlanetEarth._transferStandard(address,address,uint256).rTransferAmount (SPE.sol#764) is too similar to SavePlanetEarth._transferToExcluded(address,address,uint256).tTransferAmount (SPE.sol#774)
Variable SavePlanetEarth._transferFromExcluded(address,address,uint256).rTransferAmount (SPE.sol#785) is too similar to SavePlanetEarth._getValues(uint256).tTransferAmount (SPE.sol#523)
Variable SavePlanetEarth.reflectionFromToken(uint256,bool).rTransferAmount (SPE.sol#378) is too similar to SavePlanetEarth._getValues(uint256).tTransferAmount (SPE.sol#523)
Variable SavePlanetEarth._transferFromExcluded(address,address,uint256).rTransferAmount (SPE.sol#785) is too similar to SavePlanetEarth._transferToExcluded(address,address,uint256).tTransferAmount (SPE.sol#774)
Variable SavePlanetEarth.reflectionFromToken(uint256,bool).rTransferAmount (SPE.sol#378) is too similar to SavePlanetEarth._transferToExcluded(address,address,uint256).tTransferAmount (SPE.sol#774)
Variable SavePlanetEarth._getValues(uint256).rTransferAmount (SPE.sol#524) is too similar to SavePlanetEarth._getValues(uint256).tTransferAmount (SPE.sol#523)
Variable SavePlanetEarth._transferFromExcluded(address,address,uint256).rTransferAmount (SPE.sol#785) is too similar to SavePlanetEarth._transferBothExcluded(address,address,uint256).tTransferAmount (SPE.sol#412)
Variable SavePlanetEarth.reflectionFromToken(uint256,bool).rTransferAmount (SPE.sol#378) is too similar to SavePlanetEarth._transferBothExcluded(address,address,uint256).tTransferAmount (SPE.sol#412)
Variable SavePlanetEarth._transferStandard(address,address,uint256).rTransferAmount (SPE.sol#764) is too similar to SavePlanetEarth._getTValues(uint256).tTransferAmount (SPE.sol#532)
Variable SavePlanetEarth._getValues(uint256).rTransferAmount (SPE.sol#524) is too similar to SavePlanetEarth._transferToExcluded(address,address,uint256).tTransferAmount (SPE.sol#774)
Variable SavePlanetEarth._transferFromExcluded(address,address,uint256).rTransferAmount (SPE.sol#785) is too similar to SavePlanetEarth._getTValues(uint256).tTransferAmount (SPE.sol#532)
Variable SavePlanetEarth._transferBothExcluded(address,address,uint256).rTransferAmount (SPE.sol#412) is too similar to SavePlanetEarth._getValues(uint256).tTransferAmount (SPE.sol#523)
Variable SavePlanetEarth.reflectionFromToken(uint256,bool).rTransferAmount (SPE.sol#378) is too similar to SavePlanetEarth._getTValues(uint256).tTransferAmount (SPE.sol#532)
Variable SavePlanetEarth._transferBothExcluded(address,address,uint256).rTransferAmount (SPE.sol#412) is too similar to SavePlanetEarth._transferToExcluded(address,address,uint256).tTransferAmount (SPE.sol#774)
Prevent variables from having similar names.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (Ownable.sol#53-55)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (Ownable.sol#61-64)
excludeFromReward(address) should be declared external:
- SavePlanetEarth.excludeFromReward(address) (SPE.sol#389-396)
Use the external attribute for functions never called from the contract.

Additional information: link

Address.isContract(address) (Address.sol#26-36) uses assembly
- INLINE ASM (Address.sol#32-34)
Address.verifyCallResult(bool,bytes,string) (Address.sol#195-215) uses assembly
- INLINE ASM (Address.sol#207-210)
Do not use evm assembly.

Additional information: link

Address.functionCall(address,bytes) (Address.sol#79-81) is never used and should be removed
Address.functionCall(address,bytes,string) (Address.sol#89-95) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (Address.sol#108-114) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (Address.sol#122-133) is never used and should be removed
Address.functionDelegateCall(address,bytes) (Address.sol#168-170) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (Address.sol#178-187) is never used and should be removed
Address.functionStaticCall(address,bytes) (Address.sol#141-143) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (Address.sol#151-160) is never used and should be removed
Address.sendValue(address,uint256) (Address.sol#54-59) is never used and should be removed
Address.verifyCallResult(bool,bytes,string) (Address.sol#195-215) is never used and should be removed
Context._msgData() (Context.sol#20-22) is never used and should be removed
SafeMath.div(uint256,uint256,string) (SafeMath.sol#190-199) is never used and should be removed
SafeMath.mod(uint256,uint256) (SafeMath.sol#150-152) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (SafeMath.sol#216-225) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (SafeMath.sol#21-27) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (SafeMath.sol#63-68) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (SafeMath.sol#75-80) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (SafeMath.sol#46-56) is never used and should be removed
SafeMath.trySub(uint256,uint256) (SafeMath.sol#34-39) is never used and should be removed
Remove unused functions.

Additional information: link

Low level call in Address.sendValue(address,uint256) (Address.sol#54-59):
- (success) = recipient.call{value: amount}() (Address.sol#57)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (Address.sol#122-133):
- (success,returndata) = target.call{value: value}(data) (Address.sol#131)
Low level call in Address.functionStaticCall(address,bytes,string) (Address.sol#151-160):
- (success,returndata) = target.staticcall(data) (Address.sol#158)
Low level call in Address.functionDelegateCall(address,bytes,string) (Address.sol#178-187):
- (success,returndata) = target.delegatecall(data) (Address.sol#185)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Holders:


Token is deployed only at one blockchain


Unable to find PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute number of swaps.


Last post in Twitter was more than 30 days ago


Unable to find Telegram link on the website


Unable to find Twitter link on the website


Unable to find token on CoinHunt

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


Token has relatively low CoinGecko rank

Price for SPE

News for SPE