Champion Tiger Token Logo

Champion Tiger Token

About Champion Tiger

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Laser Scorebeta Last Audit: 4 February 2022

report
Token seems to be anonymous. As long as we are unable to find website score is limited.


Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)

Contract locking ether found:
Contract ChampionTiger (#949-1129) has payable functions:
- ChampionTiger.receive() (#1127)
But does not have a function to withdraw the ether
Remove the payable attribute or add a withdraw function.

Additional information: link

Contract ticker (Champion Tiger) 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.

ChampionTiger._transfer(address,address,uint256) (#1069-1124) performs a multiplication on the result of a division:
-_fee = amount.mul(sellFeeRate).div(100) (#1104)
-super._transfer(sender,mintContract,_fee.mul(40).div(100)) (#1105)
ChampionTiger._transfer(address,address,uint256) (#1069-1124) performs a multiplication on the result of a division:
-_fee = amount.mul(sellFeeRate).div(100) (#1104)
-super._transfer(sender,addressForMarketing,_fee.mul(400).div(1000)) (#1106)
ChampionTiger._transfer(address,address,uint256) (#1069-1124) performs a multiplication on the result of a division:
-_fee = amount.mul(sellFeeRate).div(100) (#1104)
-super._transfer(sender,BurnAddr,_fee.mul(200).div(1000)) (#1107)
ChampionTiger._transfer(address,address,uint256) (#1069-1124) performs a multiplication on the result of a division:
-_fee_scope_0 = amount.mul(buyFeeRate).div(100) (#1116)
-super._transfer(sender,mintContract,_fee_scope_0.mul(60).div(100)) (#1117)
ChampionTiger._transfer(address,address,uint256) (#1069-1124) performs a multiplication on the result of a division:
-_fee_scope_0 = amount.mul(buyFeeRate).div(100) (#1116)
-super._transfer(sender,addressForMarketing,_fee_scope_0.sub(_fee_scope_0.mul(60).div(100))) (#1118)
Consider ordering multiplication before division.

Additional information: link

ChampionTiger.antiBot(uint256) (#1029-1036) should emit an event for:
- antiBotAmount = amount (#1033)
Emit an event for critical parameter changes.

Additional information: link

ChampionTiger.SetMintContract(address).contrat_addr (#1054) lacks a zero-check on :
- mintContract = contrat_addr (#1056)
Check that the address is not zero.

Additional information: link

ChampionTiger._transfer(address,address,uint256) (#1069-1124) uses timestamp for comparisons
Dangerous comparisons:
- botAddresses[sender] && amount > antiBotAmount && antiBotTime > block.timestamp (#1075-1077)
- unlockTime > block.timestamp (#1084)
Avoid relying on block.timestamp.

Additional information: link

ChampionTiger.isContractaddr(address) (#1059-1063) uses assembly
- INLINE ASM (#1061)
Do not use evm assembly.

Additional information: link

Context._msgData() (#237-239) is never used and should be removed
SafeMath.add(uint256,uint256) (#86-88) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#184-193) is never used and should be removed
SafeMath.mod(uint256,uint256) (#144-146) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#210-219) is never used and should be removed
SafeMath.sub(uint256,uint256,string) (#161-170) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#15-21) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#57-62) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#69-74) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#40-50) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#28-33) is never used and should be removed
Remove unused functions.

Additional information: link

ChampionTiger.tokensForRewards (#970) is set pre-construction with a non-constant function or state variable:
- MAX_TOKENS_FOR_REWARDS
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 (#6) allows old versions
solc-0.8.11 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

Function IUniswapV2Router01.WETH() (#812) is not in mixedCase
Parameter ChampionTiger.setBotAddresses(address[])._addresses (#1012) is not in mixedCase
Parameter ChampionTiger.addBotAddress(address)._address (#1020) is not in mixedCase
Function ChampionTiger.SetMintContract(address) (#1054-1057) is not in mixedCase
Parameter ChampionTiger.SetMintContract(address).contrat_addr (#1054) is not in mixedCase
Variable ChampionTiger.MAX_TOTAL_SUPPLY (#952) is not in mixedCase
Variable ChampionTiger.MAX_TOKENS_FOR_REWARDS (#953) is not in mixedCase
Variable ChampionTiger.MAX_LOCK (#954) is not in mixedCase
Variable ChampionTiger.BurnAddr (#958) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#817) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#818)
Prevent variables from having similar names.

Additional information: link

ChampionTiger.slitherConstructorVariables() (#949-1129) uses literals with too many digits:
- MAX_TOTAL_SUPPLY = 100000000 * 10 ** 9 (#952)
ChampionTiger.slitherConstructorVariables() (#949-1129) uses literals with too many digits:
- MAX_LOCK = 100000000 * 10 ** 9 (#954)
ChampionTiger.slitherConstructorVariables() (#949-1129) uses literals with too many digits:
- BurnAddr = 0x000000000000000000000000000000000000dEaD (#958)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

ChampionTiger.BurnAddr (#958) should be constant
ChampionTiger.MAX_LOCK (#954) should be constant
ChampionTiger.MAX_TOKENS_FOR_REWARDS (#953) should be constant
ChampionTiger.MAX_TOTAL_SUPPLY (#952) should be constant
ChampionTiger.antiBotDuration (#974) should be constant
ChampionTiger.buyFeeRate (#980) should be constant
ChampionTiger.sellFeeRate (#979) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

name() should be declared external:
- ERC20.name() (#394-396)
symbol() should be declared external:
- ERC20.symbol() (#402-404)
decimals() should be declared external:
- ChampionTiger.decimals() (#999-1001)
- ERC20.decimals() (#419-421)
totalSupply() should be declared external:
- ERC20.totalSupply() (#426-428)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#445-448)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#464-467)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#482-496)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#510-513)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#529-537)
burn(uint256) should be declared external:
- ERC20Burnable.burn(uint256) (#700-702)
burnFrom(address,uint256) should be declared external:
- ERC20Burnable.burnFrom(address,uint256) (#715-722)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#772-774)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#780-783)
getUnlockTime() should be declared external:
- ChampionTiger.getUnlockTime() (#1003-1005)
getvalue() should be declared external:
- ChampionTiger.getvalue() (#1041-1043)
excludeFromFee(address) should be declared external:
- ChampionTiger.excludeFromFee(address) (#1046-1048)
includeInFee(address) should be declared external:
- ChampionTiger.includeInFee(address) (#1050-1052)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token seems to be untradeable: there is no PancakeSwap trading pair and no trading volumes. Ignore for presale.


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


Unable to find Twitter account


Telegram account has less than 100 subscribers


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


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

Price for Champion Tiger