Shiba Land Token Logo

SHLND [Shiba Land] Token

About SHLND

Listings

Not Found
Token 2 years

Decentralized meme coin

Social

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

Shibland.ensureOneTxPerBlock(address) (#921-926) uses a dangerous strict equality:
- isNewBlock = _blockNumberByAddress[addr] == 0 || _blockNumberByAddress[addr] < block.number (#922-923)
Don't use strict equality to determine if an account has enough Ether or tokens.

Additional information: link


Contract ownership is not renounced (belongs to a wallet)

Shibland.transfer(address,uint256) (#876-902) performs a multiplication on the result of a division:
-toBurnAndToShare = _value / _burnRate (#893)
-ERC20.transfer(_to,_value - (2 * toBurnAndToShare)) (#895)
Shibland.transferFrom(address,address,uint256) (#928-953) performs a multiplication on the result of a division:
-toBurnAndToShare = _value / _burnRate (#942)
-ERC20.transferFrom(_from,_to,_value - (2 * toBurnAndToShare)) (#945)
Consider ordering multiplication before division.

Additional information: link

ERC20.allowance(address,address).owner (#564) shadows:
- Ownable.owner() (#286-288) (function)
ERC20._approve(address,address,uint256).owner (#750) shadows:
- Ownable.owner() (#286-288) (function)
Rename the local variables that shadow another component.

Additional information: link

Shibland.SetFeeAddress(address)._FeeAddress (#850) lacks a zero-check on :
- _feeAddress = _FeeAddress (#851)
Check that the address is not zero.

Additional information: link

Address.isContract(address) (#38-48) uses assembly
- INLINE ASM (#44-46)
Address._verifyCallResult(bool,bytes,string) (#201-221) uses assembly
- INLINE ASM (#213-216)
Do not use evm assembly.

Additional information: link

Shibland.setBurnRate(uint256) (#864-866) should emit an event for:
- _burnRate = _rate (#865)
Emit an event for critical parameter changes.

Additional information: link

Shibland.constructor() (#839-844) uses literals with too many digits:
- _burnAddress = address(0x000000000000000000000000000000000000dEaD) (#841)
Shibland.slitherConstructorVariables() (#826-955) uses literals with too many digits:
- _initialSupply = 100000000000 * 10 ** 18 (#832)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Address._verifyCallResult(bool,bytes,string) (#201-221) is never used and should be removed
Address.functionCall(address,bytes) (#91-93) is never used and should be removed
Address.functionCall(address,bytes,string) (#101-107) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#120-126) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#134-145) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#180-182) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#190-199) is never used and should be removed
Address.functionStaticCall(address,bytes) (#153-155) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#163-172) is never used and should be removed
Address.sendValue(address,uint256) (#66-71) is never used and should be removed
Context._msgData() (#246-248) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version^0.8.0 (#15) allows old versions
Pragma version^0.8.0 (#229) allows old versions
Pragma version^0.8.0 (#256) allows old versions
Pragma version^0.8.0 (#334) allows old versions
Pragma version^0.8.0 (#419) allows old versions
Pragma version^0.8.0 (#448) allows old versions
Pragma version^0.8.0 (#822) 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

Low level call in Address.sendValue(address,uint256) (#66-71):
- (success) = recipient.call{value: amount}() (#69)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#134-145):
- (success,returndata) = target.call{value: value}(data) (#143)
Low level call in Address.functionStaticCall(address,bytes,string) (#163-172):
- (success,returndata) = target.staticcall(data) (#170)
Low level call in Address.functionDelegateCall(address,bytes,string) (#190-199):
- (success,returndata) = target.delegatecall(data) (#197)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function Shibland.OpenTrading(bool) (#846-848) is not in mixedCase
Parameter Shibland.OpenTrading(bool)._condition (#846) is not in mixedCase
Function Shibland.SetFeeAddress(address) (#850-852) is not in mixedCase
Parameter Shibland.SetFeeAddress(address)._FeeAddress (#850) is not in mixedCase
Function Shibland.ExludeFromFree(address,bool) (#854-857) is not in mixedCase
Parameter Shibland.ExludeFromFree(address,bool)._user (#854) is not in mixedCase
Parameter Shibland.ExludeFromFree(address,bool)._condition (#854) is not in mixedCase
Function Shibland.Blacklist(address,bool) (#859-862) is not in mixedCase
Parameter Shibland.Blacklist(address,bool)._user (#859) is not in mixedCase
Parameter Shibland.Blacklist(address,bool)._condition (#859) is not in mixedCase
Parameter Shibland.setBurnRate(uint256)._rate (#864) is not in mixedCase
Parameter Shibland.transfer(address,uint256)._to (#876) is not in mixedCase
Parameter Shibland.transfer(address,uint256)._value (#876) is not in mixedCase
Parameter Shibland.lastTxFrom(address)._from (#904) is not in mixedCase
Parameter Shibland.ensureOneHuman(address,address)._to (#908) is not in mixedCase
Parameter Shibland.ensureOneHuman(address,address)._from (#908) is not in mixedCase
Parameter Shibland.transferFrom(address,address,uint256)._from (#929) is not in mixedCase
Parameter Shibland.transferFrom(address,address,uint256)._to (#930) is not in mixedCase
Parameter Shibland.transferFrom(address,address,uint256)._value (#931) is not in mixedCase
Variable Shibland._isExcludedFromFee (#829) is not in mixedCase
Variable Shibland.BLacklisted (#830) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Shibland._initialSupply (#832) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#305-307)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#313-316)
name() should be declared external:
- ERC20.name() (#505-507)
symbol() should be declared external:
- ERC20.symbol() (#513-515)
decimals() should be declared external:
- ERC20.decimals() (#530-532)
totalSupply() should be declared external:
- ERC20.totalSupply() (#537-539)
balanceOf(address) should be declared external:
- ERC20.balanceOf(address) (#544-546)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#564-566)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#575-578)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#621-624)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#640-648)
burnRate() should be declared external:
- Shibland.burnRate() (#872-874)
lastTxFrom(address) should be declared external:
- Shibland.lastTxFrom(address) (#904-906)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:

Contract has 2% buy tax and 2% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Average 30d PancakeSwap liquidity is low.


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Twitter account has few posts


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/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 scam / 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 CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for SHLND

News for SHLND