MINIKISHU Token Logo

$MINIKISHU [MINIKISHU] Token

About $MINIKISHU

Listings

Token 2 years

Mini Kishu was created in September 2021 by crypto influencers with the goal of being a decentralized meme project with true purpose.

Mini Kishu’s mission is to bring popular cryptocurrency concepts to the mainstream. Mini Kishu introduces holders to next-gen concepts such as participation rewards, NFTs, decentralized exchanges, and more.

Mini Kishu will be make history by being the first “mini” project to over take the original project, Kishu Inu, in market cap.

Social

Laser Scorebeta Last Audit: 30 November 2021

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...)

Reentrancy in MiniKishu.claimXRP(address) (#1101-1135):
External calls:
- _pancakeRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,addr,block.timestamp) (#1127-1131)
State variables written after the call(s):
- _isWithdrawing = false (#1134)
Apply the check-effects-interactions pattern.

Additional information: link

MiniKishu.TeamReleaseLiquidity() (#1415-1425) ignores return value by liquidityToken.transfer(TeamWallet,amount) (#1423)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link

MiniKishu.claimXRP(address) (#1101-1135) uses a dangerous strict equality:
- amount == 0 (#1118)
Don't use strict equality to determine if an account has enough Ether or tokens.

Additional information: link


Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.

Contract ticker ($MINIKISHU) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.

TeamRemoveRemainingBNB() should be declared external:
- MiniKishu.TeamRemoveRemainingBNB() (#1458-1463)
Use the external attribute for functions never called from the contract.

Additional information: link

MiniKishu.TeamRemoveLiquidity(bool) (#1427-1456) ignores return value by _pancakeRouter.removeLiquidityETHSupportingFeeOnTransferTokens(address(this),amount,0,0,address(this),block.timestamp) (#1440-1447)
Ensure that all the return values of the function calls are used.

Additional information: link

MiniKishu._approve(address,address,uint256).owner (#1509) shadows:
- Ownable.owner() (#236-238) (function)
Rename the local variables that shadow another component.

Additional information: link

MiniKishu.TeamUpdateLimits(uint256,uint256) (#1368-1385) should emit an event for:
- balanceLimit = newBalanceLimit (#1383)
- sellLimit = newSellLimit (#1384)
Emit an event for critical parameter changes.

Additional information: link

MiniKishu.SetupLiquidityTokenAddress(address).liquidityTokenAddress (#1397) lacks a zero-check on :
- _liquidityTokenAddress = liquidityTokenAddress (#1398)
Check that the address is not zero.

Additional information: link

Reentrancy in MiniKishu.transferFrom(address,address,uint256) (#1517-1525):
External calls:
- _transfer(sender,recipient,amount) (#1518)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (#1201-1208)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amount,0,path,address(this),block.timestamp) (#1189-1195)
- _pancakeRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,addr,block.timestamp) (#1127-1131)
External calls sending eth:
- _transfer(sender,recipient,amount) (#1518)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (#1201-1208)
- _pancakeRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,addr,block.timestamp) (#1127-1131)
State variables written after the call(s):
- _approve(sender,msg.sender,currentAllowance - amount) (#1523)
- _allowances[owner][spender] = amount (#1513)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in MiniKishu.transferFrom(address,address,uint256) (#1517-1525):
External calls:
- _transfer(sender,recipient,amount) (#1518)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (#1201-1208)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amount,0,path,address(this),block.timestamp) (#1189-1195)
- _pancakeRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,addr,block.timestamp) (#1127-1131)
External calls sending eth:
- _transfer(sender,recipient,amount) (#1518)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (#1201-1208)
- _pancakeRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,addr,block.timestamp) (#1127-1131)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1514)
- _approve(sender,msg.sender,currentAllowance - amount) (#1523)
Apply the check-effects-interactions pattern.

Additional information: link

MiniKishu.TeamRemoveRemainingBNB() (#1458-1463) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp >= _liquidityUnlockTime,Not yet unlocked) (#1459)
Avoid relying on block.timestamp.

Additional information: link

Address._verifyCallResult(bool,bytes,string) (#437-454) uses assembly
- INLINE ASM (#446-449)
Do not use evm assembly.

Additional information: link

MiniKishu._isTeam(address) (#812-814) is never used and should be removed
Remove unused functions.

Additional information: link

MiniKishu.sellLimit (#794) is set pre-construction with a non-constant function or state variable:
- _circulatingSupply
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.4 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 MiniKishu.TeamRemoveRemainingBNB() (#1458-1463):
- (sent) = TeamWallet.call{value: (address(this).balance)}() (#1461)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Constant MiniKishu.DistributionMultiplier (#990) is not in UPPER_CASE_WITH_UNDERSCORES
Follow the Solidity naming convention.

Additional information: link

Variable IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#76) is too similar to IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#77)
Prevent variables from having similar names.

Additional information: link

MiniKishu.slitherConstructorConstantVariables() (#752-1543) uses literals with too many digits:
- InitialSupply = 500000000000 * 10 ** _decimals (#770)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Holders:


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 number of swaps.


Twitter account link seems to be invalid


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Unable to crawl data from the website


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

Additional information: link


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


Unable to find token contract audit


Unable to verify token contract address on the website


Unable to find audit link on the website


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


Young tokens have high risks of scam / price dump / death


Token has no active CoinGecko listing / rank


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinMarketCap rank

Price for $MINIKISHU