sXTM Token Logo

sXTM Token

About sXTM

Listings

Not Found
Token 2 years

Website

white paper

Founded by a grassroot movement, Torum is a SocialFi ecosystem (Social + NFT + DeFi + Metaverse) that is specially designed to connect cryptocurrency users.

Laser Scorebeta Last Audit: 24 April 2022

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

Anti-Scam

Links


Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)

sXTM.enter(uint256) (contracts/sXTM.sol#48-59) ignores return value by xtm.transferFrom(msg.sender,address(this),_amount) (contracts/sXTM.sol#55)
sXTM.leave(uint256) (contracts/sXTM.sol#62-73) ignores return value by xtm.transfer(msg.sender,_amount) (contracts/sXTM.sol#72)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link

Contract sXTM (contracts/sXTM.sol#12-104) is not in CapWords
Parameter sXTM.mint(address,uint256)._to (contracts/sXTM.sol#35) is not in mixedCase
Parameter sXTM.mint(address,uint256)._amount (contracts/sXTM.sol#35) is not in mixedCase
Parameter sXTM.setAdminControls(bool,bool)._isEnterEnabled (contracts/sXTM.sol#41) is not in mixedCase
Parameter sXTM.setAdminControls(bool,bool)._isLeaveEnabled (contracts/sXTM.sol#41) is not in mixedCase
Parameter sXTM.enter(uint256)._amount (contracts/sXTM.sol#48) is not in mixedCase
Parameter sXTM.leave(uint256)._amount (contracts/sXTM.sol#62) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

grantRole(bytes32,address) should be declared external:
- AccessControl.grantRole(bytes32,address) (@openzeppelin/contracts/access/AccessControl.sol#129-131)
revokeRole(bytes32,address) should be declared external:
- AccessControl.revokeRole(bytes32,address) (@openzeppelin/contracts/access/AccessControl.sol#142-144)
renounceRole(bytes32,address) should be declared external:
- AccessControl.renounceRole(bytes32,address) (@openzeppelin/contracts/access/AccessControl.sol#160-164)
name() should be declared external:
- ERC20.name() (@openzeppelin/contracts/token/ERC20/ERC20.sol#61-63)
symbol() should be declared external:
- ERC20.symbol() (@openzeppelin/contracts/token/ERC20/ERC20.sol#69-71)
decimals() should be declared external:
- ERC20.decimals() (@openzeppelin/contracts/token/ERC20/ERC20.sol#86-88)
totalSupply() should be declared external:
- ERC20.totalSupply() (@openzeppelin/contracts/token/ERC20/ERC20.sol#93-95)
balanceOf(address) should be declared external:
- ERC20.balanceOf(address) (@openzeppelin/contracts/token/ERC20/ERC20.sol#100-102)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (@openzeppelin/contracts/token/ERC20/ERC20.sol#112-115)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (@openzeppelin/contracts/token/ERC20/ERC20.sol#120-122)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (@openzeppelin/contracts/token/ERC20/ERC20.sol#131-134)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (@openzeppelin/contracts/token/ERC20/ERC20.sol#149-163)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (@openzeppelin/contracts/token/ERC20/ERC20.sol#177-180)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (@openzeppelin/contracts/token/ERC20/ERC20.sol#196-204)
mint(address,uint256) should be declared external:
- sXTM.mint(address,uint256) (contracts/sXTM.sol#35-39)
setAdminControls(bool,bool) should be declared external:
- sXTM.setAdminControls(bool,bool) (contracts/sXTM.sol#41-45)
enter(uint256) should be declared external:
- sXTM.enter(uint256) (contracts/sXTM.sol#48-59)
leave(uint256) should be declared external:
- sXTM.leave(uint256) (contracts/sXTM.sol#62-73)
pause() should be declared external:
- sXTM.pause() (contracts/sXTM.sol#82-88)
unpause() should be declared external:
- sXTM.unpause() (contracts/sXTM.sol#97-103)
Use the external attribute for functions never called from the contract.

Additional information: link

Reentrancy in sXTM.enter(uint256) (contracts/sXTM.sol#48-59):
External calls:
- xtm.transferFrom(msg.sender,address(this),_amount) (contracts/sXTM.sol#55)
State variables written after the call(s):
- _mint(msg.sender,_amount) (contracts/sXTM.sol#58)
- _balances[account] += amount (@openzeppelin/contracts/token/ERC20/ERC20.sol#257)
- _mint(msg.sender,_amount) (contracts/sXTM.sol#58)
- _totalSupply += amount (@openzeppelin/contracts/token/ERC20/ERC20.sol#256)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in sXTM.enter(uint256) (contracts/sXTM.sol#48-59):
External calls:
- xtm.transferFrom(msg.sender,address(this),_amount) (contracts/sXTM.sol#55)
Event emitted after the call(s):
- Transfer(address(0),account,amount) (@openzeppelin/contracts/token/ERC20/ERC20.sol#258)
- _mint(msg.sender,_amount) (contracts/sXTM.sol#58)
Apply the check-effects-interactions pattern.

Additional information: link

AccessControl._setRoleAdmin(bytes32,bytes32) (@openzeppelin/contracts/access/AccessControl.sol#191-195) is never used and should be removed
Context._msgData() (@openzeppelin/contracts/utils/Context.sol#20-22) is never used and should be removed
SafeMath.add(uint256,uint256) (@openzeppelin/contracts/utils/math/SafeMath.sol#92-94) is never used and should be removed
SafeMath.div(uint256,uint256) (@openzeppelin/contracts/utils/math/SafeMath.sol#134-136) is never used and should be removed
SafeMath.div(uint256,uint256,string) (@openzeppelin/contracts/utils/math/SafeMath.sol#190-199) is never used and should be removed
SafeMath.mod(uint256,uint256) (@openzeppelin/contracts/utils/math/SafeMath.sol#150-152) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (@openzeppelin/contracts/utils/math/SafeMath.sol#216-225) is never used and should be removed
SafeMath.mul(uint256,uint256) (@openzeppelin/contracts/utils/math/SafeMath.sol#120-122) is never used and should be removed
SafeMath.sub(uint256,uint256) (@openzeppelin/contracts/utils/math/SafeMath.sol#106-108) is never used and should be removed
SafeMath.sub(uint256,uint256,string) (@openzeppelin/contracts/utils/math/SafeMath.sol#167-176) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (@openzeppelin/contracts/utils/math/SafeMath.sol#21-27) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (@openzeppelin/contracts/utils/math/SafeMath.sol#63-68) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (@openzeppelin/contracts/utils/math/SafeMath.sol#75-80) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (@openzeppelin/contracts/utils/math/SafeMath.sol#46-56) is never used and should be removed
SafeMath.trySub(uint256,uint256) (@openzeppelin/contracts/utils/math/SafeMath.sol#34-39) is never used and should be removed
Strings.toHexString(uint256) (@openzeppelin/contracts/utils/Strings.sol#39-50) is never used and should be removed
Strings.toString(uint256) (@openzeppelin/contracts/utils/Strings.sol#14-34) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version^0.8.0 (@openzeppelin/contracts/access/AccessControl.sol#3) allows old versions
Pragma version^0.8.0 (@openzeppelin/contracts/access/IAccessControl.sol#3) allows old versions
Pragma version^0.8.0 (@openzeppelin/contracts/security/Pausable.sol#3) allows old versions
Pragma version^0.8.0 (@openzeppelin/contracts/token/ERC20/ERC20.sol#3) allows old versions
Pragma version^0.8.0 (@openzeppelin/contracts/token/ERC20/IERC20.sol#3) allows old versions
Pragma version^0.8.0 (@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol#3) allows old versions
Pragma version^0.8.0 (@openzeppelin/contracts/utils/Context.sol#3) allows old versions
Pragma version^0.8.0 (@openzeppelin/contracts/utils/Strings.sol#3) allows old versions
Pragma version^0.8.0 (@openzeppelin/contracts/utils/introspection/ERC165.sol#3) allows old versions
Pragma version^0.8.0 (@openzeppelin/contracts/utils/introspection/IERC165.sol#3) allows old versions
Pragma version^0.8.0 (@openzeppelin/contracts/utils/math/SafeMath.sol#3) allows old versions
Pragma version^0.8.0 (contracts/sXTM.sol#3) allows old versions
solc-0.8.0 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

Holders:


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


Number of Binance Smart Chain (BSC) token holders is low.


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute volume.


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


Unable to find 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 on CoinMarketCap

Additional information: link


Unable to find token contract audit


Unable to verify that token and website are owned by the same team (no listings + unable to find contract on website)


Unable to verify token contract address on the website


Unable to find audit link on the website


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death

Price for sXTM

News for sXTM