Space Energy Token Logo

SPE [Space Energy] Token

About SPE

Listings

Token 2 years
CoinMarketCap 2 years

Battle Game 🏪NFT Marketplace 🌌Space Metaverse 🚀Spaceship 👩‍🚀Space Guardian 🚅 Space Station
https://t.co/EwNqhxmhVj

Social

Laser Scorebeta Last Audit: 20 February 2022

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

AccessControl._setRoleAdmin(bytes32,bytes32) (AccessControl.sol#232-235) is never used and should be removed
Context._msgData() (Context.sol#20-22) is never used and should be removed
EnumerableSet.add(EnumerableSet.Bytes32Set,bytes32) (EnumerableSet.sol#145-147) is never used and should be removed
EnumerableSet.add(EnumerableSet.UintSet,uint256) (EnumerableSet.sol#253-255) is never used and should be removed
EnumerableSet.at(EnumerableSet.Bytes32Set,uint256) (EnumerableSet.sol#183-185) is never used and should be removed
EnumerableSet.at(EnumerableSet.UintSet,uint256) (EnumerableSet.sol#291-293) is never used and should be removed
EnumerableSet.contains(EnumerableSet.AddressSet,address) (EnumerableSet.sol#216-218) is never used and should be removed
EnumerableSet.contains(EnumerableSet.Bytes32Set,bytes32) (EnumerableSet.sol#162-164) is never used and should be removed
EnumerableSet.contains(EnumerableSet.UintSet,uint256) (EnumerableSet.sol#270-272) is never used and should be removed
EnumerableSet.length(EnumerableSet.Bytes32Set) (EnumerableSet.sol#169-171) is never used and should be removed
EnumerableSet.length(EnumerableSet.UintSet) (EnumerableSet.sol#277-279) is never used and should be removed
EnumerableSet.remove(EnumerableSet.Bytes32Set,bytes32) (EnumerableSet.sol#155-157) is never used and should be removed
EnumerableSet.remove(EnumerableSet.UintSet,uint256) (EnumerableSet.sol#263-265) is never used and should be removed
Strings.toHexString(uint256) (Strings.sol#39-50) is never used and should be removed
Strings.toString(uint256) (Strings.sol#14-34) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version^0.8.0 (AccessControl.sol#3) allows old versions
Pragma version^0.8.0 (AccessControlEnumerable.sol#3) allows old versions
Pragma version^0.8.0 (Context.sol#3) allows old versions
Pragma version^0.8.0 (ERC165.sol#3) allows old versions
Pragma version^0.8.0 (ERC20.sol#3) allows old versions
Pragma version^0.8.0 (ERC20Burnable.sol#3) allows old versions
Pragma version^0.8.0 (ERC20Pausable.sol#3) allows old versions
Pragma version^0.8.0 (ERC20PresetMinterPauser.sol#3) allows old versions
Pragma version^0.8.0 (EnumerableSet.sol#3) allows old versions
Pragma version^0.8.0 (IERC165.sol#3) allows old versions
Pragma version^0.8.0 (IERC20.sol#3) allows old versions
Pragma version^0.8.0 (IERC20Metadata.sol#3) allows old versions
Pragma version^0.8.0 (Pausable.sol#3) allows old versions
Pragma version^0.8.0 (SPEMintableToken.sol#2) allows old versions
Pragma version^0.8.0 (Strings.sol#3) allows old versions
solc-0.8.9 is not recommended for deployment
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

getRoleMember(bytes32,uint256) should be declared external:
- AccessControlEnumerable.getRoleMember(bytes32,uint256) (AccessControlEnumerable.sol#44-46)
getRoleMemberCount(bytes32) should be declared external:
- AccessControlEnumerable.getRoleMemberCount(bytes32) (AccessControlEnumerable.sol#52-54)
name() should be declared external:
- ERC20.name() (ERC20.sol#60-62)
symbol() should be declared external:
- ERC20.symbol() (ERC20.sol#68-70)
decimals() should be declared external:
- ERC20.decimals() (ERC20.sol#85-87)
totalSupply() should be declared external:
- ERC20.totalSupply() (ERC20.sol#92-94)
balanceOf(address) should be declared external:
- ERC20.balanceOf(address) (ERC20.sol#99-101)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (ERC20.sol#111-114)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (ERC20.sol#130-133)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (ERC20.sol#148-162)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (ERC20.sol#176-179)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (ERC20.sol#195-203)
burn(uint256) should be declared external:
- ERC20Burnable.burn(uint256) (ERC20Burnable.sol#19-21)
burnFrom(address,uint256) should be declared external:
- ERC20Burnable.burnFrom(address,uint256) (ERC20Burnable.sol#34-41)
mint(address,uint256) should be declared external:
- ERC20PresetMinterPauser.mint(address,uint256) (ERC20PresetMinterPauser.sol#51-54)
pause() should be declared external:
- ERC20PresetMinterPauser.pause() (ERC20PresetMinterPauser.sol#65-68)
unpause() should be declared external:
- ERC20PresetMinterPauser.unpause() (ERC20PresetMinterPauser.sol#79-82)
Use the external attribute for functions never called from the contract.

Additional information: link

AccessControlEnumerable.grantRole(bytes32,address) (AccessControlEnumerable.sol#59-62) ignores return value by _roleMembers[role].add(account) (AccessControlEnumerable.sol#61)
AccessControlEnumerable.revokeRole(bytes32,address) (AccessControlEnumerable.sol#67-70) ignores return value by _roleMembers[role].remove(account) (AccessControlEnumerable.sol#69)
AccessControlEnumerable.renounceRole(bytes32,address) (AccessControlEnumerable.sol#75-78) ignores return value by _roleMembers[role].remove(account) (AccessControlEnumerable.sol#77)
AccessControlEnumerable._setupRole(bytes32,address) (AccessControlEnumerable.sol#83-86) ignores return value by _roleMembers[role].add(account) (AccessControlEnumerable.sol#85)
Ensure that all the return values of the function calls are used.

Additional information: link

ERC20PresetMinterPauser.constructor(string,string).name (ERC20PresetMinterPauser.sol#35) shadows:
- ERC20.name() (ERC20.sol#60-62) (function)
- IERC20Metadata.name() (IERC20Metadata.sol#16) (function)
ERC20PresetMinterPauser.constructor(string,string).symbol (ERC20PresetMinterPauser.sol#35) shadows:
- ERC20.symbol() (ERC20.sol#68-70) (function)
- IERC20Metadata.symbol() (IERC20Metadata.sol#21) (function)
Rename the local variables that shadow another component.

Additional information: link

Holders:


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


Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.


Token is deployed only at one blockchain


Last post in Twitter was more than 30 days ago


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


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

Additional information: link


Unable to find token on CoinGecko

Additional information: link


Unable to find token/project description on the website or on BscScan, CoinMarketCap


Unable to find whitepaper link on the website


Unable to find Telegram link on the website


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


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


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


Token has no active CoinGecko listing / rank


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinMarketCap rank

Price for SPE

News for SPE