The New Guinea Singing Inu ($NEWINU) is a deflationary meme DeFi coin with Automated Rewards Farming (ARF) technology built in. The longer you hold, the more $NEWINU will reward you!
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
NewGuineaSingingDogInu._setBurnFee(uint256) (#634-637) contains a tautology or contradiction:
- require(bool,string)(burnFee >= 0 && burnFee <= 5,burnFee should be in 0 - 5) (#635)
NewGuineaSingingDogInu._setTaxFee(uint256) (#629-632) contains a tautology or contradiction:
- require(bool,string)(taxFee >= 0 && taxFee <= 5,taxFee should be in 0 - 5) (#630)
NewGuineaSingingDogInu._setMarketingFee(uint256) (#639-642) contains a tautology or contradiction:
- require(bool,string)(marketingFee >= 0 && marketingFee <= 5,marketingFee should be in 0 - 5) (#640)
Fix the incorrect comparison by changing the value type or the comparison.
Additional information: link
Contract ownership is not renounced (belongs to a wallet)
NewGuineaSingingDogInu.allowance(address,address).owner (#528) shadows:
- Ownable.owner() (#424-426) (function)
NewGuineaSingingDogInu._approve(address,address,uint256).owner (#644) shadows:
- Ownable.owner() (#424-426) (function)
Rename the local variables that shadow another component.
Additional information: link
NewGuineaSingingDogInu._setTaxFee(uint256) (#629-632) should emit an event for:
- _TAX_FEE = taxFee * 100 (#631)
NewGuineaSingingDogInu._setMarketingFee(uint256) (#639-642) should emit an event for:
- _MARKETING_FEE = marketingFee * 100 (#641)
NewGuineaSingingDogInu._setBurnFee(uint256) (#634-637) should emit an event for:
- _BURN_FEE = burnFee * 100 (#636)
Emit an event for critical parameter changes.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#371-392) uses assembly
- INLINE ASM (#384-387)
Address.isContract(address) (#278-287) uses assembly
- INLINE ASM (#285)
Do not use evm assembly.
Additional information: link
NewGuineaSingingDogInu.includeAccount(address) (#609-620) has costly operations inside a loop:
- _excluded.pop() (#616)
Use a local variable to hold the loop computation result.
Additional information: link
NewGuineaSingingDogInu._getTaxFee() (#838-840) is never used and should be removed
Address.sendValue(address,uint256) (#305-311) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#356-358) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#251-254) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#366-369) is never used and should be removed
Context._msgData() (#21-24) is never used and should be removed
SafeMath.mod(uint256,uint256) (#235-237) is never used and should be removed
NewGuineaSingingDogInu._getMaxTxAmount() (#842-844) is never used and should be removed
Address._functionCallWithValue(address,bytes,uint256,string) (#371-392) is never used and should be removed
Address.isContract(address) (#278-287) is never used and should be removed
Address.functionCall(address,bytes,string) (#341-343) is never used and should be removed
Address.functionCall(address,bytes) (#331-333) is never used and should be removed
Remove unused functions.
Additional information: link
NewGuineaSingingDogInu.ORIG_TAX_FEE (#493) is set pre-construction with a non-constant function or state variable:
- _TAX_FEE
NewGuineaSingingDogInu._rTotal (#481) is set pre-construction with a non-constant function or state variable:
- (_MAX - (_MAX % _tTotal))
NewGuineaSingingDogInu.ORIG_BURN_FEE (#494) is set pre-construction with a non-constant function or state variable:
- _BURN_FEE
NewGuineaSingingDogInu.ORIG_MARKETING_FEE (#495) is set pre-construction with a non-constant function or state variable:
- _MARKETING_FEE
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.8.2 (#13) allows old versions
solc-0.8.2 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
Low level call in Address.sendValue(address,uint256) (#305-311):
- (success) = recipient.call{value: amount}() (#309)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#371-392):
- (success,returndata) = target.call{value: weiValue}(data) (#375)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Variable NewGuineaSingingDogInu._MARKETING_FEE (#489) is not in mixedCase
Variable NewGuineaSingingDogInu.ORIG_TAX_FEE (#493) is not in mixedCase
Function NewGuineaSingingDogInu._setMarketingFee(uint256) (#639-642) is not in mixedCase
Variable NewGuineaSingingDogInu.ORIG_MARKETING_FEE (#495) is not in mixedCase
Variable NewGuineaSingingDogInu._TAX_FEE (#487) is not in mixedCase
Function NewGuineaSingingDogInu._setBurnFee(uint256) (#634-637) is not in mixedCase
Variable NewGuineaSingingDogInu.ORIG_BURN_FEE (#494) is not in mixedCase
Variable NewGuineaSingingDogInu._BURN_FEE (#488) is not in mixedCase
Function NewGuineaSingingDogInu._setTaxFee(uint256) (#629-632) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#22)" inContext (#16-25)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable NewGuineaSingingDogInu._getRTransferAmount(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#790) is too similar to NewGuineaSingingDogInu._getValues(uint256).tTransferAmount (#763)
Variable NewGuineaSingingDogInu._transferStandard(address,address,uint256).rTransferAmount (#685) is too similar to NewGuineaSingingDogInu._excludedFromTransferContent(address,address,uint256,uint256,uint256).tTransferAmount (#710)
Variable NewGuineaSingingDogInu._transferFromExcluded(address,address,uint256).rTransferAmount (#719) is too similar to NewGuineaSingingDogInu._transferToExcluded(address,address,uint256).tTransferAmount (#701)
Variable NewGuineaSingingDogInu._excludedToTransferContent(address,address,uint256,uint256,uint256).rTransferAmount (#728) is too similar to NewGuineaSingingDogInu._transferBothExcluded(address,address,uint256).tTransferAmount (#736)
Variable NewGuineaSingingDogInu._bothTransferContent(address,address,uint256,uint256,uint256,uint256).rTransferAmount (#745) is too similar to NewGuineaSingingDogInu._bothTransferContent(address,address,uint256,uint256,uint256,uint256).tTransferAmount (#745)
Variable NewGuineaSingingDogInu._transferStandard(address,address,uint256).rTransferAmount (#685) is too similar to NewGuineaSingingDogInu._bothTransferContent(address,address,uint256,uint256,uint256,uint256).tTransferAmount (#745)
Variable NewGuineaSingingDogInu._transferToExcluded(address,address,uint256).rTransferAmount (#701) is too similar to NewGuineaSingingDogInu._excludedFromTransferContent(address,address,uint256,uint256,uint256).tTransferAmount (#710)
Variable NewGuineaSingingDogInu._excludedFromTransferContent(address,address,uint256,uint256,uint256).rTransferAmount (#710) is too similar to NewGuineaSingingDogInu._transferFromExcluded(address,address,uint256).tTransferAmount (#719)
Variable NewGuineaSingingDogInu.reflectionFromToken(uint256,bool).rTransferAmount (#588) is too similar to NewGuineaSingingDogInu._bothTransferContent(address,address,uint256,uint256,uint256,uint256).tTransferAmount (#745)
Variable NewGuineaSingingDogInu._transferBothExcluded(address,address,uint256).rTransferAmount (#736) is too similar to NewGuineaSingingDogInu._excludedFromTransferContent(address,address,uint256,uint256,uint256).tTransferAmount (#710)
Variable NewGuineaSingingDogInu._excludedToTransferContent(address,address,uint256,uint256,uint256).rTransferAmount (#728) is too similar to NewGuineaSingingDogInu._transferStandard(address,address,uint256).tTransferAmount (#685)
Variable NewGuineaSingingDogInu.reflectionFromToken(uint256,bool).rTransferAmount (#588) is too similar to NewGuineaSingingDogInu._excludedFromTransferContent(address,address,uint256,uint256,uint256).tTransferAmount (#710)
Variable NewGuineaSingingDogInu._transferStandard(address,address,uint256).rTransferAmount (#685) is too similar to NewGuineaSingingDogInu._getValues(uint256).tTransferAmount (#763)
Variable NewGuineaSingingDogInu._getRTransferAmount(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#790) is too similar to NewGuineaSingingDogInu._transferStandard(address,address,uint256).tTransferAmount (#685)
Variable NewGuineaSingingDogInu._getRTransferAmount(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#790) is too similar to NewGuineaSingingDogInu._bothTransferContent(address,address,uint256,uint256,uint256,uint256).tTransferAmount (#745)
Variable NewGuineaSingingDogInu._excludedFromTransferContent(address,address,uint256,uint256,uint256).rTransferAmount (#710) is too similar to NewGuineaSingingDogInu._bothTransferContent(address,address,uint256,uint256,uint256,uint256).tTransferAmount (#745)
Variable NewGuineaSingingDogInu._getValues(uint256).rTransferAmount (#766) is too similar to NewGuineaSingingDogInu._transferBothExcluded(address,address,uint256).tTransferAmount (#736)
Variable NewGuineaSingingDogInu._excludedToTransferContent(address,address,uint256,uint256,uint256).rTransferAmount (#728) is too similar to NewGuineaSingingDogInu._bothTransferContent(address,address,uint256,uint256,uint256,uint256).tTransferAmount (#745)
Variable NewGuineaSingingDogInu._transferFromExcluded(address,address,uint256).rTransferAmount (#719) is too similar to NewGuineaSingingDogInu._bothTransferContent(address,address,uint256,uint256,uint256,uint256).tTransferAmount (#745)
Variable NewGuineaSingingDogInu._standardTransferContent(address,address,uint256,uint256).rTransferAmount (#694) is too similar to NewGuineaSingingDogInu._transferToExcluded(address,address,uint256).tTransferAmount (#701)
Variable NewGuineaSingingDogInu._transferBothExcluded(address,address,uint256).rTransferAmount (#736) is too similar to NewGuineaSingingDogInu._bothTransferContent(address,address,uint256,uint256,uint256,uint256).tTransferAmount (#745)
Variable NewGuineaSingingDogInu._getRTransferAmount(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#790) is too similar to NewGuineaSingingDogInu._transferBothExcluded(address,address,uint256).tTransferAmount (#736)
Variable NewGuineaSingingDogInu._transferToExcluded(address,address,uint256).rTransferAmount (#701) is too similar to NewGuineaSingingDogInu._transferBothExcluded(address,address,uint256).tTransferAmount (#736)
Variable NewGuineaSingingDogInu._transferToExcluded(address,address,uint256).rTransferAmount (#701) is too similar to NewGuineaSingingDogInu._transferToExcluded(address,address,uint256).tTransferAmount (#701)
Variable NewGuineaSingingDogInu.reflectionFromToken(uint256,bool).rTransferAmount (#588) is too similar to NewGuineaSingingDogInu._transferBothExcluded(address,address,uint256).tTransferAmount (#736)
Variable NewGuineaSingingDogInu._transferStandard(address,address,uint256).rTransferAmount (#685) is too similar to NewGuineaSingingDogInu._transferBothExcluded(address,address,uint256).tTransferAmount (#736)
Variable NewGuineaSingingDogInu._bothTransferContent(address,address,uint256,uint256,uint256,uint256).rTransferAmount (#745) is too similar to NewGuineaSingingDogInu._transferStandard(address,address,uint256).tTransferAmount (#685)
Variable NewGuineaSingingDogInu._transferBothExcluded(address,address,uint256).rTransferAmount (#736) is too similar to NewGuineaSingingDogInu._transferToExcluded(address,address,uint256).tTransferAmount (#701)
Variable NewGuineaSingingDogInu._excludedFromTransferContent(address,address,uint256,uint256,uint256).rTransferAmount (#710) is too similar to NewGuineaSingingDogInu._transferBothExcluded(address,address,uint256).tTransferAmount (#736)
Variable NewGuineaSingingDogInu.reflectionFromToken(uint256,bool).rTransferAmount (#588) is too similar to NewGuineaSingingDogInu._getValues(uint256).tTransferAmount (#763)
Variable NewGuineaSingingDogInu._excludedFromTransferContent(address,address,uint256,uint256,uint256).rTransferAmount (#710) is too similar to NewGuineaSingingDogInu._transferToExcluded(address,address,uint256).tTransferAmount (#701)
Variable NewGuineaSingingDogInu.reflectionFromToken(uint256,bool).rTransferAmount (#588) is too similar to NewGuineaSingingDogInu._transferToExcluded(address,address,uint256).tTransferAmount (#701)
Variable NewGuineaSingingDogInu._transferFromExcluded(address,address,uint256).rTransferAmount (#719) is too similar to NewGuineaSingingDogInu._transferFromExcluded(address,address,uint256).tTransferAmount (#719)
Variable NewGuineaSingingDogInu._transferBothExcluded(address,address,uint256).rTransferAmount (#736) is too similar to NewGuineaSingingDogInu._transferBothExcluded(address,address,uint256).tTransferAmount (#736)
Variable NewGuineaSingingDogInu.reflectionFromToken(uint256,bool).rTransferAmount (#588) is too similar to NewGuineaSingingDogInu._transferFromExcluded(address,address,uint256).tTransferAmount (#719)
Variable NewGuineaSingingDogInu._getRTransferAmount(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#790) is too similar to NewGuineaSingingDogInu._excludedFromTransferContent(address,address,uint256,uint256,uint256).tTransferAmount (#710)
Variable NewGuineaSingingDogInu._transferFromExcluded(address,address,uint256).rTransferAmount (#719) is too similar to NewGuineaSingingDogInu._transferBothExcluded(address,address,uint256).tTransferAmount (#736)
Variable NewGuineaSingingDogInu._transferToExcluded(address,address,uint256).rTransferAmount (#701) is too similar to NewGuineaSingingDogInu._bothTransferContent(address,address,uint256,uint256,uint256,uint256).tTransferAmount (#745)
Variable NewGuineaSingingDogInu._standardTransferContent(address,address,uint256,uint256).rTransferAmount (#694) is too similar to NewGuineaSingingDogInu._getValues(uint256).tTransferAmount (#763)
Variable NewGuineaSingingDogInu._getValues(uint256).rTransferAmount (#766) is too similar to NewGuineaSingingDogInu._transferFromExcluded(address,address,uint256).tTransferAmount (#719)
Variable NewGuineaSingingDogInu._excludedFromTransferContent(address,address,uint256,uint256,uint256).rTransferAmount (#710) is too similar to NewGuineaSingingDogInu._transferStandard(address,address,uint256).tTransferAmount (#685)
Variable NewGuineaSingingDogInu._standardTransferContent(address,address,uint256,uint256).rTransferAmount (#694) is too similar to NewGuineaSingingDogInu._bothTransferContent(address,address,uint256,uint256,uint256,uint256).tTransferAmount (#745)
Variable NewGuineaSingingDogInu._standardTransferContent(address,address,uint256,uint256).rTransferAmount (#694) is too similar to NewGuineaSingingDogInu._excludedFromTransferContent(address,address,uint256,uint256,uint256).tTransferAmount (#710)
Variable NewGuineaSingingDogInu._transferFromExcluded(address,address,uint256).rTransferAmount (#719) is too similar to NewGuineaSingingDogInu._getValues(uint256).tTransferAmount (#763)
Variable NewGuineaSingingDogInu._standardTransferContent(address,address,uint256,uint256).rTransferAmount (#694) is too similar to NewGuineaSingingDogInu._transferFromExcluded(address,address,uint256).tTransferAmount (#719)
Variable NewGuineaSingingDogInu._excludedFromTransferContent(address,address,uint256,uint256,uint256).rTransferAmount (#710) is too similar to NewGuineaSingingDogInu._getValues(uint256).tTransferAmount (#763)
Variable NewGuineaSingingDogInu._bothTransferContent(address,address,uint256,uint256,uint256,uint256).rTransferAmount (#745) is too similar to NewGuineaSingingDogInu._transferToExcluded(address,address,uint256).tTransferAmount (#701)
Variable NewGuineaSingingDogInu._bothTransferContent(address,address,uint256,uint256,uint256,uint256).rTransferAmount (#745) is too similar to NewGuineaSingingDogInu._getValues(uint256).tTransferAmount (#763)
Variable NewGuineaSingingDogInu._transferFromExcluded(address,address,uint256).rTransferAmount (#719) is too similar to NewGuineaSingingDogInu._transferStandard(address,address,uint256).tTransferAmount (#685)
Variable NewGuineaSingingDogInu._excludedToTransferContent(address,address,uint256,uint256,uint256).rTransferAmount (#728) is too similar to NewGuineaSingingDogInu._getValues(uint256).tTransferAmount (#763)
Variable NewGuineaSingingDogInu._transferBothExcluded(address,address,uint256).rTransferAmount (#736) is too similar to NewGuineaSingingDogInu._getValues(uint256).tTransferAmount (#763)
Variable NewGuineaSingingDogInu._transferBothExcluded(address,address,uint256).rTransferAmount (#736) is too similar to NewGuineaSingingDogInu._transferFromExcluded(address,address,uint256).tTransferAmount (#719)
Variable NewGuineaSingingDogInu._transferFromExcluded(address,address,uint256).rTransferAmount (#719) is too similar to NewGuineaSingingDogInu._excludedFromTransferContent(address,address,uint256,uint256,uint256).tTransferAmount (#710)
Variable NewGuineaSingingDogInu._getValues(uint256).rTransferAmount (#766) is too similar to NewGuineaSingingDogInu._getValues(uint256).tTransferAmount (#763)
Variable NewGuineaSingingDogInu._excludedToTransferContent(address,address,uint256,uint256,uint256).rTransferAmount (#728) is too similar to NewGuineaSingingDogInu._transferFromExcluded(address,address,uint256).tTransferAmount (#719)
Variable NewGuineaSingingDogInu._excludedFromTransferContent(address,address,uint256,uint256,uint256).rTransferAmount (#710) is too similar to NewGuineaSingingDogInu._excludedFromTransferContent(address,address,uint256,uint256,uint256).tTransferAmount (#710)
Variable NewGuineaSingingDogInu._getRTransferAmount(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#790) is too similar to NewGuineaSingingDogInu._transferToExcluded(address,address,uint256).tTransferAmount (#701)
Variable NewGuineaSingingDogInu._getValues(uint256).rTransferAmount (#766) is too similar to NewGuineaSingingDogInu._transferStandard(address,address,uint256).tTransferAmount (#685)
Variable NewGuineaSingingDogInu._bothTransferContent(address,address,uint256,uint256,uint256,uint256).rTransferAmount (#745) is too similar to NewGuineaSingingDogInu._transferFromExcluded(address,address,uint256).tTransferAmount (#719)
Variable NewGuineaSingingDogInu._bothTransferContent(address,address,uint256,uint256,uint256,uint256).rTransferAmount (#745) is too similar to NewGuineaSingingDogInu._excludedFromTransferContent(address,address,uint256,uint256,uint256).tTransferAmount (#710)
Variable NewGuineaSingingDogInu._getRTransferAmount(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#790) is too similar to NewGuineaSingingDogInu._transferFromExcluded(address,address,uint256).tTransferAmount (#719)
Variable NewGuineaSingingDogInu._getValues(uint256).rTransferAmount (#766) is too similar to NewGuineaSingingDogInu._excludedFromTransferContent(address,address,uint256,uint256,uint256).tTransferAmount (#710)
Variable NewGuineaSingingDogInu._transferToExcluded(address,address,uint256).rTransferAmount (#701) is too similar to NewGuineaSingingDogInu._transferStandard(address,address,uint256).tTransferAmount (#685)
Variable NewGuineaSingingDogInu._transferToExcluded(address,address,uint256).rTransferAmount (#701) is too similar to NewGuineaSingingDogInu._transferFromExcluded(address,address,uint256).tTransferAmount (#719)
Variable NewGuineaSingingDogInu._standardTransferContent(address,address,uint256,uint256).rTransferAmount (#694) is too similar to NewGuineaSingingDogInu._transferStandard(address,address,uint256).tTransferAmount (#685)
Variable NewGuineaSingingDogInu._transferStandard(address,address,uint256).rTransferAmount (#685) is too similar to NewGuineaSingingDogInu._transferToExcluded(address,address,uint256).tTransferAmount (#701)
Variable NewGuineaSingingDogInu._transferStandard(address,address,uint256).rTransferAmount (#685) is too similar to NewGuineaSingingDogInu._transferFromExcluded(address,address,uint256).tTransferAmount (#719)
Variable NewGuineaSingingDogInu._transferToExcluded(address,address,uint256).rTransferAmount (#701) is too similar to NewGuineaSingingDogInu._getValues(uint256).tTransferAmount (#763)
Variable NewGuineaSingingDogInu._getValues(uint256).rTransferAmount (#766) is too similar to NewGuineaSingingDogInu._transferToExcluded(address,address,uint256).tTransferAmount (#701)
Variable NewGuineaSingingDogInu._getValues(uint256).rTransferAmount (#766) is too similar to NewGuineaSingingDogInu._bothTransferContent(address,address,uint256,uint256,uint256,uint256).tTransferAmount (#745)
Variable NewGuineaSingingDogInu._standardTransferContent(address,address,uint256,uint256).rTransferAmount (#694) is too similar to NewGuineaSingingDogInu._transferBothExcluded(address,address,uint256).tTransferAmount (#736)
Variable NewGuineaSingingDogInu.reflectionFromToken(uint256,bool).rTransferAmount (#588) is too similar to NewGuineaSingingDogInu._transferStandard(address,address,uint256).tTransferAmount (#685)
Variable NewGuineaSingingDogInu._excludedToTransferContent(address,address,uint256,uint256,uint256).rTransferAmount (#728) is too similar to NewGuineaSingingDogInu._transferToExcluded(address,address,uint256).tTransferAmount (#701)
Variable NewGuineaSingingDogInu._bothTransferContent(address,address,uint256,uint256,uint256,uint256).rTransferAmount (#745) is too similar to NewGuineaSingingDogInu._transferBothExcluded(address,address,uint256).tTransferAmount (#736)
Variable NewGuineaSingingDogInu._excludedToTransferContent(address,address,uint256,uint256,uint256).rTransferAmount (#728) is too similar to NewGuineaSingingDogInu._excludedFromTransferContent(address,address,uint256,uint256,uint256).tTransferAmount (#710)
Variable NewGuineaSingingDogInu._transferBothExcluded(address,address,uint256).rTransferAmount (#736) is too similar to NewGuineaSingingDogInu._transferStandard(address,address,uint256).tTransferAmount (#685)
Variable NewGuineaSingingDogInu._transferStandard(address,address,uint256).rTransferAmount (#685) is too similar to NewGuineaSingingDogInu._transferStandard(address,address,uint256).tTransferAmount (#685)
Prevent variables from having similar names.
Additional information: link
NewGuineaSingingDogInu.slitherConstructorConstantVariables() (#459-847) uses literals with too many digits:
- _MAX_TX_SIZE = 100000000000000000 * _DECIMALFACTOR (#490)
NewGuineaSingingDogInu.slitherConstructorVariables() (#459-847) uses literals with too many digits:
- _tTotal = 100000000000000000 * _DECIMALFACTOR (#480)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
totalFees() should be declared external:
- NewGuineaSingingDogInu.totalFees() (#561-563)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#443-446)
decreaseAllowance(address,uint256) should be declared external:
- NewGuineaSingingDogInu.decreaseAllowance(address,uint256) (#548-551)
symbol() should be declared external:
- NewGuineaSingingDogInu.symbol() (#506-508)
approve(address,uint256) should be declared external:
- NewGuineaSingingDogInu.approve(address,uint256) (#532-535)
transferFrom(address,address,uint256) should be declared external:
- NewGuineaSingingDogInu.transferFrom(address,address,uint256) (#537-541)
increaseAllowance(address,uint256) should be declared external:
- NewGuineaSingingDogInu.increaseAllowance(address,uint256) (#543-546)
reflectionFromToken(uint256,bool) should be declared external:
- NewGuineaSingingDogInu.reflectionFromToken(uint256,bool) (#582-591)
deliver(uint256) should be declared external:
- NewGuineaSingingDogInu.deliver(uint256) (#573-580)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#452-456)
allowance(address,address) should be declared external:
- NewGuineaSingingDogInu.allowance(address,address) (#528-530)
totalMarketing() should be declared external:
- NewGuineaSingingDogInu.totalMarketing() (#569-571)
balanceOf(address) should be declared external:
- NewGuineaSingingDogInu.balanceOf(address) (#518-521)
name() should be declared external:
- NewGuineaSingingDogInu.name() (#502-504)
isExcluded(address) should be declared external:
- NewGuineaSingingDogInu.isExcluded(address) (#553-555)
totalSupply() should be declared external:
- NewGuineaSingingDogInu.totalSupply() (#514-516)
totalBurn() should be declared external:
- NewGuineaSingingDogInu.totalBurn() (#565-567)
transfer(address,uint256) should be declared external:
- NewGuineaSingingDogInu.transfer(address,uint256) (#523-526)
isMarketing(address) should be declared external:
- NewGuineaSingingDogInu.isMarketing(address) (#557-559)
decimals() should be declared external:
- NewGuineaSingingDogInu.decimals() (#510-512)
Use the external attribute for functions never called from the contract.
Additional information: link
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.
Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.
Contract has 4% buy tax and 3% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.
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
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 contract audit
Unable to verify token contract address on the website
Token is not listed at Mobula.Finance
Additional information: link
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
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Token has a considerable age, but social accounts / website are missing or have few users
Token has a considerable age, but average PancakeSwap 30d trading volume is low
Twitter account link seems to be invalid
Unable to find Youtube account
Unable to find Discord account