NFT SolPad will have TWO tiers at inception which makes it easier for community to participate in this innovative way of purchasing NFT’s before they are listed on NFT marketplace behemoths like as Opensea, Rarible and so on! By holding NFTSOLs you will be guaranteed an spot to purchase NFT during each DNA Events.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Not a direct threat, but may indicate unreliable intentions of developer. Widespread names (e.g. Elon, King, Moon, Doge) are common among meme-tokens and scams. The allow to gain free hype and attract unexperienced investors.
NFTSolPad.allowance(address,address).owner (#520) shadows:
- Ownable.owner() (#416-418) (function)
NFTSolPad._approve(address,address,uint256).owner (#613) shadows:
- Ownable.owner() (#416-418) (function)
Rename the local variables that shadow another component.
Additional information: link
NFTSolPad.setPeopleFee(uint256) (#716-718) should emit an event for:
- _peopleFee = amount (#717)
NFTSolPad.setCharityFee(uint256) (#720-722) should emit an event for:
- _charityFee = amount (#721)
NFTSolPad.setTaxPercent(uint256) (#771-773) should emit an event for:
- _tax_fee = _taxFee (#772)
NFTSolPad.setBurnPercent(uint256) (#775-777) should emit an event for:
- _burn_fee = _burnFee (#776)
Emit an event for critical parameter changes.
Additional information: link
NFTSolPad.setPeopleWallet(address).newWallet (#708) lacks a zero-check on :
- peopleWallet = newWallet (#709)
NFTSolPad.setCharityWallet(address).newWallet (#712) lacks a zero-check on :
- charityWallet = newWallet (#713)
Check that the address is not zero.
Additional information: link
Address.isContract(address) (#270-279) uses assembly
- INLINE ASM (#277)
Address._functionCallWithValue(address,bytes,uint256,string) (#363-384) uses assembly
- INLINE ASM (#376-379)
Do not use evm assembly.
Additional information: link
NFTSolPad.includeAccount(address) (#600-611) has costly operations inside a loop:
- _excluded.pop() (#607)
Use a local variable to hold the loop computation result.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#363-384) is never used and should be removed
Address.functionCall(address,bytes) (#323-325) is never used and should be removed
Address.functionCall(address,bytes,string) (#333-335) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#348-350) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#358-361) is never used and should be removed
Address.isContract(address) (#270-279) is never used and should be removed
Address.sendValue(address,uint256) (#297-303) is never used and should be removed
Context._msgData() (#13-16) is never used and should be removed
SafeMath.mod(uint256,uint256) (#227-229) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#243-246) is never used and should be removed
Remove unused functions.
Additional information: link
NFTSolPad._decimal_factor (#470) is set pre-construction with a non-constant function or state variable:
- 10 ** uint256(_decimals)
NFTSolPad._tTotal (#473) is set pre-construction with a non-constant function or state variable:
- 1000000000 * _decimal_factor
NFTSolPad._rTotal (#474) is set pre-construction with a non-constant function or state variable:
- (_MAX - (_MAX % _tTotal))
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
Low level call in Address.sendValue(address,uint256) (#297-303):
- (success) = recipient.call{value: amount}() (#301)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#363-384):
- (success,returndata) = target.call{value: weiValue}(data) (#367)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function NFTSolPad._getTaxFee() (#763-765) is not in mixedCase
Parameter NFTSolPad.enableTrading(bool)._tradingEnabled (#767) is not in mixedCase
Parameter NFTSolPad.setTaxPercent(uint256)._taxFee (#771) is not in mixedCase
Parameter NFTSolPad.setBurnPercent(uint256)._burnFee (#775) is not in mixedCase
Variable NFTSolPad._decimal_factor (#470) is not in mixedCase
Variable NFTSolPad._tax_fee (#479) is not in mixedCase
Variable NFTSolPad._burn_fee (#480) is not in mixedCase
Variable NFTSolPad._peopleFee (#483) is not in mixedCase
Variable NFTSolPad._charityFee (#484) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#14)" inContext (#8-17)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable NFTSolPad._transferToExcluded(address,address,uint256).rTransferAmount (#669) is too similar to NFTSolPad._transferStandard(address,address,uint256).tTransferAmount (#659)
Variable NFTSolPad._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#742) is too similar to NFTSolPad._transferBothExcluded(address,address,uint256).tTransferAmount (#691)
Variable NFTSolPad._transferStandard(address,address,uint256).rTransferAmount (#659) is too similar to NFTSolPad._getValues(uint256).tTransferAmount (#725)
Variable NFTSolPad._transferBothExcluded(address,address,uint256).rTransferAmount (#691) is too similar to NFTSolPad._getValues(uint256).tTransferAmount (#725)
Variable NFTSolPad._transferToExcluded(address,address,uint256).rTransferAmount (#669) is too similar to NFTSolPad._transferFromExcluded(address,address,uint256).tTransferAmount (#680)
Variable NFTSolPad._transferFromExcluded(address,address,uint256).rTransferAmount (#680) is too similar to NFTSolPad._transferFromExcluded(address,address,uint256).tTransferAmount (#680)
Variable NFTSolPad._getValues(uint256).rTransferAmount (#727) is too similar to NFTSolPad._transferBothExcluded(address,address,uint256).tTransferAmount (#691)
Variable NFTSolPad._transferToExcluded(address,address,uint256).rTransferAmount (#669) is too similar to NFTSolPad._transferToExcluded(address,address,uint256).tTransferAmount (#669)
Variable NFTSolPad._transferStandard(address,address,uint256).rTransferAmount (#659) is too similar to NFTSolPad._transferStandard(address,address,uint256).tTransferAmount (#659)
Variable NFTSolPad._transferStandard(address,address,uint256).rTransferAmount (#659) is too similar to NFTSolPad._transferFromExcluded(address,address,uint256).tTransferAmount (#680)
Variable NFTSolPad._transferStandard(address,address,uint256).rTransferAmount (#659) is too similar to NFTSolPad._transferToExcluded(address,address,uint256).tTransferAmount (#669)
Variable NFTSolPad._transferToExcluded(address,address,uint256).rTransferAmount (#669) is too similar to NFTSolPad._transferBothExcluded(address,address,uint256).tTransferAmount (#691)
Variable NFTSolPad._transferFromExcluded(address,address,uint256).rTransferAmount (#680) is too similar to NFTSolPad._transferBothExcluded(address,address,uint256).tTransferAmount (#691)
Variable NFTSolPad._getValues(uint256).rTransferAmount (#727) is too similar to NFTSolPad._getTValues(uint256,uint256,uint256).tTransferAmount (#734)
Variable NFTSolPad._transferStandard(address,address,uint256).rTransferAmount (#659) is too similar to NFTSolPad._transferBothExcluded(address,address,uint256).tTransferAmount (#691)
Variable NFTSolPad._transferBothExcluded(address,address,uint256).rTransferAmount (#691) is too similar to NFTSolPad._transferBothExcluded(address,address,uint256).tTransferAmount (#691)
Variable NFTSolPad._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#742) is too similar to NFTSolPad._getValues(uint256).tTransferAmount (#725)
Variable NFTSolPad._getValues(uint256).rTransferAmount (#727) is too similar to NFTSolPad._getValues(uint256).tTransferAmount (#725)
Variable NFTSolPad._getValues(uint256).rTransferAmount (#727) is too similar to NFTSolPad._transferStandard(address,address,uint256).tTransferAmount (#659)
Variable NFTSolPad._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#742) is too similar to NFTSolPad._transferFromExcluded(address,address,uint256).tTransferAmount (#680)
Variable NFTSolPad._getValues(uint256).rTransferAmount (#727) is too similar to NFTSolPad._transferFromExcluded(address,address,uint256).tTransferAmount (#680)
Variable NFTSolPad._getValues(uint256).rTransferAmount (#727) is too similar to NFTSolPad._transferToExcluded(address,address,uint256).tTransferAmount (#669)
Variable NFTSolPad._transferToExcluded(address,address,uint256).rTransferAmount (#669) is too similar to NFTSolPad._getValues(uint256).tTransferAmount (#725)
Variable NFTSolPad._transferFromExcluded(address,address,uint256).rTransferAmount (#680) is too similar to NFTSolPad._getValues(uint256).tTransferAmount (#725)
Variable NFTSolPad._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#742) is too similar to NFTSolPad._getTValues(uint256,uint256,uint256).tTransferAmount (#734)
Variable NFTSolPad._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#742) is too similar to NFTSolPad._transferStandard(address,address,uint256).tTransferAmount (#659)
Variable NFTSolPad.reflectionFromToken(uint256,bool).rTransferAmount (#578) is too similar to NFTSolPad._transferFromExcluded(address,address,uint256).tTransferAmount (#680)
Variable NFTSolPad.reflectionFromToken(uint256,bool).rTransferAmount (#578) is too similar to NFTSolPad._getTValues(uint256,uint256,uint256).tTransferAmount (#734)
Variable NFTSolPad._transferFromExcluded(address,address,uint256).rTransferAmount (#680) is too similar to NFTSolPad._transferToExcluded(address,address,uint256).tTransferAmount (#669)
Variable NFTSolPad.reflectionFromToken(uint256,bool).rTransferAmount (#578) is too similar to NFTSolPad._transferBothExcluded(address,address,uint256).tTransferAmount (#691)
Variable NFTSolPad.reflectionFromToken(uint256,bool).rTransferAmount (#578) is too similar to NFTSolPad._transferStandard(address,address,uint256).tTransferAmount (#659)
Variable NFTSolPad._transferStandard(address,address,uint256).rTransferAmount (#659) is too similar to NFTSolPad._getTValues(uint256,uint256,uint256).tTransferAmount (#734)
Variable NFTSolPad._transferBothExcluded(address,address,uint256).rTransferAmount (#691) is too similar to NFTSolPad._transferToExcluded(address,address,uint256).tTransferAmount (#669)
Variable NFTSolPad._transferToExcluded(address,address,uint256).rTransferAmount (#669) is too similar to NFTSolPad._getTValues(uint256,uint256,uint256).tTransferAmount (#734)
Variable NFTSolPad._transferFromExcluded(address,address,uint256).rTransferAmount (#680) is too similar to NFTSolPad._getTValues(uint256,uint256,uint256).tTransferAmount (#734)
Variable NFTSolPad._transferFromExcluded(address,address,uint256).rTransferAmount (#680) is too similar to NFTSolPad._transferStandard(address,address,uint256).tTransferAmount (#659)
Variable NFTSolPad.reflectionFromToken(uint256,bool).rTransferAmount (#578) is too similar to NFTSolPad._getValues(uint256).tTransferAmount (#725)
Variable NFTSolPad._transferBothExcluded(address,address,uint256).rTransferAmount (#691) is too similar to NFTSolPad._transferFromExcluded(address,address,uint256).tTransferAmount (#680)
Variable NFTSolPad._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#742) is too similar to NFTSolPad._transferToExcluded(address,address,uint256).tTransferAmount (#669)
Variable NFTSolPad._transferBothExcluded(address,address,uint256).rTransferAmount (#691) is too similar to NFTSolPad._getTValues(uint256,uint256,uint256).tTransferAmount (#734)
Variable NFTSolPad._transferBothExcluded(address,address,uint256).rTransferAmount (#691) is too similar to NFTSolPad._transferStandard(address,address,uint256).tTransferAmount (#659)
Variable NFTSolPad.reflectionFromToken(uint256,bool).rTransferAmount (#578) is too similar to NFTSolPad._transferToExcluded(address,address,uint256).tTransferAmount (#669)
Prevent variables from having similar names.
Additional information: link
NFTSolPad.slitherConstructorVariables() (#451-779) uses literals with too many digits:
- _tTotal = 1000000000 * _decimal_factor (#473)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
NFTSolPad._decimals (#467) should be constant
NFTSolPad._name (#465) should be constant
NFTSolPad._symbol (#466) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#435-438)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#444-448)
name() should be declared external:
- NFTSolPad.name() (#494-496)
symbol() should be declared external:
- NFTSolPad.symbol() (#498-500)
decimals() should be declared external:
- NFTSolPad.decimals() (#502-504)
totalSupply() should be declared external:
- NFTSolPad.totalSupply() (#506-508)
balanceOf(address) should be declared external:
- NFTSolPad.balanceOf(address) (#510-513)
transfer(address,uint256) should be declared external:
- NFTSolPad.transfer(address,uint256) (#515-518)
allowance(address,address) should be declared external:
- NFTSolPad.allowance(address,address) (#520-522)
approve(address,uint256) should be declared external:
- NFTSolPad.approve(address,uint256) (#524-527)
transferFrom(address,address,uint256) should be declared external:
- NFTSolPad.transferFrom(address,address,uint256) (#529-533)
increaseAllowance(address,uint256) should be declared external:
- NFTSolPad.increaseAllowance(address,uint256) (#535-538)
decreaseAllowance(address,uint256) should be declared external:
- NFTSolPad.decreaseAllowance(address,uint256) (#540-543)
isExcluded(address) should be declared external:
- NFTSolPad.isExcluded(address) (#545-547)
totalFees() should be declared external:
- NFTSolPad.totalFees() (#549-551)
totalBurn() should be declared external:
- NFTSolPad.totalBurn() (#553-555)
deliver(uint256) should be declared external:
- NFTSolPad.deliver(uint256) (#563-570)
reflectionFromToken(uint256,bool) should be declared external:
- NFTSolPad.reflectionFromToken(uint256,bool) (#572-581)
_getTaxFee() should be declared external:
- NFTSolPad._getTaxFee() (#763-765)
Use the external attribute for functions never called from the contract.
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.
Token is deployed only at one blockchain
Contract has 5% buy tax and 5% sell tax.
Taxes are low and contract ownership is renounced.
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/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 token on CoinHunt
Additional information: link
Unable to find code repository for the project
Young tokens have high risks of scam / price dump / death
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
Token has relatively low CoinGecko rank
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account