SHELBY Token Token Logo

SBY [SHELBY] Token

About SBY

Listings

Token 2 years
white paper

Shelby Token is a proof-of-stake blockchain platform for reference utility crypto-currency used for the world of arcade games and entertainment fans.

The goal of the Shelby Token is to be a reference utility crypto-currency used for the world of arcade games and entertainment fans.

The objective is to create value using the smart contracts for all investors in this decentralized economy which is exponentially growing.

Our ambition is to set-up our new crypto-currency available on as many smart contract powered platform worldwide, starting obviously with gambling.

Social

Laser Scorebeta Last Audit: 30 November 2021

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

TOKEN.addLiquidity(uint256,uint256) (#1821-1836) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#1827-1834)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in DividendPayingToken._withdrawDividendOfUser(address) (#1323-1339):
External calls:
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#1328)
State variables written after the call(s):
- withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend) (#1331)
Apply the check-effects-interactions pattern.

Additional information: link


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains


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.

TOKEN.totalFees (#1443) is set pre-construction with a non-constant function or state variable:
- rewardsFee + liquidityFee + marketingFee
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.

Additional information: link

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

Low level call in TOKEN.swapAndSendDividends(uint256) (#1838-1851):
- (success) = address(dividendTracker).call{value: dividends}() (#1845)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Parameter TOKENDividendTracker.getAccount(address)._account (#1914) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (#1324) is too similar to TOKENDividendTracker.getAccount(address).withdrawableDividends (#1919)
Prevent variables from having similar names.

Additional information: link

TOKENDividendTracker.getAccountAtIndex(uint256) (#1959-1976) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (#1970)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (#369) is never used in SafeMathInt (#367-425)
Remove unused state variables.

Additional information: link

TOKEN.swapTokensAtAmount (#1436) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

Reentrancy in TOKEN.updateDividendTracker(address) (#1533-1548):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1540)
- newDividendTracker.excludeFromDividends(address(this)) (#1541)
- newDividendTracker.excludeFromDividends(owner()) (#1542)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#1543)
State variables written after the call(s):
- dividendTracker = newDividendTracker (#1547)
Apply the check-effects-interactions pattern.

Additional information: link

TOKEN._transfer(address,address,uint256).iterations (#1767) is a local variable never initialized
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.

Additional information: link

TOKEN.addLiquidity(uint256,uint256) (#1821-1836) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#1827-1834)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendPayingToken.constructor(string,string)._symbol (#1280) shadows:
- ERC20._symbol (#928) (state variable)
Rename the local variables that shadow another component.

Additional information: link

TOKEN.setMarketingFee(uint8) (#1588-1592) should emit an event for:
- marketingFee = value (#1589)
- totalFees = rewardsFee + liquidityFee + marketingFee (#1590)
Emit an event for critical parameter changes.

Additional information: link

TOKEN.setMarketingWallet(address).wallet (#1574) lacks a zero-check on :
- _marketingWalletAddress = wallet (#1575)
Check that the address is not zero.

Additional information: link

Variable 'TOKEN._transfer(address,address,uint256).lastProcessedIndex (#1767)' in TOKEN._transfer(address,address,uint256) (#1696-1774) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1768)
Move all variable declarations prior to any usage of the variable, and ensure that reaching a variable declaration does not depend on some conditional if it is used unconditionally.

Additional information: link

Reentrancy in TOKEN.updateUniswapV2Router(address) (#1550-1557):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#1554-1555)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#1556)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in TOKEN.updateDividendTracker(address) (#1533-1548):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1540)
- newDividendTracker.excludeFromDividends(address(this)) (#1541)
- newDividendTracker.excludeFromDividends(owner()) (#1542)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#1543)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (#1545)
Apply the check-effects-interactions pattern.

Additional information: link

TOKENDividendTracker.canAutoClaim(uint256) (#1978-1984) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (#1979)
- block.timestamp.sub(lastClaimTime) >= claimWait (#1983)
Avoid relying on block.timestamp.

Additional information: link

Different versions of Solidity is used:
- Version used: ['>=0.5.0', '>=0.6.2', '^0.8.0', '^0.8.4', '^0.8.9']
- >=0.6.2 (#4)
- >=0.6.2 (#102)
- >=0.5.0 (#148)
- >=0.5.0 (#168)
- ^0.8.4 (#224)
- ^0.8.4 (#289)
- ^0.8.4 (#317)
- ^0.8.4 (#361)
- ^0.8.4 (#431)
- ^0.8.0 (#449)
- ^0.8.0 (#679)
- ^0.8.0 (#705)
- ^0.8.0 (#778)
- ^0.8.0 (#862)
- ^0.8.0 (#891)
- ^0.8.4 (#1245)
- ^0.8.9 (#1422)
Use one Solidity version.

Additional information: link

SafeMathInt.mul(int256,int256) (#374-381) is never used and should be removed
Remove unused functions.

Additional information: link

process(uint256) should be declared external:
- TOKENDividendTracker.process(uint256) (#2003-2048)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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


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.


Twitter account link seems to be invalid


Unable to find Blog account (Reddit or Medium)


Unable to find Discord account


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

Additional information: link


Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap

Additional information: link


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


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 scam / price dump / death


Token has no active CoinMarketCap listing / rank


Token has relatively low CoinGecko rank

Price for SBY