I-COIN Token Logo

ICN [I-COIN] Token

About ICN

Listings

Token 2 years
CoinGecko 2 years
CoinMarketCap 2 years
[CoinGecko] alert: I-Coin migrated from V1 to V2 contract. Visit here for more info on the migration.
The following token has a variable tax function on the smart contract - which allows contract owners to change tax rates post deployment.
Do your own research and be careful if you are trading this token.
white paper

A huge ecosystem with blockchain technology. ILAND (Metaverse), Indonesia Battle Warrior (P2E Game Play) & IMARKET (NFT Marketplace) which will support the use of I-COIN on Binance Smartchain BEP20 network.

Laser Scorebeta Last Audit: 30 October 2022

report
Token is either risky or in presale. For presale 30+ is a fine score.

ICNV2.distributeFee() (contracts/ICNV2.sol#303-333) sends eth to arbitrary user
Dangerous calls:
- (sent) = address(_taxFeeWallet).call{gas: 30000,value: amountBNB}() (contracts/ICNV2.sol#324-327)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in ICNV2._transferTax(address,address,uint256) (contracts/ICNV2.sol#246-289):
External calls:
- distributeFee() (contracts/ICNV2.sol#274)
- _router.swapExactTokensForETHSupportingFeeOnTransferTokens(swapAmount,0,path,address(this),block.timestamp) (contracts/ICNV2.sol#312-331)
- (sent) = address(_taxFeeWallet).call{gas: 30000,value: amountBNB}() (contracts/ICNV2.sol#324-327)
External calls sending eth:
- distributeFee() (contracts/ICNV2.sol#274)
- (sent) = address(_taxFeeWallet).call{gas: 30000,value: amountBNB}() (contracts/ICNV2.sol#324-327)
State variables written after the call(s):
- _balances[recipient] = _balances[recipient].add(amountReceived) (contracts/ICNV2.sol#286)
Apply the check-effects-interactions pattern.

Additional information: link


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.


Contract ownership is not renounced (belongs to a wallet)


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains

ICNV2._approve(address,address,uint256).owner (contracts/ICNV2.sol#359) shadows:
- Ownable.owner() (@openzeppelin/contracts/access/Ownable.sol#35-37) (function)
ICNV2.allowance(address,address).owner (contracts/ICNV2.sol#110) shadows:
- Ownable.owner() (@openzeppelin/contracts/access/Ownable.sol#35-37) (function)
Rename the local variables that shadow another component.

Additional information: link

ICNV2.setTax(uint256,uint256) (contracts/ICNV2.sol#25-28) should emit an event for:
- _taxSell = taxSell_ (contracts/ICNV2.sol#26)
- _taxBuy = taxBuy_ (contracts/ICNV2.sol#27)
ICNV2.setRFI(uint256) (contracts/ICNV2.sol#155-157) should emit an event for:
- _taxRFI = percent_ (contracts/ICNV2.sol#156)
ICNV2.setTaxDivider(uint256) (contracts/ICNV2.sol#30-32) should emit an event for:
- _taxDivider = input_ (contracts/ICNV2.sol#31)
Emit an event for critical parameter changes.

Additional information: link

ICNV2.WBNB (contracts/ICNV2.sol#44) should be constant
ICNV2._name (contracts/ICNV2.sol#15) should be constant
ICNV2._decimals (contracts/ICNV2.sol#17) should be constant
ICNV2.ROUTER (contracts/ICNV2.sol#42) should be constant
ICNV2.FACTORY (contracts/ICNV2.sol#43) should be constant
ICNV2.ZERO (contracts/ICNV2.sol#41) should be constant
ICNV2._symbol (contracts/ICNV2.sol#16) should be constant
ICNV2.DEAD (contracts/ICNV2.sol#40) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

Contract name (I-COIN) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.

Reentrancy in ICNV2.distributeFee() (contracts/ICNV2.sol#303-333):
External calls:
- _router.swapExactTokensForETHSupportingFeeOnTransferTokens(swapAmount,0,path,address(this),block.timestamp) (contracts/ICNV2.sol#312-331)
Event emitted after the call(s):
- DistributeFailed(e) (contracts/ICNV2.sol#330)
Reentrancy in ICNV2._transferTax(address,address,uint256) (contracts/ICNV2.sol#246-289):
External calls:
- distributeFee() (contracts/ICNV2.sol#274)
- _router.swapExactTokensForETHSupportingFeeOnTransferTokens(swapAmount,0,path,address(this),block.timestamp) (contracts/ICNV2.sol#312-331)
- (sent) = address(_taxFeeWallet).call{gas: 30000,value: amountBNB}() (contracts/ICNV2.sol#324-327)
External calls sending eth:
- distributeFee() (contracts/ICNV2.sol#274)
- (sent) = address(_taxFeeWallet).call{gas: 30000,value: amountBNB}() (contracts/ICNV2.sol#324-327)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (contracts/ICNV2.sol#287)
Apply the check-effects-interactions pattern.

Additional information: link

Different versions of Solidity are used:
- Version used: ['^0.8.0', '^0.8.4']
- ^0.8.0 (@openzeppelin/contracts/access/Ownable.sol#4)
- ^0.8.0 (@openzeppelin/contracts/token/ERC20/IERC20.sol#4)
- ^0.8.0 (@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol#4)
- ^0.8.0 (@openzeppelin/contracts/utils/Context.sol#4)
- ^0.8.0 (@openzeppelin/contracts/utils/math/SafeMath.sol#4)
- ^0.8.4 (contracts/ICNV2.sol#3)
- ^0.8.4 (contracts/interface/ITaxCollector.sol#1)
Use one Solidity version.

Additional information: link

SafeMath.tryDiv(uint256,uint256) (@openzeppelin/contracts/utils/math/SafeMath.sol#64-69) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (@openzeppelin/contracts/utils/math/SafeMath.sol#76-81) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (@openzeppelin/contracts/utils/math/SafeMath.sol#22-28) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (@openzeppelin/contracts/utils/math/SafeMath.sol#217-226) is never used and should be removed
SafeMath.div(uint256,uint256,string) (@openzeppelin/contracts/utils/math/SafeMath.sol#191-200) is never used and should be removed
Context._msgData() (@openzeppelin/contracts/utils/Context.sol#21-23) is never used and should be removed
SafeMath.mod(uint256,uint256) (@openzeppelin/contracts/utils/math/SafeMath.sol#151-153) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (@openzeppelin/contracts/utils/math/SafeMath.sol#47-57) is never used and should be removed
SafeMath.trySub(uint256,uint256) (@openzeppelin/contracts/utils/math/SafeMath.sol#35-40) is never used and should be removed
ICNV2._burn(address,uint256) (contracts/ICNV2.sol#345-356) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version^0.8.0 (@openzeppelin/contracts/token/ERC20/IERC20.sol#4) allows old versions
Pragma version^0.8.0 (@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol#4) allows old versions
Pragma version^0.8.0 (@openzeppelin/contracts/utils/math/SafeMath.sol#4) allows old versions
Pragma version^0.8.0 (@openzeppelin/contracts/access/Ownable.sol#4) allows old versions
Pragma version^0.8.0 (@openzeppelin/contracts/utils/Context.sol#4) 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

Low level call in ICNV2.distributeFee() (contracts/ICNV2.sol#303-333):
- (sent) = address(_taxFeeWallet).call{gas: 30000,value: amountBNB}() (contracts/ICNV2.sol#324-327)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable ICNV2._excludedBuyFee (contracts/ICNV2.sol#55) is not in mixedCase
Variable ICNV2.ZERO (contracts/ICNV2.sol#41) is not in mixedCase
Variable ICNV2._taxRFI (contracts/ICNV2.sol#23) is not in mixedCase
Variable ICNV2._excludedSellFee (contracts/ICNV2.sol#56) is not in mixedCase
Variable ICNV2._router (contracts/ICNV2.sol#46) is not in mixedCase
Variable ICNV2._pair (contracts/ICNV2.sol#45) is not in mixedCase
Variable ICNV2._taxFeeWallet (contracts/ICNV2.sol#22) is not in mixedCase
Variable ICNV2._taxDivider (contracts/ICNV2.sol#21) is not in mixedCase
Variable ICNV2._taxSell (contracts/ICNV2.sol#19) is not in mixedCase
Function IRouter.WETH() (contracts/interface/IRouter.sol#4) is not in mixedCase
Variable ICNV2.FACTORY (contracts/ICNV2.sol#43) is not in mixedCase
Variable ICNV2._taxBuy (contracts/ICNV2.sol#20) is not in mixedCase
Variable ICNV2.DEAD (contracts/ICNV2.sol#40) is not in mixedCase
Variable ICNV2.ROUTER (contracts/ICNV2.sol#42) is not in mixedCase
Variable ICNV2.WBNB (contracts/ICNV2.sol#44) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (contracts/interface/IRouter.sol#9) is too similar to IRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (contracts/interface/IRouter.sol#10)
Prevent variables from having similar names.

Additional information: link

ICNV2._transferTax(address,address,uint256) (contracts/ICNV2.sol#246-289) uses literals with too many digits:
- rfi = _taxRFI.mul(amount).div(100000) (contracts/ICNV2.sol#267)
ICNV2.constructor() (contracts/ICNV2.sol#68-80) uses literals with too many digits:
- _mint(_msgSender(),100000000 * 10 ** uint256(_decimals)) (contracts/ICNV2.sol#79)
ICNV2.slitherConstructorVariables() (contracts/ICNV2.sol#13-369) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (contracts/ICNV2.sol#40)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

transferFrom(address,address,uint256) should be declared external:
- ICNV2.transferFrom(address,address,uint256) (contracts/ICNV2.sol#179-193)
increaseAllowance(address,uint256) should be declared external:
- ICNV2.increaseAllowance(address,uint256) (contracts/ICNV2.sol#195-206)
changeExcludeSellFee(address) should be declared external:
- ICNV2.changeExcludeSellFee(address) (contracts/ICNV2.sol#62-64)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (@openzeppelin/contracts/access/Ownable.sol#54-56)
symbol() should be declared external:
- ICNV2.symbol() (contracts/ICNV2.sol#88-90)
setTaxDivider(uint256) should be declared external:
- ICNV2.setTaxDivider(uint256) (contracts/ICNV2.sol#30-32)
distributeTax() should be declared external:
- ICNV2.distributeTax() (contracts/ICNV2.sol#132-134)
setTeamTax(uint256,address) should be declared external:
- ICNV2.setTeamTax(uint256,address) (contracts/ICNV2.sol#136-138)
currentBalance() should be declared external:
- ICNV2.currentBalance() (contracts/ICNV2.sol#120-122)
contractBalance() should be declared external:
- ICNV2.contractBalance() (contracts/ICNV2.sol#124-126)
changeExcludeBuyFee(address) should be declared external:
- ICNV2.changeExcludeBuyFee(address) (contracts/ICNV2.sol#58-60)
allowance(address,address) should be declared external:
- ICNV2.allowance(address,address) (contracts/ICNV2.sol#110-118)
setRFI(uint256) should be declared external:
- ICNV2.setRFI(uint256) (contracts/ICNV2.sol#155-157)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (@openzeppelin/contracts/access/Ownable.sol#62-65)
transfer(address,uint256) should be declared external:
- ICNV2.transfer(address,uint256) (contracts/ICNV2.sol#159-167)
decimals() should be declared external:
- ICNV2.decimals() (contracts/ICNV2.sol#92-94)
taxBalance() should be declared external:
- ICNV2.taxBalance() (contracts/ICNV2.sol#128-130)
setMarketingTax(uint256,address) should be declared external:
- ICNV2.setMarketingTax(uint256,address) (contracts/ICNV2.sol#140-145)
setTaxTransferOwner(address) should be declared external:
- ICNV2.setTaxTransferOwner(address) (contracts/ICNV2.sol#151-153)
setSedekahTax(uint256,address) should be declared external:
- ICNV2.setSedekahTax(uint256,address) (contracts/ICNV2.sol#147-149)
setTaxFeeWallet(address) should be declared external:
- ICNV2.setTaxFeeWallet(address) (contracts/ICNV2.sol#34-38)
totalSupply() should be declared external:
- ICNV2.totalSupply() (contracts/ICNV2.sol#96-98)
approve(address,uint256) should be declared external:
- ICNV2.approve(address,uint256) (contracts/ICNV2.sol#169-177)
decreaseAllowance(address,uint256) should be declared external:
- ICNV2.decreaseAllowance(address,uint256) (contracts/ICNV2.sol#208-222)
setTax(uint256,uint256) should be declared external:
- ICNV2.setTax(uint256,uint256) (contracts/ICNV2.sol#25-28)
name() should be declared external:
- ICNV2.name() (contracts/ICNV2.sol#84-86)
Use the external attribute for functions never called from the contract.

Additional information: link

ICNV2.distributeFee().e (contracts/ICNV2.sol#329) 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

Variable 'ICNV2.distributeFee().e (contracts/ICNV2.sol#329)' in ICNV2.distributeFee() (contracts/ICNV2.sol#303-333) potentially used before declaration: DistributeFailed(e) (contracts/ICNV2.sol#330)
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

ICNV2.FACTORY (contracts/ICNV2.sol#43) is never used in ICNV2 (contracts/ICNV2.sol#13-369)
ICNV2.ZERO (contracts/ICNV2.sol#41) is never used in ICNV2 (contracts/ICNV2.sol#13-369)
Remove unused state variables.

Additional information: link

Holders:


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.

Contract has 5% buy tax and 8% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Token is deployed only at one blockchain


Last post in Twitter was more than 30 days ago


Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap

Additional information: link


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


Token has no active CoinMarketCap listing / rank


Token has relatively low CoinGecko 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

Price for ICN

News for ICN