Baby tiger Token Logo

Baby tiger Token

About Baby tiger

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 1 January 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 ticker (Baby 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.

Baby.setRate2(uint256,uint256,uint256) (#509-518) should emit an event for:
- rate1 = _rate1 (#515)
- rate2 = _rate2 (#516)
- rate3 = _rate3 (#517)
Emit an event for critical parameter changes.

Additional information: link

Ownable.constructor(address)._addr (#182) lacks a zero-check on :
- _owner = _addr (#183)
Baby.setUsdt(address)._addr (#464) lacks a zero-check on :
- USDT = _addr (#466)
Baby.setAddr(address,address,address,address,address)._devAddr (#528) lacks a zero-check on :
- devAddr = _devAddr (#534)
Baby.setAddr(address,address,address,address,address)._devAddr2 (#529) lacks a zero-check on :
- devAddr2 = _devAddr2 (#535)
Baby.setAddr(address,address,address,address,address)._devAddr3 (#530) lacks a zero-check on :
- devAddr3 = _devAddr3 (#536)
Baby.setAddr(address,address,address,address,address)._devAddr4 (#531) lacks a zero-check on :
- devAddr4 = _devAddr4 (#537)
Baby.setAddr(address,address,address,address,address)._devAddr5 (#532) lacks a zero-check on :
- devAddr5 = _devAddr5 (#538)
Check that the address is not zero.

Additional information: link

ERC20._transfer(address,address,uint256) (#299-309) compares to a boolean constant:
-require(bool,string)(blackList[msg.sender] == false && blackList[sender] == false && blackList[recipient] == false,ERC20: is black List !) (#301)
Remove the equality to the boolean constant.

Additional information: link

Baby.sendReff(address,address) (#393-400) is never used and should be removed
ERC20._beforeTokenTransfer(address,address,uint256) (#327) is never used and should be removed
SafeMath.add(uint256,uint256) (#31-36) is never used and should be removed
SafeMath.div(uint256,uint256) (#109-111) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#125-135) is never used and should be removed
SafeMath.mod(uint256,uint256) (#149-151) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#165-172) is never used and should be removed
SafeMath.sub(uint256,uint256) (#48-50) is never used and should be removed
SafeMath.sub(uint256,uint256,string) (#62-71) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version0.8.1 (#6) allows old versions
solc-0.8.1 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

Contract relationship (#7-14) is not in CapWords
Variable ERC20._balances (#226) is not in mixedCase
Parameter Baby.sendReff(address,address)._son (#394) is not in mixedCase
Parameter Baby.sendReff(address,address)._father (#395) is not in mixedCase
Parameter Baby.setPair(address,bool)._addr (#454) is not in mixedCase
Parameter Baby.setPair(address,bool)._isUSDT (#455) is not in mixedCase
Parameter Baby.setUsdt(address)._addr (#464) is not in mixedCase
Parameter Baby.setWhiteList(address,uint256,bool)._addr (#471) is not in mixedCase
Parameter Baby.setWhiteList(address,uint256,bool)._type (#472) is not in mixedCase
Parameter Baby.setWhiteList(address,uint256,bool)._YorN (#473) is not in mixedCase
Parameter Baby.setBlackList(address,bool)._addr (#486) is not in mixedCase
Parameter Baby.setBlackList(address,bool)._YorN (#487) is not in mixedCase
Parameter Baby.setRate(uint256,uint256,uint256,uint256)._shareRate (#493) is not in mixedCase
Parameter Baby.setRate(uint256,uint256,uint256,uint256)._devRate (#494) is not in mixedCase
Parameter Baby.setRate(uint256,uint256,uint256,uint256)._buyRate (#495) is not in mixedCase
Parameter Baby.setRate(uint256,uint256,uint256,uint256)._sellRate (#496) is not in mixedCase
Parameter Baby.setRate2(uint256,uint256,uint256)._rate1 (#510) is not in mixedCase
Parameter Baby.setRate2(uint256,uint256,uint256)._rate2 (#511) is not in mixedCase
Parameter Baby.setRate2(uint256,uint256,uint256)._rate3 (#512) is not in mixedCase
Parameter Baby.setOpen(bool)._open (#521) is not in mixedCase
Parameter Baby.setAddr(address,address,address,address,address)._devAddr (#528) is not in mixedCase
Parameter Baby.setAddr(address,address,address,address,address)._devAddr2 (#529) is not in mixedCase
Parameter Baby.setAddr(address,address,address,address,address)._devAddr3 (#530) is not in mixedCase
Parameter Baby.setAddr(address,address,address,address,address)._devAddr4 (#531) is not in mixedCase
Parameter Baby.setAddr(address,address,address,address,address)._devAddr5 (#532) is not in mixedCase
Parameter Baby.setRP(address)._addr (#542) is not in mixedCase
Parameter Baby.testSetStartTime(uint256)._time (#549) is not in mixedCase
Variable Baby.USDT (#332) is not in mixedCase
Variable Baby.pair_USDT (#334) is not in mixedCase
Variable Baby.RP (#335) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Baby.constructor() (#358-363) uses literals with too many digits:
- _mint(msg.sender,760000000 * 10 ** 18) (#360)
Baby.getLpTotalRate() (#402-422) uses literals with too many digits:
- total > 3000000000000000000000000 && total <= 10000000000000000000000000 (#415)
Baby.getLpTotalRate() (#402-422) uses literals with too many digits:
- total > 10000000000000000000000000 && total <= 30000000000000000000000000 (#417)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Baby._FIVE_MIN (#333) is never used in Baby (#329-554)
Remove unused state variables.

Additional information: link

Baby.mintPoolAddr (#355) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#209-212)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#218-222)
name() should be declared external:
- ERC20.name() (#249-251)
symbol() should be declared external:
- ERC20.symbol() (#253-255)
decimals() should be declared external:
- ERC20.decimals() (#257-259)
totalSupply() should be declared external:
- ERC20.totalSupply() (#261-263)
balanceOf(address) should be declared external:
- ERC20.balanceOf(address) (#265-267)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#269-272)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#274-276)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#278-281)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#283-287)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#289-292)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#294-297)
getLpTotalRate() should be declared external:
- Baby.getLpTotalRate() (#402-422)
getMaxHoldAMount() should be declared external:
- Baby.getMaxHoldAMount() (#424-435)
setRP(address) should be declared external:
- Baby.setRP(address) (#541-545)
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.


Number of Binance Smart Chain (BSC) token holders is low.


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 scam / price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for Baby tiger