AlphaBNB Token Logo

ABNB [AlphaBNB] Token

About ABNB

Listings

Not Found
Token 2 years

Website

Not Found

✈️Greetings friends, we are brand new rewards token with largest rewards in BNB on BEP20 starting from today, 

AlphaBNB is here to reward you up to 12% in BNB every hour✈️

💯3 benefits for every AlphaBNB investor💯

🔎By Holding $ABNB in your wallet, you will be automatically rewarded a percentage of the distribution in BNB.

🔎5 Holders every week gets rewards in BNB/BUSD just by holding AlphaBNB, lucky winners will be determined by randomizer

in live video chat, reward amount will be announced in our live video chats!

🔎The simple economic law of supply and demand will raise and lower the pricing of our token

from time to time. You can profit from that by buying and selling at the right time!

🧮TOKENOMICS:

Pancakeswap 95.5%

Dev/Marketing 4.5%

🔋Token Supply:

100 Billions

⛓Chain:

BSC BEP20

Social

Laser Scorebeta Last Audit: 30 November 2021

report
Token seems to be anonymous. As long as we are unable to find website score is limited.

ABNB.addLiquidity(uint256,uint256) (#2178-2190) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2181-2188)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in DividendPayingToken._withdrawDividendOfUser(address) (#1417-1433):
External calls:
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#1422)
State variables written after the call(s):
- withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend) (#1425)
Apply the check-effects-interactions pattern.

Additional information: link

SafeToken.withdraw(address,uint256) (#1735-1738) ignores return value by IERC20(_token).transfer(safeManager,_amount) (#1737)
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...)


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.

ABNB.setMaxtx(uint256) (#1856-1858) should emit an event for:
- maxSellTransactionAmount = _maxSellTxAmount (#1857)
Emit an event for critical parameter changes.

Additional information: link

SafeToken.setSafeManager(address)._safeManager (#1731) lacks a zero-check on :
- safeManager = _safeManager (#1732)
Check that the address is not zero.

Additional information: link

Variable 'ABNB._transfer(address,address,uint256).claims (#2105)' in ABNB._transfer(address,address,uint256) (#2050-2112) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#2106)
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 ABNBDividendTracker.processAccount(address,bool) (#1711-1721):
External calls:
- amount = _withdrawDividendOfUser(account) (#1712)
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#1422)
State variables written after the call(s):
- lastClaimTimes[account] = block.timestamp (#1715)
Apply the check-effects-interactions pattern.

Additional information: link

ABNB.swapAndLiquify(uint256) (#2114-2149) performs a multiplication on the result of a division:
-marketingAmount = deltaBalance.sub(bnbToAddLiquidityWith).div(totalFees.sub(liquidityFee)).mul(marketingFee) (#2138)
Consider ordering multiplication before division.

Additional information: link

ABNB._transfer(address,address,uint256).lastProcessedIndex (#2105) 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

ABNB.addLiquidity(uint256,uint256) (#2178-2190) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2181-2188)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendPayingToken.constructor(string,string)._symbol (#1374) shadows:
- ERC20._symbol (#836) (state variable)
Rename the local variables that shadow another component.

Additional information: link

Reentrancy in ABNB.swapAndLiquify(uint256) (#2114-2149):
External calls:
- swapTokensForBnb(toSwap,address(this)) (#2127)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,_to,block.timestamp) (#2164-2170)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#2136)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2181-2188)
- (success) = address(dividendTracker).call{value: dividends}() (#2142)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#2136)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2181-2188)
- marketingWallet.transfer(marketingAmount) (#2139)
- (success) = address(dividendTracker).call{value: dividends}() (#2142)
Event emitted after the call(s):
- SendDividends(toSwap - tokensToAddLiquidityWith,dividends) (#2145)
- SwapAndLiquify(tokensToAddLiquidityWith,deltaBalance) (#2148)
Apply the check-effects-interactions pattern.

Additional information: link

ABNBDividendTracker.canAutoClaim(uint256) (#1639-1645) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (#1640)
- block.timestamp.sub(lastClaimTime) >= claimWait (#1644)
Avoid relying on block.timestamp.

Additional information: link

SignedSafeMath.mul(int256,int256) (#177-179) is never used and should be removed
Remove unused functions.

Additional information: link

solc-0.8.4 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 ABNB.swapAndLiquify(uint256) (#2114-2149):
- (success) = address(dividendTracker).call{value: dividends}() (#2142)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable ABNB.BNBRewardsFee (#1785) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Reentrancy in ABNB.swapAndLiquify(uint256) (#2114-2149):
External calls:
- marketingWallet.transfer(marketingAmount) (#2139)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#2136)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2181-2188)
- marketingWallet.transfer(marketingAmount) (#2139)
- (success) = address(dividendTracker).call{value: dividends}() (#2142)
Event emitted after the call(s):
- SendDividends(toSwap - tokensToAddLiquidityWith,dividends) (#2145)
- SwapAndLiquify(tokensToAddLiquidityWith,deltaBalance) (#2148)
Apply the check-effects-interactions pattern.

Additional information: link

Variable ABNB.BNBRewardsFee (#1785) is too similar to ABNB.setFee(uint256,uint256,uint256)._bnbRewardFee (#1840)
Prevent variables from having similar names.

Additional information: link

ABNB.slitherConstructorVariables() (#1770-2193) uses literals with too many digits:
- gasForProcessing = 300000 (#1793)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

burn(uint256) should be declared external:
- ABNB.burn(uint256) (#2046-2048)
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.


Unable to find Twitter account


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


Young tokens have high risks of price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for ABNB