BabyUnicorn Token Logo

$bU [BabyUnicorn] Token

About $bU

Listings

Not Found
Token 2 years

Welcome to BabyUnicorn | $bU
📝 Verified Contract Address: 0x888A6fca0E4982EA61E073B471D122f8948E38f5
Website: https://babyunicorn.eu
Create your Referral link: https://babyunicorn.eu/?ref=0x9a84754eAc07fc5d8ad55E3ecB93C3c3FdbF94B8

Social

Laser Scorebeta Last Audit: 26 December 2021

report
Token has too many issues. Scam probability is high.

Anti-Scam

Links


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

BabyUnicorn._transfer(address,address,uint256).tTransfer (#708) is written in both
tTransfer = _tOwned[sender] / mTotal (#725)
tTransfer = tokenFromReflection(_rOwned[sender]) / mTotal (#726)
Fix or remove the writes.

Additional information: link

Contract ticker ($bU) 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.

BabyUnicorn.includeAccount(address) (#652-663) has costly operations inside a loop:
- _excluded.pop() (#659)
Use a local variable to hold the loop computation result.

Additional information: link

BabyUnicorn.allowance(address,address).owner (#575) shadows:
- Ownable.owner() (#443-445) (function)
BabyUnicorn._approve(address,address,uint256).owner (#696) shadows:
- Ownable.owner() (#443-445) (function)
Rename the local variables that shadow another component.

Additional information: link

BabyUnicorn.updateFee(uint256,uint256) (#678-684) should emit an event for:
- _BURN_FEE = _burnFee * 100 (#680)
- _CHARITY_FEE = _charityFee * 100 (#681)
- ORIG_BURN_FEE = _BURN_FEE (#682)
- ORIG_CHARITY_FEE = _CHARITY_FEE (#683)
Emit an event for critical parameter changes.

Additional information: link

BabyUnicorn.constructor(string,string,uint256,uint256,uint256,uint256,uint256,address,address,address,address)._FeeAddress (#522) lacks a zero-check on :
- FeeAddress = _FeeAddress (#535)
- _CharityWallet = _FeeAddress (#536)
BabyUnicorn.constructor(string,string,uint256,uint256,uint256,uint256,uint256,address,address,address,address)._LPAddress (#522) lacks a zero-check on :
- LPAddress = _LPAddress (#537)
BabyUnicorn.constructor(string,string,uint256,uint256,uint256,uint256,uint256,address,address,address,address).tokenOwner (#522) lacks a zero-check on :
- _owner = tokenOwner (#538)
BabyUnicorn.constructor(string,string,uint256,uint256,uint256,uint256,uint256,address,address,address,address).service (#522) lacks a zero-check on :
- address(service).transfer(msg.value) (#540)
BabyUnicorn.setAsCharityAccount(address).account (#665) lacks a zero-check on :
- FeeAddress = account (#666)
BabyUnicorn.setAsLPAccount(address).account (#669) lacks a zero-check on :
- LPAddress = account (#670)
Check that the address is not zero.

Additional information: link

Address.isContract(address) (#301-310) uses assembly
- INLINE ASM (#308)
Address._functionCallWithValue(address,bytes,uint256,string) (#394-415) uses assembly
- INLINE ASM (#407-410)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#394-415) is never used and should be removed
Address.functionCall(address,bytes) (#354-356) is never used and should be removed
Address.functionCall(address,bytes,string) (#364-366) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#379-381) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#389-392) is never used and should be removed
Address.isContract(address) (#301-310) is never used and should be removed
Address.sendValue(address,uint256) (#328-334) is never used and should be removed
BabyUnicorn._getTaxFee() (#903-905) is never used and should be removed
Context._msgData() (#22-25) is never used and should be removed
SafeMath.mod(uint256,uint256) (#238-240) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#254-257) is never used and should be removed
Remove unused functions.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#328-334):
- (success) = recipient.call{value: amount}() (#332)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#394-415):
- (success,returndata) = target.call{value: weiValue}(data) (#398)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable Ownable._owner (#434) is not in mixedCase
Variable Ownable._CharityWallet (#435) is not in mixedCase
Parameter BabyUnicorn.updateFee(uint256,uint256)._burnFee (#678) is not in mixedCase
Parameter BabyUnicorn.updateFee(uint256,uint256)._charityFee (#678) is not in mixedCase
Parameter BabyUnicorn.updateFee(uint256)._txFee (#686) is not in mixedCase
Variable BabyUnicorn._NAME (#495) is not in mixedCase
Variable BabyUnicorn._SYMBOL (#496) is not in mixedCase
Variable BabyUnicorn._DECIMALS (#497) is not in mixedCase
Variable BabyUnicorn.FeeAddress (#498) is not in mixedCase
Variable BabyUnicorn.LPAddress (#499) is not in mixedCase
Variable BabyUnicorn.PCSAddress (#500) is not in mixedCase
Variable BabyUnicorn._MAX (#502) is not in mixedCase
Variable BabyUnicorn._DECIMALFACTOR (#503) is not in mixedCase
Variable BabyUnicorn._GRANULARITY (#504) is not in mixedCase
Variable BabyUnicorn._TAX_FEE (#513) is not in mixedCase
Variable BabyUnicorn._BURN_FEE (#514) is not in mixedCase
Variable BabyUnicorn._CHARITY_FEE (#515) is not in mixedCase
Variable BabyUnicorn.ORIG_TAX_FEE (#518) is not in mixedCase
Variable BabyUnicorn.ORIG_BURN_FEE (#519) is not in mixedCase
Variable BabyUnicorn.ORIG_CHARITY_FEE (#520) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#23)" inContext (#17-26)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in BabyUnicorn.constructor(string,string,uint256,uint256,uint256,uint256,uint256,address,address,address,address) (#522-542):
External calls:
- address(service).transfer(msg.value) (#540)
Event emitted after the call(s):
- Transfer(address(0),tokenOwner,_tTotal) (#541)
Apply the check-effects-interactions pattern.

Additional information: link

Variable BabyUnicorn._excludedToTransferContent(address,address,uint256,uint256,uint256).rTransferAmount (#794) is too similar to BabyUnicorn._bothTransferContent(address,address,uint256,uint256,uint256,uint256).tTransferAmount (#810)
Variable BabyUnicorn._standardTransferContent(address,address,uint256,uint256).rTransferAmount (#762) is too similar to BabyUnicorn._getValues(uint256).tTransferAmount (#829)
Variable BabyUnicorn._excludedToTransferContent(address,address,uint256,uint256,uint256).rTransferAmount (#794) is too similar to BabyUnicorn._getValues(uint256).tTransferAmount (#829)
Variable BabyUnicorn._transferToExcluded(address,address,uint256).rTransferAmount (#769) is too similar to BabyUnicorn._bothTransferContent(address,address,uint256,uint256,uint256,uint256).tTransferAmount (#810)
Variable BabyUnicorn._transferBothExcluded(address,address,uint256).rTransferAmount (#802) is too similar to BabyUnicorn._transferFromExcluded(address,address,uint256).tTransferAmount (#786)
Variable BabyUnicorn._transferStandard(address,address,uint256).rTransferAmount (#754) is too similar to BabyUnicorn._transferFromExcluded(address,address,uint256).tTransferAmount (#786)
Variable BabyUnicorn._bothTransferContent(address,address,uint256,uint256,uint256,uint256).rTransferAmount (#810) is too similar to BabyUnicorn._excludedFromTransferContent(address,address,uint256,uint256,uint256).tTransferAmount (#777)
Variable BabyUnicorn._getRTransferAmount(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#856) is too similar to BabyUnicorn._transferFromExcluded(address,address,uint256).tTransferAmount (#786)
Variable BabyUnicorn.reflectionFromToken(uint256,bool).rTransferAmount (#632) is too similar to BabyUnicorn._transferFromExcluded(address,address,uint256).tTransferAmount (#786)
Variable BabyUnicorn._getValues(uint256).rTransferAmount (#832) is too similar to BabyUnicorn._transferFromExcluded(address,address,uint256).tTransferAmount (#786)
Variable BabyUnicorn._standardTransferContent(address,address,uint256,uint256).rTransferAmount (#762) is too similar to BabyUnicorn._bothTransferContent(address,address,uint256,uint256,uint256,uint256).tTransferAmount (#810)
Variable BabyUnicorn._excludedFromTransferContent(address,address,uint256,uint256,uint256).rTransferAmount (#777) is too similar to BabyUnicorn._excludedFromTransferContent(address,address,uint256,uint256,uint256).tTransferAmount (#777)
Variable BabyUnicorn._getValues(uint256).rTransferAmount (#832) is too similar to BabyUnicorn._transferToExcluded(address,address,uint256).tTransferAmount (#769)
Variable BabyUnicorn._excludedFromTransferContent(address,address,uint256,uint256,uint256).rTransferAmount (#777) is too similar to BabyUnicorn._transferBothExcluded(address,address,uint256).tTransferAmount (#802)
Variable BabyUnicorn._transferBothExcluded(address,address,uint256).rTransferAmount (#802) is too similar to BabyUnicorn._transferStandard(address,address,uint256).tTransferAmount (#754)
Variable BabyUnicorn._transferStandard(address,address,uint256).rTransferAmount (#754) is too similar to BabyUnicorn._transferStandard(address,address,uint256).tTransferAmount (#754)
Variable BabyUnicorn._excludedToTransferContent(address,address,uint256,uint256,uint256).rTransferAmount (#794) is too similar to BabyUnicorn._excludedFromTransferContent(address,address,uint256,uint256,uint256).tTransferAmount (#777)
Variable BabyUnicorn._bothTransferContent(address,address,uint256,uint256,uint256,uint256).rTransferAmount (#810) is too similar to BabyUnicorn._transferFromExcluded(address,address,uint256).tTransferAmount (#786)
Variable BabyUnicorn._getValues(uint256).rTransferAmount (#832) is too similar to BabyUnicorn._getValues(uint256).tTransferAmount (#829)
Variable BabyUnicorn._transferToExcluded(address,address,uint256).rTransferAmount (#769) is too similar to BabyUnicorn._excludedFromTransferContent(address,address,uint256,uint256,uint256).tTransferAmount (#777)
Variable BabyUnicorn._transferBothExcluded(address,address,uint256).rTransferAmount (#802) is too similar to BabyUnicorn._transferToExcluded(address,address,uint256).tTransferAmount (#769)
Variable BabyUnicorn._transferStandard(address,address,uint256).rTransferAmount (#754) is too similar to BabyUnicorn._transferToExcluded(address,address,uint256).tTransferAmount (#769)
Variable BabyUnicorn._transferBothExcluded(address,address,uint256).rTransferAmount (#802) is too similar to BabyUnicorn._bothTransferContent(address,address,uint256,uint256,uint256,uint256).tTransferAmount (#810)
Variable BabyUnicorn._transferStandard(address,address,uint256).rTransferAmount (#754) is too similar to BabyUnicorn._bothTransferContent(address,address,uint256,uint256,uint256,uint256).tTransferAmount (#810)
Variable BabyUnicorn._excludedFromTransferContent(address,address,uint256,uint256,uint256).rTransferAmount (#777) is too similar to BabyUnicorn._transferFromExcluded(address,address,uint256).tTransferAmount (#786)
Variable BabyUnicorn._transferBothExcluded(address,address,uint256).rTransferAmount (#802) is too similar to BabyUnicorn._getValues(uint256).tTransferAmount (#829)
Variable BabyUnicorn._transferStandard(address,address,uint256).rTransferAmount (#754) is too similar to BabyUnicorn._getValues(uint256).tTransferAmount (#829)
Variable BabyUnicorn._standardTransferContent(address,address,uint256,uint256).rTransferAmount (#762) is too similar to BabyUnicorn._excludedFromTransferContent(address,address,uint256,uint256,uint256).tTransferAmount (#777)
Variable BabyUnicorn._excludedToTransferContent(address,address,uint256,uint256,uint256).rTransferAmount (#794) is too similar to BabyUnicorn._transferFromExcluded(address,address,uint256).tTransferAmount (#786)
Variable BabyUnicorn._getValues(uint256).rTransferAmount (#832) is too similar to BabyUnicorn._bothTransferContent(address,address,uint256,uint256,uint256,uint256).tTransferAmount (#810)
Variable BabyUnicorn._excludedFromTransferContent(address,address,uint256,uint256,uint256).rTransferAmount (#777) is too similar to BabyUnicorn._transferToExcluded(address,address,uint256).tTransferAmount (#769)
Variable BabyUnicorn._transferToExcluded(address,address,uint256).rTransferAmount (#769) is too similar to BabyUnicorn._transferFromExcluded(address,address,uint256).tTransferAmount (#786)
Variable BabyUnicorn._excludedFromTransferContent(address,address,uint256,uint256,uint256).rTransferAmount (#777) is too similar to BabyUnicorn._getValues(uint256).tTransferAmount (#829)
Variable BabyUnicorn._excludedFromTransferContent(address,address,uint256,uint256,uint256).rTransferAmount (#777) is too similar to BabyUnicorn._transferStandard(address,address,uint256).tTransferAmount (#754)
Variable BabyUnicorn._transferToExcluded(address,address,uint256).rTransferAmount (#769) is too similar to BabyUnicorn._transferToExcluded(address,address,uint256).tTransferAmount (#769)
Variable BabyUnicorn._standardTransferContent(address,address,uint256,uint256).rTransferAmount (#762) is too similar to BabyUnicorn._transferFromExcluded(address,address,uint256).tTransferAmount (#786)
Variable BabyUnicorn._transferBothExcluded(address,address,uint256).rTransferAmount (#802) is too similar to BabyUnicorn._excludedFromTransferContent(address,address,uint256,uint256,uint256).tTransferAmount (#777)
Variable BabyUnicorn._transferStandard(address,address,uint256).rTransferAmount (#754) is too similar to BabyUnicorn._excludedFromTransferContent(address,address,uint256,uint256,uint256).tTransferAmount (#777)
Variable BabyUnicorn._transferFromExcluded(address,address,uint256).rTransferAmount (#786) is too similar to BabyUnicorn._transferFromExcluded(address,address,uint256).tTransferAmount (#786)
Variable BabyUnicorn._transferBothExcluded(address,address,uint256).rTransferAmount (#802) is too similar to BabyUnicorn._transferBothExcluded(address,address,uint256).tTransferAmount (#802)
Variable BabyUnicorn._transferStandard(address,address,uint256).rTransferAmount (#754) is too similar to BabyUnicorn._transferBothExcluded(address,address,uint256).tTransferAmount (#802)
Variable BabyUnicorn._transferToExcluded(address,address,uint256).rTransferAmount (#769) is too similar to BabyUnicorn._getValues(uint256).tTransferAmount (#829)
Variable BabyUnicorn._excludedFromTransferContent(address,address,uint256,uint256,uint256).rTransferAmount (#777) is too similar to BabyUnicorn._bothTransferContent(address,address,uint256,uint256,uint256,uint256).tTransferAmount (#810)
Variable BabyUnicorn._getValues(uint256).rTransferAmount (#832) is too similar to BabyUnicorn._excludedFromTransferContent(address,address,uint256,uint256,uint256).tTransferAmount (#777)
Variable BabyUnicorn._excludedToTransferContent(address,address,uint256,uint256,uint256).rTransferAmount (#794) is too similar to BabyUnicorn._transferToExcluded(address,address,uint256).tTransferAmount (#769)
Variable BabyUnicorn._getRTransferAmount(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#856) is too similar to BabyUnicorn._excludedFromTransferContent(address,address,uint256,uint256,uint256).tTransferAmount (#777)
Variable BabyUnicorn.reflectionFromToken(uint256,bool).rTransferAmount (#632) is too similar to BabyUnicorn._excludedFromTransferContent(address,address,uint256,uint256,uint256).tTransferAmount (#777)
Variable BabyUnicorn._getValues(uint256).rTransferAmount (#832) is too similar to BabyUnicorn._transferBothExcluded(address,address,uint256).tTransferAmount (#802)
Variable BabyUnicorn._getValues(uint256).rTransferAmount (#832) is too similar to BabyUnicorn._transferStandard(address,address,uint256).tTransferAmount (#754)
Variable BabyUnicorn.reflectionFromToken(uint256,bool).rTransferAmount (#632) is too similar to BabyUnicorn._bothTransferContent(address,address,uint256,uint256,uint256,uint256).tTransferAmount (#810)
Variable BabyUnicorn._bothTransferContent(address,address,uint256,uint256,uint256,uint256).rTransferAmount (#810) is too similar to BabyUnicorn._getValues(uint256).tTransferAmount (#829)
Variable BabyUnicorn.reflectionFromToken(uint256,bool).rTransferAmount (#632) is too similar to BabyUnicorn._transferToExcluded(address,address,uint256).tTransferAmount (#769)
Variable BabyUnicorn._transferFromExcluded(address,address,uint256).rTransferAmount (#786) is too similar to BabyUnicorn._getValues(uint256).tTransferAmount (#829)
Variable BabyUnicorn._standardTransferContent(address,address,uint256,uint256).rTransferAmount (#762) is too similar to BabyUnicorn._transferToExcluded(address,address,uint256).tTransferAmount (#769)
Variable BabyUnicorn.reflectionFromToken(uint256,bool).rTransferAmount (#632) is too similar to BabyUnicorn._getValues(uint256).tTransferAmount (#829)
Variable BabyUnicorn._getRTransferAmount(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#856) is too similar to BabyUnicorn._bothTransferContent(address,address,uint256,uint256,uint256,uint256).tTransferAmount (#810)
Variable BabyUnicorn._getRTransferAmount(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#856) is too similar to BabyUnicorn._transferToExcluded(address,address,uint256).tTransferAmount (#769)
Variable BabyUnicorn._bothTransferContent(address,address,uint256,uint256,uint256,uint256).rTransferAmount (#810) is too similar to BabyUnicorn._transferBothExcluded(address,address,uint256).tTransferAmount (#802)
Variable BabyUnicorn._bothTransferContent(address,address,uint256,uint256,uint256,uint256).rTransferAmount (#810) is too similar to BabyUnicorn._transferStandard(address,address,uint256).tTransferAmount (#754)
Variable BabyUnicorn._transferFromExcluded(address,address,uint256).rTransferAmount (#786) is too similar to BabyUnicorn._transferBothExcluded(address,address,uint256).tTransferAmount (#802)
Variable BabyUnicorn._transferFromExcluded(address,address,uint256).rTransferAmount (#786) is too similar to BabyUnicorn._transferStandard(address,address,uint256).tTransferAmount (#754)
Variable BabyUnicorn._transferToExcluded(address,address,uint256).rTransferAmount (#769) is too similar to BabyUnicorn._transferBothExcluded(address,address,uint256).tTransferAmount (#802)
Variable BabyUnicorn._transferToExcluded(address,address,uint256).rTransferAmount (#769) is too similar to BabyUnicorn._transferStandard(address,address,uint256).tTransferAmount (#754)
Variable BabyUnicorn._getRTransferAmount(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#856) is too similar to BabyUnicorn._getValues(uint256).tTransferAmount (#829)
Variable BabyUnicorn.reflectionFromToken(uint256,bool).rTransferAmount (#632) is too similar to BabyUnicorn._transferBothExcluded(address,address,uint256).tTransferAmount (#802)
Variable BabyUnicorn.reflectionFromToken(uint256,bool).rTransferAmount (#632) is too similar to BabyUnicorn._transferStandard(address,address,uint256).tTransferAmount (#754)
Variable BabyUnicorn._standardTransferContent(address,address,uint256,uint256).rTransferAmount (#762) is too similar to BabyUnicorn._transferBothExcluded(address,address,uint256).tTransferAmount (#802)
Variable BabyUnicorn._standardTransferContent(address,address,uint256,uint256).rTransferAmount (#762) is too similar to BabyUnicorn._transferStandard(address,address,uint256).tTransferAmount (#754)
Variable BabyUnicorn._transferFromExcluded(address,address,uint256).rTransferAmount (#786) is too similar to BabyUnicorn._excludedFromTransferContent(address,address,uint256,uint256,uint256).tTransferAmount (#777)
Variable BabyUnicorn._excludedToTransferContent(address,address,uint256,uint256,uint256).rTransferAmount (#794) is too similar to BabyUnicorn._transferBothExcluded(address,address,uint256).tTransferAmount (#802)
Variable BabyUnicorn._excludedToTransferContent(address,address,uint256,uint256,uint256).rTransferAmount (#794) is too similar to BabyUnicorn._transferStandard(address,address,uint256).tTransferAmount (#754)
Variable BabyUnicorn._getRTransferAmount(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#856) is too similar to BabyUnicorn._transferBothExcluded(address,address,uint256).tTransferAmount (#802)
Variable BabyUnicorn._getRTransferAmount(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#856) is too similar to BabyUnicorn._transferStandard(address,address,uint256).tTransferAmount (#754)
Variable BabyUnicorn._bothTransferContent(address,address,uint256,uint256,uint256,uint256).rTransferAmount (#810) is too similar to BabyUnicorn._bothTransferContent(address,address,uint256,uint256,uint256,uint256).tTransferAmount (#810)
Variable BabyUnicorn._bothTransferContent(address,address,uint256,uint256,uint256,uint256).rTransferAmount (#810) is too similar to BabyUnicorn._transferToExcluded(address,address,uint256).tTransferAmount (#769)
Variable BabyUnicorn._transferFromExcluded(address,address,uint256).rTransferAmount (#786) is too similar to BabyUnicorn._bothTransferContent(address,address,uint256,uint256,uint256,uint256).tTransferAmount (#810)
Variable BabyUnicorn._transferFromExcluded(address,address,uint256).rTransferAmount (#786) is too similar to BabyUnicorn._transferToExcluded(address,address,uint256).tTransferAmount (#769)
Prevent variables from having similar names.

Additional information: link

BabyUnicorn.PCSAddress (#500) should be constant
BabyUnicorn._GRANULARITY (#504) should be constant
BabyUnicorn._MAX (#502) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

owner() should be declared external:
- Ownable.owner() (#443-445)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#468-471)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#477-481)
name() should be declared external:
- BabyUnicorn.name() (#544-546)
symbol() should be declared external:
- BabyUnicorn.symbol() (#548-550)
decimals() should be declared external:
- BabyUnicorn.decimals() (#552-554)
totalSupply() should be declared external:
- BabyUnicorn.totalSupply() (#556-558)
balanceOf(address) should be declared external:
- BabyUnicorn.balanceOf(address) (#560-563)
myBalance() should be declared external:
- BabyUnicorn.myBalance() (#565-568)
transfer(address,uint256) should be declared external:
- BabyUnicorn.transfer(address,uint256) (#570-573)
allowance(address,address) should be declared external:
- BabyUnicorn.allowance(address,address) (#575-577)
approve(address,uint256) should be declared external:
- BabyUnicorn.approve(address,uint256) (#579-582)
transferFrom(address,address,uint256) should be declared external:
- BabyUnicorn.transferFrom(address,address,uint256) (#584-588)
increaseAllowance(address,uint256) should be declared external:
- BabyUnicorn.increaseAllowance(address,uint256) (#590-593)
decreaseAllowance(address,uint256) should be declared external:
- BabyUnicorn.decreaseAllowance(address,uint256) (#595-598)
isExcluded(address) should be declared external:
- BabyUnicorn.isExcluded(address) (#600-602)
totalFees() should be declared external:
- BabyUnicorn.totalFees() (#605-607)
totalBurn() should be declared external:
- BabyUnicorn.totalBurn() (#609-611)
totalCharity() should be declared external:
- BabyUnicorn.totalCharity() (#613-615)
deliver(uint256) should be declared external:
- BabyUnicorn.deliver(uint256) (#617-624)
reflectionFromToken(uint256,bool) should be declared external:
- BabyUnicorn.reflectionFromToken(uint256,bool) (#626-635)
updateFee(uint256,uint256) should be declared external:
- BabyUnicorn.updateFee(uint256,uint256) (#678-684)
updateFee(uint256) should be declared external:
- BabyUnicorn.updateFee(uint256) (#686-690)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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


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 Twitter account


Telegram account has relatively few subscribers


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


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 token contract audit


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find Twitter link on the website


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


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


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death

Price for $bU