Meet The Best Application Terra Gold "A unique in-house development, crypto-finance game" where everyone can make a profit.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
TerraGold._tFeeTotal (#87) is never initialized. It is used in:
- TerraGold.totalFees() (#179-181)
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
TerraGold.totalSupply (#83) shadows:
- BEP20Basic.totalSupply (#54)
Remove the state variable shadowing.
Additional information: link
Pragma version^0.4.26 (#1) allows old versions
solc-0.4.26 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
balanceOf(address) should be declared external:
- ForeignToken.balanceOf(address) (#49)
transfer(address,uint256) should be declared external:
- ForeignToken.transfer(address,uint256) (#50)
balanceOf(address) should be declared external:
- BEP20Basic.balanceOf(address) (#55)
- TerraGold.balanceOf(address) (#275-277)
transfer(address,uint256) should be declared external:
- BEP20Basic.transfer(address,uint256) (#56)
- TerraGold.transfer(address,uint256) (#284-293)
allowance(address,address) should be declared external:
- BEP20.allowance(address,address) (#61)
- TerraGold.allowance(address,address) (#315-317)
transferFrom(address,address,uint256) should be declared external:
- BEP20.transferFrom(address,address,uint256) (#62)
- TerraGold.transferFrom(address,address,uint256) (#295-306)
approve(address,uint256) should be declared external:
- BEP20.approve(address,uint256) (#63)
- TerraGold.approve(address,uint256) (#308-313)
transferOwnership(address) should be declared external:
- TerraGold.transferOwnership(address) (#158-162)
finishDistribution() should be declared external:
- TerraGold.finishDistribution() (#164-168)
totalFees() should be declared external:
- TerraGold.totalFees() (#179-181)
updateTokensPerEth(uint256) should be declared external:
- TerraGold.updateTokensPerEth(uint256) (#207-210)
getTokenBalance(address,address) should be declared external:
- TerraGold.getTokenBalance(address,address) (#319-323)
withdrawAll() should be declared external:
- TerraGold.withdrawAll() (#325-329)
withdraw(uint256) should be declared external:
- TerraGold.withdraw(uint256) (#331-334)
burn(uint256) should be declared external:
- TerraGold.burn(uint256) (#336-343)
withdrawForeignTokens(address) should be declared external:
- TerraGold.withdrawForeignTokens(address) (#345-349)
Use the external attribute for functions never called from the contract.
Additional information: link
TerraGold.getTokens() (#216-273) performs a multiplication on the result of a division:
-tokens = tokensPerEth.mul(msg.value) / 1000000000000000000 (#224)
-countbonus = tokens * 100 / 100 (#233)
TerraGold.getTokens() (#216-273) performs a multiplication on the result of a division:
-tokens = tokensPerEth.mul(msg.value) / 1000000000000000000 (#224)
-countbonus = tokens * 100 / 100 (#237)
TerraGold.getTokens() (#216-273) performs a multiplication on the result of a division:
-tokens = tokensPerEth.mul(msg.value) / 1000000000000000000 (#224)
-countbonus = tokens * 100 / 100 (#229)
TerraGold.getTokens() (#216-273) performs a multiplication on the result of a division:
-tokens = tokensPerEth.mul(msg.value) / 1000000000000000000 (#224)
-countbonus = tokens * 100 / 100 (#239)
TerraGold.getTokens() (#216-273) performs a multiplication on the result of a division:
-tokens = tokensPerEth.mul(msg.value) / 1000000000000000000 (#224)
-countbonus = tokens * 100 / 100 (#231)
Consider ordering multiplication before division.
Additional information: link
TerraGold.transferOwnership(address) (#158-162) should emit an event for:
- owner = newOwner (#160)
Emit an event for critical parameter changes.
Additional information: link
TerraGold.setTaxFeePercent(uint256) (#123-125) should emit an event for:
- _taxFee = taxFee (#124)
TerraGold.setLiquidityFeePercent(uint256) (#148-150) should emit an event for:
- _liquidityFee = liquidityFee (#149)
Emit an event for critical parameter changes.
Additional information: link
TerraGold.getTokens() (#216-273) uses timestamp for comparisons
Dangerous comparisons:
- msg.value >= requestMinimum && now < deadline && now < round1 && now < round2 (#227)
- msg.value >= requestMinimum && now < deadline && now > round1 && now < round2 (#235)
- now >= deadline && now >= round1 && now < round2 (#257)
Avoid relying on block.timestamp.
Additional information: link
TerraGold.getTokens() (#216-273) compares to a boolean constant:
-Claimed[investor] == false && progress0drop <= target0drop (#249)
Remove the equality to the boolean constant.
Additional information: link
TerraGold.Distribute(address,uint256) (#183-197) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(_amount) (#188)
TerraGold.Distribute(address,uint256) (#183-197) has costly operations inside a loop:
- distributionFinished = true (#191)
Use a local variable to hold the loop computation result.
Additional information: link
SafeMath.div(uint256,uint256) (#26-31) is never used and should be removed
TerraGold.calculateLiquidityFee(uint256) (#152-156) is never used and should be removed
TerraGold.calculateTaxFee(uint256) (#127-131) is never used and should be removed
TerraGold.removeAllFee() (#133-141) is never used and should be removed
TerraGold.restoreAllFee() (#143-146) is never used and should be removed
Remove unused functions.
Additional information: link
TerraGold._previousTaxFee (#89) is set pre-construction with a non-constant function or state variable:
- _taxFee
TerraGold._previousLiquidityFee (#91) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
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
Parameter TerraGold.calculateTaxFee(uint256)._amount (#127) is not in mixedCase
Parameter TerraGold.calculateLiquidityFee(uint256)._amount (#152) is not in mixedCase
Parameter TerraGold.distr(address,uint256)._to (#170) is not in mixedCase
Parameter TerraGold.distr(address,uint256)._amount (#170) is not in mixedCase
Function TerraGold.Distribute(address,uint256) (#183-197) is not in mixedCase
Parameter TerraGold.Distribute(address,uint256)._participant (#183) is not in mixedCase
Parameter TerraGold.Distribute(address,uint256)._amount (#183) is not in mixedCase
Function TerraGold.DistributeAirdrop(address,uint256) (#199-201) is not in mixedCase
Parameter TerraGold.DistributeAirdrop(address,uint256)._participant (#199) is not in mixedCase
Parameter TerraGold.DistributeAirdrop(address,uint256)._amount (#199) is not in mixedCase
Function TerraGold.DistributeAirdropMultiple(address[],uint256) (#203-205) is not in mixedCase
Parameter TerraGold.DistributeAirdropMultiple(address[],uint256)._addresses (#203) is not in mixedCase
Parameter TerraGold.DistributeAirdropMultiple(address[],uint256)._amount (#203) is not in mixedCase
Parameter TerraGold.updateTokensPerEth(uint256)._tokensPerEth (#207) is not in mixedCase
Parameter TerraGold.balanceOf(address)._owner (#275) is not in mixedCase
Parameter TerraGold.transfer(address,uint256)._to (#284) is not in mixedCase
Parameter TerraGold.transfer(address,uint256)._amount (#284) is not in mixedCase
Parameter TerraGold.transferFrom(address,address,uint256)._from (#295) is not in mixedCase
Parameter TerraGold.transferFrom(address,address,uint256)._to (#295) is not in mixedCase
Parameter TerraGold.transferFrom(address,address,uint256)._amount (#295) is not in mixedCase
Parameter TerraGold.approve(address,uint256)._spender (#308) is not in mixedCase
Parameter TerraGold.approve(address,uint256)._value (#308) is not in mixedCase
Parameter TerraGold.allowance(address,address)._owner (#315) is not in mixedCase
Parameter TerraGold.allowance(address,address)._spender (#315) is not in mixedCase
Parameter TerraGold.withdraw(uint256)._wdamount (#331) is not in mixedCase
Parameter TerraGold.burn(uint256)._value (#336) is not in mixedCase
Parameter TerraGold.withdrawForeignTokens(address)._tokenContract (#345) is not in mixedCase
Variable TerraGold.Claimed (#74) is not in mixedCase
Constant TerraGold.requestMinimum (#85) is not in UPPER_CASE_WITH_UNDERSCORES
Variable TerraGold._taxFee (#88) is not in mixedCase
Variable TerraGold._liquidityFee (#90) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
TerraGold.constructor() (#117-121) uses literals with too many digits:
- Fund = 100000000e8 (#118)
TerraGold.slitherConstructorVariables() (#67-351) uses literals with too many digits:
- totalSupply = 500000000e8 (#83)
TerraGold.slitherConstructorVariables() (#67-351) uses literals with too many digits:
- tokensPerEth = 100000e8 (#86)
TerraGold.slitherConstructorConstantVariables() (#67-351) uses literals with too many digits:
- requestMinimum = 1000000000000 / 100 (#85)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
BEP20Basic.totalSupply (#54) should be constant
TerraGold._tFeeTotal (#87) should be constant
TerraGold.target0drop (#92) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.
Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.
Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.
Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.
Number of Binance Smart Chain (BSC) token holders is low.
Token is deployed only at one blockchain
Token has only one trading pair
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 KYC or doxxing proof
Unable to find whitepaper link on the website
Token is not listed at Mobula.Finance
Additional information: link
Unable to find token on CoinHunt
Additional information: link
Unable to find code repository for the project
Unable to find audit link on the website
Token is marked as scam (rug pull, honeypot, phishing, etc.)
Additional information: link
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
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account