BabyHusky Token Logo

BabyHusky Token

About BabyHusky

Listings

Not Found
Token 3 years

Innovative burning projects initiated by some communities and technical teams.

BabyHusky respects the skills and lessons of the predecessor Doge Coin and BabyDog, cultivates the community, serves the community, and gives back to the community. The downside of the currency price cannot be reduced.

Social

Laser Scorebeta Last Audit: 28 February 2022

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

Reentrancy in BabyHusky._transfer(address,address,uint256) (#1323-1373):
External calls:
- swapAndLiquify(contractTokenBalance) (#1360)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1421-1428)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1407-1413)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1360)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1421-1428)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1372)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1275)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1468)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1488)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1510)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1141)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1469)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1490)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1511)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1143)
- _tokenTransfer(from,to,amount,takeFee) (#1372)
- _rTotal = _rTotal.sub(rFee) (#1186)
- _tokenTransfer(from,to,amount,takeFee) (#1372)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1277)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1509)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1140)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1489)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1142)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#286-298) uses assembly
- INLINE ASM (#294-296)
Address._functionCallWithValue(address,bytes,uint256,string) (#413-440) uses assembly
- INLINE ASM (#432-435)
Do not use evm assembly.

Additional information: link

BabyHusky.includeInReward(address) (#1114-1125) has costly operations inside a loop:
- _excluded.pop() (#1121)
Use a local variable to hold the loop computation result.

Additional information: link

BabyHusky.addLiquidity(uint256,uint256) (#1416-1429) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1421-1428)
Ensure that all the return values of the function calls are used.

Additional information: link

BabyHusky.allowance(address,address).owner (#992) shadows:
- Ownable.owner() (#477-479) (function)
BabyHusky._approve(address,address,uint256).owner (#1312) shadows:
- Ownable.owner() (#477-479) (function)
Rename the local variables that shadow another component.

Additional information: link

BabyHusky.setTaxFeePercent(uint256) (#1157-1159) should emit an event for:
- _taxFee = taxFee (#1158)
BabyHusky.setLiquidityFeePercent(uint256) (#1161-1163) should emit an event for:
- _liquidityFee = liquidityFee (#1162)
BabyHusky.setMaxTxPercent(uint256) (#1165-1167) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#1166)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in BabyHusky._transfer(address,address,uint256) (#1323-1373):
External calls:
- swapAndLiquify(contractTokenBalance) (#1360)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1421-1428)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1407-1413)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1360)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1421-1428)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1372)
- _liquidityFee = _previousLiquidityFee (#1304)
- _liquidityFee = 0 (#1299)
- _tokenTransfer(from,to,amount,takeFee) (#1372)
- _previousLiquidityFee = _liquidityFee (#1296)
- _tokenTransfer(from,to,amount,takeFee) (#1372)
- _previousTaxFee = _taxFee (#1295)
- _tokenTransfer(from,to,amount,takeFee) (#1372)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1187)
- _tokenTransfer(from,to,amount,takeFee) (#1372)
- _taxFee = _previousTaxFee (#1303)
- _taxFee = 0 (#1298)
Reentrancy in BabyHusky.constructor() (#943-960):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#949-950)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#956)
- _isExcludedFromFee[address(this)] = true (#957)
- uniswapV2Router = _uniswapV2Router (#953)
Reentrancy in BabyHusky.swapAndLiquify(uint256) (#1375-1396):
External calls:
- swapTokensForEth(half) (#1387)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1407-1413)
- addLiquidity(otherHalf,newBalance) (#1393)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1421-1428)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1393)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1421-1428)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1393)
- _allowances[owner][spender] = amount (#1319)
Reentrancy in BabyHusky.transferFrom(address,address,uint256) (#1010-1025):
External calls:
- _transfer(sender,recipient,amount) (#1015)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1421-1428)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1407-1413)
External calls sending eth:
- _transfer(sender,recipient,amount) (#1015)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1421-1428)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#1016-1023)
- _allowances[owner][spender] = amount (#1319)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in BabyHusky._transfer(address,address,uint256) (#1323-1373):
External calls:
- swapAndLiquify(contractTokenBalance) (#1360)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1421-1428)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1407-1413)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1360)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1421-1428)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1472)
- _tokenTransfer(from,to,amount,takeFee) (#1372)
- Transfer(sender,recipient,tTransferAmount) (#1493)
- _tokenTransfer(from,to,amount,takeFee) (#1372)
- Transfer(sender,recipient,tTransferAmount) (#1514)
- _tokenTransfer(from,to,amount,takeFee) (#1372)
- Transfer(sender,recipient,tTransferAmount) (#1146)
- _tokenTransfer(from,to,amount,takeFee) (#1372)
Reentrancy in BabyHusky.constructor() (#943-960):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#949-950)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#959)
Reentrancy in BabyHusky.swapAndLiquify(uint256) (#1375-1396):
External calls:
- swapTokensForEth(half) (#1387)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1407-1413)
- addLiquidity(otherHalf,newBalance) (#1393)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1421-1428)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1393)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1421-1428)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1320)
- addLiquidity(otherHalf,newBalance) (#1393)
- SwapAndLiquify(half,newBalance,otherHalf) (#1395)
Reentrancy in BabyHusky.transferFrom(address,address,uint256) (#1010-1025):
External calls:
- _transfer(sender,recipient,amount) (#1015)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1421-1428)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1407-1413)
External calls sending eth:
- _transfer(sender,recipient,amount) (#1015)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1421-1428)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1320)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#1016-1023)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#527-535) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#532)
Avoid relying on block.timestamp.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#413-440) is never used and should be removed
Address.functionCall(address,bytes) (#348-353) is never used and should be removed
Address.functionCall(address,bytes,string) (#361-367) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#380-392) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#400-411) is never used and should be removed
Address.isContract(address) (#286-298) is never used and should be removed
Address.sendValue(address,uint256) (#316-328) is never used and should be removed
Context._msgData() (#259-262) is never used and should be removed
SafeMath.mod(uint256,uint256) (#228-230) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#244-251) is never used and should be removed
Remove unused functions.

Additional information: link

BabyHusky._rTotal (#906) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
BabyHusky._previousTaxFee (#914) is set pre-construction with a non-constant function or state variable:
- _taxFee
BabyHusky._previousLiquidityFee (#917) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
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) (#316-328):
- (success) = recipient.call{value: amount}() (#323)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#413-440):
- (success,returndata) = target.call{value: weiValue}(data) (#422-423)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#605) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#607) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#638) is not in mixedCase
Function IUniswapV2Router01.WETH() (#686) is not in mixedCase
Parameter BabyHusky.setSwapAndLiquifyEnabled(bool)._enabled (#1169) is not in mixedCase
Parameter BabyHusky.setPause(bool)._enabled (#1174) is not in mixedCase
Parameter BabyHusky.calculateTaxFee(uint256)._amount (#1280) is not in mixedCase
Parameter BabyHusky.calculateLiquidityFee(uint256)._amount (#1284) is not in mixedCase
Variable BabyHusky._taxFee (#913) is not in mixedCase
Variable BabyHusky._liquidityFee (#916) is not in mixedCase
Variable BabyHusky._maxTxAmount (#926) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#260)" inContext (#254-263)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#691) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#692)
Variable BabyHusky._transferToExcluded(address,address,uint256).rTransferAmount (#1482) is too similar to BabyHusky._transferFromExcluded(address,address,uint256).tTransferAmount (#1505)
Variable BabyHusky._transferStandard(address,address,uint256).rTransferAmount (#1462) is too similar to BabyHusky._transferStandard(address,address,uint256).tTransferAmount (#1464)
Variable BabyHusky.reflectionFromToken(uint256,bool).rTransferAmount (#1086) is too similar to BabyHusky._transferBothExcluded(address,address,uint256).tTransferAmount (#1136)
Variable BabyHusky.reflectionFromToken(uint256,bool).rTransferAmount (#1086) is too similar to BabyHusky._transferToExcluded(address,address,uint256).tTransferAmount (#1484)
Variable BabyHusky._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1248) is too similar to BabyHusky._transferStandard(address,address,uint256).tTransferAmount (#1464)
Variable BabyHusky._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1248) is too similar to BabyHusky._getTValues(uint256).tTransferAmount (#1227)
Variable BabyHusky._transferStandard(address,address,uint256).rTransferAmount (#1462) is too similar to BabyHusky._transferBothExcluded(address,address,uint256).tTransferAmount (#1136)
Variable BabyHusky._transferStandard(address,address,uint256).rTransferAmount (#1462) is too similar to BabyHusky._transferToExcluded(address,address,uint256).tTransferAmount (#1484)
Variable BabyHusky.reflectionFromToken(uint256,bool).rTransferAmount (#1086) is too similar to BabyHusky._transferFromExcluded(address,address,uint256).tTransferAmount (#1505)
Variable BabyHusky._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1248) is too similar to BabyHusky._transferToExcluded(address,address,uint256).tTransferAmount (#1484)
Variable BabyHusky._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1248) is too similar to BabyHusky._transferBothExcluded(address,address,uint256).tTransferAmount (#1136)
Variable BabyHusky._getValues(uint256).rTransferAmount (#1204) is too similar to BabyHusky._transferToExcluded(address,address,uint256).tTransferAmount (#1484)
Variable BabyHusky._transferStandard(address,address,uint256).rTransferAmount (#1462) is too similar to BabyHusky._transferFromExcluded(address,address,uint256).tTransferAmount (#1505)
Variable BabyHusky.reflectionFromToken(uint256,bool).rTransferAmount (#1086) is too similar to BabyHusky._getValues(uint256).tTransferAmount (#1202)
Variable BabyHusky._transferBothExcluded(address,address,uint256).rTransferAmount (#1134) is too similar to BabyHusky._transferBothExcluded(address,address,uint256).tTransferAmount (#1136)
Variable BabyHusky._transferBothExcluded(address,address,uint256).rTransferAmount (#1134) is too similar to BabyHusky._transferToExcluded(address,address,uint256).tTransferAmount (#1484)
Variable BabyHusky._transferFromExcluded(address,address,uint256).rTransferAmount (#1503) is too similar to BabyHusky._transferBothExcluded(address,address,uint256).tTransferAmount (#1136)
Variable BabyHusky._transferFromExcluded(address,address,uint256).rTransferAmount (#1503) is too similar to BabyHusky._transferToExcluded(address,address,uint256).tTransferAmount (#1484)
Variable BabyHusky._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1248) is too similar to BabyHusky._transferFromExcluded(address,address,uint256).tTransferAmount (#1505)
Variable BabyHusky._transferStandard(address,address,uint256).rTransferAmount (#1462) is too similar to BabyHusky._getValues(uint256).tTransferAmount (#1202)
Variable BabyHusky._transferToExcluded(address,address,uint256).rTransferAmount (#1482) is too similar to BabyHusky._transferBothExcluded(address,address,uint256).tTransferAmount (#1136)
Variable BabyHusky._transferToExcluded(address,address,uint256).rTransferAmount (#1482) is too similar to BabyHusky._transferToExcluded(address,address,uint256).tTransferAmount (#1484)
Variable BabyHusky._transferBothExcluded(address,address,uint256).rTransferAmount (#1134) is too similar to BabyHusky._transferFromExcluded(address,address,uint256).tTransferAmount (#1505)
Variable BabyHusky._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1248) is too similar to BabyHusky._getValues(uint256).tTransferAmount (#1202)
Variable BabyHusky.reflectionFromToken(uint256,bool).rTransferAmount (#1086) is too similar to BabyHusky._transferStandard(address,address,uint256).tTransferAmount (#1464)
Variable BabyHusky._transferFromExcluded(address,address,uint256).rTransferAmount (#1503) is too similar to BabyHusky._transferFromExcluded(address,address,uint256).tTransferAmount (#1505)
Variable BabyHusky.reflectionFromToken(uint256,bool).rTransferAmount (#1086) is too similar to BabyHusky._getTValues(uint256).tTransferAmount (#1227)
Variable BabyHusky._transferFromExcluded(address,address,uint256).rTransferAmount (#1503) is too similar to BabyHusky._getValues(uint256).tTransferAmount (#1202)
Variable BabyHusky._transferStandard(address,address,uint256).rTransferAmount (#1462) is too similar to BabyHusky._getTValues(uint256).tTransferAmount (#1227)
Variable BabyHusky._transferBothExcluded(address,address,uint256).rTransferAmount (#1134) is too similar to BabyHusky._getTValues(uint256).tTransferAmount (#1227)
Variable BabyHusky._transferToExcluded(address,address,uint256).rTransferAmount (#1482) is too similar to BabyHusky._getTValues(uint256).tTransferAmount (#1227)
Variable BabyHusky._getValues(uint256).rTransferAmount (#1204) is too similar to BabyHusky._getTValues(uint256).tTransferAmount (#1227)
Variable BabyHusky._transferFromExcluded(address,address,uint256).rTransferAmount (#1503) is too similar to BabyHusky._getTValues(uint256).tTransferAmount (#1227)
Variable BabyHusky._transferBothExcluded(address,address,uint256).rTransferAmount (#1134) is too similar to BabyHusky._transferStandard(address,address,uint256).tTransferAmount (#1464)
Variable BabyHusky._transferToExcluded(address,address,uint256).rTransferAmount (#1482) is too similar to BabyHusky._transferStandard(address,address,uint256).tTransferAmount (#1464)
Variable BabyHusky._getValues(uint256).rTransferAmount (#1204) is too similar to BabyHusky._transferStandard(address,address,uint256).tTransferAmount (#1464)
Variable BabyHusky._transferBothExcluded(address,address,uint256).rTransferAmount (#1134) is too similar to BabyHusky._getValues(uint256).tTransferAmount (#1202)
Variable BabyHusky._transferToExcluded(address,address,uint256).rTransferAmount (#1482) is too similar to BabyHusky._getValues(uint256).tTransferAmount (#1202)
Variable BabyHusky._getValues(uint256).rTransferAmount (#1204) is too similar to BabyHusky._getValues(uint256).tTransferAmount (#1202)
Variable BabyHusky._transferFromExcluded(address,address,uint256).rTransferAmount (#1503) is too similar to BabyHusky._transferStandard(address,address,uint256).tTransferAmount (#1464)
Variable BabyHusky._getValues(uint256).rTransferAmount (#1204) is too similar to BabyHusky._transferFromExcluded(address,address,uint256).tTransferAmount (#1505)
Variable BabyHusky._getValues(uint256).rTransferAmount (#1204) is too similar to BabyHusky._transferBothExcluded(address,address,uint256).tTransferAmount (#1136)
Prevent variables from having similar names.

Additional information: link

BabyHusky._decimals (#911) should be constant
BabyHusky._name (#909) should be constant
BabyHusky._symbol (#910) should be constant
BabyHusky._tTotal (#905) should be constant
BabyHusky.numTokensSellToAddToLiquidity (#927) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#496-499)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#505-512)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#514-516)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#519-524)
unlock() should be declared external:
- Ownable.unlock() (#527-535)
name() should be declared external:
- BabyHusky.name() (#962-964)
symbol() should be declared external:
- BabyHusky.symbol() (#966-968)
decimals() should be declared external:
- BabyHusky.decimals() (#970-972)
totalSupply() should be declared external:
- BabyHusky.totalSupply() (#974-976)
transfer(address,uint256) should be declared external:
- BabyHusky.transfer(address,uint256) (#983-990)
allowance(address,address) should be declared external:
- BabyHusky.allowance(address,address) (#992-999)
approve(address,uint256) should be declared external:
- BabyHusky.approve(address,uint256) (#1001-1008)
transferFrom(address,address,uint256) should be declared external:
- BabyHusky.transferFrom(address,address,uint256) (#1010-1025)
increaseAllowance(address,uint256) should be declared external:
- BabyHusky.increaseAllowance(address,uint256) (#1027-1038)
decreaseAllowance(address,uint256) should be declared external:
- BabyHusky.decreaseAllowance(address,uint256) (#1040-1054)
isExcludedFromReward(address) should be declared external:
- BabyHusky.isExcludedFromReward(address) (#1056-1058)
totalFees() should be declared external:
- BabyHusky.totalFees() (#1060-1062)
deliver(uint256) should be declared external:
- BabyHusky.deliver(uint256) (#1064-1074)
reflectionFromToken(uint256,bool) should be declared external:
- BabyHusky.reflectionFromToken(uint256,bool) (#1076-1089)
excludeFromReward(address) should be declared external:
- BabyHusky.excludeFromReward(address) (#1104-1112)
excludeFromFee(address) should be declared external:
- BabyHusky.excludeFromFee(address) (#1149-1151)
includeInFee(address) should be declared external:
- BabyHusky.includeInFee(address) (#1153-1155)
setSwapAndLiquifyEnabled(bool) should be declared external:
- BabyHusky.setSwapAndLiquifyEnabled(bool) (#1169-1172)
setPause(bool) should be declared external:
- BabyHusky.setPause(bool) (#1174-1176)
drawNoise(uint256) should be declared external:
- BabyHusky.drawNoise(uint256) (#1178-1180)
isExcludedFromFee(address) should be declared external:
- BabyHusky.isExcludedFromFee(address) (#1307-1309)
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.


Twitter account has relatively few followers


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Twitter account has few posts


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Unable to find token/project description on the website or on BscScan, CoinMarketCap


Unable to find whitepaper link on the website


Unable to find token on CoinHunt

Additional information: link


Young tokens have high risks of scam / price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Token has a considerable age, but social accounts / website are missing or have few users


Token has a considerable age, but average PancakeSwap 30d trading volume is low


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death

Price for BabyHusky

News for BabyHusky