Bakecoin Built and deploy on Binance Smart Chain. The Bankcoin protocol is a community inspired DeFi experiment built on Binance.
NFTs Curator, we create and draw NFTs of Bakecoin collection, popular influencers NFTs.
NFTs Sales are 100% towards donation, we will post Proof of Donation at Bakecoin Twitter.
Coming soon: Bakecoin NFTs Dapp - Pandora Box Game that will drawn Random NFTs from OpenSea, Bakecoin collection or Bakecoin token as prizes based on a provable fairness probability runs on Smart Contract. Each drawn will consume 200,000 Bakecoin token, 50% will be burn to reduce the circulating supply & the remaining 50% will be sold to build funds for acquiring more valuable NFTs for Bakecoin Pandora Box NFTs Game.
NFTs Team
Bakecoin team will develop its own dapp for NFTs.
You can draw random NFTs of value obtained from OpenSea, BakeryGallery or Bakecoin collection using $BakeCoin.
All listed NFTs will be shown on a website, and verifiable by block chain.
Bakecoin will also develop its own community Dapp for community forum, support desk, wallet, DEX aggregator.
BAKECOIN.addLiquidity(uint256,uint256) (#1635-1650) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1641-1648)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in BAKECOIN._transfer(address,address,uint256) (#1485-1560):
External calls:
- swapAndSendToFee(marketingTokens) (#1512)
- IERC20(CAKE).transfer(_marketingWalletAddress,newBalance) (#1568)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1626-1632)
- swapAndLiquify(swapTokens) (#1518)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1641-1648)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1606-1612)
- swapAndSendDividends(sellTokens) (#1522)
- success = IERC20(CAKE).transfer(address(dividendTracker),dividends) (#1655)
- dividendTracker.distributeCAKEDividends(dividends) (#1658)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1626-1632)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1518)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1641-1648)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#1542)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#341)
- _balances[recipient] = _balances[recipient].add(amount) (#342)
- super._transfer(from,to,amount) (#1545)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#341)
- _balances[recipient] = _balances[recipient].add(amount) (#342)
- swapping = false (#1524)
Apply the check-effects-interactions pattern.
Additional information: link
BAKECOIN.swapAndSendToFee(uint256) (#1562-1569) ignores return value by IERC20(CAKE).transfer(_marketingWalletAddress,newBalance) (#1568)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
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.
Reentrancy in BAKECOIN.updateDividendTracker(address) (#1295-1310):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1302)
- newDividendTracker.excludeFromDividends(address(this)) (#1303)
- newDividendTracker.excludeFromDividends(owner()) (#1304)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#1305)
State variables written after the call(s):
- dividendTracker = newDividendTracker (#1309)
Apply the check-effects-interactions pattern.
Additional information: link
BAKECOIN._transfer(address,address,uint256).lastProcessedIndex (#1553) 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
BAKECOIN.addLiquidity(uint256,uint256) (#1635-1650) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1641-1648)
Ensure that all the return values of the function calls are used.
Additional information: link
DividendPayingToken.accumulativeDividendOf(address)._owner (#865) shadows:
- Ownable._owner (#706) (state variable)
Rename the local variables that shadow another component.
Additional information: link
BAKECOIN.setMarketingFee(uint256) (#1350-1354) should emit an event for:
- marketingFee = value (#1351)
- totalFees = CAKERewardsFee.add(liquidityFee).add(marketingFee) (#1352)
Emit an event for critical parameter changes.
Additional information: link
BAKECOIN.withdrawEth(address,uint256).to (#1371) lacks a zero-check on :
- to.transfer(amt) (#1373)
Check that the address is not zero.
Additional information: link
Variable 'BAKECOIN._transfer(address,address,uint256).claims (#1553)' in BAKECOIN._transfer(address,address,uint256) (#1485-1560) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1554)
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 BAKECOIN.updateUniswapV2Router(address) (#1312-1319):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#1316-1317)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#1318)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in BAKECOIN.updateDividendTracker(address) (#1295-1310):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1302)
- newDividendTracker.excludeFromDividends(address(this)) (#1303)
- newDividendTracker.excludeFromDividends(owner()) (#1304)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#1305)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (#1307)
Apply the check-effects-interactions pattern.
Additional information: link
BAKECOINDividendTracker.canAutoClaim(uint256) (#1788-1794) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (#1789)
- block.timestamp.sub(lastClaimTime) >= claimWait (#1793)
Avoid relying on block.timestamp.
Additional information: link
SafeMathInt.mul(int256,int256) (#598-605) is never used and should be removed
Remove unused functions.
Additional information: link
BAKECOIN.totalFees (#1208) is set pre-construction with a non-constant function or state variable:
- CAKERewardsFee.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
Pragma version^0.6.2 (#7) allows old versions
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 BAKECOINDividendTracker.getAccount(address)._account (#1724) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#125)" inContext (#119-128)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (#820) is too similar to BAKECOINDividendTracker.getAccount(address).withdrawableDividends (#1729)
Prevent variables from having similar names.
Additional information: link
BAKECOINDividendTracker.getAccountAtIndex(uint256) (#1769-1786) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (#1780)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
SafeMathInt.MAX_INT256 (#593) is never used in SafeMathInt (#591-649)
Remove unused state variables.
Additional information: link
DividendPayingToken.CAKE (#767) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
process(uint256) should be declared external:
- BAKECOINDividendTracker.process(uint256) (#1813-1858)
Use the external attribute for functions never called from the contract.
Additional information: link
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.
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Token has no active CoinMarketCap listing / rank
Young tokens have high risks of price dump / death
Twitter account link seems to be invalid
Unable to find Youtube account
Unable to find Discord account