VizslaSwap Token Logo

VIZSLASWAP Token

ALERT: honeypot scam

About VIZSLASWAP

Listings

Token 2 years
CoinGecko 2 years
CoinMarketCap 2 years
[CoinMarketCap] alert: Smart contract of the following asset can be modified by the contract creator (for example: disable selling, change fees, mint new tokens, or transfer tokens). Please DYOR and proceed with caution.
[CoinGecko] alert: The smart-contract owner can mint new tokens, please proceed with caution.
white paper

#Hungarian Vizsla Inu ECOSYSTEM!

#Hungarian Vizsla Inu Token: (WebSite: https://vizslainu.com/)
The first major Hungarian investment & charity token on the Binance Smart Chain. We started as a memecoin, but our goal is to become a significant global altcoin.
That’s why we are building a friendly crypto community, creating and developing the HVI ecosystem – while also providing donations to the dogs in need.
Incubation program: https://vizslainu.com/incubator/
Charity: https://vizslainu.com/charity/
Blog: https://vizslainu.com/blog/

#VizslaMarket (NFT Market: https://vizslamarket.io/)
Self-developed NFT MARKET. The bottom line is the adoption of animals in the form of NFTs, of which more than 90% are donations on average.
It is unique in the market because of what do you prefer?
Trading random generated #jpeg or the picture of a real living animal which you support?
Read more: https://vizslainu.com/nft-vizsla-market/

#VizslaSwap (DeFi: https://www.vizslaswap.com/)
VizslaSwap is a decentralized exchange running on BNB Smart Chain with lots of features that let you trade and earn tokens. VizslaSwap Token is a perpetual deflation token with a sufficient burn mechanism. We are not trying to replace the swap & exchange but to add value into the ecosystem and create a suitable and sustainable environment for people to liquidity mining and staking pools with high APR. Trade directly from your wallet app. VizslaSwap doesn’t hold your funds when you trade: you have 100% ownership of your own crypto.
Read more: https://vizslainu.com/swap/

Laser Scorebeta Last Audit: 16 September 2023

report
Token seems to be a scam (type: honeypot scam).

Anti-Scam

Links

VizslaSwap.addLiquidity(uint256,uint256) (#1433-1446) sends eth to arbitrary user
Dangerous calls:
- swapRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,lpEarner,block.timestamp) (#1438-1445)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link


Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)

Reentrancy in VizslaSwap._transfer(address,address,uint256) (#1349-1381):
External calls:
- swapAndLiquify() (#1358)
- swapRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,lpEarner,block.timestamp) (#1438-1445)
- swapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1423-1429)
External calls sending eth:
- swapAndLiquify() (#1358)
- swapRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,lpEarner,block.timestamp) (#1438-1445)
- feeAddr.transfer(address(this).balance.mul(20).div(100)) (#1401)
State variables written after the call(s):
- super._transfer(sender,recipient,amount) (#1364)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (#885)
- _balances[recipient] = _balances[recipient].add(amount) (#886)
- super._transfer(sender,burnAddr,burnAmount) (#1377)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (#885)
- _balances[recipient] = _balances[recipient].add(amount) (#886)
- super._transfer(sender,address(this),liqAmount) (#1378)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (#885)
- _balances[recipient] = _balances[recipient].add(amount) (#886)
- super._transfer(sender,recipient,sendAmount) (#1379)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (#885)
- _balances[recipient] = _balances[recipient].add(amount) (#886)
Apply the check-effects-interactions pattern.

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.


Contract ownership is semi-renounced (passed to a contract)

Redundant expression "this (#84)" inContext (#78-87)
Remove redundant statements if they congest code but offer no value.

Additional information: link

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

Additional information: link

VizslaSwap.slitherConstructorConstantVariables() (#1232-1570) uses literals with too many digits:
- MAXSUPPLY = 5000000000000000000000000000000000 (#688)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

VizslaSwap.antiWhale(address,address,uint256) (#1303-1313) compares to a boolean constant:
-_excludedFromAntiWhale[sender] == false && _excludedFromAntiWhale[recipient] == false (#1306-1307)
VizslaSwap._transfer(address,address,uint256) (#1349-1381) compares to a boolean constant:
-swapAndLiquifyEnabled == true && _inSwapAndLiquify == false && address(swapRouter) != address(0) && swapPair != address(0) && sender != swapPair && sender != owner() (#1352-1357)
Remove the equality to the boolean constant.

Additional information: link

VizslaSwap.swapAndLiquify() (#1384-1411) performs a multiplication on the result of a division:
-half = liquifyAmount.div(2) (#1394)
-otherHalf = liquifyAmount.sub(half.mul(80).div(100)) (#1395)
VizslaSwap._transfer(address,address,uint256) (#1349-1381) performs a multiplication on the result of a division:
-taxAmount = amount.mul(transferTaxRate).div(10000) (#1368)
-burnAmount = taxAmount.mul(burnFee).div(100) (#1369)
Consider ordering multiplication before division.

Additional information: link

VizslaSwap.addLiquidity(uint256,uint256) (#1433-1446) ignores return value by swapRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,lpEarner,block.timestamp) (#1438-1445)
Ensure that all the return values of the function calls are used.

Additional information: link

BEP20.allowance(address,address).owner (#768) shadows:
- Ownable.owner() (#119-121) (function)
BEP20.constructor(string,string).symbol (#699) shadows:
- BEP20.symbol() (#729-731) (function)
- IBEP20.symbol() (#169) (function)
BEP20._approve(address,address,uint256).owner (#942) shadows:
- Ownable.owner() (#119-121) (function)
BEP20.constructor(string,string).name (#699) shadows:
- BEP20.name() (#715-717) (function)
- IBEP20.name() (#174) (function)
VizslaSwap.swapAndLiquify().maxTransferAmount (#1386) shadows:
- VizslaSwap.maxTransferAmount() (#1451-1453) (function)
Rename the local variables that shadow another component.

Additional information: link

Reentrancy in VizslaSwap.swapAndLiquify() (#1384-1411):
External calls:
- swapTokensForEth(half) (#1398)
- swapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1423-1429)
- addLiquidity(otherHalf,newBalance) (#1407)
- swapRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,lpEarner,block.timestamp) (#1438-1445)
External calls sending eth:
- feeAddr.transfer(address(this).balance.mul(20).div(100)) (#1401)
- addLiquidity(otherHalf,newBalance) (#1407)
- swapRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,lpEarner,block.timestamp) (#1438-1445)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1407)
- _allowances[owner][spender] = amount (#949)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in VizslaSwap._transfer(address,address,uint256) (#1349-1381):
External calls:
- swapAndLiquify() (#1358)
- swapRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,lpEarner,block.timestamp) (#1438-1445)
- swapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1423-1429)
External calls sending eth:
- swapAndLiquify() (#1358)
- swapRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,lpEarner,block.timestamp) (#1438-1445)
- feeAddr.transfer(address(this).balance.mul(20).div(100)) (#1401)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#887)
- super._transfer(sender,recipient,sendAmount) (#1379)
- Transfer(sender,recipient,amount) (#887)
- super._transfer(sender,address(this),liqAmount) (#1378)
- Transfer(sender,recipient,amount) (#887)
- super._transfer(sender,burnAddr,burnAmount) (#1377)
- Transfer(sender,recipient,amount) (#887)
- super._transfer(sender,recipient,amount) (#1364)
Reentrancy in VizslaSwap.swapAndLiquify() (#1384-1411):
External calls:
- swapTokensForEth(half) (#1398)
- swapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1423-1429)
- addLiquidity(otherHalf,newBalance) (#1407)
- swapRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,lpEarner,block.timestamp) (#1438-1445)
External calls sending eth:
- feeAddr.transfer(address(this).balance.mul(20).div(100)) (#1401)
- addLiquidity(otherHalf,newBalance) (#1407)
- swapRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,lpEarner,block.timestamp) (#1438-1445)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#950)
- addLiquidity(otherHalf,newBalance) (#1407)
- SwapAndLiquify(half,newBalance,otherHalf) (#1409)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#484-493) uses assembly
- INLINE ASM (#491)
Address._verifyCallResult(bool,bytes,string) (#629-646) uses assembly
- INLINE ASM (#638-641)
Do not use evm assembly.

Additional information: link

SafeBEP20.safeDecreaseAllowance(IBEP20,address,uint256) (#40-43) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#306-309) is never used and should be removed
Address.sendValue(address,uint256) (#511-517) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#562-564) is never used and should be removed
SafeBEP20.safeTransferFrom(IBEP20,address,address,uint256) (#13-15) is never used and should be removed
SafeERC20.safeTransferFrom(IBEP20,address,address,uint256) (#1594-1601) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#316-319) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#621-627) is never used and should be removed
SafeERC20.safeApprove(IBEP20,address,uint256) (#1610-1624) is never used and should be removed
BEP20._burnFrom(address,uint256) (#959-966) is never used and should be removed
BEP20._burn(address,uint256) (#920-926) is never used and should be removed
SafeBEP20._callOptionalReturn(IBEP20,bytes) (#51-61) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#611-613) is never used and should be removed
SafeERC20._callOptionalReturn(IBEP20,bytes) (#1653-1664) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#270-274) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#456-459) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#572-579) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#436-439) is never used and should be removed
Context._msgData() (#83-86) is never used and should be removed
Address.functionStaticCall(address,bytes) (#587-589) is never used and should be removed
SafeERC20.safeIncreaseAllowance(IBEP20,address,uint256) (#1626-1633) is never used and should be removed
SafeBEP20.safeTransfer(IBEP20,address,uint256) (#9-11) is never used and should be removed
SafeMath.mod(uint256,uint256) (#398-401) is never used and should be removed
SafeERC20.safeDecreaseAllowance(IBEP20,address,uint256) (#1635-1645) is never used and should be removed
Address._verifyCallResult(bool,bytes,string) (#629-646) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#291-299) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#281-284) is never used and should be removed
SafeBEP20.safeIncreaseAllowance(IBEP20,address,uint256) (#35-38) is never used and should be removed
SafeBEP20.safeApprove(IBEP20,address,uint256) (#24-33) is never used and should be removed
Address.isContract(address) (#484-493) is never used and should be removed
Address.functionCall(address,bytes,string) (#547-549) is never used and should be removed
SafeERC20.safeTransfer(IBEP20,address,uint256) (#1586-1592) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#597-603) is never used and should be removed
Address.functionCall(address,bytes) (#537-539) is never used and should be removed
Remove unused functions.

Additional information: link

VizslaSwap.liqFee (#1241) is set pre-construction with a non-constant function or state variable:
- 100 - burnFee
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.functionCallWithValue(address,bytes,uint256,string) (#572-579):
- (success,returndata) = target.call{value: value}(data) (#577)
Low level call in Address.sendValue(address,uint256) (#511-517):
- (success) = recipient.call{value: amount}() (#515)
Low level call in Address.functionDelegateCall(address,bytes,string) (#621-627):
- (success,returndata) = target.delegatecall(data) (#625)
Low level call in Address.functionStaticCall(address,bytes,string) (#597-603):
- (success,returndata) = target.staticcall(data) (#601)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Parameter VizslaSwap.setExcludedFromAntiWhale(address,bool)._excluded (#1509) is not in mixedCase
Parameter VizslaSwap.mint(address,uint256)._amount (#1344) is not in mixedCase
Parameter VizslaSwap.setNoTaxSenderAddr(address,bool)._value (#1540) is not in mixedCase
Parameter VizslaSwap.setExcludedFromAntiWhale(address,bool)._account (#1509) is not in mixedCase
Parameter VizslaSwap.updateMinAmountToLiquify(uint256)._minAmount (#1500) is not in mixedCase
Constant VizslaSwap.lpEarner (#1283) is not in UPPER_CASE_WITH_UNDERSCORES
Parameter VizslaSwap.mint(address,uint256)._to (#1344) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#1120) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#1137) is not in mixedCase
Parameter VizslaSwap.updateSwapAndLiquifyEnabled(bool)._enabled (#1518) is not in mixedCase
Parameter VizslaSwap.setNoTaxRecipientAddr(address,bool)._noTaxRecipientAddr (#1545) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#1119) is not in mixedCase
Parameter VizslaSwap.updateTransferTaxRate(uint16)._transferTaxRate (#1469) is not in mixedCase
Parameter VizslaSwap.updateBurnFee(uint16)._burnFee (#1479) is not in mixedCase
Constant VizslaSwap.maxTaxRate (#1244) is not in UPPER_CASE_WITH_UNDERSCORES
Constant VizslaSwap.feeAddr (#1247) is not in UPPER_CASE_WITH_UNDERSCORES
Constant VizslaSwap.burnAddr (#1250) is not in UPPER_CASE_WITH_UNDERSCORES
Parameter VizslaSwap.isExcludedFromAntiWhale(address)._account (#1458) is not in mixedCase
Parameter VizslaSwap.updateSwapRouter(address)._router (#1527) is not in mixedCase
Parameter VizslaSwap.updateMaxTransferAmountRate(uint16)._maxTransferAmountRate (#1489) is not in mixedCase
Function IUniswapV2Router01.WETH() (#971) is not in mixedCase
Parameter VizslaSwap.setNoTaxSenderAddr(address,bool)._noTaxSenderAddr (#1540) is not in mixedCase
Parameter VizslaSwap.setNoTaxRecipientAddr(address,bool)._value (#1545) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Reentrancy in VizslaSwap._transfer(address,address,uint256) (#1349-1381):
External calls:
- swapAndLiquify() (#1358)
- feeAddr.transfer(address(this).balance.mul(20).div(100)) (#1401)
External calls sending eth:
- swapAndLiquify() (#1358)
- swapRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,lpEarner,block.timestamp) (#1438-1445)
- feeAddr.transfer(address(this).balance.mul(20).div(100)) (#1401)
State variables written after the call(s):
- super._transfer(sender,recipient,amount) (#1364)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (#885)
- _balances[recipient] = _balances[recipient].add(amount) (#886)
- super._transfer(sender,burnAddr,burnAmount) (#1377)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (#885)
- _balances[recipient] = _balances[recipient].add(amount) (#886)
- super._transfer(sender,address(this),liqAmount) (#1378)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (#885)
- _balances[recipient] = _balances[recipient].add(amount) (#886)
- super._transfer(sender,recipient,sendAmount) (#1379)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (#885)
- _balances[recipient] = _balances[recipient].add(amount) (#886)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#887)
- super._transfer(sender,recipient,sendAmount) (#1379)
- Transfer(sender,recipient,amount) (#887)
- super._transfer(sender,burnAddr,burnAmount) (#1377)
- Transfer(sender,recipient,amount) (#887)
- super._transfer(sender,address(this),liqAmount) (#1378)
- Transfer(sender,recipient,amount) (#887)
- super._transfer(sender,recipient,amount) (#1364)
Reentrancy in VizslaSwap.swapAndLiquify() (#1384-1411):
External calls:
- feeAddr.transfer(address(this).balance.mul(20).div(100)) (#1401)
External calls sending eth:
- feeAddr.transfer(address(this).balance.mul(20).div(100)) (#1401)
- addLiquidity(otherHalf,newBalance) (#1407)
- swapRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,lpEarner,block.timestamp) (#1438-1445)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1407)
- _allowances[owner][spender] = amount (#949)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#950)
- addLiquidity(otherHalf,newBalance) (#1407)
- SwapAndLiquify(half,newBalance,otherHalf) (#1409)
Apply the check-effects-interactions pattern.

Additional information: link

transfer(address,uint256) should be declared external:
- BEP20.transfer(address,uint256) (#760-763)
symbol() should be declared external:
- BEP20.symbol() (#729-731)
transferOperator(address) should be declared external:
- VizslaSwap.transferOperator(address) (#1564-1568)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#138-141)
updateSwapAndLiquifyEnabled(bool) should be declared external:
- VizslaSwap.updateSwapAndLiquifyEnabled(bool) (#1518-1521)
isExcludedFromAntiWhale(address) should be declared external:
- VizslaSwap.isExcludedFromAntiWhale(address) (#1458-1460)
approve(address,uint256) should be declared external:
- BEP20.approve(address,uint256) (#779-782)
setExcludedFromAntiWhale(address,bool) should be declared external:
- VizslaSwap.setExcludedFromAntiWhale(address,bool) (#1509-1512)
name() should be declared external:
- BEP20.name() (#715-717)
transferFrom(address,address,uint256) should be declared external:
- BEP20.transferFrom(address,address,uint256) (#796-808)
updateTransferTaxRate(uint16) should be declared external:
- VizslaSwap.updateTransferTaxRate(uint16) (#1469-1473)
updateBurnFee(uint16) should be declared external:
- VizslaSwap.updateBurnFee(uint16) (#1479-1483)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#147-151)
updateMaxTransferAmountRate(uint16) should be declared external:
- VizslaSwap.updateMaxTransferAmountRate(uint16) (#1489-1494)
updateMinAmountToLiquify(uint256) should be declared external:
- VizslaSwap.updateMinAmountToLiquify(uint256) (#1500-1503)
mint(uint256) should be declared external:
- BEP20.mint(uint256) (#858-861)
allowance(address,address) should be declared external:
- BEP20.allowance(address,address) (#768-770)
updateSwapRouter(address) should be declared external:
- VizslaSwap.updateSwapRouter(address) (#1527-1533)
mint(address,uint256) should be declared external:
- VizslaSwap.mint(address,uint256) (#1344-1346)
maxSupply() should be declared external:
- BEP20.maxSupply() (#740-742)
operator() should be declared external:
- VizslaSwap.operator() (#1555-1557)
decimals() should be declared external:
- BEP20.decimals() (#722-724)
increaseAllowance(address,uint256) should be declared external:
- BEP20.increaseAllowance(address,uint256) (#822-825)
decreaseAllowance(address,uint256) should be declared external:
- BEP20.decreaseAllowance(address,uint256) (#841-848)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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


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


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


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


Token is deployed only at one blockchain


Number of Binance Smart Chain (BSC) token holders is low.

Contract has 6% buy tax and 6% sell tax.
Taxes are low and contract ownership is renounced.


Twitter account link seems to be invalid


Unable to find Youtube account


Unable to find token contract audit


Unable to find audit link on the website


Token is not listed at Mobula.Finance

Additional information: link


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


Token is marked as scam (rug pull, honeypot, phishing, etc.)

Additional information: link


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


Token has relatively low CoinGecko rank


Token has relatively low CoinMarketCap rank

Price for VIZSLASWAP