BNBPay Token Logo

BPAY [BNBPay] Token

About BPAY

Listings

Token 2 years
CoinMarketCap 2 years

Website

white paper

BNBPay is a decentralised scalable crypto payment gateway tailored for merchant transactions. BNBPay incorporates the ERC-1363 protocol to enable users to pay expenses using $BPAY tokens and crypto tokens. On top of that, users are rewarded with $BPAY tokens as they spend their crypto tokens.

BNBPay's objective to become the most widely used crypto payment for commerce. (Both eCommerce and brick and mortar shops). Transaction confirmation in each payment will be ready in less than 5 seconds which makes it well-suitable for any in-store purchase.

The BNBPay ecosystem is made up of 4 essential components:
• BNBPay Wallet for Android and IOS
• BNBPay eCommerce payment plugins for popular eCommerce platforms
• BNBPay POS (Point of Sales) system
• BNBPay reward system that will allow users to stake and earn $BPAY

Social

Laser Scorebeta Last Audit: 19 December 2022

report
Token is either risky or in presale. For presale 30+ is a fine score.

TokenRecover.recoverERC20(address,uint256) (#1430-1432) ignores return value by IERC20(tokenAddress).transfer(owner(),tokenAmount) (#1431)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link

Reentrancy in ERC20._transfer(address,address,uint256) (#607-647):
External calls:
- swapTokens(contractTokenBalance) (#625)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#683-689)
- buyBackTokens(balance.div(100).mul(percentToBuyBack)) (#633)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#701-706)
External calls sending eth:
- swapTokens(contractTokenBalance) (#625)
- recipient.transfer(amount) (#949)
- buyBackTokens(balance.div(100).mul(percentToBuyBack)) (#633)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#701-706)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#646)
- _liquidityFee = _previousLiquidityFee (#859)
- _liquidityFee = 0 (#854)
- _tokenTransfer(from,to,amount,takeFee) (#646)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#830)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#746)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#755)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#776)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#766)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#747)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#757)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#767)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#778)
- _tokenTransfer(from,to,amount,takeFee) (#646)
- _rTotal = _rTotal.sub(rFee) (#785)
- _tokenTransfer(from,to,amount,takeFee) (#646)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#832)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#775)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#765)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#756)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#777)
- buyBackTokens(balance.div(100).mul(percentToBuyBack)) (#633)
- inSwapAndLiquify = true (#453)
- inSwapAndLiquify = false (#455)
Apply the check-effects-interactions pattern.

Additional information: link


Contract ownership is not renounced (belongs to a wallet)


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains


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.

ERC1363.constructor(string,string).name (#1306) shadows:
- ERC20.name() (#478-480) (function)
ERC20.allowance(address,address).owner (#504) shadows:
- Ownable.owner() (#158-160) (function)
ERC20._approve(address,address,uint256).owner (#599) shadows:
- Ownable.owner() (#158-160) (function)
ERC1363.constructor(string,string).symbol (#1306) shadows:
- ERC20.symbol() (#482-484) (function)
Rename the local variables that shadow another component.

Additional information: link

ERC20._transfer(address,address,uint256) (#607-647) performs a multiplication on the result of a division:
-buyBackTokens(balance.div(100).mul(percentToBuyBack)) (#633)
ERC20.swapTokens(uint256) (#649-666) performs a multiplication on the result of a division:
-devPlusMarketing = transferredBalance.div(_liquidityFee).mul(devAndMarketingDivisor) (#655)
Consider ordering multiplication before division.

Additional information: link

ERC20.includeInReward(address) (#586-597) has costly operations inside a loop:
- _excluded.pop() (#593)
Use a local variable to hold the loop computation result.

Additional information: link

ERC20.addLiquidity(uint256,uint256) (#711-724) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#716-723)
Ensure that all the return values of the function calls are used.

Additional information: link

ERC20.setTaxFeePercent(uint256) (#898-900) should emit an event for:
- _taxFee = taxFee (#899)
ERC20.setLiquidityFeePercent(uint256) (#902-904) should emit an event for:
- _liquidityFee = liquidityFee (#903)
Emit an event for critical parameter changes.

Additional information: link

ERC20.setDevAddress(address)._devAddress (#926) lacks a zero-check on :
- devAddress = address(_devAddress) (#927)
ERC20.setMarketingAddress(address)._marketingAddress (#922) lacks a zero-check on :
- marketingAddress = address(_marketingAddress) (#923)
Check that the address is not zero.

Additional information: link

Reentrancy in ERC20.transferFrom(address,address,uint256) (#513-517):
External calls:
- _transfer(sender,recipient,amount) (#514)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#701-706)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#683-689)
External calls sending eth:
- _transfer(sender,recipient,amount) (#514)
- recipient.transfer(amount) (#949)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#701-706)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#515)
- _allowances[owner][spender] = amount (#603)
Reentrancy in ERC20._transfer(address,address,uint256) (#607-647):
External calls:
- swapTokens(contractTokenBalance) (#625)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#683-689)
- buyBackTokens(balance.div(100).mul(percentToBuyBack)) (#633)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#701-706)
External calls sending eth:
- swapTokens(contractTokenBalance) (#625)
- recipient.transfer(amount) (#949)
- buyBackTokens(balance.div(100).mul(percentToBuyBack)) (#633)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#701-706)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#646)
- _previousLiquidityFee = _liquidityFee (#851)
- _tokenTransfer(from,to,amount,takeFee) (#646)
- _previousTaxFee = _taxFee (#850)
- _tokenTransfer(from,to,amount,takeFee) (#646)
- _tFeeTotal = _tFeeTotal.add(tFee) (#786)
- _tokenTransfer(from,to,amount,takeFee) (#646)
- _taxFee = _previousTaxFee (#858)
- _taxFee = 0 (#853)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in ERC20.transferFrom(address,address,uint256) (#513-517):
External calls:
- _transfer(sender,recipient,amount) (#514)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#701-706)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#683-689)
External calls sending eth:
- _transfer(sender,recipient,amount) (#514)
- recipient.transfer(amount) (#949)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#701-706)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#604)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#515)
Reentrancy in ERC20.swapETHForTokens(uint256) (#694-709):
External calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#701-706)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#708)
Reentrancy in ERC20.swapTokens(uint256) (#649-666):
External calls:
- swapTokensForEth(contractTokenBalance) (#652)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#683-689)
External calls sending eth:
- transferToAddressETH(marketingAddress,half) (#660)
- recipient.transfer(amount) (#949)
- transferToAddressETH(devAddress,otherHalf) (#663)
- recipient.transfer(amount) (#949)
Event emitted after the call(s):
- SwapToDevAndMarketing(transferredBalance,half.add(otherHalf)) (#665)
Reentrancy in ERC20._transfer(address,address,uint256) (#607-647):
External calls:
- swapTokens(contractTokenBalance) (#625)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#683-689)
- buyBackTokens(balance.div(100).mul(percentToBuyBack)) (#633)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#701-706)
External calls sending eth:
- swapTokens(contractTokenBalance) (#625)
- recipient.transfer(amount) (#949)
- buyBackTokens(balance.div(100).mul(percentToBuyBack)) (#633)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#701-706)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#708)
- buyBackTokens(balance.div(100).mul(percentToBuyBack)) (#633)
- Transfer(sender,recipient,tTransferAmount) (#750)
- _tokenTransfer(from,to,amount,takeFee) (#646)
- Transfer(sender,recipient,tTransferAmount) (#770)
- _tokenTransfer(from,to,amount,takeFee) (#646)
- Transfer(sender,recipient,tTransferAmount) (#760)
- _tokenTransfer(from,to,amount,takeFee) (#646)
- Transfer(sender,recipient,tTransferAmount) (#781)
- _tokenTransfer(from,to,amount,takeFee) (#646)
Reentrancy in ERC20.swapTokensForEth(uint256) (#674-692):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#683-689)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#691)
Apply the check-effects-interactions pattern.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#127-144) uses assembly
- INLINE ASM (#136-139)
Address.isContract(address) (#91-100) uses assembly
- INLINE ASM (#98)
Do not use evm assembly.

Additional information: link

ERC165Checker._supportsERC165Interface(address,bytes4) (#1193-1199) is never used and should be removed
Address.sendValue(address,uint256) (#102-108) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#118-120) is never used and should be removed
ERC165Checker._callERC165SupportsInterface(address,bytes4) (#1209-1218) is never used and should be removed
ERC165Checker.supportsERC165(address) (#1137-1142) is never used and should be removed
ERC165Checker.supportsInterface(address,bytes4) (#1150-1154) is never used and should be removed
ERC20.addLiquidity(uint256,uint256) (#711-724) is never used and should be removed
ERC165Checker.supportsAllInterfaces(address,bytes4[]) (#1165-1180) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#83-86) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#122-125) is never used and should be removed
Context._msgData() (#18-21) is never used and should be removed
SafeMath.mod(uint256,uint256) (#79-81) is never used and should be removed
Address._functionCallWithValue(address,bytes,uint256,string) (#127-144) is never used and should be removed
Address.functionCall(address,bytes,string) (#114-116) is never used and should be removed
Address.functionCall(address,bytes) (#110-112) is never used and should be removed
Remove unused functions.

Additional information: link

ERC20._previousLiquidityFee (#411) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
ERC20._previousTaxFee (#408) is set pre-construction with a non-constant function or state variable:
- _taxFee
ERC20._rTotal (#399) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
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

Low level call in Address.sendValue(address,uint256) (#102-108):
- (success) = recipient.call{value: amount}() (#106)
Low level call in ERC165Checker._callERC165SupportsInterface(address,bytes4) (#1209-1218):
- (success,result) = account.staticcall{gas: 30000}(encodedParams) (#1215)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#127-144):
- (success,returndata) = target.call{value: weiValue}(data) (#130)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable ERC20._taxFee (#407) is not in mixedCase
Parameter ERC20.setNumTokensSellToAddToLiquidity(uint256)._minimumTokensBeforeSwap (#914) is not in mixedCase
Parameter ERC20.setDevAddress(address)._devAddress (#926) is not in mixedCase
Parameter ERC20.calculateLiquidityFee(uint256)._amount (#841) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#211) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#227) is not in mixedCase
Variable ERC20._maxTxAmount (#415) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#210) is not in mixedCase
Parameter ERC20.setPercentToBuyBack(uint256)._percentToBuyBack (#934) is not in mixedCase
Parameter ERC20.calculateTaxFee(uint256)._amount (#835) is not in mixedCase
Function IUniswapV2Router01.WETH() (#246) is not in mixedCase
Parameter ERC20.setMarketingAddress(address)._marketingAddress (#922) is not in mixedCase
Variable ERC20._liquidityFee (#410) is not in mixedCase
Parameter ERC20.setBuyBackEnabled(bool)._enabled (#943) is not in mixedCase
Parameter ERC20.setSwapAndLiquifyEnabled(bool)._enabled (#938) is not in mixedCase
Parameter ERC20.setMinimumBeforeBuyBack(uint256)._minimumBeforeBuyBack (#930) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

Reentrancy in ERC20.swapTokens(uint256) (#649-666):
External calls:
- transferToAddressETH(marketingAddress,half) (#660)
- recipient.transfer(amount) (#949)
- transferToAddressETH(devAddress,otherHalf) (#663)
- recipient.transfer(amount) (#949)
Event emitted after the call(s):
- SwapToDevAndMarketing(transferredBalance,half.add(otherHalf)) (#665)
Reentrancy in ERC20._transfer(address,address,uint256) (#607-647):
External calls:
- swapTokens(contractTokenBalance) (#625)
- recipient.transfer(amount) (#949)
External calls sending eth:
- swapTokens(contractTokenBalance) (#625)
- recipient.transfer(amount) (#949)
- buyBackTokens(balance.div(100).mul(percentToBuyBack)) (#633)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#701-706)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#646)
- _liquidityFee = _previousLiquidityFee (#859)
- _liquidityFee = 0 (#854)
- _tokenTransfer(from,to,amount,takeFee) (#646)
- _previousLiquidityFee = _liquidityFee (#851)
- _tokenTransfer(from,to,amount,takeFee) (#646)
- _previousTaxFee = _taxFee (#850)
- _tokenTransfer(from,to,amount,takeFee) (#646)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#830)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#746)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#755)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#776)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#766)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#747)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#757)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#767)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#778)
- _tokenTransfer(from,to,amount,takeFee) (#646)
- _rTotal = _rTotal.sub(rFee) (#785)
- _tokenTransfer(from,to,amount,takeFee) (#646)
- _tFeeTotal = _tFeeTotal.add(tFee) (#786)
- _tokenTransfer(from,to,amount,takeFee) (#646)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#832)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#775)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#765)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#756)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#777)
- _tokenTransfer(from,to,amount,takeFee) (#646)
- _taxFee = _previousTaxFee (#858)
- _taxFee = 0 (#853)
- buyBackTokens(balance.div(100).mul(percentToBuyBack)) (#633)
- inSwapAndLiquify = true (#453)
- inSwapAndLiquify = false (#455)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#708)
- buyBackTokens(balance.div(100).mul(percentToBuyBack)) (#633)
- Transfer(sender,recipient,tTransferAmount) (#750)
- _tokenTransfer(from,to,amount,takeFee) (#646)
- Transfer(sender,recipient,tTransferAmount) (#760)
- _tokenTransfer(from,to,amount,takeFee) (#646)
- Transfer(sender,recipient,tTransferAmount) (#770)
- _tokenTransfer(from,to,amount,takeFee) (#646)
- Transfer(sender,recipient,tTransferAmount) (#781)
- _tokenTransfer(from,to,amount,takeFee) (#646)
Reentrancy in ERC20.transferFrom(address,address,uint256) (#513-517):
External calls:
- _transfer(sender,recipient,amount) (#514)
- recipient.transfer(amount) (#949)
External calls sending eth:
- _transfer(sender,recipient,amount) (#514)
- recipient.transfer(amount) (#949)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#701-706)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#515)
- _allowances[owner][spender] = amount (#603)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#604)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#515)
Apply the check-effects-interactions pattern.

Additional information: link

Variable ERC20._transferStandard(address,address,uint256).rTransferAmount (#745) is too similar to ERC20._getTValues(uint256).tTransferAmount (#798)
Variable ERC20._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#806) is too similar to ERC20._getTValues(uint256).tTransferAmount (#798)
Variable ERC20._transferToExcluded(address,address,uint256).rTransferAmount (#754) is too similar to ERC20._transferFromExcluded(address,address,uint256).tTransferAmount (#764)
Variable ERC20._transferBothExcluded(address,address,uint256).rTransferAmount (#774) is too similar to ERC20._transferBothExcluded(address,address,uint256).tTransferAmount (#774)
Variable ERC20.reflectionFromToken(uint256,bool).rTransferAmount (#565) is too similar to ERC20._getTValues(uint256).tTransferAmount (#798)
Variable ERC20._transferBothExcluded(address,address,uint256).rTransferAmount (#774) is too similar to ERC20._getTValues(uint256).tTransferAmount (#798)
Variable ERC20._getValues(uint256).rTransferAmount (#791) is too similar to ERC20._transferBothExcluded(address,address,uint256).tTransferAmount (#774)
Variable ERC20._transferFromExcluded(address,address,uint256).rTransferAmount (#764) is too similar to ERC20._transferToExcluded(address,address,uint256).tTransferAmount (#754)
Variable ERC20._getValues(uint256).rTransferAmount (#791) is too similar to ERC20._transferToExcluded(address,address,uint256).tTransferAmount (#754)
Variable ERC20._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#806) is too similar to ERC20._transferStandard(address,address,uint256).tTransferAmount (#745)
Variable ERC20._transferToExcluded(address,address,uint256).rTransferAmount (#754) is too similar to ERC20._transferBothExcluded(address,address,uint256).tTransferAmount (#774)
Variable ERC20._getValues(uint256).rTransferAmount (#791) is too similar to ERC20._transferStandard(address,address,uint256).tTransferAmount (#745)
Variable ERC20._getValues(uint256).rTransferAmount (#791) is too similar to ERC20._getTValues(uint256).tTransferAmount (#798)
Variable ERC20.reflectionFromToken(uint256,bool).rTransferAmount (#565) is too similar to ERC20._transferFromExcluded(address,address,uint256).tTransferAmount (#764)
Variable ERC20.reflectionFromToken(uint256,bool).rTransferAmount (#565) is too similar to ERC20._transferBothExcluded(address,address,uint256).tTransferAmount (#774)
Variable ERC20.reflectionFromToken(uint256,bool).rTransferAmount (#565) is too similar to ERC20._transferToExcluded(address,address,uint256).tTransferAmount (#754)
Variable ERC20._getValues(uint256).rTransferAmount (#791) is too similar to ERC20._transferFromExcluded(address,address,uint256).tTransferAmount (#764)
Variable ERC20._transferFromExcluded(address,address,uint256).rTransferAmount (#764) is too similar to ERC20._transferBothExcluded(address,address,uint256).tTransferAmount (#774)
Variable ERC20._getValues(uint256).rTransferAmount (#791) is too similar to ERC20._getValues(uint256).tTransferAmount (#790)
Variable ERC20._transferStandard(address,address,uint256).rTransferAmount (#745) is too similar to ERC20._transferToExcluded(address,address,uint256).tTransferAmount (#754)
Variable ERC20._transferStandard(address,address,uint256).rTransferAmount (#745) is too similar to ERC20._transferStandard(address,address,uint256).tTransferAmount (#745)
Variable ERC20.reflectionFromToken(uint256,bool).rTransferAmount (#565) is too similar to ERC20._transferStandard(address,address,uint256).tTransferAmount (#745)
Variable ERC20._transferToExcluded(address,address,uint256).rTransferAmount (#754) is too similar to ERC20._getValues(uint256).tTransferAmount (#790)
Variable ERC20._transferFromExcluded(address,address,uint256).rTransferAmount (#764) is too similar to ERC20._transferStandard(address,address,uint256).tTransferAmount (#745)
Variable ERC20._transferStandard(address,address,uint256).rTransferAmount (#745) is too similar to ERC20._transferBothExcluded(address,address,uint256).tTransferAmount (#774)
Variable ERC20.reflectionFromToken(uint256,bool).rTransferAmount (#565) is too similar to ERC20._getValues(uint256).tTransferAmount (#790)
Variable ERC20._transferBothExcluded(address,address,uint256).rTransferAmount (#774) is too similar to ERC20._transferFromExcluded(address,address,uint256).tTransferAmount (#764)
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#251) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#252)
Variable ERC20._transferToExcluded(address,address,uint256).rTransferAmount (#754) is too similar to ERC20._transferToExcluded(address,address,uint256).tTransferAmount (#754)
Variable ERC20._transferFromExcluded(address,address,uint256).rTransferAmount (#764) is too similar to ERC20._getValues(uint256).tTransferAmount (#790)
Variable ERC20._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#806) is too similar to ERC20._transferFromExcluded(address,address,uint256).tTransferAmount (#764)
Variable ERC20._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#806) is too similar to ERC20._transferToExcluded(address,address,uint256).tTransferAmount (#754)
Variable ERC20._transferStandard(address,address,uint256).rTransferAmount (#745) is too similar to ERC20._transferFromExcluded(address,address,uint256).tTransferAmount (#764)
Variable ERC20._transferToExcluded(address,address,uint256).rTransferAmount (#754) is too similar to ERC20._transferStandard(address,address,uint256).tTransferAmount (#745)
Variable ERC20._transferToExcluded(address,address,uint256).rTransferAmount (#754) is too similar to ERC20._getTValues(uint256).tTransferAmount (#798)
Variable ERC20._transferBothExcluded(address,address,uint256).rTransferAmount (#774) is too similar to ERC20._transferStandard(address,address,uint256).tTransferAmount (#745)
Variable ERC20._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#806) is too similar to ERC20._getValues(uint256).tTransferAmount (#790)
Variable ERC20._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#806) is too similar to ERC20._transferBothExcluded(address,address,uint256).tTransferAmount (#774)
Variable ERC20._transferStandard(address,address,uint256).rTransferAmount (#745) is too similar to ERC20._getValues(uint256).tTransferAmount (#790)
Variable ERC20._transferBothExcluded(address,address,uint256).rTransferAmount (#774) is too similar to ERC20._getValues(uint256).tTransferAmount (#790)
Variable ERC20._transferFromExcluded(address,address,uint256).rTransferAmount (#764) is too similar to ERC20._getTValues(uint256).tTransferAmount (#798)
Variable ERC20._transferFromExcluded(address,address,uint256).rTransferAmount (#764) is too similar to ERC20._transferFromExcluded(address,address,uint256).tTransferAmount (#764)
Variable ERC20._transferBothExcluded(address,address,uint256).rTransferAmount (#774) is too similar to ERC20._transferToExcluded(address,address,uint256).tTransferAmount (#754)
Prevent variables from having similar names.

Additional information: link

BNBPay.slitherConstructorVariables() (#1435-1441) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#385)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

ERC20._decimals (#404) should be constant
ERC20._tTotal (#398) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

excludeFromFee(address) should be declared external:
- ERC20.excludeFromFee(address) (#866-868)
excludeOriginFromFee(address) should be declared external:
- ERC20.excludeOriginFromFee(address) (#878-880)
includeOriginInFee(address) should be declared external:
- ERC20.includeOriginInFee(address) (#882-884)
supportsInterface(bytes4) should be declared external:
- ERC165.supportsInterface(bytes4) (#1249-1251)
minimumBeforeBuyBackAmount() should be declared external:
- ERC20.minimumBeforeBuyBackAmount() (#545-547)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#167-170)
setSwapAndLiquifyEnabled(bool) should be declared external:
- ERC20.setSwapAndLiquifyEnabled(bool) (#938-941)
isExcludedFromFee(address) should be declared external:
- ERC20.isExcludedFromFee(address) (#862-864)
totalFees() should be declared external:
- ERC20.totalFees() (#533-535)
decimals() should be declared external:
- ERC20.decimals() (#486-488)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#524-527)
symbol() should be declared external:
- ERC20.symbol() (#482-484)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#519-522)
excludeFromReward(address) should be declared external:
- ERC20.excludeFromReward(address) (#576-584)
buyBackUpperLimitAmount() should be declared external:
- ERC20.buyBackUpperLimitAmount() (#541-543)
includeInFee(address) should be declared external:
- ERC20.includeInFee(address) (#870-872)
isExcludedFromReward(address) should be declared external:
- ERC20.isExcludedFromReward(address) (#529-531)
isOriginExcludedFromFee(address) should be declared external:
- ERC20.isOriginExcludedFromFee(address) (#874-876)
transferFromAndCall(address,address,uint256) should be declared external:
- ERC1363.transferFromAndCall(address,address,uint256) (#1342-1344)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#172-176)
setBuyBackEnabled(bool) should be declared external:
- ERC20.setBuyBackEnabled(bool) (#943-946)
excludeDestinationFromFee(address) should be declared external:
- ERC20.excludeDestinationFromFee(address) (#890-892)
transferAndCall(address,uint256) should be declared external:
- ERC1363.transferAndCall(address,uint256) (#1318-1320)
name() should be declared external:
- ERC20.name() (#478-480)
deliver(uint256) should be declared external:
- ERC20.deliver(uint256) (#549-556)
approveAndCall(address,uint256) should be declared external:
- ERC1363.approveAndCall(address,uint256) (#1366-1368)
totalSupply() should be declared external:
- ERC20.totalSupply() (#490-492)
minimumTokensBeforeSwapAmount() should be declared external:
- ERC20.minimumTokensBeforeSwapAmount() (#537-539)
recoverERC20(address,uint256) should be declared external:
- TokenRecover.recoverERC20(address,uint256) (#1430-1432)
reflectionFromToken(uint256,bool) should be declared external:
- ERC20.reflectionFromToken(uint256,bool) (#559-568)
isDestinationExcludedFromFee(address) should be declared external:
- ERC20.isDestinationExcludedFromFee(address) (#886-888)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#504-506)
includeDestinationInFee(address) should be declared external:
- ERC20.includeDestinationInFee(address) (#894-896)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.


Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.


Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.


Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.

Contract has 5% buy tax and 5% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Token is deployed only at one blockchain


Unable to find Discord account


Unable to find Youtube account


Token was delisted from CoinGecko

Additional information: link


Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap

Additional information: link


Token is not listed at Mobula.Finance

Additional information: link


Token has a considerable age, but average PancakeSwap 30d trading volume is low


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for BPAY

News for BPAY