Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
BEP20ITC.transfer(address,uint256) (#439-467) performs a multiplication on the result of a division:
-_transfer(_msgSender(),AcontractAddr,(feeAmount.mul(6300)).div(10000)) (#448)
-feeAmount = (realAmount.mul(feeRate)).div(10000) (#455)
BEP20ITC.transfer(address,uint256) (#439-467) performs a multiplication on the result of a division:
-feeAmount = (realAmount.mul(feeRate)).div(10000) (#455)
-_transfer(_msgSender(),AcontractAddr,(feeAmount.mul(6300)).div(10000)) (#456)
BEP20ITC.transfer(address,uint256) (#439-467) performs a multiplication on the result of a division:
-_transfer(_msgSender(),BcontractAddr,(feeAmount.mul(2000)).div(10000)) (#449)
-feeAmount = (realAmount.mul(feeRate)).div(10000) (#455)
BEP20ITC.transfer(address,uint256) (#439-467) performs a multiplication on the result of a division:
-feeAmount = (realAmount.mul(feeRate)).div(10000) (#455)
-_transfer(_msgSender(),BcontractAddr,(feeAmount.mul(2000)).div(10000)) (#457)
BEP20ITC.transfer(address,uint256) (#439-467) performs a multiplication on the result of a division:
-_transfer(_msgSender(),blackAddr,(feeAmount.mul(1700)).div(10000)) (#450)
-feeAmount = (realAmount.mul(feeRate)).div(10000) (#455)
BEP20ITC.transfer(address,uint256) (#439-467) performs a multiplication on the result of a division:
-feeAmount = (realAmount.mul(feeRate)).div(10000) (#455)
-_transfer(_msgSender(),blackAddr,(feeAmount.mul(1700)).div(10000)) (#458)
BEP20ITC.transferFrom(address,address,uint256) (#500-531) performs a multiplication on the result of a division:
-_transfer(sender,AcontractAddr,(feeAmount.mul(6300)).div(10000)) (#509)
-feeAmount = (realAmount.mul(feeRate)).div(10000) (#516)
BEP20ITC.transferFrom(address,address,uint256) (#500-531) performs a multiplication on the result of a division:
-feeAmount = (realAmount.mul(feeRate)).div(10000) (#516)
-_transfer(sender,AcontractAddr,(feeAmount.mul(6300)).div(10000)) (#517)
BEP20ITC.transferFrom(address,address,uint256) (#500-531) performs a multiplication on the result of a division:
-_transfer(sender,BcontractAddr,(feeAmount.mul(2000)).div(10000)) (#510)
-feeAmount = (realAmount.mul(feeRate)).div(10000) (#516)
BEP20ITC.transferFrom(address,address,uint256) (#500-531) performs a multiplication on the result of a division:
-feeAmount = (realAmount.mul(feeRate)).div(10000) (#516)
-_transfer(sender,BcontractAddr,(feeAmount.mul(2000)).div(10000)) (#518)
BEP20ITC.transferFrom(address,address,uint256) (#500-531) performs a multiplication on the result of a division:
-_transfer(sender,blackAddr,(feeAmount.mul(1700)).div(10000)) (#511)
-feeAmount = (realAmount.mul(feeRate)).div(10000) (#516)
BEP20ITC.transferFrom(address,address,uint256) (#500-531) performs a multiplication on the result of a division:
-feeAmount = (realAmount.mul(feeRate)).div(10000) (#516)
-_transfer(sender,blackAddr,(feeAmount.mul(1700)).div(10000)) (#519)
Consider ordering multiplication before division.
Additional information: link
BEP20ITC.allowance(address,address).owner (#472) shadows:
- Ownable.owner() (#313-315) (function)
BEP20ITC._approve(address,address,uint256).owner (#634) shadows:
- Ownable.owner() (#313-315) (function)
Rename the local variables that shadow another component.
Additional information: link
BEP20ITC.constructor(address,address,address,address)._blackAddr (#375) lacks a zero-check on :
- blackAddr = _blackAddr (#381)
BEP20ITC.constructor(address,address,address,address)._AcontractAddr (#375) lacks a zero-check on :
- AcontractAddr = _AcontractAddr (#382)
BEP20ITC.constructor(address,address,address,address)._BcontractAddr (#375) lacks a zero-check on :
- BcontractAddr = _BcontractAddr (#383)
Check that the address is not zero.
Additional information: link
BEP20ITC._burnFrom(address,uint256) (#648-651) is never used and should be removed
Context._msgData() (#129-132) is never used and should be removed
SafeMath.mod(uint256,uint256) (#263-265) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#278-281) is never used and should be removed
Remove unused functions.
Additional information: link
Variable BEP20ITC._decimals (#367) is not in mixedCase
Variable BEP20ITC._symbol (#368) is not in mixedCase
Variable BEP20ITC._name (#369) is not in mixedCase
Variable BEP20ITC.AcontractAddr (#371) is not in mixedCase
Variable BEP20ITC.BcontractAddr (#372) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#130)" inContext (#120-133)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable BEP20ITC.AcontractAddr (#371) is too similar to BEP20ITC.BcontractAddr (#372)
Variable BEP20ITC.constructor(address,address,address,address)._AcontractAddr (#375) is too similar to BEP20ITC.constructor(address,address,address,address)._BcontractAddr (#375)
Prevent variables from having similar names.
Additional information: link
BEP20ITC.constructor(address,address,address,address) (#375-387) uses literals with too many digits:
- _totalSupply = 2100000000000000 (#379)
BEP20ITC.slitherConstructorVariables() (#355-659) uses literals with too many digits:
- feeToStop = 2100000000000000 (#361)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
BEP20ITC.feeToStop (#361) should be constant
BEP20ITC.transferFee (#365) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#332-335)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#341-343)
increaseAllowance(address,uint256) should be declared external:
- BEP20ITC.increaseAllowance(address,uint256) (#545-548)
decreaseAllowance(address,uint256) should be declared external:
- BEP20ITC.decreaseAllowance(address,uint256) (#564-567)
burn(uint256) should be declared external:
- BEP20ITC.burn(uint256) (#573-576)
Use the external attribute for functions never called from the contract.
Additional information: link
Average 30d PancakeSwap liquidity is low.
Average 30d PancakeSwap volume is low.
Average 30d number of PancakeSwap swaps is low.
Average PancakeSwap trading volume, liqudity, number of swaps are low. Token seems to be inactive.
Token is deployed only at one blockchain
Token has only one trading pair
Unable to find website, listings and other project-related information
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Unable to find Telegram and Twitter accounts