SUBX FINANCE LAB Token Logo

SFX [SUBX FINANCE LAB] Token

About SFX

Listings

Token 2 years
CoinMarketCap 2 years
white paper

SUBX FINANCE LAB is a blockchain-as-a-service provider for businesses to integrate web3 technologies into their products and services.

Laser Scorebeta Last Audit: 18 February 2022

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

Anti-Scam

Links


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

MintableTeamToken.constructor(string,string,uint8,uint256,address,address).name (MintableTeamToken.sol#12) shadows:
- ERC20.name() (ERC20.sol#65-67) (function)
MintableTeamToken.constructor(string,string,uint8,uint256,address,address).symbol (MintableTeamToken.sol#13) shadows:
- ERC20.symbol() (ERC20.sol#73-75) (function)
MintableTeamToken.constructor(string,string,uint8,uint256,address,address).decimals (MintableTeamToken.sol#14) shadows:
- ERC20.decimals() (ERC20.sol#90-92) (function)
MintableTeamToken.constructor(string,string,uint8,uint256,address,address).owner (MintableTeamToken.sol#16) shadows:
- Ownable.owner() (Ownable.sol#36-38) (function)
TeamToken.constructor(string,string,uint8,uint256,address,address).name (TeamToken.sol#19) shadows:
- ERC20.name() (ERC20.sol#65-67) (function)
TeamToken.constructor(string,string,uint8,uint256,address,address).symbol (TeamToken.sol#20) shadows:
- ERC20.symbol() (ERC20.sol#73-75) (function)
TeamToken.constructor(string,string,uint8,uint256,address,address).decimals (TeamToken.sol#21) shadows:
- ERC20.decimals() (ERC20.sol#90-92) (function)
Rename the local variables that shadow another component.

Additional information: link

Different versions of Solidity is used:
- Version used: ['>=0.6.0<0.8.0', '>=0.6.2<0.8.0']
- >=0.6.0<0.8.0 (Context.sol#3)
- >=0.6.0<0.8.0 (ERC20.sol#4)
- >=0.6.0<0.8.0 (IERC20.sol#3)
- >=0.6.2<0.8.0 (MintableTeamToken.sol#3)
- >=0.6.0<0.8.0 (Ownable.sol#4)
- >=0.6.0<0.8.0 (SafeMath.sol#3)
- >=0.6.2<0.8.0 (TeamToken.sol#3)
Use one Solidity version.

Additional information: link

Context._msgData() (Context.sol#20-23) is never used and should be removed
ERC20._burn(address,uint256) (ERC20.sol#250-258) is never used and should be removed
SafeMath.div(uint256,uint256) (SafeMath.sol#135-138) is never used and should be removed
SafeMath.div(uint256,uint256,string) (SafeMath.sol#190-193) is never used and should be removed
SafeMath.mod(uint256,uint256) (SafeMath.sol#152-155) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (SafeMath.sol#210-213) is never used and should be removed
SafeMath.mul(uint256,uint256) (SafeMath.sol#116-121) is never used and should be removed
SafeMath.sub(uint256,uint256) (SafeMath.sol#101-104) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (SafeMath.sol#24-28) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (SafeMath.sol#60-63) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (SafeMath.sol#70-73) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (SafeMath.sol#45-53) is never used and should be removed
SafeMath.trySub(uint256,uint256) (SafeMath.sol#35-38) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version>=0.6.0<0.8.0 (Context.sol#3) is too complex
Pragma version>=0.6.0<0.8.0 (ERC20.sol#4) is too complex
Pragma version>=0.6.0<0.8.0 (IERC20.sol#3) is too complex
Pragma version>=0.6.2<0.8.0 (MintableTeamToken.sol#3) is too complex
Pragma version>=0.6.0<0.8.0 (Ownable.sol#4) is too complex
Pragma version>=0.6.0<0.8.0 (SafeMath.sol#3) is too complex
Pragma version>=0.6.2<0.8.0 (TeamToken.sol#3) is too complex
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

Redundant expression "this (Context.sol#21)" inContext (Context.sol#15-25)
Remove redundant statements if they congest code but offer no value.

Additional information: link

name() should be declared external:
- ERC20.name() (ERC20.sol#65-67)
symbol() should be declared external:
- ERC20.symbol() (ERC20.sol#73-75)
decimals() should be declared external:
- ERC20.decimals() (ERC20.sol#90-92)
totalSupply() should be declared external:
- ERC20.totalSupply() (ERC20.sol#97-99)
balanceOf(address) should be declared external:
- ERC20.balanceOf(address) (ERC20.sol#104-106)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (ERC20.sol#116-119)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (ERC20.sol#124-126)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (ERC20.sol#135-138)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (ERC20.sol#153-157)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (ERC20.sol#171-174)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (ERC20.sol#190-193)
mint(address,uint256) should be declared external:
- MintableTeamToken.mint(address,uint256) (MintableTeamToken.sol#25-27)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (Ownable.sol#55-58)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (Ownable.sol#64-68)
Use the external attribute for functions never called from the contract.

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 token contract audit


Unable to find audit 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


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death

Price for SFX

News for SFX