CollieInu Token Logo

COLLIEINU Token

About COLLIEINU

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 29 December 2021

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...)

Reentrancy in COLLIEINU._transfer(address,address,uint256) (#504-551):
External calls:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#542)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#620-627)
- (success) = recipient.call{value: amount}() (#115)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#639-645)
- address(marketingWallet).sendValue(marketingAmt) (#601)
- address(devWallet).sendValue(devAmt) (#605)
- address(buybackWallet).sendValue(buybackAmt) (#610)
- swapAndLiquify(swapTokensAtAmount,taxes) (#543)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#620-627)
- (success) = recipient.call{value: amount}() (#115)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#639-645)
- address(marketingWallet).sendValue(marketingAmt) (#601)
- address(devWallet).sendValue(devAmt) (#605)
- address(buybackWallet).sendValue(buybackAmt) (#610)
External calls sending eth:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#542)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#620-627)
- (success) = recipient.call{value: amount}() (#115)
- swapAndLiquify(swapTokensAtAmount,taxes) (#543)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#620-627)
- (success) = recipient.call{value: amount}() (#115)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee,isSell) (#550)
- _rOwned[address(this)] += rMarketing (#402)
- _rOwned[address(this)] += rBuyback (#423)
- _rOwned[address(this)] += rLiquidity (#392)
- _rOwned[address(this)] += rDev (#412)
- _rOwned[sender] = _rOwned[sender] - s.rAmount (#566)
- _rOwned[recipient] = _rOwned[recipient] + s.rTransferAmount (#567)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#550)
- _rTotal -= rRfi (#381)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#550)
- _tOwned[sender] = _tOwned[sender] - tAmount (#560)
- _tOwned[address(this)] += tDev (#410)
- _tOwned[address(this)] += tMarketing (#400)
- _tOwned[address(this)] += tBuyback (#421)
- _tOwned[address(this)] += tLiquidity (#390)
- _tOwned[recipient] = _tOwned[recipient] + s.tTransferAmount (#563)
Apply the check-effects-interactions pattern.

Additional information: link

COLLIEINU.rescueAnyBEP20Tokens(address,address,uint256) (#722-724) ignores return value by IERC20(_tokenAddr).transfer(_to,_amount) (#723)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link

COLLIEINU.addLiquidity(uint256,uint256) (#615-628) sends eth to arbitrary user
Dangerous calls:
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#620-627)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

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.


Combination 2: Unchecked transfer + 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.


Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.

COLLIEINU.constructor(address)._pair (#221-222) lacks a zero-check on :
- pair = _pair (#225)
COLLIEINU.updateMarketingWallet(address).newWallet (#661) lacks a zero-check on :
- marketingWallet = newWallet (#662)
COLLIEINU.updateDevWallet(address).newWallet (#665) lacks a zero-check on :
- devWallet = newWallet (#666)
COLLIEINU.updateBuybackWallet(address).newWallet (#669) lacks a zero-check on :
- buybackWallet = newWallet (#670)
COLLIEINU.updateRouterAndPair(address,address).newPair (#710) lacks a zero-check on :
- pair = newPair (#712)
Check that the address is not zero.

Additional information: link

COLLIEINU.setTradingStatus(bool) (#321-325) compares to a boolean constant:
-state == true && genesis_block == 0 (#324)
Remove the equality to the boolean constant.

Additional information: link

COLLIEINU.includeInReward(address) (#343-354) has costly operations inside a loop:
- _excluded.pop() (#350)
COLLIEINU._reflectRfi(uint256,uint256) (#380-383) has costly operations inside a loop:
- _rTotal -= rRfi (#381)
Use a local variable to hold the loop computation result.

Additional information: link

COLLIEINU.swapAndLiquify(uint256,COLLIEINU.Taxes) (#581-613) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - temp.liquidity) (#591)
-bnbToAddLiquidityWith = unitBalance * temp.liquidity (#592)
COLLIEINU.swapAndLiquify(uint256,COLLIEINU.Taxes) (#581-613) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - temp.liquidity) (#591)
-marketingAmt = unitBalance * 2 * temp.marketing (#599)
COLLIEINU.swapAndLiquify(uint256,COLLIEINU.Taxes) (#581-613) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - temp.liquidity) (#591)
-devAmt = unitBalance * 2 * temp.dev (#603)
COLLIEINU.swapAndLiquify(uint256,COLLIEINU.Taxes) (#581-613) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - temp.liquidity) (#591)
-buybackAmt = unitBalance * 2 * temp.buyback (#608)
Consider ordering multiplication before division.

Additional information: link

COLLIEINU.addLiquidity(uint256,uint256) (#615-628) ignores return value by router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#620-627)
Ensure that all the return values of the function calls are used.

Additional information: link

COLLIEINU.allowance(address,address).owner (#267) shadows:
- Ownable.owner() (#62-64) (function)
COLLIEINU._approve(address,address,uint256).owner (#497) shadows:
- Ownable.owner() (#62-64) (function)
Rename the local variables that shadow another component.

Additional information: link

COLLIEINU.updateCooldown(bool,uint256) (#673-676) should emit an event for:
- coolDownTime = time * 1 (#674)
COLLIEINU.updateSwapTokensAtAmount(uint256) (#678-680) should emit an event for:
- swapTokensAtAmount = amount * 10 ** _decimals (#679)
COLLIEINU.updateMaxTxLimit(uint256,uint256) (#701-704) should emit an event for:
- maxBuyLimit = maxBuy * 10 ** decimals() (#702)
- maxSellLimit = maxSell * 10 ** decimals() (#703)
COLLIEINU.updateMaxWalletlimit(uint256) (#706-708) should emit an event for:
- maxWalletLimit = amount * 10 ** decimals() (#707)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in COLLIEINU._transfer(address,address,uint256) (#504-551):
External calls:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#542)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#620-627)
- (success) = recipient.call{value: amount}() (#115)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#639-645)
- address(marketingWallet).sendValue(marketingAmt) (#601)
- address(devWallet).sendValue(devAmt) (#605)
- address(buybackWallet).sendValue(buybackAmt) (#610)
- swapAndLiquify(swapTokensAtAmount,taxes) (#543)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#620-627)
- (success) = recipient.call{value: amount}() (#115)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#639-645)
- address(marketingWallet).sendValue(marketingAmt) (#601)
- address(devWallet).sendValue(devAmt) (#605)
- address(buybackWallet).sendValue(buybackAmt) (#610)
External calls sending eth:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#542)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#620-627)
- (success) = recipient.call{value: amount}() (#115)
- swapAndLiquify(swapTokensAtAmount,taxes) (#543)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#620-627)
- (success) = recipient.call{value: amount}() (#115)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee,isSell) (#550)
- totFeesPaid.dev += tDev (#406)
- totFeesPaid.marketing += tMarketing (#396)
- totFeesPaid.buyback += tBuyback (#417)
- totFeesPaid.liquidity += tLiquidity (#386)
- totFeesPaid.rfi += tRfi (#382)
Reentrancy in COLLIEINU.constructor(address) (#219-244):
External calls:
- _pair = IFactory(_router.factory()).createPair(address(this),_router.WETH()) (#221-222)
State variables written after the call(s):
- excludeFromReward(pair) (#227)
- _excluded.push(account) (#340)
- excludeFromReward(pair) (#227)
- _isExcluded[account] = true (#339)
- _isExcludedFromFee[address(this)] = true (#230)
- _isExcludedFromFee[owner()] = true (#231)
- _isExcludedFromFee[marketingWallet] = true (#232)
- _isExcludedFromFee[devWallet] = true (#233)
- _isExcludedFromFee[buybackWallet] = true (#234)
- _rOwned[owner()] = _rTotal (#229)
- excludeFromReward(pair) (#227)
- _tOwned[account] = tokenFromReflection(_rOwned[account]) (#337)
- allowedTransfer[address(this)] = true (#236)
- allowedTransfer[owner()] = true (#237)
- allowedTransfer[pair] = true (#238)
- allowedTransfer[marketingWallet] = true (#239)
- allowedTransfer[devWallet] = true (#240)
- allowedTransfer[buybackWallet] = true (#241)
- pair = _pair (#225)
- router = _router (#224)
Reentrancy in COLLIEINU.swapAndLiquify(uint256,COLLIEINU.Taxes) (#581-613):
External calls:
- swapTokensForBNB(toSwap) (#588)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#639-645)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#596)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#620-627)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#596)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#620-627)
State variables written after the call(s):
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#596)
- _allowances[owner][spender] = amount (#500)
Reentrancy in COLLIEINU.transferFrom(address,address,uint256) (#276-284):
External calls:
- _transfer(sender,recipient,amount) (#277)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#620-627)
- (success) = recipient.call{value: amount}() (#115)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#639-645)
- address(marketingWallet).sendValue(marketingAmt) (#601)
- address(devWallet).sendValue(devAmt) (#605)
- address(buybackWallet).sendValue(buybackAmt) (#610)
External calls sending eth:
- _transfer(sender,recipient,amount) (#277)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#620-627)
- (success) = recipient.call{value: amount}() (#115)
State variables written after the call(s):
- _approve(sender,_msgSender(),currentAllowance - amount) (#281)
- _allowances[owner][spender] = amount (#500)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in COLLIEINU._transfer(address,address,uint256) (#504-551):
External calls:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#542)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#620-627)
- (success) = recipient.call{value: amount}() (#115)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#639-645)
- address(marketingWallet).sendValue(marketingAmt) (#601)
- address(devWallet).sendValue(devAmt) (#605)
- address(buybackWallet).sendValue(buybackAmt) (#610)
- swapAndLiquify(swapTokensAtAmount,taxes) (#543)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#620-627)
- (success) = recipient.call{value: amount}() (#115)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#639-645)
- address(marketingWallet).sendValue(marketingAmt) (#601)
- address(devWallet).sendValue(devAmt) (#605)
- address(buybackWallet).sendValue(buybackAmt) (#610)
External calls sending eth:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#542)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#620-627)
- (success) = recipient.call{value: amount}() (#115)
- swapAndLiquify(swapTokensAtAmount,taxes) (#543)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#620-627)
- (success) = recipient.call{value: amount}() (#115)
Event emitted after the call(s):
- Transfer(sender,address(this),s.tLiquidity + s.tMarketing + s.tDev + s.tBuyback) (#572)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#550)
- Transfer(sender,recipient,s.tTransferAmount) (#577)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#550)
Reentrancy in COLLIEINU.constructor(address) (#219-244):
External calls:
- _pair = IFactory(_router.factory()).createPair(address(this),_router.WETH()) (#221-222)
Event emitted after the call(s):
- Transfer(address(0),owner(),_tTotal) (#243)
Reentrancy in COLLIEINU.swapAndLiquify(uint256,COLLIEINU.Taxes) (#581-613):
External calls:
- swapTokensForBNB(toSwap) (#588)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#639-645)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#596)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#620-627)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#596)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#620-627)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#501)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#596)
Reentrancy in COLLIEINU.transferFrom(address,address,uint256) (#276-284):
External calls:
- _transfer(sender,recipient,amount) (#277)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#620-627)
- (success) = recipient.call{value: amount}() (#115)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#639-645)
- address(marketingWallet).sendValue(marketingAmt) (#601)
- address(devWallet).sendValue(devAmt) (#605)
- address(buybackWallet).sendValue(buybackAmt) (#610)
External calls sending eth:
- _transfer(sender,recipient,amount) (#277)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#620-627)
- (success) = recipient.call{value: amount}() (#115)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#501)
- _approve(sender,_msgSender(),currentAllowance - amount) (#281)
Apply the check-effects-interactions pattern.

Additional information: link

COLLIEINU._transfer(address,address,uint256) (#504-551) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(timePassed >= coolDownTime,Cooldown enabled) (#531)
Avoid relying on block.timestamp.

Additional information: link

Context._msgData() (#47-50) is never used and should be removed
Remove unused functions.

Additional information: link

COLLIEINU._rTotal (#157) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
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

Low level call in Address.sendValue(address,uint256) (#112-117):
- (success) = recipient.call{value: amount}() (#115)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IRouter.WETH() (#93) is not in mixedCase
Struct COLLIEINU.valuesFromGetValues (#194-208) is not in CapWords
Parameter COLLIEINU.setTaxes(uint256,uint256,uint256,uint256,uint256)._rfi (#370) is not in mixedCase
Parameter COLLIEINU.setTaxes(uint256,uint256,uint256,uint256,uint256)._marketing (#370) is not in mixedCase
Parameter COLLIEINU.setTaxes(uint256,uint256,uint256,uint256,uint256)._liquidity (#370) is not in mixedCase
Parameter COLLIEINU.setTaxes(uint256,uint256,uint256,uint256,uint256)._dev (#370) is not in mixedCase
Parameter COLLIEINU.setTaxes(uint256,uint256,uint256,uint256,uint256)._buyback (#370) is not in mixedCase
Parameter COLLIEINU.setSellTaxes(uint256,uint256,uint256,uint256,uint256)._rfi (#375) is not in mixedCase
Parameter COLLIEINU.setSellTaxes(uint256,uint256,uint256,uint256,uint256)._marketing (#375) is not in mixedCase
Parameter COLLIEINU.setSellTaxes(uint256,uint256,uint256,uint256,uint256)._liquidity (#375) is not in mixedCase
Parameter COLLIEINU.setSellTaxes(uint256,uint256,uint256,uint256,uint256)._dev (#375) is not in mixedCase
Parameter COLLIEINU.setSellTaxes(uint256,uint256,uint256,uint256,uint256)._buyback (#375) is not in mixedCase
Parameter COLLIEINU.updateSwapEnabled(bool)._enabled (#682) is not in mixedCase
Parameter COLLIEINU.rescueAnyBEP20Tokens(address,address,uint256)._tokenAddr (#722) is not in mixedCase
Parameter COLLIEINU.rescueAnyBEP20Tokens(address,address,uint256)._to (#722) is not in mixedCase
Parameter COLLIEINU.rescueAnyBEP20Tokens(address,address,uint256)._amount (#722) is not in mixedCase
Constant COLLIEINU._decimals (#153) is not in UPPER_CASE_WITH_UNDERSCORES
Variable COLLIEINU.genesis_block (#164) is not in mixedCase
Constant COLLIEINU._name (#170) is not in UPPER_CASE_WITH_UNDERSCORES
Constant COLLIEINU._symbol (#171) is not in UPPER_CASE_WITH_UNDERSCORES
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#48)" inContext (#42-51)
Remove redundant statements if they congest code but offer no value.

Additional information: link

COLLIEINU._tTotal (#156) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#71-73)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#75-78)
name() should be declared external:
- COLLIEINU.name() (#247-249)
symbol() should be declared external:
- COLLIEINU.symbol() (#250-252)
totalSupply() should be declared external:
- COLLIEINU.totalSupply() (#258-260)
allowance(address,address) should be declared external:
- COLLIEINU.allowance(address,address) (#267-269)
approve(address,uint256) should be declared external:
- COLLIEINU.approve(address,uint256) (#271-274)
transferFrom(address,address,uint256) should be declared external:
- COLLIEINU.transferFrom(address,address,uint256) (#276-284)
increaseAllowance(address,uint256) should be declared external:
- COLLIEINU.increaseAllowance(address,uint256) (#286-289)
decreaseAllowance(address,uint256) should be declared external:
- COLLIEINU.decreaseAllowance(address,uint256) (#291-297)
transfer(address,uint256) should be declared external:
- COLLIEINU.transfer(address,uint256) (#299-303)
isExcludedFromReward(address) should be declared external:
- COLLIEINU.isExcludedFromReward(address) (#305-307)
reflectionFromToken(uint256,bool) should be declared external:
- COLLIEINU.reflectionFromToken(uint256,bool) (#309-318)
excludeFromFee(address) should be declared external:
- COLLIEINU.excludeFromFee(address) (#357-359)
includeInFee(address) should be declared external:
- COLLIEINU.includeInFee(address) (#361-363)
isExcludedFromFee(address) should be declared external:
- COLLIEINU.isExcludedFromFee(address) (#366-368)
setTaxes(uint256,uint256,uint256,uint256,uint256) should be declared external:
- COLLIEINU.setTaxes(uint256,uint256,uint256,uint256,uint256) (#370-373)
setSellTaxes(uint256,uint256,uint256,uint256,uint256) should be declared external:
- COLLIEINU.setSellTaxes(uint256,uint256,uint256,uint256,uint256) (#375-378)
rescueAnyBEP20Tokens(address,address,uint256) should be declared external:
- COLLIEINU.rescueAnyBEP20Tokens(address,address,uint256) (#722-724)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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 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.


Unable to find Telegram and Twitter accounts


Unable to find website, listings and other project-related information


Young tokens have high risks of price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for COLLIEINU