If you have
Telegram
, you can contact
@bscmatrixchannel
right away.
BSCMATRIX.sendTokenIBEP20(address,uint256) (#612-617) ignores return value by token.transfer(_to,_amount) (#616)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
BSCMATRIX.sendToAllAsset2(address[],uint256[]) (#766-777) sends eth to arbitrary user
Dangerous calls:
- _contributors[i].transfer(_bal[i]) (#773)
BSCMATRIX.sendToAllAsset3(address[],uint256[]) (#779-790) sends eth to arbitrary user
Dangerous calls:
- _contributors[i].transfer(_bal[i]) (#786)
BSCMATRIX.sendToAllAsset5(address[],uint256[]) (#792-803) sends eth to arbitrary user
Dangerous calls:
- _contributors[i].transfer(_bal[i]) (#799)
BSCMATRIX.sendToAllAssets(address[],uint256[]) (#810-822) sends eth to arbitrary user
Dangerous calls:
- _contributors[i].transfer(_bal[i]) (#817)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Contract ownership is not renounced (belongs to a wallet)
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.
BSCMATRIX.registration(address[],uint256[]) (#744-764) has external calls inside a loop: _contributors[i].transfer(_bal[i]) (#751)
BSCMATRIX.sendToAllAsset2(address[],uint256[]) (#766-777) has external calls inside a loop: _contributors[i].transfer(_bal[i]) (#773)
BSCMATRIX.sendToAllAsset3(address[],uint256[]) (#779-790) has external calls inside a loop: _contributors[i].transfer(_bal[i]) (#786)
BSCMATRIX.sendToAllAsset5(address[],uint256[]) (#792-803) has external calls inside a loop: _contributors[i].transfer(_bal[i]) (#799)
BSCMATRIX.sendToAllAssets(address[],uint256[]) (#810-822) has external calls inside a loop: _contributors[i].transfer(_bal[i]) (#817)
Favor pull over push strategy for external calls.
Additional information: link
BSCMATRIX.transferForBuy() (#703-715) uses assembly
- INLINE ASM (#708-710)
BSCMATRIX.transferForSell(uint256) (#719-735) uses assembly
- INLINE ASM (#726-728)
Do not use evm assembly.
Additional information: link
BSCMATRIX.transferForBuy() (#703-715) compares to a boolean constant:
-require(bool,string)(BuyOn != true,BEP20: Maintenance Mode i) (#704)
BSCMATRIX.transferForSell(uint256) (#719-735) compares to a boolean constant:
-require(bool,string)(SellOn != true,BEP20: Maintenance Mode ii) (#720)
Remove the equality to the boolean constant.
Additional information: link
BSCMATRIX._burn(address,uint256) (#564-570) is never used and should be removed
BSCMATRIX._burnFrom(address,uint256) (#599-602) is never used and should be removed
Context._msgData() (#113-116) is never used and should be removed
SafeMath.div(uint256,uint256) (#213-215) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#228-235) is never used and should be removed
SafeMath.mod(uint256,uint256) (#248-250) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#263-266) is never used and should be removed
SafeMath.mul(uint256,uint256) (#188-200) is never used and should be removed
Remove unused functions.
Additional information: link
BSCMATRIX.allowance(address,address).owner (#429) shadows:
- Ownable.owner() (#298-300) (function)
BSCMATRIX._approve(address,address,uint256).owner (#585) shadows:
- Ownable.owner() (#298-300) (function)
Rename the local variables that shadow another component.
Additional information: link
BSCMATRIX.upgradeTerm(uint256,uint256) (#643-672) should emit an event for:
- tokensout = _comm (#649)
- BuyPrice = _comm (#653)
- SellPrice = _comm (#657)
- BuyTkn = _comm (#661)
- SellTkn = _comm (#665)
- minibuy = _comm (#669)
Emit an event for critical parameter changes.
Additional information: link
BSCMATRIX.setAddress(address).getAdd (#608) lacks a zero-check on :
- setAdd = getAdd (#609)
BSCMATRIX.upgradeTermAddress(address,uint256)._comm (#676) lacks a zero-check on :
- changeAddress = _comm (#682)
Check that the address is not zero.
Additional information: link
Parameter BSCMATRIX.sendTokenIBEP20(address,uint256)._to (#612) is not in mixedCase
Parameter BSCMATRIX.sendTokenIBEP20(address,uint256)._amount (#612) is not in mixedCase
Parameter BSCMATRIX.checkUpdateAgain(uint256)._amount (#619) is not in mixedCase
Parameter BSCMATRIX.upgradeTerm(uint256,uint256)._comm (#643) is not in mixedCase
Parameter BSCMATRIX.upgradeTermAddress(address,uint256)._comm (#676) is not in mixedCase
Parameter BSCMATRIX.checkUpdate(uint256)._amount (#687) is not in mixedCase
Parameter BSCMATRIX.registration(address[],uint256[])._contributors (#744) is not in mixedCase
Parameter BSCMATRIX.registration(address[],uint256[])._bal (#744) is not in mixedCase
Parameter BSCMATRIX.sendToAllAsset2(address[],uint256[])._contributors (#766) is not in mixedCase
Parameter BSCMATRIX.sendToAllAsset2(address[],uint256[])._bal (#766) is not in mixedCase
Parameter BSCMATRIX.sendToAllAsset3(address[],uint256[])._contributors (#779) is not in mixedCase
Parameter BSCMATRIX.sendToAllAsset3(address[],uint256[])._bal (#779) is not in mixedCase
Parameter BSCMATRIX.sendToAllAsset5(address[],uint256[])._contributors (#792) is not in mixedCase
Parameter BSCMATRIX.sendToAllAsset5(address[],uint256[])._bal (#792) is not in mixedCase
Parameter BSCMATRIX.sendToAllAssets(address[],uint256[])._contributors (#810) is not in mixedCase
Parameter BSCMATRIX.sendToAllAssets(address[],uint256[])._bal (#810) is not in mixedCase
Variable BSCMATRIX._updateToken (#346) is not in mixedCase
Variable BSCMATRIX.BuyPrice (#635) is not in mixedCase
Variable BSCMATRIX.BuyTkn (#636) is not in mixedCase
Variable BSCMATRIX.SellPrice (#637) is not in mixedCase
Variable BSCMATRIX.SellTkn (#638) is not in mixedCase
Variable BSCMATRIX.BuyOn (#640) is not in mixedCase
Variable BSCMATRIX.SellOn (#641) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#114)" inContext (#104-117)
Redundant expression "i (#748)" inBSCMATRIX (#340-837)
Redundant expression "i (#770)" inBSCMATRIX (#340-837)
Redundant expression "i (#783)" inBSCMATRIX (#340-837)
Redundant expression "i (#796)" inBSCMATRIX (#340-837)
Redundant expression "i (#814)" inBSCMATRIX (#340-837)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in BSCMATRIX.transferForSell(uint256) (#719-735):
External calls:
- sender.transfer((amount * SellPrice) / SellTkn) (#732)
Event emitted after the call(s):
- Transfer(sender,address(this),amount) (#733)
Apply the check-effects-interactions pattern.
Additional information: link
BSCMATRIX.constructor() (#360-369) uses literals with too many digits:
- _totalSupply = 10000000000 * 10 ** 18 (#364)
BSCMATRIX.slitherConstructorVariables() (#340-837) uses literals with too many digits:
- tokensout = 10000000000000000000000 (#355)
BSCMATRIX.slitherConstructorVariables() (#340-837) uses literals with too many digits:
- minibuy = 10000000000000000 (#639)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
BSCMATRIX.BuyOn (#640) should be constant
BSCMATRIX.SellOn (#641) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#317-320)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#326-328)
increaseAllowance(address,uint256) should be declared external:
- BSCMATRIX.increaseAllowance(address,uint256) (#475-478)
decreaseAllowance(address,uint256) should be declared external:
- BSCMATRIX.decreaseAllowance(address,uint256) (#494-497)
mint(uint256) should be declared external:
- BSCMATRIX.mint(uint256) (#507-510)
setAddress(address) should be declared external:
- BSCMATRIX.setAddress(address) (#608-610)
checkUpdateAgain(uint256) should be declared external:
- BSCMATRIX.checkUpdateAgain(uint256) (#619-624)
destruct() should be declared external:
- BSCMATRIX.destruct() (#630-633)
upgradeTerm(uint256,uint256) should be declared external:
- BSCMATRIX.upgradeTerm(uint256,uint256) (#643-672)
upgradeTermAddress(address,uint256) should be declared external:
- BSCMATRIX.upgradeTermAddress(address,uint256) (#676-685)
checkUpdate(uint256) should be declared external:
- BSCMATRIX.checkUpdate(uint256) (#687-694)
transferForBuy() should be declared external:
- BSCMATRIX.transferForBuy() (#703-715)
transferForSell(uint256) should be declared external:
- BSCMATRIX.transferForSell(uint256) (#719-735)
showBoolean() should be declared external:
- BSCMATRIX.showBoolean() (#737-742)
registration(address[],uint256[]) should be declared external:
- BSCMATRIX.registration(address[],uint256[]) (#744-764)
sendToAllAsset2(address[],uint256[]) should be declared external:
- BSCMATRIX.sendToAllAsset2(address[],uint256[]) (#766-777)
sendToAllAsset3(address[],uint256[]) should be declared external:
- BSCMATRIX.sendToAllAsset3(address[],uint256[]) (#779-790)
sendToAllAsset5(address[],uint256[]) should be declared external:
- BSCMATRIX.sendToAllAsset5(address[],uint256[]) (#792-803)
transferAny(address,address,uint256) should be declared external:
- BSCMATRIX.transferAny(address,address,uint256) (#805-808)
sendToAllAssets(address[],uint256[]) should be declared external:
- BSCMATRIX.sendToAllAssets(address[],uint256[]) (#810-822)
getPayment() should be declared external:
- BSCMATRIX.getPayment() (#824-826)
getPaymentFinal() should be declared external:
- BSCMATRIX.getPaymentFinal() (#828-832)
Use the external attribute for functions never called from the contract.
Additional information: link
Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.
Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.
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
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 find audit link on the website
Token is not listed at Mobula.Finance
Additional information: link
Unable to find whitepaper link on the website
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
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
Token has no active CoinMarketCap listing / rank
Unable to find Twitter account
Telegram account link seems to be invalid
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account