BurnX Token Logo

BurnX Token

About BurnX

Listings

Token 2 years

Website

🔥 Burn-X 🔥
-The HOTTEST Hyperdeflationary Frictionless Yield Generation Token in the BSC Space Right NOW.
•Watch the price floor of Burn-X grow day by day due to the innovative and perfectly mastered HyperDeflationary tokenomincs designed and implemented by the team behind this project.
_______________________
🔥 MANUAL BURN 🔥
•45% of the Burn-X total supply will be allocated to the burn fund
•7.5% of the supply will be manually burnt every 12 hours!
(15% Daily)
•These immense manual burns will occur for the first 3 days from the Burn-X launch
.
🔥 AUTO BURN 🔥
• 8% of each Burn-X transaction will be burned indefinitely and this will continue at said rate forever.
🔥 REFLECTION 🔥
•Burn-X is also a frictionless yield token! This means Burn-X tokens are redistributed to holders automatically after each and every Burn-X transaction at a rate of 2%
[In essence, your Burn-X token balance will always increase whilst holding due to the frictionless reflection.

Social

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

BurnX.addLiquidity(uint256,uint256) (#994-1007) sends eth to arbitrary user
Dangerous calls:
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,burnAddress,block.timestamp) (#999-1006)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in BurnX.transferOwner(address) (#577-595):
External calls:
- _transfer(_owner,newOwner,balanceOf(_owner)) (#589)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,burnAddress,block.timestamp) (#999-1006)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#985-991)
External calls sending eth:
- _transfer(_owner,newOwner,balanceOf(_owner)) (#589)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,burnAddress,block.timestamp) (#999-1006)
- _marketingWallet.transfer(toMarketing) (#969)
- _teamWallet.transfer(toTeam) (#972)
State variables written after the call(s):
- _owner = newOwner (#592)
Apply the check-effects-interactions pattern.

Additional information: link

Burner.sweepTokensToOwner(address) (#366-373) ignores return value by toTransfer.transfer(tokenOwner,toTransfer.balanceOf(address(this))) (#372)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link

Contract locking ether found:
Contract Burner (#310-374) has payable functions:
- Burner.receive() (#331)
But does not have a function to withdraw the ether
Remove the payable attribute or add a withdraw function.

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.

BurnX.setExcludedFromReward(address,bool) (#803-823) compares to a boolean constant:
-enabled == true (#804)
Remove the equality to the boolean constant.

Additional information: link

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

Additional information: link

BurnX.swapAndLiquify(uint256) (#938-963) performs a multiplication on the result of a division:
-half = toLiquify / 2 (#945)
-liquidityBalance = (fromSwap * half) / toSwapForEth (#954)
Consider ordering multiplication before division.

Additional information: link

BurnX._getValues(uint256,bool).values (#1118) 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

BurnX.addLiquidity(uint256,uint256) (#994-1007) ignores return value by dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,burnAddress,block.timestamp) (#999-1006)
Ensure that all the return values of the function calls are used.

Additional information: link

BurnX.setSwapSettings(uint256,uint256,uint256,uint256) (#784-787) should emit an event for:
- swapThreshold = (_tTotal * thresholdPercent) / thresholdDivisor (#785)
- swapAmount = (_tTotal * amountPercent) / amountDivisor (#786)
Emit an event for critical parameter changes.

Additional information: link

BurnX.setWallets(address,address).newTeamWallet (#789) lacks a zero-check on :
- _teamWallet = address(newTeamWallet) (#791)
Check that the address is not zero.

Additional information: link

Reentrancy in BurnX.transferFrom(address,address,uint256) (#632-636):
External calls:
- _transfer(sender,recipient,amount) (#633)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,burnAddress,block.timestamp) (#999-1006)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#985-991)
External calls sending eth:
- _transfer(sender,recipient,amount) (#633)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,burnAddress,block.timestamp) (#999-1006)
- _marketingWallet.transfer(toMarketing) (#969)
- _teamWallet.transfer(toTeam) (#972)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#634)
- _allowances[sender][spender] = amount (#861)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in BurnX.transferOwner(address) (#577-595):
External calls:
- _transfer(_owner,newOwner,balanceOf(_owner)) (#589)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,burnAddress,block.timestamp) (#999-1006)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#985-991)
External calls sending eth:
- _transfer(_owner,newOwner,balanceOf(_owner)) (#589)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,burnAddress,block.timestamp) (#999-1006)
- _marketingWallet.transfer(toMarketing) (#969)
- _teamWallet.transfer(toTeam) (#972)
Event emitted after the call(s):
- OwnershipTransferred(_owner,newOwner) (#593)
Apply the check-effects-interactions pattern.

Additional information: link

BurnX.setLpPair(address,bool) (#672-682) uses timestamp for comparisons
Dangerous comparisons:
- timeSinceLastPair != 0 (#676)
- require(bool,string)(block.timestamp - timeSinceLastPair > 604800,Cannot set a new pair this week!) (#677)
Avoid relying on block.timestamp.

Additional information: link

BurnX.swapAmount (#473) is set pre-construction with a non-constant function or state variable:
- (_tTotal * 5) / 1000
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.9 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

Variable BurnX._hasLiqBeenAdded (#478) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#10)" inContext (#4-13)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in BurnX.transferOwner(address) (#577-595):
External calls:
- _transfer(_owner,newOwner,balanceOf(_owner)) (#589)
- _marketingWallet.transfer(toMarketing) (#969)
- _teamWallet.transfer(toTeam) (#972)
External calls sending eth:
- _transfer(_owner,newOwner,balanceOf(_owner)) (#589)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,burnAddress,block.timestamp) (#999-1006)
- _marketingWallet.transfer(toMarketing) (#969)
- _teamWallet.transfer(toTeam) (#972)
State variables written after the call(s):
- _owner = newOwner (#592)
Event emitted after the call(s):
- OwnershipTransferred(_owner,newOwner) (#593)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#182) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#183)
Prevent variables from having similar names.

Additional information: link

BurnX.slitherConstructorVariables() (#376-1215) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#447)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

BurnX._previousMaxWalletSize (#469) is never used in BurnX (#376-1215)
Remove unused state variables.

Additional information: link

Burner._owner (#312) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

totalFees() should be declared external:
- BurnX.totalFees() (#825-827)
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.


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 verify token contract address on the website


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find Twitter link on the website


Unable to find code repository for the project


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 BurnX