ELON JUST TWEETED ABOUT INSPIRATION4! Inspiration4 is a fair launched, low-tax, XRP-rewarding coin We decided to launch our token at the same time as the Spacex Inspiration4 mission. Inspiration4 Token is built to withstand a powerful accelerative trajectory toward the ionosphere! Unlike the spacex mission, our teams navigation systems are set for a Moonshot! Tokenomics ▪️5% XRP rewards to holders ▪️2% automatically added to liquidity ▪️2% towards community wallet Twitter:
http://twitter.com/inspiration4bsc
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Inspiration4.swapExactETHForTokens(uint256,address) (#1584-1586) sends eth to arbitrary user
Dangerous calls:
- transferHelper.buy{value: amountIn}(tokenAddress) (#1585)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in Inspiration4._transfer(address,address,uint256) (#1455-1524):
External calls:
- processFees(contractTokenBalance) (#1481)
- transferHelper.buy{value: amountIn}(tokenAddress) (#1585)
- success = IERC20(XRP).transfer(address(dividendTracker),dividends) (#1555)
- dividendTracker.distributeXRPDividends(dividends) (#1558)
- uniswapV2Router.addLiquidityETH{value: halfForEth}(address(this),tokensOut,0,0,address(0),block.timestamp) (#1569)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountIn,0,path,address(this),block.timestamp) (#1580)
External calls sending eth:
- processFees(contractTokenBalance) (#1481)
- transferHelper.buy{value: amountIn}(tokenAddress) (#1585)
- uniswapV2Router.addLiquidityETH{value: halfForEth}(address(this),tokensOut,0,0,address(0),block.timestamp) (#1569)
- address(_marketingWalletAddress).transfer(ethForMarketing) (#1541)
- address(_devWalletAddress).transfer(ethForDev) (#1545)
State variables written after the call(s):
- super._transfer(_from,address(this),fees) (#1505)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#839)
- _balances[recipient] = _balances[recipient].add(amount) (#840)
- super._transfer(_from,_to,_amount) (#1510)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#839)
- _balances[recipient] = _balances[recipient].add(amount) (#840)
- swapping = false (#1482)
Apply the check-effects-interactions pattern.
Additional information: link
Inspiration4._transfer(address,address,uint256) (#1455-1524) uses a dangerous strict equality:
- launchedAt == 0 && _from == owner() && automatedMarketMakerPairs[_to] (#1461)
Don't use strict equality to determine if an account has enough Ether or tokens.
Additional information: link
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.
SafeMathInt.mul(int256,int256) (#530-537) is never used and should be removed
Remove unused functions.
Additional information: link
Pragma version^0.6.2 (#3) 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
Reentrancy in Inspiration4.updateDividendTracker(address) (#1268-1283):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1275)
- newDividendTracker.excludeFromDividends(address(this)) (#1276)
- newDividendTracker.excludeFromDividends(owner()) (#1277)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#1278)
State variables written after the call(s):
- dividendTracker = newDividendTracker (#1282)
Apply the check-effects-interactions pattern.
Additional information: link
Inspiration4._transfer(address,address,uint256).lastProcessedIndex (#1520) 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
Inspiration4.swapAndLiquify(uint256) (#1563-1570) ignores return value by uniswapV2Router.addLiquidityETH{value: halfForEth}(address(this),tokensOut,0,0,address(0),block.timestamp) (#1569)
Ensure that all the return values of the function calls are used.
Additional information: link
DividendPayingToken.accumulativeDividendOf(address)._owner (#1091) shadows:
- Ownable._owner (#329) (state variable)
Rename the local variables that shadow another component.
Additional information: link
Inspiration4.setMaxWalletAmount(uint256) (#1371-1374) should emit an event for:
- _maxWalletAmount = amount (#1373)
Emit an event for critical parameter changes.
Additional information: link
Inspiration4.updateUniswapV2Router(address)._uniswapV2Pair (#1289-1290) lacks a zero-check on :
- uniswapV2Pair = _uniswapV2Pair (#1291)
Check that the address is not zero.
Additional information: link
Variable 'Inspiration4._transfer(address,address,uint256).lastProcessedIndex (#1520)' in Inspiration4._transfer(address,address,uint256) (#1455-1524) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1521)
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 Inspiration4.updateUniswapV2Router(address) (#1285-1292):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#1289-1290)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#1291)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in Inspiration4.updateDividendTracker(address) (#1268-1283):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1275)
- newDividendTracker.excludeFromDividends(address(this)) (#1276)
- newDividendTracker.excludeFromDividends(owner()) (#1277)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#1278)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (#1280)
Apply the check-effects-interactions pattern.
Additional information: link
Inspiration4DividendTracker.canAutoClaim(uint256) (#1693-1699) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (#1694)
- block.timestamp.sub(lastClaimTime) >= claimWait (#1698)
Avoid relying on block.timestamp.
Additional information: link
Parameter Inspiration4DividendTracker.getAccount(address)._account (#1650) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#102)" inContext (#96-105)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in Inspiration4.processFees(uint256) (#1526-1550):
External calls:
- address(_marketingWalletAddress).transfer(ethForMarketing) (#1541)
- address(_devWalletAddress).transfer(ethForDev) (#1545)
External calls sending eth:
- swapAndSendDividends(ethForDividends) (#1537)
- transferHelper.buy{value: amountIn}(tokenAddress) (#1585)
- address(_marketingWalletAddress).transfer(ethForMarketing) (#1541)
- address(_devWalletAddress).transfer(ethForDev) (#1545)
- swapAndLiquify(ethForLiquidity) (#1548)
- transferHelper.buy{value: amountIn}(tokenAddress) (#1585)
- uniswapV2Router.addLiquidityETH{value: halfForEth}(address(this),tokensOut,0,0,address(0),block.timestamp) (#1569)
State variables written after the call(s):
- swapAndLiquify(ethForLiquidity) (#1548)
- _allowances[owner][spender] = amount (#905)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#906)
- swapAndLiquify(ethForLiquidity) (#1548)
Apply the check-effects-interactions pattern.
Additional information: link
Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (#1046) is too similar to Inspiration4DividendTracker.getAccount(address).withdrawableDividends (#1654)
Prevent variables from having similar names.
Additional information: link
Inspiration4.slitherConstructorVariables() (#1144-1591) uses literals with too many digits:
- gasForProcessing = 500000 (#1190)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
SafeMathInt.MAX_INT256 (#525) is never used in SafeMathInt (#523-581)
Remove unused state variables.
Additional information: link
Inspiration4DividendTracker.minimumTokenBalanceForDividends (#1606) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
buy(address) should be declared external:
- Inspiration4TransferHelper.buy(address) (#1785-1803)
Use the external attribute for functions never called from the contract.
Additional information: link
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.
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 Twitter link on the website
Young tokens have high risks of scam / 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
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