BABY CORGI Token Logo

BABYCORGI [BABY CORGI] Token

About BABYCORGI

Listings

Token 2 years

Buying and holding Baby Corgi will automatically receive Filecoin from the wallet approximately every 60 minutes. Everyone should understand the potential and trends of distributed storage. We are currently building a bridge for distributed storage, and I hope more people can participate in this project. Promote the development of distributed storage together.

Social

Laser Scorebeta Last Audit: 30 November 2021

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

Anti-Scam

Links

BABYCORGI.addLiquidity(uint256,uint256) (#1640-1654) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1645-1652)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in BABYCORGI._transfer(address,address,uint256) (#1498-1568):
External calls:
- swapAndSendToFee(marketingTokens) (#1525)
- IERC20(FIL).transfer(buyBackWallet,newBalance) (#1576)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1631-1637)
- swapAndLiquify(swapTokens) (#1528)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1645-1652)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1612-1618)
- swapAndSendDividends(sellTokens) (#1531)
- success = IERC20(FIL).transfer(address(dividendTracker),dividends) (#1659)
- dividendTracker.distributeDividends(dividends) (#1662)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1631-1637)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1528)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1645-1652)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#1550)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#379)
- _balances[recipient] = _balances[recipient].add(amount) (#380)
- super._transfer(from,to,amount) (#1553)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#379)
- _balances[recipient] = _balances[recipient].add(amount) (#380)
- swapping = false (#1533)
Apply the check-effects-interactions pattern.

Additional information: link

BABYCORGI.swapAndSendToFee(uint256) (#1570-1578) ignores return value by IERC20(FIL).transfer(buyBackWallet,newBalance) (#1576)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


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

Contract locking ether found:
Contract BABYCORGIDividendTracker (#1668-1874) has payable functions:
- DividendPayingToken.receive() (#569-571)
- DividendPayingToken.distributeDividends() (#586-597)
- DividendPayingTokenInterface.distributeDividends() (#483)
But does not have a function to withdraw the ether
Remove the payable attribute or add a withdraw function.

Additional information: link

BABYCORGI.setSellFeeIncreaseFactor(uint256) (#1389-1392) contains a tautology or contradiction:
- require(bool,string)(sellFeeIncreaseFactor >= 0 && sellFeeIncreaseFactor <= 50,BABYCORGI: Sell transaction increase must be between 0 and 50) (#1390)
Fix the incorrect comparison by changing the value type or the comparison.

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.

SafeMathInt.MAX_INT256 (#1132) is never used in SafeMathInt (#1130-1188)
Remove unused state variables.

Additional information: link

DividendPayingToken.FIL (#538) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

process(uint256) should be declared external:
- BABYCORGIDividendTracker.process(uint256) (#1815-1860)
Use the external attribute for functions never called from the contract.

Additional information: link

Reentrancy in BABYCORGI.updateDividendTracker(address) (#1325-1341):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1332)
- newDividendTracker.excludeFromDividends(address(this)) (#1333)
- newDividendTracker.excludeFromDividends(owner()) (#1334)
- newDividendTracker.excludeFromDividends(deadWallet) (#1335)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#1336)
State variables written after the call(s):
- dividendTracker = newDividendTracker (#1340)
Apply the check-effects-interactions pattern.

Additional information: link

BABYCORGI._transfer(address,address,uint256).lastProcessedIndex (#1561) is a local variable never initialized
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.

Additional information: link

BABYCORGI.addLiquidity(uint256,uint256) (#1640-1654) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1645-1652)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendPayingToken.accumulativeDividendOf(address)._owner (#667) shadows:
- Ownable._owner (#17) (state variable)
Rename the local variables that shadow another component.

Additional information: link

BABYCORGI.setSellFeeIncreaseFactor(uint256) (#1389-1392) should emit an event for:
- sellFeeIncreaseFactor = increaseFactor (#1391)
Emit an event for critical parameter changes.

Additional information: link

BABYCORGI.updateUniswapV2Router(address)._uniswapV2Pair (#1347-1348) lacks a zero-check on :
- uniswapV2Pair = _uniswapV2Pair (#1349)
Check that the address is not zero.

Additional information: link

Variable 'BABYCORGI._transfer(address,address,uint256).lastProcessedIndex (#1561)' in BABYCORGI._transfer(address,address,uint256) (#1498-1568) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1562)
Move all variable declarations prior to any usage of the variable, and ensure that reaching a variable declaration does not depend on some conditional if it is used unconditionally.

Additional information: link

Reentrancy in BABYCORGI.updateUniswapV2Router(address) (#1343-1350):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#1347-1348)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#1349)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in BABYCORGI.updateDividendTracker(address) (#1325-1341):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1332)
- newDividendTracker.excludeFromDividends(address(this)) (#1333)
- newDividendTracker.excludeFromDividends(owner()) (#1334)
- newDividendTracker.excludeFromDividends(deadWallet) (#1335)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#1336)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (#1338)
Apply the check-effects-interactions pattern.

Additional information: link

BABYCORGIDividendTracker.canAutoClaim(uint256) (#1790-1796) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (#1791)
- block.timestamp.sub(lastClaimTime) >= claimWait (#1795)
Avoid relying on block.timestamp.

Additional information: link

SafeMathInt.mul(int256,int256) (#1137-1144) is never used and should be removed
Remove unused functions.

Additional information: link

BABYCORGI.totalFees (#1224) is set pre-construction with a non-constant function or state variable:
- dividendRewardsFee.add(liquidityFee).add(marketingFee)
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

solc-0.8.7 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

Parameter BABYCORGIDividendTracker.getAccount(address)._account (#1726) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#11)" inContext (#5-14)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (#622) is too similar to BABYCORGIDividendTracker.getAccount(address).withdrawableDividends (#1731)
Prevent variables from having similar names.

Additional information: link

BABYCORGIDividendTracker.getAccountAtIndex(uint256) (#1771-1788) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (#1782)
Use: Ether suffix, Time suffix, or The scientific notation

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


Twitter account link seems to be invalid


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


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 BABYCORGI