Shiboki Token Logo

Shiboki Token

About Shiboki

Listings

Token 2 years
white paper

SHIBOKI is a mixed breed dog that is on a mission to prove to his parents “Shiba” & “Floki” that he will carry on with their legacies and that his name is destined for greatness as well. How is he planning on doing so? He built a team around him which consisted of a Solidity Developer, a hard working Co-founder, and a Creative Designer. The team put a plan to lead the community and achieve SHIBOKI’s goals.

Social

Laser Scorebeta Last Audit: 30 November 2021

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

Shiboki.addLiquidity(uint256,uint256) (#1686-1701) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1692-1699)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in Shiboki._transfer(address,address,uint256) (#1531-1611):
External calls:
- swapAndSendToFee(marketingTokens) (#1567)
- IERC20(BUSD).transfer(_marketingWalletAddress,newBalance) (#1619)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1677-1683)
- swapAndLiquify(swapTokens) (#1570)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1692-1699)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1657-1663)
- swapAndSendDividends(sellTokens) (#1573)
- success = IERC20(BUSD).transfer(address(dividendTracker),dividends) (#1706)
- dividendTracker.distributeBUSDDividends(dividends) (#1709)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1677-1683)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1570)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1692-1699)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#1593)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#930)
- _balances[recipient] = _balances[recipient].add(amount) (#931)
- super._transfer(from,to,amount) (#1596)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#930)
- _balances[recipient] = _balances[recipient].add(amount) (#931)
- swapping = false (#1575)
Apply the check-effects-interactions pattern.

Additional information: link

Shiboki.swapAndSendToFee(uint256) (#1613-1620) ignores return value by IERC20(BUSD).transfer(_marketingWalletAddress,newBalance) (#1619)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

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.


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.


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.

Reentrancy in Shiboki.updateUniswapV2Router(address) (#1379-1386):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#1383-1384)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#1385)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Shiboki.updateDividendTracker(address) (#1362-1377):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1369)
- newDividendTracker.excludeFromDividends(address(this)) (#1370)
- newDividendTracker.excludeFromDividends(owner()) (#1371)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#1372)
State variables written after the call(s):
- dividendTracker = newDividendTracker (#1376)
Apply the check-effects-interactions pattern.

Additional information: link

Shiboki._transfer(address,address,uint256).claims (#1604) 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

Shiboki.addLiquidity(uint256,uint256) (#1686-1701) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1692-1699)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendPayingToken.accumulativeDividendOf(address)._owner (#1195) shadows:
- Ownable._owner (#367) (state variable)
Rename the local variables that shadow another component.

Additional information: link

Shiboki.setMarketingFee(uint256) (#1417-1421) should emit an event for:
- marketingFee = value (#1418)
- totalFees = BUSDRewardsFee.add(liquidityFee).add(marketingFee) (#1419)
Emit an event for critical parameter changes.

Additional information: link

Shiboki.setMarketingWallet(address).wallet (#1403) lacks a zero-check on :
- _marketingWalletAddress = wallet (#1404)
Check that the address is not zero.

Additional information: link

Variable 'Shiboki._transfer(address,address,uint256).lastProcessedIndex (#1604)' in Shiboki._transfer(address,address,uint256) (#1531-1611) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1605)
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 Shiboki.updateDividendTracker(address) (#1362-1377):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1369)
- newDividendTracker.excludeFromDividends(address(this)) (#1370)
- newDividendTracker.excludeFromDividends(owner()) (#1371)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#1372)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (#1374)
Apply the check-effects-interactions pattern.

Additional information: link

ShibokiDividendTracker.canAutoClaim(uint256) (#1839-1845) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (#1840)
- block.timestamp.sub(lastClaimTime) >= claimWait (#1844)
Avoid relying on block.timestamp.

Additional information: link

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

Additional information: link

Shiboki.totalFees (#1275) is set pre-construction with a non-constant function or state variable:
- BUSDRewardsFee.add(liquidityFee).add(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

Pragma version^0.6.2 (#1085) 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

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

Additional information: link

Redundant expression "this (#111)" inContext (#105-114)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (#1150) is too similar to ShibokiDividendTracker.getAccount(address).withdrawableDividends (#1780)
Prevent variables from having similar names.

Additional information: link

ShibokiDividendTracker.getAccountAtIndex(uint256) (#1820-1837) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (#1831)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (#575) is never used in SafeMathInt (#573-632)
Remove unused state variables.

Additional information: link

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

Additional information: link

process(uint256) should be declared external:
- ShibokiDividendTracker.process(uint256) (#1864-1909)
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 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 Youtube account


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


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 Shiboki