BakinSanta Token Logo

BSanta [BakinSanta] Token

About BSanta

Listings

Not Found
Token 2 years

It's Christmas everyday with Bakin' Santa! First ever community token to give back to the community through --redacted-- Join to know more about us!

Social

Laser Scorebeta Last Audit: 23 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...)

BakinSanta.addLiquidity(uint256,uint256) (BakinSanta.sol#444-459) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (BakinSanta.sol#450-457)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in BakinSanta._transfer(address,address,uint256) (BakinSanta.sol#298-369):
External calls:
- swapAndSendToFee(marketingTokens) (BakinSanta.sol#325)
- IERC20(BAKE).transfer(_marketingWalletAddress,newBalance) (BakinSanta.sol#377)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BakinSanta.sol#435-441)
- swapAndLiquify(swapTokens) (BakinSanta.sol#328)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (BakinSanta.sol#450-457)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BakinSanta.sol#415-421)
- swapAndSendDividends(sellTokens) (BakinSanta.sol#331)
- success = IERC20(BAKE).transfer(address(dividendTracker),dividends) (BakinSanta.sol#464)
- dividendTracker.distributeBAKEDividends(dividends) (BakinSanta.sol#467)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BakinSanta.sol#435-441)
External calls sending eth:
- swapAndLiquify(swapTokens) (BakinSanta.sol#328)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (BakinSanta.sol#450-457)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (BakinSanta.sol#351)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (ERC20.sol#221)
- _balances[recipient] = _balances[recipient].add(amount) (ERC20.sol#222)
- super._transfer(from,to,amount) (BakinSanta.sol#354)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (ERC20.sol#221)
- _balances[recipient] = _balances[recipient].add(amount) (ERC20.sol#222)
- swapping = false (BakinSanta.sol#333)
Apply the check-effects-interactions pattern.

Additional information: link

BakinSanta.swapAndSendToFee(uint256) (BakinSanta.sol#371-378) ignores return value by IERC20(BAKE).transfer(_marketingWalletAddress,newBalance) (BakinSanta.sol#377)
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 DividendPayingToken._withdrawDividendOfUser(address) (DividendPayingToken.sol#76-92):
External calls:
- success = IERC20(BAKE).transfer(user,_withdrawableDividend) (DividendPayingToken.sol#81)
State variables written after the call(s):
- withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend) (DividendPayingToken.sol#84)
Reentrancy in BakinSanta.updateDividendTracker(address) (BakinSanta.sol#134-149):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (BakinSanta.sol#141)
- newDividendTracker.excludeFromDividends(address(this)) (BakinSanta.sol#142)
- newDividendTracker.excludeFromDividends(owner()) (BakinSanta.sol#143)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (BakinSanta.sol#144)
State variables written after the call(s):
- dividendTracker = newDividendTracker (BakinSanta.sol#148)
Apply the check-effects-interactions pattern.

Additional information: link

BakinSanta._transfer(address,address,uint256).lastProcessedIndex (BakinSanta.sol#362) is a local variable never initialized
BakinSanta._transfer(address,address,uint256).iterations (BakinSanta.sol#362) is a local variable never initialized
BakinSanta._transfer(address,address,uint256).claims (BakinSanta.sol#362) 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

BakinSanta.claim() (BakinSanta.sol#285-287) ignores return value by dividendTracker.processAccount(msg.sender,false) (BakinSanta.sol#286)
BakinSanta._transfer(address,address,uint256) (BakinSanta.sol#298-369) ignores return value by dividendTracker.process(gas) (BakinSanta.sol#362-367)
BakinSanta.addLiquidity(uint256,uint256) (BakinSanta.sol#444-459) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (BakinSanta.sol#450-457)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendPayingToken.constructor(string,string)._name (DividendPayingToken.sol#50) shadows:
- ERC20._name (ERC20.sol#43) (state variable)
DividendPayingToken.constructor(string,string)._symbol (DividendPayingToken.sol#50) shadows:
- ERC20._symbol (ERC20.sol#44) (state variable)
DividendPayingToken.dividendOf(address)._owner (DividendPayingToken.sol#98) shadows:
- Ownable._owner (Ownable.sol#8) (state variable)
DividendPayingToken.withdrawableDividendOf(address)._owner (DividendPayingToken.sol#105) shadows:
- Ownable._owner (Ownable.sol#8) (state variable)
DividendPayingToken.withdrawnDividendOf(address)._owner (DividendPayingToken.sol#112) shadows:
- Ownable._owner (Ownable.sol#8) (state variable)
DividendPayingToken.accumulativeDividendOf(address)._owner (DividendPayingToken.sol#122) shadows:
- Ownable._owner (Ownable.sol#8) (state variable)
Rename the local variables that shadow another component.

Additional information: link

BakinSanta.setBAKERewardsFee(uint256) (BakinSanta.sol#179-182) should emit an event for:
- BAKERewardsFee = value (BakinSanta.sol#180)
- totalFees = BAKERewardsFee.add(liquidityFee).add(marketingFee) (BakinSanta.sol#181)
BakinSanta.setLiquiditFee(uint256) (BakinSanta.sol#184-187) should emit an event for:
- liquidityFee = value (BakinSanta.sol#185)
- totalFees = BAKERewardsFee.add(liquidityFee).add(marketingFee) (BakinSanta.sol#186)
BakinSanta.setMarketingFee(uint256) (BakinSanta.sol#189-193) should emit an event for:
- marketingFee = value (BakinSanta.sol#190)
- totalFees = BAKERewardsFee.add(liquidityFee).add(marketingFee) (BakinSanta.sol#191)
Emit an event for critical parameter changes.

Additional information: link

BakinSanta.updateUniswapV2Router(address)._uniswapV2Pair (BakinSanta.sol#155-156) lacks a zero-check on :
- uniswapV2Pair = _uniswapV2Pair (BakinSanta.sol#157)
BakinSanta.setMarketingWallet(address).wallet (BakinSanta.sol#175) lacks a zero-check on :
- _marketingWalletAddress = wallet (BakinSanta.sol#176)
Check that the address is not zero.

Additional information: link

DividendPayingToken._withdrawDividendOfUser(address) (DividendPayingToken.sol#76-92) has external calls inside a loop: success = IERC20(BAKE).transfer(user,_withdrawableDividend) (DividendPayingToken.sol#81)
Favor pull over push strategy for external calls.

Additional information: link

Variable 'BakinSanta._transfer(address,address,uint256).claims (BakinSanta.sol#362)' in BakinSanta._transfer(address,address,uint256) (BakinSanta.sol#298-369) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (BakinSanta.sol#363)
Variable 'BakinSanta._transfer(address,address,uint256).iterations (BakinSanta.sol#362)' in BakinSanta._transfer(address,address,uint256) (BakinSanta.sol#298-369) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (BakinSanta.sol#363)
Variable 'BakinSanta._transfer(address,address,uint256).lastProcessedIndex (BakinSanta.sol#362)' in BakinSanta._transfer(address,address,uint256) (BakinSanta.sol#298-369) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (BakinSanta.sol#363)
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 BakinSanta._transfer(address,address,uint256) (BakinSanta.sol#298-369):
External calls:
- swapAndSendToFee(marketingTokens) (BakinSanta.sol#325)
- IERC20(BAKE).transfer(_marketingWalletAddress,newBalance) (BakinSanta.sol#377)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BakinSanta.sol#435-441)
- swapAndLiquify(swapTokens) (BakinSanta.sol#328)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (BakinSanta.sol#450-457)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BakinSanta.sol#415-421)
External calls sending eth:
- swapAndLiquify(swapTokens) (BakinSanta.sol#328)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (BakinSanta.sol#450-457)
State variables written after the call(s):
- swapAndLiquify(swapTokens) (BakinSanta.sol#328)
- _allowances[owner][spender] = amount (ERC20.sol#287)
Reentrancy in BakinSanta._transfer(address,address,uint256) (BakinSanta.sol#298-369):
External calls:
- swapAndSendToFee(marketingTokens) (BakinSanta.sol#325)
- IERC20(BAKE).transfer(_marketingWalletAddress,newBalance) (BakinSanta.sol#377)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BakinSanta.sol#435-441)
- swapAndLiquify(swapTokens) (BakinSanta.sol#328)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (BakinSanta.sol#450-457)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BakinSanta.sol#415-421)
- swapAndSendDividends(sellTokens) (BakinSanta.sol#331)
- success = IERC20(BAKE).transfer(address(dividendTracker),dividends) (BakinSanta.sol#464)
- dividendTracker.distributeBAKEDividends(dividends) (BakinSanta.sol#467)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BakinSanta.sol#435-441)
External calls sending eth:
- swapAndLiquify(swapTokens) (BakinSanta.sol#328)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (BakinSanta.sol#450-457)
State variables written after the call(s):
- swapAndSendDividends(sellTokens) (BakinSanta.sol#331)
- _allowances[owner][spender] = amount (ERC20.sol#287)
Reentrancy in BakinSanta.constructor() (BakinSanta.sol#96-128):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (BakinSanta.sol#103-104)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (BakinSanta.sol#107)
- uniswapV2Router = _uniswapV2Router (BakinSanta.sol#106)
Reentrancy in BakinSanta.constructor() (BakinSanta.sol#96-128):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (BakinSanta.sol#103-104)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (BakinSanta.sol#109)
- dividendTracker.excludeFromDividends(pair) (BakinSanta.sol#212)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (BakinSanta.sol#112)
- dividendTracker.excludeFromDividends(address(this)) (BakinSanta.sol#113)
- dividendTracker.excludeFromDividends(owner()) (BakinSanta.sol#114)
- dividendTracker.excludeFromDividends(deadWallet) (BakinSanta.sol#115)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (BakinSanta.sol#116)
State variables written after the call(s):
- _mint(owner(),100000000000 * (10 ** 18)) (BakinSanta.sol#127)
- _balances[account] = _balances[account].add(amount) (ERC20.sol#241)
- excludeFromFees(owner(),true) (BakinSanta.sol#119)
- _isExcludedFromFees[account] = excluded (BakinSanta.sol#162)
- excludeFromFees(_marketingWalletAddress,true) (BakinSanta.sol#120)
- _isExcludedFromFees[account] = excluded (BakinSanta.sol#162)
- excludeFromFees(address(this),true) (BakinSanta.sol#121)
- _isExcludedFromFees[account] = excluded (BakinSanta.sol#162)
- _mint(owner(),100000000000 * (10 ** 18)) (BakinSanta.sol#127)
- _totalSupply = _totalSupply.add(amount) (ERC20.sol#240)
Reentrancy in BakinSantaDividendTracker.processAccount(address,bool) (BakinSanta.sol#669-679):
External calls:
- amount = _withdrawDividendOfUser(account) (BakinSanta.sol#670)
- success = IERC20(BAKE).transfer(user,_withdrawableDividend) (DividendPayingToken.sol#81)
State variables written after the call(s):
- lastClaimTimes[account] = block.timestamp (BakinSanta.sol#673)
Reentrancy in BakinSanta.swapAndLiquify(uint256) (BakinSanta.sol#380-401):
External calls:
- swapTokensForEth(half) (BakinSanta.sol#392)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BakinSanta.sol#415-421)
- addLiquidity(otherHalf,newBalance) (BakinSanta.sol#398)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (BakinSanta.sol#450-457)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (BakinSanta.sol#398)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (BakinSanta.sol#450-457)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (BakinSanta.sol#398)
- _allowances[owner][spender] = amount (ERC20.sol#287)
Reentrancy in BakinSanta.updateUniswapV2Router(address) (BakinSanta.sol#151-158):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (BakinSanta.sol#155-156)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (BakinSanta.sol#157)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in BakinSanta._setAutomatedMarketMakerPair(address,bool) (BakinSanta.sol#207-216):
External calls:
- dividendTracker.excludeFromDividends(pair) (BakinSanta.sol#212)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (BakinSanta.sol#215)
Reentrancy in BakinSanta._transfer(address,address,uint256) (BakinSanta.sol#298-369):
External calls:
- swapAndSendToFee(marketingTokens) (BakinSanta.sol#325)
- IERC20(BAKE).transfer(_marketingWalletAddress,newBalance) (BakinSanta.sol#377)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BakinSanta.sol#435-441)
- swapAndLiquify(swapTokens) (BakinSanta.sol#328)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (BakinSanta.sol#450-457)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BakinSanta.sol#415-421)
External calls sending eth:
- swapAndLiquify(swapTokens) (BakinSanta.sol#328)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (BakinSanta.sol#450-457)
Event emitted after the call(s):
- Approval(owner,spender,amount) (ERC20.sol#288)
- swapAndLiquify(swapTokens) (BakinSanta.sol#328)
- SwapAndLiquify(half,newBalance,otherHalf) (BakinSanta.sol#400)
- swapAndLiquify(swapTokens) (BakinSanta.sol#328)
Reentrancy in BakinSanta._transfer(address,address,uint256) (BakinSanta.sol#298-369):
External calls:
- swapAndSendToFee(marketingTokens) (BakinSanta.sol#325)
- IERC20(BAKE).transfer(_marketingWalletAddress,newBalance) (BakinSanta.sol#377)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BakinSanta.sol#435-441)
- swapAndLiquify(swapTokens) (BakinSanta.sol#328)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (BakinSanta.sol#450-457)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BakinSanta.sol#415-421)
- swapAndSendDividends(sellTokens) (BakinSanta.sol#331)
- success = IERC20(BAKE).transfer(address(dividendTracker),dividends) (BakinSanta.sol#464)
- dividendTracker.distributeBAKEDividends(dividends) (BakinSanta.sol#467)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BakinSanta.sol#435-441)
External calls sending eth:
- swapAndLiquify(swapTokens) (BakinSanta.sol#328)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (BakinSanta.sol#450-457)
Event emitted after the call(s):
- Approval(owner,spender,amount) (ERC20.sol#288)
- swapAndSendDividends(sellTokens) (BakinSanta.sol#331)
- SendDividends(tokens,dividends) (BakinSanta.sol#468)
- swapAndSendDividends(sellTokens) (BakinSanta.sol#331)
- Transfer(sender,recipient,amount) (ERC20.sol#223)
- super._transfer(from,address(this),fees) (BakinSanta.sol#351)
- Transfer(sender,recipient,amount) (ERC20.sol#223)
- super._transfer(from,to,amount) (BakinSanta.sol#354)
Reentrancy in BakinSanta._transfer(address,address,uint256) (BakinSanta.sol#298-369):
External calls:
- swapAndSendToFee(marketingTokens) (BakinSanta.sol#325)
- IERC20(BAKE).transfer(_marketingWalletAddress,newBalance) (BakinSanta.sol#377)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BakinSanta.sol#435-441)
- swapAndLiquify(swapTokens) (BakinSanta.sol#328)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (BakinSanta.sol#450-457)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BakinSanta.sol#415-421)
- swapAndSendDividends(sellTokens) (BakinSanta.sol#331)
- success = IERC20(BAKE).transfer(address(dividendTracker),dividends) (BakinSanta.sol#464)
- dividendTracker.distributeBAKEDividends(dividends) (BakinSanta.sol#467)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BakinSanta.sol#435-441)
- dividendTracker.setBalance(address(from),balanceOf(from)) (BakinSanta.sol#356)
- dividendTracker.setBalance(address(to),balanceOf(to)) (BakinSanta.sol#357)
- dividendTracker.process(gas) (BakinSanta.sol#362-367)
External calls sending eth:
- swapAndLiquify(swapTokens) (BakinSanta.sol#328)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (BakinSanta.sol#450-457)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (BakinSanta.sol#363)
Reentrancy in BakinSanta.constructor() (BakinSanta.sol#96-128):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (BakinSanta.sol#103-104)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (BakinSanta.sol#109)
- dividendTracker.excludeFromDividends(pair) (BakinSanta.sol#212)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (BakinSanta.sol#215)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (BakinSanta.sol#109)
Reentrancy in BakinSanta.constructor() (BakinSanta.sol#96-128):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (BakinSanta.sol#103-104)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (BakinSanta.sol#109)
- dividendTracker.excludeFromDividends(pair) (BakinSanta.sol#212)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (BakinSanta.sol#112)
- dividendTracker.excludeFromDividends(address(this)) (BakinSanta.sol#113)
- dividendTracker.excludeFromDividends(owner()) (BakinSanta.sol#114)
- dividendTracker.excludeFromDividends(deadWallet) (BakinSanta.sol#115)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (BakinSanta.sol#116)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (BakinSanta.sol#164)
- excludeFromFees(address(this),true) (BakinSanta.sol#121)
- ExcludeFromFees(account,excluded) (BakinSanta.sol#164)
- excludeFromFees(_marketingWalletAddress,true) (BakinSanta.sol#120)
- ExcludeFromFees(account,excluded) (BakinSanta.sol#164)
- excludeFromFees(owner(),true) (BakinSanta.sol#119)
- Transfer(address(0),account,amount) (ERC20.sol#242)
- _mint(owner(),100000000000 * (10 ** 18)) (BakinSanta.sol#127)
Reentrancy in BakinSantaDividendTracker.processAccount(address,bool) (BakinSanta.sol#669-679):
External calls:
- amount = _withdrawDividendOfUser(account) (BakinSanta.sol#670)
- success = IERC20(BAKE).transfer(user,_withdrawableDividend) (DividendPayingToken.sol#81)
Event emitted after the call(s):
- Claim(account,amount,automatic) (BakinSanta.sol#674)
Reentrancy in BakinSanta.processDividendTracker(uint256) (BakinSanta.sol#280-283):
External calls:
- (iterations,claims,lastProcessedIndex) = dividendTracker.process(gas) (BakinSanta.sol#281)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,false,gas,tx.origin) (BakinSanta.sol#282)
Reentrancy in BakinSanta.swapAndLiquify(uint256) (BakinSanta.sol#380-401):
External calls:
- swapTokensForEth(half) (BakinSanta.sol#392)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BakinSanta.sol#415-421)
- addLiquidity(otherHalf,newBalance) (BakinSanta.sol#398)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (BakinSanta.sol#450-457)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (BakinSanta.sol#398)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (BakinSanta.sol#450-457)
Event emitted after the call(s):
- Approval(owner,spender,amount) (ERC20.sol#288)
- addLiquidity(otherHalf,newBalance) (BakinSanta.sol#398)
- SwapAndLiquify(half,newBalance,otherHalf) (BakinSanta.sol#400)
Reentrancy in BakinSanta.swapAndSendDividends(uint256) (BakinSanta.sol#461-470):
External calls:
- swapTokensForBake(tokens) (BakinSanta.sol#462)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BakinSanta.sol#435-441)
- success = IERC20(BAKE).transfer(address(dividendTracker),dividends) (BakinSanta.sol#464)
- dividendTracker.distributeBAKEDividends(dividends) (BakinSanta.sol#467)
Event emitted after the call(s):
- SendDividends(tokens,dividends) (BakinSanta.sol#468)
Reentrancy in BakinSanta.updateDividendTracker(address) (BakinSanta.sol#134-149):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (BakinSanta.sol#141)
- newDividendTracker.excludeFromDividends(address(this)) (BakinSanta.sol#142)
- newDividendTracker.excludeFromDividends(owner()) (BakinSanta.sol#143)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (BakinSanta.sol#144)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (BakinSanta.sol#146)
Apply the check-effects-interactions pattern.

Additional information: link

BakinSantaDividendTracker.getAccount(address) (BakinSanta.sol#533-576) uses timestamp for comparisons
Dangerous comparisons:
- nextClaimTime > block.timestamp (BakinSanta.sol#573-575)
BakinSantaDividendTracker.canAutoClaim(uint256) (BakinSanta.sol#597-603) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (BakinSanta.sol#598)
- block.timestamp.sub(lastClaimTime) >= claimWait (BakinSanta.sol#602)
Avoid relying on block.timestamp.

Additional information: link

Context._msgData() (Context.sol#20-23) is never used and should be removed
DividendPayingToken._transfer(address,address,uint256) (DividendPayingToken.sol#132-138) is never used and should be removed
SafeMath.mod(uint256,uint256) (SafeMath.sol#126-128) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (SafeMath.sol#142-145) is never used and should be removed
SafeMathInt.abs(int256) (SafeMathInt.sol#82-85) is never used and should be removed
SafeMathInt.div(int256,int256) (SafeMathInt.sol#53-59) is never used and should be removed
SafeMathInt.mul(int256,int256) (SafeMathInt.sol#41-48) is never used and should be removed
Remove unused functions.

Additional information: link

BakinSanta.totalFees (BakinSanta.sol#47) is set pre-construction with a non-constant function or state variable:
- BAKERewardsFee.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 (BakinSanta.sol#15) allows old versions
Pragma version^0.6.2 (Context.sol#3) allows old versions
Pragma version^0.6.2 (DividendPayingToken.sol#3) allows old versions
Pragma version^0.6.2 (DividendPayingTokenInterface.sol#3) allows old versions
Pragma version^0.6.2 (DividendPayingTokenOptionalInterface.sol#3) allows old versions
Pragma version^0.6.2 (ERC20.sol#3) allows old versions
Pragma version^0.6.2 (IERC20.sol#3) allows old versions
Pragma version^0.6.2 (IERC20Metadata.sol#3) allows old versions
Pragma version^0.6.2 (IUniswapV2Factory.sol#3) allows old versions
Pragma version^0.6.2 (IUniswapV2Pair.sol#3) allows old versions
Pragma version^0.6.2 (IUniswapV2Router.sol#3) allows old versions
Pragma version^0.6.2 (IterableMapping.sol#2) allows old versions
Pragma version^0.6.2 (Ownable.sol#1) allows old versions
Pragma version^0.6.2 (SafeMath.sol#3) allows old versions
Pragma version^0.6.2 (SafeMathInt.sol#28) allows old versions
Pragma version^0.6.2 (SafeMathUint.sol#3) 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

Variable BakinSanta.BAKE (BakinSanta.sol#38) is not in mixedCase
Variable BakinSanta._isBlacklisted (BakinSanta.sol#42) is not in mixedCase
Variable BakinSanta.BAKERewardsFee (BakinSanta.sol#44) is not in mixedCase
Variable BakinSanta._marketingWalletAddress (BakinSanta.sol#49) is not in mixedCase
Parameter BakinSantaDividendTracker.getAccount(address)._account (BakinSanta.sol#533) is not in mixedCase
Parameter DividendPayingToken.dividendOf(address)._owner (DividendPayingToken.sol#98) is not in mixedCase
Parameter DividendPayingToken.withdrawableDividendOf(address)._owner (DividendPayingToken.sol#105) is not in mixedCase
Parameter DividendPayingToken.withdrawnDividendOf(address)._owner (DividendPayingToken.sol#112) is not in mixedCase
Parameter DividendPayingToken.accumulativeDividendOf(address)._owner (DividendPayingToken.sol#122) is not in mixedCase
Variable DividendPayingToken.BAKE (DividendPayingToken.sol#24) is not in mixedCase
Constant DividendPayingToken.magnitude (DividendPayingToken.sol#30) is not in UPPER_CASE_WITH_UNDERSCORES
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (IUniswapV2Pair.sol#20) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (IUniswapV2Pair.sol#21) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (IUniswapV2Pair.sol#38) is not in mixedCase
Function IUniswapV2Router01.WETH() (IUniswapV2Router.sol#7) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (Context.sol#21)" inContext (Context.sol#15-24)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (DividendPayingToken.sol#77) is too similar to BakinSantaDividendTracker.getAccount(address).withdrawableDividends (BakinSanta.sol#538)
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (IUniswapV2Router.sol#12) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (IUniswapV2Router.sol#13)
Prevent variables from having similar names.

Additional information: link

BakinSanta.constructor() (BakinSanta.sol#96-128) uses literals with too many digits:
- _mint(owner(),100000000000 * (10 ** 18)) (BakinSanta.sol#127)
BakinSanta.updateGasForProcessing(uint256) (BakinSanta.sol#219-224) uses literals with too many digits:
- require(bool,string)(newValue >= 200000 && newValue <= 500000,BakinSanta: gasForProcessing must be between 200,000 and 500,000) (BakinSanta.sol#220)
BakinSanta.slitherConstructorVariables() (BakinSanta.sol#26-471) uses literals with too many digits:
- deadWallet = 0x000000000000000000000000000000000000dEaD (BakinSanta.sol#36)
BakinSanta.slitherConstructorVariables() (BakinSanta.sol#26-471) uses literals with too many digits:
- swapTokensAtAmount = 2000000 * (10 ** 18) (BakinSanta.sol#40)
BakinSanta.slitherConstructorVariables() (BakinSanta.sol#26-471) uses literals with too many digits:
- gasForProcessing = 300000 (BakinSanta.sol#53)
BakinSantaDividendTracker.constructor() (BakinSanta.sol#493-496) uses literals with too many digits:
- minimumTokenBalanceForDividends = 200000 * (10 ** 18) (BakinSanta.sol#495)
BakinSantaDividendTracker.getAccountAtIndex(uint256) (BakinSanta.sol#578-595) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (BakinSanta.sol#589)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (SafeMathInt.sol#36) is never used in SafeMathInt (SafeMathInt.sol#34-92)
Remove unused state variables.

Additional information: link

BakinSanta.deadWallet (BakinSanta.sol#36) should be constant
BakinSanta.swapTokensAtAmount (BakinSanta.sol#40) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

updateDividendTracker(address) should be declared external:
- BakinSanta.updateDividendTracker(address) (BakinSanta.sol#134-149)
updateUniswapV2Router(address) should be declared external:
- BakinSanta.updateUniswapV2Router(address) (BakinSanta.sol#151-158)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- BakinSanta.excludeMultipleAccountsFromFees(address[],bool) (BakinSanta.sol#167-173)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- BakinSanta.setAutomatedMarketMakerPair(address,bool) (BakinSanta.sol#196-200)
updateGasForProcessing(uint256) should be declared external:
- BakinSanta.updateGasForProcessing(uint256) (BakinSanta.sol#219-224)
isExcludedFromFees(address) should be declared external:
- BakinSanta.isExcludedFromFees(address) (BakinSanta.sol#238-240)
withdrawableDividendOf(address) should be declared external:
- BakinSanta.withdrawableDividendOf(address) (BakinSanta.sol#242-244)
dividendTokenBalanceOf(address) should be declared external:
- BakinSanta.dividendTokenBalanceOf(address) (BakinSanta.sol#246-248)
withdrawDividend() should be declared external:
- BakinSantaDividendTracker.withdrawDividend() (BakinSanta.sol#502-504)
- DividendPayingToken.withdrawDividend() (DividendPayingToken.sol#70-72)
getAccountAtIndex(uint256) should be declared external:
- BakinSantaDividendTracker.getAccountAtIndex(uint256) (BakinSanta.sol#578-595)
process(uint256) should be declared external:
- BakinSantaDividendTracker.process(uint256) (BakinSanta.sol#622-667)
distributeBAKEDividends(uint256) should be declared external:
- DividendPayingToken.distributeBAKEDividends(uint256) (DividendPayingToken.sol#55-66)
dividendOf(address) should be declared external:
- DividendPayingToken.dividendOf(address) (DividendPayingToken.sol#98-100)
withdrawnDividendOf(address) should be declared external:
- DividendPayingToken.withdrawnDividendOf(address) (DividendPayingToken.sol#112-114)
name() should be declared external:
- ERC20.name() (ERC20.sol#63-65)
symbol() should be declared external:
- ERC20.symbol() (ERC20.sol#71-73)
decimals() should be declared external:
- ERC20.decimals() (ERC20.sol#88-90)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (ERC20.sol#114-117)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (ERC20.sol#122-124)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (ERC20.sol#133-136)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (ERC20.sol#151-159)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (ERC20.sol#173-176)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (ERC20.sol#192-195)
get(IterableMapping.Map,address) should be declared external:
- IterableMapping.get(IterableMapping.Map,address) (IterableMapping.sol#13-15)
getIndexOfKey(IterableMapping.Map,address) should be declared external:
- IterableMapping.getIndexOfKey(IterableMapping.Map,address) (IterableMapping.sol#17-22)
getKeyAtIndex(IterableMapping.Map,uint256) should be declared external:
- IterableMapping.getKeyAtIndex(IterableMapping.Map,uint256) (IterableMapping.sol#24-26)
size(IterableMapping.Map) should be declared external:
- IterableMapping.size(IterableMapping.Map) (IterableMapping.sol#30-32)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (Ownable.sol#43-46)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (Ownable.sol#52-56)
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.


Twitter account has less than 100 followers


Telegram account has relatively few subscribers


Last post in Twitter was more than 30 days ago


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Twitter account has few posts


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


Young tokens have high risks of price dump / death

Price for BSanta

News for BSanta