Santas War NFT Epic Token Logo

SANTAWAR [Santas War NFT Epic] Token

About SANTAWAR

Listings

Token 22 months

Santa’s War NFT Epic Game is the most addictive fight game to hit the holiday season.

About Santa’s War Epic Game
Santa Warrior NFT Game is the most addictive and immersive metaverse fight game to hit the holiday season. Players mint, explore luscious landscapes, fight, mine, and engage in PVP/ PVC competitions and events.

Santa Claus has been kidnapped by the evil Christmas Cyber Grinch. Christmas is canceled if we can’t get Old St. Nick back. Mrs. Claus is going to fight to bring her man home. She has to fight through various levels against Dark Elves, Street Thugs, Evil Reindeers and The Grinch and his lieutenants to rescue Santa and save Christmas.

Players can use various interdimensional Mrs. Claus NFTs to fight and battle through 8 heart pounding levels. Players will earn crypto by playing or getting high scores.

NFT Marketplace
Tokenomics

Supply: 5 Billion Fair launch: 60% Play to earn: 40%
Unlocked monthly for 24 months BUSD Rewards
3% on buy & sell order will be reflected for all holders (Minimum hold 500,000 SANTAWAR) Play to earn
Users can earn tokens by participating the SANTA WAR NFT Game NFT Marketplace
Only 2,500 SANTA WAR will be minted Taxes: 3% on buy & sell & 3% Marketing
Gameplay

Free to play
Players can play for free with a non-NFT Mrs. Claus. Using SANTA tokens, players can P2E for huge earnings.

Play-to-earn
Highest score or fastest time will earn. Blah blah blah...I’ll write more

Social

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

SANTAWAR.swapBack() (#585-612) sends eth to arbitrary user
Dangerous calls:
- address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#605)
SANTAWAR.withdrawBNB(uint256) (#716-718) sends eth to arbitrary user
Dangerous calls:
- address(msg.sender).transfer(_amount) (#717)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in SANTAWAR._transferFrom(address,address,uint256) (#522-546):
External calls:
- swapBack() (#530)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(swapThreshold,0,path,address(this),block.timestamp) (#593-611)
- distributor.deposit{value: amountBNBReflection}() (#604)
- address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#605)
- buyBackTokens() (#531)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,DEAD,block.timestamp.add(300)) (#630-637)
External calls sending eth:
- swapBack() (#530)
- distributor.deposit{value: amountBNBReflection}() (#604)
- address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#605)
- buyBackTokens() (#531)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,DEAD,block.timestamp.add(300)) (#630-637)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#534)
- amountReceived = takeFee(sender,recipient,amount) (#536)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#572)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#537)
- buyBackTokens() (#531)
- inSwap = true (#464)
- inSwap = false (#464)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#361-372) ignores return value by BUSD.transfer(shareholder,amount) (#367)
SANTAWAR.withdraw(address,uint256) (#712-714) ignores return value by IBEP20(_token).transfer(msg.sender,_amount) (#713)
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 DividendDistributor.distributeDividend(address) (#361-372):
External calls:
- BUSD.transfer(shareholder,amount) (#367)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#369)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#370)
Reentrancy in DividendDistributor.process(uint256) (#330-354):
External calls:
- distributeDividend(shareholders[currentIndex]) (#346)
- BUSD.transfer(shareholder,amount) (#367)
State variables written after the call(s):
- currentIndex ++ (#351)
Reentrancy in DividendDistributor.setShare(address,uint256) (#277-291):
External calls:
- distributeDividend(shareholder) (#279)
- BUSD.transfer(shareholder,amount) (#367)
State variables written after the call(s):
- shares[shareholder].amount = amount (#289)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#290)
Apply the check-effects-interactions pattern.

Additional information: link

SANTAWAR.swapBack() (#585-612) ignores return value by address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#605)
Ensure that the return value of a low-level call is checked or logged.

Additional information: link

SANTAWAR.swapBack().e (#607) 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

DividendDistributor.setDistributionCriteria(uint256,uint256,uint256) (#271-275) should emit an event for:
- minPeriod = _minPeriod (#272)
- minDistribution = _minDistribution (#273)
SANTAWAR.setTxLimit(uint256) (#643-645) should emit an event for:
- _maxTxAmount = amount (#644)
SANTAWAR.setFees(uint256,uint256,uint256,uint256) (#665-672) should emit an event for:
- burnFee = _burnFee (#666)
- reflectionFee = _reflectionFee (#667)
- marketingFee = _marketingFee (#668)
- totalFee = _burnFee.add(_reflectionFee).add(_marketingFee) (#669)
- feeDenominator = _feeDenominator (#670)
SANTAWAR.setSwapBackSettings(bool,uint256) (#678-681) should emit an event for:
- swapThreshold = _amount (#680)
SANTAWAR.setBuyBackEnable(uint256,bool) (#704-710) should emit an event for:
- buyBackUpperLimit = _buyBackUpperLimit (#708)
Emit an event for critical parameter changes.

Additional information: link

SANTAWAR.setMarketingWallet(address)._marketing (#674) lacks a zero-check on :
- marketing = _marketing (#675)
Check that the address is not zero.

Additional information: link

Variable 'SANTAWAR.swapBack().e (#607)' in SANTAWAR.swapBack() (#585-612) potentially used before declaration: SwapBackFailed(string(abi.encodePacked(SwapBack failed with error ,e))) (#608)
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 SANTAWAR.constructor() (#466-489):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#468)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = ~ uint256(0) (#469)
- _balances[owner_] = _totalSupply (#487)
- distributor = new DividendDistributor() (#471)
- excludeDividend[pair] = true (#478)
- excludeDividend[address(this)] = true (#479)
- excludeDividend[DEAD] = true (#482)
- excludeFee[owner_] = true (#476)
- excludeFee[address(this)] = true (#480)
- excludeMaxTxn[owner_] = true (#477)
- excludeMaxTxn[address(this)] = true (#481)
- marketing = msg.sender (#474)
- permitUsers[msg.sender] = true (#484)
- permitUsers[address(this)] = true (#485)
Reentrancy in DividendDistributor.deposit() (#310-328):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#317-322)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#327)
- totalDividends = totalDividends.add(amount) (#326)
Reentrancy in DividendDistributor.distributeDividend(address) (#361-372):
External calls:
- BUSD.transfer(shareholder,amount) (#367)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#368)
Reentrancy in DividendDistributor.setShare(address,uint256) (#277-291):
External calls:
- distributeDividend(shareholder) (#279)
- BUSD.transfer(shareholder,amount) (#367)
State variables written after the call(s):
- addShareholder(shareholder) (#283)
- shareholderIndexes[shareholder] = shareholders.length (#394)
- removeShareholder(shareholder) (#285)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#400)
- addShareholder(shareholder) (#283)
- shareholders.push(shareholder) (#395)
- removeShareholder(shareholder) (#285)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#399)
- shareholders.pop() (#401)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#288)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in SANTAWAR._transferFrom(address,address,uint256) (#522-546):
External calls:
- swapBack() (#530)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(swapThreshold,0,path,address(this),block.timestamp) (#593-611)
- distributor.deposit{value: amountBNBReflection}() (#604)
- address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#605)
- buyBackTokens() (#531)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,DEAD,block.timestamp.add(300)) (#630-637)
External calls sending eth:
- swapBack() (#530)
- distributor.deposit{value: amountBNBReflection}() (#604)
- address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#605)
- buyBackTokens() (#531)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,DEAD,block.timestamp.add(300)) (#630-637)
Event emitted after the call(s):
- SwapBNBForTokens(amount,path) (#639)
- buyBackTokens() (#531)
- Transfer(sender,address(this),feeAmount) (#573)
- amountReceived = takeFee(sender,recipient,amount) (#536)
Reentrancy in SANTAWAR._transferFrom(address,address,uint256) (#522-546):
External calls:
- swapBack() (#530)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(swapThreshold,0,path,address(this),block.timestamp) (#593-611)
- distributor.deposit{value: amountBNBReflection}() (#604)
- address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#605)
- buyBackTokens() (#531)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,DEAD,block.timestamp.add(300)) (#630-637)
- distributor.setShare(sender,_balances[sender]) (#539)
- distributor.setShare(recipient,_balances[recipient]) (#540)
- distributor.process(distributorGas) (#542)
External calls sending eth:
- swapBack() (#530)
- distributor.deposit{value: amountBNBReflection}() (#604)
- address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#605)
- buyBackTokens() (#531)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,DEAD,block.timestamp.add(300)) (#630-637)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#544)
Reentrancy in SANTAWAR.constructor() (#466-489):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#468)
Event emitted after the call(s):
- Transfer(address(0),owner_,_totalSupply) (#488)
Reentrancy in SANTAWAR.swapBack() (#585-612):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(swapThreshold,0,path,address(this),block.timestamp) (#593-611)
- distributor.deposit{value: amountBNBReflection}() (#604)
- address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#605)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#604)
- address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#605)
Event emitted after the call(s):
- SwapBackSuccess(swapThreshold) (#606)
Reentrancy in SANTAWAR.swapBack() (#585-612):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(swapThreshold,0,path,address(this),block.timestamp) (#593-611)
Event emitted after the call(s):
- SwapBackFailed(string(abi.encodePacked(SwapBack failed with error ,e))) (#608)
- SwapBackFailed(SwapBack failed without an error message from pancakeSwap) (#610)
Reentrancy in SANTAWAR.swapBnbForTokens(uint256) (#623-640):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,DEAD,block.timestamp.add(300)) (#630-637)
Event emitted after the call(s):
- SwapBNBForTokens(amount,path) (#639)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#136-141) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#138)
DividendDistributor.getAccount(address) (#293-308) uses timestamp for comparisons
Dangerous comparisons:
- nextClaimTime > block.timestamp (#305-307)
DividendDistributor.shouldDistribute(address) (#356-359) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#357-358)
Avoid relying on block.timestamp.

Additional information: link

DividendDistributor.process(uint256) (#330-354) has costly operations inside a loop:
- currentIndex = 0 (#342)
DividendDistributor.process(uint256) (#330-354) has costly operations inside a loop:
- currentIndex ++ (#351)
Use a local variable to hold the loop computation result.

Additional information: link

Context._msgData() (#52-55) is never used and should be removed
Remove unused functions.

Additional information: link

SANTAWAR._maxTxAmount (#425) is set pre-construction with a non-constant function or state variable:
- _totalSupply
SANTAWAR.totalFee (#431) is set pre-construction with a non-constant function or state variable:
- burnFee.add(reflectionFee).add(marketingFee)
SANTAWAR.swapThreshold (#444) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 5000
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.8.6 (#3) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6
solc-0.8.6 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

Low level call in SANTAWAR.swapBack() (#585-612):
- address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#605)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IDEXRouter.WETH() (#168) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256,uint256)._minPeriod (#271) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256,uint256)._minDistribution (#271) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256,uint256)._minimumTokenBalanceForDividends (#271) is not in mixedCase
Parameter DividendDistributor.getAccount(address)._account (#293) is not in mixedCase
Variable DividendDistributor._token (#225) is not in mixedCase
Variable DividendDistributor.BUSD (#233) is not in mixedCase
Variable DividendDistributor.WBNB (#234) is not in mixedCase
Parameter SANTAWAR.setPermit(address[])._users (#454) is not in mixedCase
Parameter SANTAWAR.setFees(uint256,uint256,uint256,uint256)._burnFee (#665) is not in mixedCase
Parameter SANTAWAR.setFees(uint256,uint256,uint256,uint256)._reflectionFee (#665) is not in mixedCase
Parameter SANTAWAR.setFees(uint256,uint256,uint256,uint256)._marketingFee (#665) is not in mixedCase
Parameter SANTAWAR.setFees(uint256,uint256,uint256,uint256)._feeDenominator (#665) is not in mixedCase
Parameter SANTAWAR.setMarketingWallet(address)._marketing (#674) is not in mixedCase
Parameter SANTAWAR.setSwapBackSettings(bool,uint256)._enabled (#678) is not in mixedCase
Parameter SANTAWAR.setSwapBackSettings(bool,uint256)._amount (#678) is not in mixedCase
Parameter SANTAWAR.setDistributionCriteria(uint256,uint256,uint256)._minPeriod (#683) is not in mixedCase
Parameter SANTAWAR.setDistributionCriteria(uint256,uint256,uint256)._minDistribution (#683) is not in mixedCase
Parameter SANTAWAR.setDistributionCriteria(uint256,uint256,uint256)._minimumTokenBalanceForDividends (#683) is not in mixedCase
Parameter SANTAWAR.setBuyBackEnable(uint256,bool)._buyBackUpperLimit (#704) is not in mixedCase
Parameter SANTAWAR.withdraw(address,uint256)._token (#712) is not in mixedCase
Parameter SANTAWAR.withdraw(address,uint256)._amount (#712) is not in mixedCase
Parameter SANTAWAR.withdrawBNB(uint256)._amount (#716) is not in mixedCase
Variable SANTAWAR.WBNB (#408) is not in mixedCase
Variable SANTAWAR.DEAD (#409) is not in mixedCase
Variable SANTAWAR.ZERO (#410) is not in mixedCase
Variable SANTAWAR._balances (#412) is not in mixedCase
Variable SANTAWAR._allowances (#413) is not in mixedCase
Constant SANTAWAR._name (#415) is not in UPPER_CASE_WITH_UNDERSCORES
Constant SANTAWAR._symbol (#416) is not in UPPER_CASE_WITH_UNDERSCORES
Constant SANTAWAR._decimals (#417) is not in UPPER_CASE_WITH_UNDERSCORES
Variable SANTAWAR._totalSupply (#418) is not in mixedCase
Variable SANTAWAR._maxTxAmount (#425) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#53)" inContext (#47-56)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#173) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#174)
Prevent variables from having similar names.

Additional information: link

DividendDistributor.slitherConstructorVariables() (#222-403) uses literals with too many digits:
- minimumTokenBalanceForDividends = 500000 * (10 ** 9) (#251)
SANTAWAR.setDistributorSettings(uint256) (#687-690) uses literals with too many digits:
- require(bool)(gas <= 1000000) (#688)
SANTAWAR.slitherConstructorVariables() (#405-724) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#409)
SANTAWAR.slitherConstructorVariables() (#405-724) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#410)
SANTAWAR.slitherConstructorVariables() (#405-724) uses literals with too many digits:
- _totalSupply = 5000000000 * (10 ** _decimals) (#418)
SANTAWAR.slitherConstructorVariables() (#405-724) uses literals with too many digits:
- distributorGas = 500000 (#440)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

DividendDistributor.WBNB (#234) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#247) should be constant
SANTAWAR.DEAD (#409) should be constant
SANTAWAR.WBNB (#408) should be constant
SANTAWAR.ZERO (#410) should be constant
SANTAWAR._totalSupply (#418) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

owner() should be declared external:
- Ownable.owner() (#89-91)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#108-111)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#117-121)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#123-125)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#128-133)
unlock() should be declared external:
- Ownable.unlock() (#136-141)
getAccount(address) should be declared external:
- DividendDistributor.getAccount(address) (#293-308)
getCirculatingSupply() should be declared external:
- SANTAWAR.getCirculatingSupply() (#692-694)
setBuyBackEnable(uint256,bool) should be declared external:
- SANTAWAR.setBuyBackEnable(uint256,bool) (#704-710)
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.


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


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

Additional information: link


Token was delisted (assigned to inactive / untracked listing) from 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 token on CoinHunt

Additional information: link


Young tokens have high risks of price dump / death


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


Token has relatively low CoinGecko rank

Price for SANTAWAR