ShibaJunior Token Logo

SHIBJR [ShibaJunior] Token

About SHIBJR

Listings

Not Found
Token 2 years

Website

SHIBA JUNIOR (ShibJr) is a deflationary meme token with 5% holder rewards and 2% charity fee. SHIBA JUNIOR´s mission is to support animals in need with food and other important products.
Trade Crypto, hold & earn tokens while doing good things this is Shiba Junior.

Social

Laser Scorebeta Last Audit: 10 January 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...)

ShibaJunior._takeMarketing(uint256,uint256) (#455-462) ignores return value by _tOwned[MarketingAddress].add(tMarketing) (#459)
ShibaJunior._takeCharity(uint256,uint256) (#464-471) ignores return value by _tOwned[CharityAddress].add(tCharity) (#468)
Ensure that all the return values of the function calls are used.

Additional information: link

ShibaJunior.allowance(address,address).owner (#350) shadows:
- Ownable.owner() (#240-242) (function)
ShibaJunior._approve(address,address,uint256).owner (#524) shadows:
- Ownable.owner() (#240-242) (function)
Rename the local variables that shadow another component.

Additional information: link

Address.isContract(address) (#128-134) uses assembly
- INLINE ASM (#130-132)
Address._verifyCallResult(bool,bytes,string) (#206-226) uses assembly
- INLINE ASM (#218-221)
Do not use evm assembly.

Additional information: link

ShibaJunior.includeInReward(address) (#419-430) has costly operations inside a loop:
- _excluded.pop() (#426)
Use a local variable to hold the loop computation result.

Additional information: link

Address._verifyCallResult(bool,bytes,string) (#206-226) is never used and should be removed
Address.functionCall(address,bytes) (#143-145) is never used and should be removed
Address.functionCall(address,bytes,string) (#147-153) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#155-161) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#163-174) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#191-193) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#195-204) is never used and should be removed
Address.functionStaticCall(address,bytes) (#176-178) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#180-189) is never used and should be removed
Address.isContract(address) (#128-134) is never used and should be removed
Address.sendValue(address,uint256) (#136-141) is never used and should be removed
Context._msgData() (#121-124) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#93-102) is never used and should be removed
SafeMath.mod(uint256,uint256) (#78-80) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#104-113) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#21-27) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#48-53) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#55-60) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#36-46) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#29-34) is never used and should be removed
Remove unused functions.

Additional information: link

ShibaJunior._rTotal (#276) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
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

Pragma version^0.8.0 (#2) allows old versions
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 Address.sendValue(address,uint256) (#136-141):
- (success) = recipient.call{value: amount}() (#139)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#163-174):
- (success,returndata) = target.call{value: value}(data) (#172)
Low level call in Address.functionStaticCall(address,bytes,string) (#180-189):
- (success,returndata) = target.staticcall(data) (#187)
Low level call in Address.functionDelegateCall(address,bytes,string) (#195-204):
- (success,returndata) = target.delegatecall(data) (#202)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Struct ShibaJunior.feeRatesStruct (#287-291) is not in CapWords
Struct ShibaJunior.valuesFromGetValues (#299-309) is not in CapWords
Parameter ShibaJunior.setFeeRates(uint8,uint8)._Marketing (#444) is not in mixedCase
Parameter ShibaJunior.setFeeRates(uint8,uint8)._Charity (#444) is not in mixedCase
Constant ShibaJunior._decimals (#272) is not in UPPER_CASE_WITH_UNDERSCORES
Variable ShibaJunior.MarketingAddress (#281) is not in mixedCase
Variable ShibaJunior.CharityAddress (#282) is not in mixedCase
Constant ShibaJunior._name (#284) is not in UPPER_CASE_WITH_UNDERSCORES
Constant ShibaJunior._symbol (#285) is not in UPPER_CASE_WITH_UNDERSCORES
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#122)" inContext (#116-125)
Remove redundant statements if they congest code but offer no value.

Additional information: link

ShibaJunior.slitherConstructorVariables() (#261-564) uses literals with too many digits:
- _tTotal = 100000000000000000 * 10 ** _decimals (#275)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

ShibaJunior._tTotal (#275) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#249-252)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#254-258)
name() should be declared external:
- ShibaJunior.name() (#325-327)
symbol() should be declared external:
- ShibaJunior.symbol() (#328-330)
decimals() should be declared external:
- ShibaJunior.decimals() (#331-333)
totalSupply() should be declared external:
- ShibaJunior.totalSupply() (#336-338)
transfer(address,uint256) should be declared external:
- ShibaJunior.transfer(address,uint256) (#345-348)
allowance(address,address) should be declared external:
- ShibaJunior.allowance(address,address) (#350-352)
approve(address,uint256) should be declared external:
- ShibaJunior.approve(address,uint256) (#354-357)
transferFrom(address,address,uint256) should be declared external:
- ShibaJunior.transferFrom(address,address,uint256) (#359-363)
increaseAllowance(address,uint256) should be declared external:
- ShibaJunior.increaseAllowance(address,uint256) (#365-368)
decreaseAllowance(address,uint256) should be declared external:
- ShibaJunior.decreaseAllowance(address,uint256) (#370-373)
isExcludedFromReward(address) should be declared external:
- ShibaJunior.isExcludedFromReward(address) (#375-377)
totalRfiFees() should be declared external:
- ShibaJunior.totalRfiFees() (#379-381)
totalMarketingFees() should be declared external:
- ShibaJunior.totalMarketingFees() (#383-385)
totalCharityFees() should be declared external:
- ShibaJunior.totalCharityFees() (#387-389)
reflectionFromToken(uint256,bool) should be declared external:
- ShibaJunior.reflectionFromToken(uint256,bool) (#391-400)
excludeFromReward(address) should be declared external:
- ShibaJunior.excludeFromReward(address) (#410-417)
excludeFromFee(address) should be declared external:
- ShibaJunior.excludeFromFee(address) (#432-434)
includeInFee(address) should be declared external:
- ShibaJunior.includeInFee(address) (#436-438)
isExcludedFromFee(address) should be declared external:
- ShibaJunior.isExcludedFromFee(address) (#440-442)
setFeeRates(uint8,uint8) should be declared external:
- ShibaJunior.setFeeRates(uint8,uint8) (#444-448)
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.


Last post in Twitter was more than 30 days ago


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


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


Unable to find token contract audit


Unable to find audit link on the website


Unable to find whitepaper 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 price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death

Price for SHIBJR

News for SHIBJR