Community driven & fair launch. The dev team burned all of their tokens and participated with everyone else.
Automatic LP
Every trade contributes towards automatically generating liquidity that goes into multiple pools used by exchanges
RFI Static Rewards
Holders earn passive rewards through static reflection as they watch their balance of DeFi Coin grow indefinitely.
Usage Scenarios
DeFi Coin will also offer an option to participate in the exchange of collectibles on the platform. We will have a section for non-fungible tokens (NFT) that users can trade for DeFiCoin. You can choose to keep these NFTs if you own or trade them on DeFiCoinSwap.
CoinToken.addLiquidity(uint256,uint256) (#1115-1128) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1120-1127)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in CoinToken._transfer(address,address,uint256) (#1028-1072):
External calls:
- swapAndLiquify(contractTokenBalance) (#1059)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1120-1127)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1106-1112)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1059)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1120-1127)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1071)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#979)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1153)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1162)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1173)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1154)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#893)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1174)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1164)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#895)
- _tokenTransfer(from,to,amount,takeFee) (#1071)
- _rTotal = _rTotal.sub(rFee) (#934)
- _tokenTransfer(from,to,amount,takeFee) (#1071)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#981)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#892)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1172)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1163)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#894)
Apply the check-effects-interactions pattern.
Additional information: link
Contract ownership is not renounced (belongs to a wallet)
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
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.
CoinToken.addLiquidity(uint256,uint256) (#1115-1128) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1120-1127)
Ensure that all the return values of the function calls are used.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#361-382) uses assembly
- INLINE ASM (#374-377)
Address.isContract(address) (#268-277) uses assembly
- INLINE ASM (#275)
Do not use evm assembly.
Additional information: link
CoinToken.includeInReward(address) (#878-889) has costly operations inside a loop:
- _excluded.pop() (#885)
Use a local variable to hold the loop computation result.
Additional information: link
Low level call in Address.sendValue(address,uint256) (#295-301):
- (success) = recipient.call{value: amount}() (#299)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#361-382):
- (success,returndata) = target.call{value: weiValue}(data) (#365)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
CoinToken.allowance(address,address).owner (#787) shadows:
- Ownable.owner() (#408-410) (function)
CoinToken._approve(address,address,uint256).owner (#1020) shadows:
- Ownable.owner() (#408-410) (function)
Rename the local variables that shadow another component.
Additional information: link
CoinToken.setLiquidityFeePercent(uint256) (#913-915) should emit an event for:
- _liquidityFee = liquidityFee (#914)
CoinToken.setMaxTxPercent(uint256) (#921-923) should emit an event for:
- _maxTxAmount = maxTxPercent * 10 ** _decimals (#922)
CoinToken.setNumTokensSellToAddToLiquidity(uint256) (#917-919) should emit an event for:
- numTokensSellToAddToLiquidity = swapNumber * 10 ** _decimals (#918)
CoinToken.setTaxFeePercent(uint256) (#909-911) should emit an event for:
- _taxFee = taxFee (#910)
Emit an event for critical parameter changes.
Additional information: link
CoinToken.constructor().tokenOwner (#740) lacks a zero-check on :
- _owner = tokenOwner (#756)
Check that the address is not zero.
Additional information: link
CoinToken.constructor() (#728-758) uses literals with too many digits:
- _tTotal = 100000000 * 10 ** _decimals (#732)
CoinToken.constructor() (#728-758) uses literals with too many digits:
- _maxTxAmount = 500000 * 10 ** _decimals (#738)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
CoinToken.copyMapData(address[]) (#848-860) has external calls inside a loop: amount = IERC20(0x9D36C80944ab74930FB216daf0C043D4dcCdAeB7).balanceOf(trd) (#853)
Favor pull over push strategy for external calls.
Additional information: link
Reentrancy in CoinToken.swapAndLiquify(uint256) (#1074-1095):
External calls:
- swapTokensForEth(half) (#1086)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1106-1112)
- addLiquidity(otherHalf,newBalance) (#1092)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1120-1127)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1092)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1120-1127)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1092)
- _allowances[owner][spender] = amount (#1024)
Reentrancy in CoinToken.transferFrom(address,address,uint256) (#796-800):
External calls:
- _transfer(sender,recipient,amount) (#797)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1120-1127)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1106-1112)
External calls sending eth:
- _transfer(sender,recipient,amount) (#797)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1120-1127)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#798)
- _allowances[owner][spender] = amount (#1024)
Reentrancy in CoinToken._transfer(address,address,uint256) (#1028-1072):
External calls:
- swapAndLiquify(contractTokenBalance) (#1059)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1120-1127)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1106-1112)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1059)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1120-1127)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1071)
- _liquidityFee = _previousLiquidityFee (#1013)
- _liquidityFee = 0 (#1008)
- _tokenTransfer(from,to,amount,takeFee) (#1071)
- _previousLiquidityFee = _liquidityFee (#1005)
- _tokenTransfer(from,to,amount,takeFee) (#1071)
- _previousTaxFee = _taxFee (#1004)
- _tokenTransfer(from,to,amount,takeFee) (#1071)
- _tFeeTotal = _tFeeTotal.add(tFee) (#935)
- _tokenTransfer(from,to,amount,takeFee) (#1071)
- _taxFee = _previousTaxFee (#1012)
- _taxFee = 0 (#1007)
Reentrancy in CoinToken.setRouterAddress(address) (#829-837):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#833-834)
State variables written after the call(s):
- uniswapV2Router = _uniswapV2Router (#836)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in CoinToken._transfer(address,address,uint256) (#1028-1072):
External calls:
- swapAndLiquify(contractTokenBalance) (#1059)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1120-1127)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1106-1112)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1059)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1120-1127)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1157)
- _tokenTransfer(from,to,amount,takeFee) (#1071)
- Transfer(sender,recipient,tTransferAmount) (#1167)
- _tokenTransfer(from,to,amount,takeFee) (#1071)
- Transfer(sender,recipient,tTransferAmount) (#1177)
- _tokenTransfer(from,to,amount,takeFee) (#1071)
- Transfer(sender,recipient,tTransferAmount) (#898)
- _tokenTransfer(from,to,amount,takeFee) (#1071)
Reentrancy in CoinToken.swapAndLiquify(uint256) (#1074-1095):
External calls:
- swapTokensForEth(half) (#1086)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1106-1112)
- addLiquidity(otherHalf,newBalance) (#1092)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1120-1127)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1092)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1120-1127)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1025)
- addLiquidity(otherHalf,newBalance) (#1092)
- SwapAndLiquify(half,newBalance,otherHalf) (#1094)
Reentrancy in CoinToken.transferFrom(address,address,uint256) (#796-800):
External calls:
- _transfer(sender,recipient,amount) (#797)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1120-1127)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1106-1112)
External calls sending eth:
- _transfer(sender,recipient,amount) (#797)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1120-1127)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1025)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#798)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#455-460) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#457)
Avoid relying on block.timestamp.
Additional information: link
Address.sendValue(address,uint256) (#295-301) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#346-348) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#229-232) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#356-359) is never used and should be removed
Context._msgData() (#240-243) is never used and should be removed
SafeMath.mod(uint256,uint256) (#213-215) is never used and should be removed
Address._functionCallWithValue(address,bytes,uint256,string) (#361-382) is never used and should be removed
Address.isContract(address) (#268-277) is never used and should be removed
Address.functionCall(address,bytes,string) (#331-333) is never used and should be removed
Address.functionCall(address,bytes) (#321-323) is never used and should be removed
Remove unused functions.
Additional information: link
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#500) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#517) is not in mixedCase
Variable CoinToken._liquidityFee (#702) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#499) is not in mixedCase
Parameter CoinToken.setSwapAndLiquifyEnabled(bool)._enabled (#925) is not in mixedCase
Variable CoinToken._maxTxAmount (#711) is not in mixedCase
Parameter CoinToken.calculateLiquidityFee(uint256)._amount (#995) is not in mixedCase
Variable Ownable._owner (#398) is not in mixedCase
Variable CoinToken._taxFee (#699) is not in mixedCase
Function IUniswapV2Router01.WETH() (#539) is not in mixedCase
Parameter CoinToken.calculateTaxFee(uint256)._amount (#989) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#241)" inContext (#235-244)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable CoinToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#955) is too similar to CoinToken._transferToExcluded(address,address,uint256).tTransferAmount (#1161)
Variable CoinToken._transferStandard(address,address,uint256).rTransferAmount (#1152) is too similar to CoinToken._getValues(uint256).tTransferAmount (#939)
Variable CoinToken._getValues(uint256).rTransferAmount (#940) is too similar to CoinToken._transferStandard(address,address,uint256).tTransferAmount (#1152)
Variable CoinToken._getValues(uint256).rTransferAmount (#940) is too similar to CoinToken._transferBothExcluded(address,address,uint256).tTransferAmount (#891)
Variable CoinToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#955) is too similar to CoinToken._transferStandard(address,address,uint256).tTransferAmount (#1152)
Variable CoinToken._transferToExcluded(address,address,uint256).rTransferAmount (#1161) is too similar to CoinToken._getValues(uint256).tTransferAmount (#939)
Variable CoinToken.reflectionFromToken(uint256,bool).rTransferAmount (#844) is too similar to CoinToken._transferToExcluded(address,address,uint256).tTransferAmount (#1161)
Variable CoinToken._getValues(uint256).rTransferAmount (#940) is too similar to CoinToken._transferToExcluded(address,address,uint256).tTransferAmount (#1161)
Variable CoinToken.reflectionFromToken(uint256,bool).rTransferAmount (#844) is too similar to CoinToken._getTValues(uint256).tTransferAmount (#947)
Variable CoinToken._getValues(uint256).rTransferAmount (#940) is too similar to CoinToken._getTValues(uint256).tTransferAmount (#947)
Variable CoinToken._transferStandard(address,address,uint256).rTransferAmount (#1152) is too similar to CoinToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1171)
Variable CoinToken._transferStandard(address,address,uint256).rTransferAmount (#1152) is too similar to CoinToken._transferStandard(address,address,uint256).tTransferAmount (#1152)
Variable CoinToken.reflectionFromToken(uint256,bool).rTransferAmount (#844) is too similar to CoinToken._getValues(uint256).tTransferAmount (#939)
Variable CoinToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1171) is too similar to CoinToken._transferBothExcluded(address,address,uint256).tTransferAmount (#891)
Variable CoinToken._transferBothExcluded(address,address,uint256).rTransferAmount (#891) is too similar to CoinToken._transferBothExcluded(address,address,uint256).tTransferAmount (#891)
Variable CoinToken._transferToExcluded(address,address,uint256).rTransferAmount (#1161) is too similar to CoinToken._transferStandard(address,address,uint256).tTransferAmount (#1152)
Variable CoinToken._transferStandard(address,address,uint256).rTransferAmount (#1152) is too similar to CoinToken._transferToExcluded(address,address,uint256).tTransferAmount (#1161)
Variable CoinToken._transferToExcluded(address,address,uint256).rTransferAmount (#1161) is too similar to CoinToken._getTValues(uint256).tTransferAmount (#947)
Variable CoinToken._transferStandard(address,address,uint256).rTransferAmount (#1152) is too similar to CoinToken._transferBothExcluded(address,address,uint256).tTransferAmount (#891)
Variable CoinToken._getValues(uint256).rTransferAmount (#940) is too similar to CoinToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1171)
Variable CoinToken._getValues(uint256).rTransferAmount (#940) is too similar to CoinToken._getValues(uint256).tTransferAmount (#939)
Variable CoinToken.reflectionFromToken(uint256,bool).rTransferAmount (#844) is too similar to CoinToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1171)
Variable CoinToken._transferStandard(address,address,uint256).rTransferAmount (#1152) is too similar to CoinToken._getTValues(uint256).tTransferAmount (#947)
Variable CoinToken._transferToExcluded(address,address,uint256).rTransferAmount (#1161) is too similar to CoinToken._transferBothExcluded(address,address,uint256).tTransferAmount (#891)
Variable CoinToken._transferBothExcluded(address,address,uint256).rTransferAmount (#891) is too similar to CoinToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1171)
Variable CoinToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#955) is too similar to CoinToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1171)
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#544) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#545)
Variable CoinToken.reflectionFromToken(uint256,bool).rTransferAmount (#844) is too similar to CoinToken._transferStandard(address,address,uint256).tTransferAmount (#1152)
Variable CoinToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#955) is too similar to CoinToken._getTValues(uint256).tTransferAmount (#947)
Variable CoinToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1171) is too similar to CoinToken._getTValues(uint256).tTransferAmount (#947)
Variable CoinToken._transferBothExcluded(address,address,uint256).rTransferAmount (#891) is too similar to CoinToken._getTValues(uint256).tTransferAmount (#947)
Variable CoinToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1171) is too similar to CoinToken._getValues(uint256).tTransferAmount (#939)
Variable CoinToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1171) is too similar to CoinToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1171)
Variable CoinToken._transferBothExcluded(address,address,uint256).rTransferAmount (#891) is too similar to CoinToken._getValues(uint256).tTransferAmount (#939)
Variable CoinToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#955) is too similar to CoinToken._getValues(uint256).tTransferAmount (#939)
Variable CoinToken._transferBothExcluded(address,address,uint256).rTransferAmount (#891) is too similar to CoinToken._transferToExcluded(address,address,uint256).tTransferAmount (#1161)
Variable CoinToken._transferToExcluded(address,address,uint256).rTransferAmount (#1161) is too similar to CoinToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1171)
Variable CoinToken._transferToExcluded(address,address,uint256).rTransferAmount (#1161) is too similar to CoinToken._transferToExcluded(address,address,uint256).tTransferAmount (#1161)
Variable CoinToken._transferBothExcluded(address,address,uint256).rTransferAmount (#891) is too similar to CoinToken._transferStandard(address,address,uint256).tTransferAmount (#1152)
Variable CoinToken.reflectionFromToken(uint256,bool).rTransferAmount (#844) is too similar to CoinToken._transferBothExcluded(address,address,uint256).tTransferAmount (#891)
Variable CoinToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#955) is too similar to CoinToken._transferBothExcluded(address,address,uint256).tTransferAmount (#891)
Variable CoinToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1171) is too similar to CoinToken._transferToExcluded(address,address,uint256).tTransferAmount (#1161)
Variable CoinToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1171) is too similar to CoinToken._transferStandard(address,address,uint256).tTransferAmount (#1152)
Prevent variables from having similar names.
Additional information: link
totalFees() should be declared external:
- CoinToken.totalFees() (#816-818)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#427-430)
totalSupply() should be declared external:
- CoinToken.totalSupply() (#773-775)
setSwapAndLiquifyEnabled(bool) should be declared external:
- CoinToken.setSwapAndLiquifyEnabled(bool) (#925-928)
includeInFee(address) should be declared external:
- CoinToken.includeInFee(address) (#905-907)
isExcludedFromReward(address) should be declared external:
- CoinToken.isExcludedFromReward(address) (#812-814)
approve(address,uint256) should be declared external:
- CoinToken.approve(address,uint256) (#791-794)
reflectionFromToken(uint256,bool) should be declared external:
- CoinToken.reflectionFromToken(uint256,bool) (#838-847)
excludeFromReward(address) should be declared external:
- CoinToken.excludeFromReward(address) (#868-876)
deliver(uint256) should be declared external:
- CoinToken.deliver(uint256) (#820-827)
setNumTokensSellToAddToLiquidity(uint256) should be declared external:
- CoinToken.setNumTokensSellToAddToLiquidity(uint256) (#917-919)
decreaseAllowance(address,uint256) should be declared external:
- CoinToken.decreaseAllowance(address,uint256) (#807-810)
excludeFromFee(address) should be declared external:
- CoinToken.excludeFromFee(address) (#901-903)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#436-440)
isExcludedFromFee(address) should be declared external:
- CoinToken.isExcludedFromFee(address) (#1016-1018)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#442-444)
transfer(address,uint256) should be declared external:
- CoinToken.transfer(address,uint256) (#782-785)
setRouterAddress(address) should be declared external:
- CoinToken.setRouterAddress(address) (#829-837)
transferFrom(address,address,uint256) should be declared external:
- CoinToken.transferFrom(address,address,uint256) (#796-800)
decimals() should be declared external:
- CoinToken.decimals() (#769-771)
copyMapData(address[]) should be declared external:
- CoinToken.copyMapData(address[]) (#848-860)
symbol() should be declared external:
- CoinToken.symbol() (#765-767)
unlock() should be declared external:
- Ownable.unlock() (#455-460)
increaseAllowance(address,uint256) should be declared external:
- CoinToken.increaseAllowance(address,uint256) (#802-805)
name() should be declared external:
- CoinToken.name() (#761-763)
allowance(address,address) should be declared external:
- CoinToken.allowance(address,address) (#787-789)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#447-452)
setMaxTxPercent(uint256) should be declared external:
- CoinToken.setMaxTxPercent(uint256) (#921-923)
claimTokens() should be declared external:
- CoinToken.claimTokens() (#985-987)
Use the external attribute for functions never called from the contract.
Additional information: link
Contract has 10% buy tax and 11% sell tax.
Taxes are suspiciously high (over 10%) and contract ownership is not renounced. Token has a high risk of becoming a honeypot.
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
Token has a considerable age, but average PancakeSwap 30d trading volume is low
Token has relatively low CoinGecko rank
Token has relatively low CoinMarketCap rank
Twitter account link seems to be invalid