VOXILIUM NETWORK Token Logo

VOX [VOXILIUM NETWORK] Token

About VOX

Listings

Not Found
Token 3 years

Voxilium is an open-source (permissionless) public blockchain protocol and smart contract platform that enables developers (startups,
corporates, and businesses) to create blockchain based projects. As the third generation blockchain protocol,
Voxilium is born to support DApps (Decentralized Applications), DeFi (Decentralized Finance) and many real use cases of blockchain applications for startups, businesses, and corporates.
Voxilium is going to make blockchain technology accessible and applicable to enhance various industries.

Social

Laser Scorebeta Last Audit: 30 June 2022

report
Token has too many issues. Scam probability is high.

Anti-Scam

Links

VOXILIUM.addLiquidity(uint256,uint256) (#748-761) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#753-760)
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 VOXILIUM._transfer(address,address,uint256) (#657-695):
External calls:
- swapAndLiquify(contractTokenBalance) (#679)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#753-760)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#737-743)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#679)
- recipient.transfer(amount) (#621)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#753-760)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#682)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#690)
- finalAmount = takeFee(sender,recipient,amount) (#684-685)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#775)
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 not renounced (belongs to a wallet)

VOXILIUM.addLiquidity(uint256,uint256) (#748-761) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#753-760)
Ensure that all the return values of the function calls are used.

Additional information: link

VOXILIUM.allowance(address,address).owner (#512) shadows:
- Ownable.owner() (#162-164) (function)
VOXILIUM._approve(address,address,uint256).owner (#535) shadows:
- Ownable.owner() (#162-164) (function)
Rename the local variables that shadow another component.

Additional information: link

Redundant expression "this (#21)" inContext (#14-24)
Remove redundant statements if they congest code but offer no value.

Additional information: link

waiveOwnership() should be declared external:
- Ownable.waiveOwnership() (#171-174)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#176-180)
getTime() should be declared external:
- Ownable.getTime() (#182-184)
name() should be declared external:
- VOXILIUM.name() (#492-494)
symbol() should be declared external:
- VOXILIUM.symbol() (#496-498)
decimals() should be declared external:
- VOXILIUM.decimals() (#500-502)
totalSupply() should be declared external:
- VOXILIUM.totalSupply() (#504-506)
allowance(address,address) should be declared external:
- VOXILIUM.allowance(address,address) (#512-514)
increaseAllowance(address,uint256) should be declared external:
- VOXILIUM.increaseAllowance(address,uint256) (#516-519)
decreaseAllowance(address,uint256) should be declared external:
- VOXILIUM.decreaseAllowance(address,uint256) (#521-524)
minimumTokensBeforeSwapAmount() should be declared external:
- VOXILIUM.minimumTokensBeforeSwapAmount() (#526-528)
approve(address,uint256) should be declared external:
- VOXILIUM.approve(address,uint256) (#530-533)
setMarketPairStatus(address,bool) should be declared external:
- VOXILIUM.setMarketPairStatus(address,bool) (#543-545)
setIsExcludedFromFee(address,bool) should be declared external:
- VOXILIUM.setIsExcludedFromFee(address,bool) (#551-553)
setSwapAndLiquifyEnabled(bool) should be declared external:
- VOXILIUM.setSwapAndLiquifyEnabled(bool) (#607-610)
setSwapAndLiquifyByLimitOnly(bool) should be declared external:
- VOXILIUM.setSwapAndLiquifyByLimitOnly(bool) (#612-614)
getCirculatingSupply() should be declared external:
- VOXILIUM.getCirculatingSupply() (#616-618)
changeRouterVersion(address) should be declared external:
- VOXILIUM.changeRouterVersion(address) (#624-641)
transfer(address,uint256) should be declared external:
- VOXILIUM.transfer(address,uint256) (#646-649)
transferFrom(address,address,uint256) should be declared external:
- VOXILIUM.transferFrom(address,address,uint256) (#651-655)
Use the external attribute for functions never called from the contract.

Additional information: link

VOXILIUM.setBuyTaxes(uint256,uint256,uint256) (#555-561) should emit an event for:
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyMarketingFee).add(_buyTeamFee) (#560)
VOXILIUM.setSelTaxes(uint256,uint256,uint256) (#563-569) should emit an event for:
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellMarketingFee).add(_sellTeamFee) (#568)
VOXILIUM.setDistributionSettings(uint256,uint256,uint256) (#571-577) should emit an event for:
- _liquidityShare = newLiquidityShare (#572)
- _teamShare = newTeamShare (#574)
- _totalDistributionShares = _liquidityShare.add(_marketingShare).add(_teamShare) (#576)
VOXILIUM.setMaxTxAmount(uint256) (#579-581) should emit an event for:
- _maxTxAmount = maxTxAmount (#580)
VOXILIUM.setWalletLimit(uint256) (#591-593) should emit an event for:
- _walletMax = newLimit (#592)
VOXILIUM.setNumTokensBeforeSwap(uint256) (#595-597) should emit an event for:
- minimumTokensBeforeSwap = newLimit (#596)
Emit an event for critical parameter changes.

Additional information: link

VOXILIUM.setMarketingWalletAddress(address).newAddress (#599) lacks a zero-check on :
- marketingWalletAddress = address(newAddress) (#600)
VOXILIUM.setTeamWalletAddress(address).newAddress (#603) lacks a zero-check on :
- teamWalletAddress = address(newAddress) (#604)
Check that the address is not zero.

Additional information: link

Reentrancy in VOXILIUM.changeRouterVersion(address) (#624-641):
External calls:
- newPairAddress = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#632-633)
State variables written after the call(s):
- isMarketPair[address(uniswapPair)] = true (#640)
- isWalletLimitExempt[address(uniswapPair)] = true (#639)
- uniswapPair = newPairAddress (#636)
- uniswapV2Router = _uniswapV2Router (#637)
Reentrancy in VOXILIUM.constructor() (#461-490):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#466-467)
State variables written after the call(s):
- _allowances[address(this)][address(uniswapV2Router)] = _totalSupply (#470)
- _balances[_msgSender()] = _totalSupply (#488)
- _totalDistributionShares = _liquidityShare.add(_marketingShare).add(_teamShare) (#477)
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyMarketingFee).add(_buyTeamFee) (#475)
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellMarketingFee).add(_sellTeamFee) (#476)
- isExcludedFromFee[owner()] = true (#472)
- isExcludedFromFee[address(this)] = true (#473)
- isMarketPair[address(uniswapPair)] = true (#486)
- isTxLimitExempt[owner()] = true (#483)
- isTxLimitExempt[address(this)] = true (#484)
- isWalletLimitExempt[owner()] = true (#479)
- isWalletLimitExempt[address(uniswapPair)] = true (#480)
- isWalletLimitExempt[address(this)] = true (#481)
- uniswapV2Router = _uniswapV2Router (#469)
Reentrancy in VOXILIUM.swapAndLiquify(uint256) (#704-726):
External calls:
- swapTokensForEth(tokensForSwap) (#709)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#737-743)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#725)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#753-760)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#719)
- recipient.transfer(amount) (#621)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#722)
- recipient.transfer(amount) (#621)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#725)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#753-760)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#725)
- _allowances[owner][spender] = amount (#539)
Reentrancy in VOXILIUM.transferFrom(address,address,uint256) (#651-655):
External calls:
- _transfer(sender,recipient,amount) (#652)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#753-760)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#737-743)
External calls sending eth:
- _transfer(sender,recipient,amount) (#652)
- recipient.transfer(amount) (#621)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#753-760)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#653)
- _allowances[owner][spender] = amount (#539)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in VOXILIUM._transfer(address,address,uint256) (#657-695):
External calls:
- swapAndLiquify(contractTokenBalance) (#679)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#753-760)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#737-743)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#679)
- recipient.transfer(amount) (#621)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#753-760)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#776)
- finalAmount = takeFee(sender,recipient,amount) (#684-685)
- Transfer(sender,recipient,finalAmount) (#692)
Reentrancy in VOXILIUM.constructor() (#461-490):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#466-467)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_totalSupply) (#489)
Reentrancy in VOXILIUM.swapAndLiquify(uint256) (#704-726):
External calls:
- swapTokensForEth(tokensForSwap) (#709)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#737-743)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#725)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#753-760)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#719)
- recipient.transfer(amount) (#621)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#722)
- recipient.transfer(amount) (#621)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#725)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#753-760)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#540)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#725)
Reentrancy in VOXILIUM.swapTokensForEth(uint256) (#728-746):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#737-743)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#745)
Reentrancy in VOXILIUM.transferFrom(address,address,uint256) (#651-655):
External calls:
- _transfer(sender,recipient,amount) (#652)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#753-760)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#737-743)
External calls sending eth:
- _transfer(sender,recipient,amount) (#652)
- recipient.transfer(amount) (#621)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#753-760)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#540)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#653)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#93-102) uses assembly
- INLINE ASM (#100)
Address._functionCallWithValue(address,bytes,uint256,string) (#129-146) uses assembly
- INLINE ASM (#138-141)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#129-146) is never used and should be removed
Address.functionCall(address,bytes) (#112-114) is never used and should be removed
Address.functionCall(address,bytes,string) (#116-118) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#120-122) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#124-127) is never used and should be removed
Address.isContract(address) (#93-102) is never used and should be removed
Address.sendValue(address,uint256) (#104-110) is never used and should be removed
Context._msgData() (#20-23) is never used and should be removed
SafeMath.mod(uint256,uint256) (#81-83) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#85-88) is never used and should be removed
Remove unused functions.

Additional information: link

VOXILIUM._totalSupply (#425) is set pre-construction with a non-constant function or state variable:
- 100000000 * 10 ** _decimals
VOXILIUM._maxTxAmount (#426) is set pre-construction with a non-constant function or state variable:
- 1000000 * 10 ** _decimals
VOXILIUM._walletMax (#427) is set pre-construction with a non-constant function or state variable:
- 1000000 * 10 ** _decimals
VOXILIUM.minimumTokensBeforeSwap (#428) is set pre-construction with a non-constant function or state variable:
- 100 * 10 ** _decimals
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) (#104-110):
- (success) = recipient.call{value: amount}() (#108)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#129-146):
- (success,returndata) = target.call{value: weiValue}(data) (#132)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#219) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#220) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#236) is not in mixedCase
Function IUniswapV2Router01.WETH() (#255) is not in mixedCase
Parameter VOXILIUM.setSwapAndLiquifyEnabled(bool)._enabled (#607) is not in mixedCase
Variable VOXILIUM._balances (#401) is not in mixedCase
Variable VOXILIUM._buyLiquidityFee (#409) is not in mixedCase
Variable VOXILIUM._buyMarketingFee (#410) is not in mixedCase
Variable VOXILIUM._buyTeamFee (#411) is not in mixedCase
Variable VOXILIUM._sellLiquidityFee (#413) is not in mixedCase
Variable VOXILIUM._sellMarketingFee (#414) is not in mixedCase
Variable VOXILIUM._sellTeamFee (#415) is not in mixedCase
Variable VOXILIUM._liquidityShare (#417) is not in mixedCase
Variable VOXILIUM._marketingShare (#418) is not in mixedCase
Variable VOXILIUM._teamShare (#419) is not in mixedCase
Variable VOXILIUM._totalTaxIfBuying (#421) is not in mixedCase
Variable VOXILIUM._totalTaxIfSelling (#422) is not in mixedCase
Variable VOXILIUM._totalDistributionShares (#423) is not in mixedCase
Variable VOXILIUM._maxTxAmount (#426) is not in mixedCase
Variable VOXILIUM._walletMax (#427) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Reentrancy in VOXILIUM._transfer(address,address,uint256) (#657-695):
External calls:
- swapAndLiquify(contractTokenBalance) (#679)
- recipient.transfer(amount) (#621)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#679)
- recipient.transfer(amount) (#621)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#753-760)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#682)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#690)
- finalAmount = takeFee(sender,recipient,amount) (#684-685)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#775)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#776)
- finalAmount = takeFee(sender,recipient,amount) (#684-685)
- Transfer(sender,recipient,finalAmount) (#692)
Reentrancy in VOXILIUM.swapAndLiquify(uint256) (#704-726):
External calls:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#719)
- recipient.transfer(amount) (#621)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#722)
- recipient.transfer(amount) (#621)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#719)
- recipient.transfer(amount) (#621)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#722)
- recipient.transfer(amount) (#621)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#725)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#753-760)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#725)
- _allowances[owner][spender] = amount (#539)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#540)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#725)
Reentrancy in VOXILIUM.transferFrom(address,address,uint256) (#651-655):
External calls:
- _transfer(sender,recipient,amount) (#652)
- recipient.transfer(amount) (#621)
External calls sending eth:
- _transfer(sender,recipient,amount) (#652)
- recipient.transfer(amount) (#621)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#753-760)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#653)
- _allowances[owner][spender] = amount (#539)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#540)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#653)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

Ownable.waiveOwnership() (#171-174) uses literals with too many digits:
- OwnershipTransferred(_owner,address(0x000000000000000000000000000000000000dEaD)) (#172)
VOXILIUM.slitherConstructorVariables() (#388-783) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#399)
VOXILIUM.slitherConstructorVariables() (#388-783) uses literals with too many digits:
- _totalSupply = 100000000 * 10 ** _decimals (#425)
VOXILIUM.slitherConstructorVariables() (#388-783) uses literals with too many digits:
- _maxTxAmount = 1000000 * 10 ** _decimals (#426)
VOXILIUM.slitherConstructorVariables() (#388-783) uses literals with too many digits:
- _walletMax = 1000000 * 10 ** _decimals (#427)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Ownable.asdasd (#151) is never used in VOXILIUM (#388-783)
Ownable._lockTime (#152) is never used in VOXILIUM (#388-783)
Remove unused state variables.

Additional information: link

Ownable._lockTime (#152) should be constant
Ownable.asdasd (#151) should be constant
VOXILIUM._decimals (#395) should be constant
VOXILIUM._name (#393) should be constant
VOXILIUM._symbol (#394) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

Holders:


Token seems to be untradeable: there is no PancakeSwap trading pair and no trading volumes. Ignore for presale.


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


Telegram account link seems to be invalid


Twitter account has less than 100 followers


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Twitter account has few posts


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

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 KYC or doxxing proof


Unable to verify that token and website are owned by the same team (no listings + unable to find contract on website)


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 token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


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


Young tokens have high risks of scam / 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 CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for VOX

News for VOX