What makes ShillMoon (SHILLMOON) unique?
Targeted, hyper-deflationary tokenomics
All transactions with designated liquidity pools incur a 10% tax that is divided into two parts: 5% (half of the tax) is burned, 5% (half of the tax) is to reward LP providers (see automatic yield farming below). The 5% burn has a deflationary effect, causing the ShillMoon token supply to decrease as time passes and providing an ever-rising floor (appreciation in value). Importantly, the 5% burn is significantly higher than other tokens, allowing for faster burn. The targeted tax does not tax everyday transfers, allowing holders to freely transfer ShillMoon between wallets, gift their friends or family, or tip a stranger.
Automatic yield farming (“autofarming”)
LP Rewards: All holders of designated ShillMoon LP tokens receive their fair share of 5% of every taxed transaction, thus earning bonus, incremental yield on top of their LP fees - this is unprecedented. Buys, sells, staking, and unstaking from designated liquidity pools are all taxed transactions, which reward liquidity holders. Anyone selling or unstaking from the liquidity pool leaves behind a portion of their liquidity to other holders thus encouraging holding of liquidity. Fair LP: Unlike auto-LP tokens with centralized liquidity pools (e.g., SafeMoon), where the entire 5% liquidity tax goes to the team, the 5% liquidity tax is decentralized and shared equally by all ShillMoon LP providers. This incentivizes a community-controlled liquidity pool in support of community-driven crypto, stabilizes price and flattens the wallet distribution
The Shill Fund
10% of the initial supply, and up to half of the “burn-to-date” may be used to reward ShillMoon community members for their contributions. We call this the Shill Fund. The Shill Fund may also be drawn upon for marketing, liquidity, or holder acquisition, or may be burned, whichever is in the best interests of the ShillMoon community. The Shill Fund will allow for significant flexibility going forward, in order to best incentivize community activity and reward the most active community members. The Shill Fund is initially managed by the contract owner (a multi-sig wallet requiring 3/5 signatures to execute transactions) on behalf of the community, but may later be managed directly by the community as a DAO (decentralized autonomous organization).
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
SHILLMOON._getGeneralTransferValues(uint256) (#319-325) performs a multiplication on the result of a division:
-taxAmount = (tAmount * feeOnGeneralTransfer) / 1000 (#320)
-burnAmount = (taxAmount * burnFee) / (burnFee + liquidityFee) (#322)
Consider ordering multiplication before division.
Additional information: link
SHILLMOON._transfer(address,address,uint256).transferAmount_scope_0 (#342) is a local variable never initialized
SHILLMOON._transfer(address,address,uint256).liquidityAmount_scope_2 (#342) is a local variable never initialized
SHILLMOON._transfer(address,address,uint256).burnAmount_scope_1 (#342) 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
SHILLMOON.setBurnFeePercent(uint256) (#286-289) should emit an event for:
- burnFee = fee (#288)
SHILLMOON.setLiqFeePercent(uint256) (#291-294) should emit an event for:
- liquidityFee = fee (#293)
SHILLMOON.setFeeOnGeneralTransfer(uint256) (#296-299) should emit an event for:
- feeOnGeneralTransfer = feeInTenthsOfPercent (#298)
SHILLMOON.setMaxTxAmount(uint256) (#306-310) should emit an event for:
- maxTxAmount = amount (#309)
Emit an event for critical parameter changes.
Additional information: link
SHILLMOON.setLiqTarget(address,bool).account (#301) lacks a zero-check on :
- liquidityTarget = account (#302)
Check that the address is not zero.
Additional information: link
Variable 'SHILLMOON._transfer(address,address,uint256).liquidityAmount (#336)' in SHILLMOON._transfer(address,address,uint256) (#327-349) potentially used before declaration: (transferAmount,burnAmount,liquidityAmount) = _getGeneralTransferValues(amount) (#342)
Variable 'SHILLMOON._transfer(address,address,uint256).burnAmount (#336)' in SHILLMOON._transfer(address,address,uint256) (#327-349) potentially used before declaration: (transferAmount,burnAmount,liquidityAmount) = _getGeneralTransferValues(amount) (#342)
Variable 'SHILLMOON._transfer(address,address,uint256).transferAmount (#336)' in SHILLMOON._transfer(address,address,uint256) (#327-349) potentially used before declaration: (transferAmount,burnAmount,liquidityAmount) = _getGeneralTransferValues(amount) (#342)
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
SHILLMOON._mint(address,uint256) (#236-240) has costly operations inside a loop:
- mintedToDate += amount (#238)
BEP20._mint(address,uint256) (#170-174) has costly operations inside a loop:
- _totalSupply += amount (#171)
Use a local variable to hold the loop computation result.
Additional information: link
Context._msgData() (#63) is never used and should be removed
Remove unused functions.
Additional information: link
Pragma version^0.8.0 (#41) 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
Constant SHILLMOON._name (#204) is not in UPPER_CASE_WITH_UNDERSCORES
Constant SHILLMOON._symbol (#205) is not in UPPER_CASE_WITH_UNDERSCORES
Constant SHILLMOON._decimals (#206) is not in UPPER_CASE_WITH_UNDERSCORES
Constant SHILLMOON._initialSupply (#207) is not in UPPER_CASE_WITH_UNDERSCORES
Constant SHILLMOON._initialMintable (#208) is not in UPPER_CASE_WITH_UNDERSCORES
Constant SHILLMOON._minMaxTxAmount (#212) is not in UPPER_CASE_WITH_UNDERSCORES
Follow the Solidity naming convention.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#82)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#84-87)
totalSupply() should be declared external:
- BEP20.totalSupply() (#110)
transfer(address,uint256) should be declared external:
- BEP20.transfer(address,uint256) (#116-119)
allowance(address,address) should be declared external:
- BEP20.allowance(address,address) (#121-123)
approve(address,uint256) should be declared external:
- BEP20.approve(address,uint256) (#125-128)
transferFrom(address,address,uint256) should be declared external:
- BEP20.transferFrom(address,address,uint256) (#130-140)
increaseAllowance(address,uint256) should be declared external:
- BEP20.increaseAllowance(address,uint256) (#142-145)
decreaseAllowance(address,uint256) should be declared external:
- BEP20.decreaseAllowance(address,uint256) (#147-155)
name() should be declared external:
- SHILLMOON.name() (#228)
symbol() should be declared external:
- SHILLMOON.symbol() (#229)
decimals() should be declared external:
- SHILLMOON.decimals() (#230)
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.
Token was delisted from CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
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 Telegram link on the website
Unable to find Twitter link on the website
Unable to find token on CoinHunt
Additional information: link
Unable to find code repository for the project
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
Young tokens have high risks of price dump / death
Last post in Twitter was more than 30 days ago
Unable to find Youtube account