ELFT Token Token Logo

ELFT Token

About ELFT

Listings

Token 4 years
CoinGecko 4 years
CoinMarketCap 4 years
white paper

Elfworld is an app on GameFi featuring elf characters. This game creates a huge metaverse with elf characters whose designs are based off movies, animes and games around the world. The elves are all NFT characters according to the ERC-721 standard, and can be traded on our platform. Elfworld allows players to capture elves with elf balls, train them to battle and earn ELFT. There will be more upcoming features. Elfworld runs on BSC network, which ensures the trading prime cost is very low. Allows MetaMask and other web3 wallets for transaction and gas fees. MetaMask can be installed as a browser extension or as an application on a mobile device.

Social

Laser Scorebeta Last Audit: 30 April 2022

report
Token seems to be (relatively) fine. It still become a scam, but probability is moderate.


Contract ownership is not renounced (belongs to a wallet)

ELFTToken.addLiquidity(uint256,uint256) (contracts/ELFTToken.sol#222-235) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/ELFTToken.sol#227-234)
Ensure that all the return values of the function calls are used.

Additional information: link

Pragma version>=0.6.0<0.8.0 (contracts/lib/SafeMath.sol#3) is too complex
Pragma version>=0.5.0 (contracts/lib/swap.sol#1) allows old versions
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

ELFTToken._burnTotal (contracts/ELFTToken.sol#24) should be constant
ELFTToken._decimals (contracts/ELFTToken.sol#30) should be constant
ELFTToken._everyMonthBlocknum (contracts/ELFTToken.sol#43) should be constant
ELFTToken._gameRewardRate (contracts/ELFTToken.sol#25) should be constant
ELFTToken._maxTxAmount (contracts/ELFTToken.sol#64) should be constant
ELFTToken._name (contracts/ELFTToken.sol#28) should be constant
ELFTToken._symbol (contracts/ELFTToken.sol#29) should be constant
ELFTToken._total (contracts/ELFTToken.sol#23) should be constant
ELFTToken.startBlocknum (contracts/ELFTToken.sol#55) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

Reentrancy in ELFTToken._transfer(address,address,uint256) (contracts/ELFTToken.sol#447-494):
External calls:
- swapAndLiquify(contractTokenBalance) (contracts/ELFTToken.sol#478)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,swapAddr,block.timestamp) (contracts/ELFTToken.sol#528-534)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee,allFee) (contracts/ELFTToken.sol#493)
- _balance[address(this)] = _balance[address(this)].add(tLiquidity) (contracts/ELFTToken.sol#390)
- _balance[oneAddr] = _balance[oneAddr].add(amount.mul(50).div(100)) (contracts/ELFTToken.sol#270)
- _balance[sender] = _balance[sender].sub(tAmount) (contracts/ELFTToken.sol#258)
- _balance[recipient] = _balance[recipient].add(tTransferAmount) (contracts/ELFTToken.sol#259)
- _balance[twoAddr] = _balance[twoAddr].add(amount.mul(50).div(100)) (contracts/ELFTToken.sol#274)
Apply the check-effects-interactions pattern.

Additional information: link

ELFTToken.allowance(address,address).owner (contracts/ELFTToken.sol#218) shadows:
- Ownable.owner() (contracts/lib/owner.sol#42-44) (function)
ELFTToken._approve(address,address,uint256).owner (contracts/ELFTToken.sol#439) shadows:
- Ownable.owner() (contracts/lib/owner.sol#42-44) (function)
Rename the local variables that shadow another component.

Additional information: link

ELFTToken.setStartReleaseTeamBlocknum(uint256) (contracts/ELFTToken.sol#343-347) should emit an event for:
- startReleaseTeamBlocknum = blocknum (contracts/ELFTToken.sol#346)
ELFTToken.setStartReleaseInvetBlocknum(uint256) (contracts/ELFTToken.sol#348-352) should emit an event for:
- startReleaseInvetBlocknum = blocknum (contracts/ELFTToken.sol#351)
ELFTToken.setStartReleaseMarketBlocknum(uint256) (contracts/ELFTToken.sol#353-357) should emit an event for:
- startReleaseMarketBlocknum = blocknum (contracts/ELFTToken.sol#356)
Emit an event for critical parameter changes.

Additional information: link

ELFTToken.constructor(address,address,address,address,address,address,uint256)._swapAddr (contracts/ELFTToken.sol#89) lacks a zero-check on :
- swapAddr = _swapAddr (contracts/ELFTToken.sol#103)
ELFTToken.constructor(address,address,address,address,address,address,uint256)._invetAddr (contracts/ELFTToken.sol#91) lacks a zero-check on :
- invetAddr = _invetAddr (contracts/ELFTToken.sol#104)
ELFTToken.constructor(address,address,address,address,address,address,uint256)._teamAddr (contracts/ELFTToken.sol#90) lacks a zero-check on :
- teamAddr = _teamAddr (contracts/ELFTToken.sol#105)
ELFTToken.constructor(address,address,address,address,address,address,uint256)._marOperaAddr (contracts/ELFTToken.sol#92) lacks a zero-check on :
- marOperaAddr = _marOperaAddr (contracts/ELFTToken.sol#106)
Check that the address is not zero.

Additional information: link

ELFTToken.swapTokensForEth(uint256) (contracts/ELFTToken.sol#519-535) has external calls inside a loop: path[1] = uniswapV2Router.WETH() (contracts/ELFTToken.sol#523)
ELFTToken.swapTokensForEth(uint256) (contracts/ELFTToken.sol#519-535) has external calls inside a loop: uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,swapAddr,block.timestamp) (contracts/ELFTToken.sol#528-534)
Favor pull over push strategy for external calls.

Additional information: link

releaseTeam() should be declared external:
- ELFTToken.releaseTeam() (contracts/ELFTToken.sol#127-147)
releaseInvet() should be declared external:
- ELFTToken.releaseInvet() (contracts/ELFTToken.sol#148-167)
releaseMarket() should be declared external:
- ELFTToken.releaseMarket() (contracts/ELFTToken.sol#168-187)
name() should be declared external:
- ELFTToken.name() (contracts/ELFTToken.sol#188-190)
symbol() should be declared external:
- ELFTToken.symbol() (contracts/ELFTToken.sol#192-194)
decimals() should be declared external:
- ELFTToken.decimals() (contracts/ELFTToken.sol#196-198)
totalSupply() should be declared external:
- ELFTToken.totalSupply() (contracts/ELFTToken.sol#200-202)
totalCirculated() should be declared external:
- ELFTToken.totalCirculated() (contracts/ELFTToken.sol#203-205)
transfer(address,uint256) should be declared external:
- ELFTToken.transfer(address,uint256) (contracts/ELFTToken.sol#213-216)
allowance(address,address) should be declared external:
- ELFTToken.allowance(address,address) (contracts/ELFTToken.sol#218-220)
approve(address,uint256) should be declared external:
- ELFTToken.approve(address,uint256) (contracts/ELFTToken.sol#293-296)
transferFrom(address,address,uint256) should be declared external:
- ELFTToken.transferFrom(address,address,uint256) (contracts/ELFTToken.sol#298-302)
increaseAllowance(address,uint256) should be declared external:
- ELFTToken.increaseAllowance(address,uint256) (contracts/ELFTToken.sol#304-307)
decreaseAllowance(address,uint256) should be declared external:
- ELFTToken.decreaseAllowance(address,uint256) (contracts/ELFTToken.sol#309-312)
totalFeeBurn() should be declared external:
- ELFTToken.totalFeeBurn() (contracts/ELFTToken.sol#314-316)
excludeFromFeeBatch(address[]) should be declared external:
- ELFTToken.excludeFromFeeBatch(address[]) (contracts/ELFTToken.sol#322-327)
includeInFeeBatch(address[]) should be declared external:
- ELFTToken.includeInFeeBatch(address[]) (contracts/ELFTToken.sol#333-338)
setStartReleaseTeamBlocknum(uint256) should be declared external:
- ELFTToken.setStartReleaseTeamBlocknum(uint256) (contracts/ELFTToken.sol#343-347)
setStartReleaseInvetBlocknum(uint256) should be declared external:
- ELFTToken.setStartReleaseInvetBlocknum(uint256) (contracts/ELFTToken.sol#348-352)
setStartReleaseMarketBlocknum(uint256) should be declared external:
- ELFTToken.setStartReleaseMarketBlocknum(uint256) (contracts/ELFTToken.sol#353-357)
setSwapAndLiquifyEnabled(bool) should be declared external:
- ELFTToken.setSwapAndLiquifyEnabled(bool) (contracts/ELFTToken.sol#366-369)
isExcludedFromFee(address) should be declared external:
- ELFTToken.isExcludedFromFee(address) (contracts/ELFTToken.sol#435-437)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (contracts/lib/owner.sol#61-64)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (contracts/lib/owner.sol#70-74)
Use the external attribute for functions never called from the contract.

Additional information: link

Reentrancy in ELFTToken._transfer(address,address,uint256) (contracts/ELFTToken.sol#447-494):
External calls:
- swapAndLiquify(contractTokenBalance) (contracts/ELFTToken.sol#478)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,swapAddr,block.timestamp) (contracts/ELFTToken.sol#528-534)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee,allFee) (contracts/ELFTToken.sol#493)
- _communityFee = _previousCommunityFee (contracts/ELFTToken.sol#428)
- _communityFee = 0 (contracts/ELFTToken.sol#416)
- _tokenTransfer(from,to,amount,takeFee,allFee) (contracts/ELFTToken.sol#493)
- _liquidityFee = _previousLiquidityFee (contracts/ELFTToken.sol#432)
- _liquidityFee = _previousLiquidityFee (contracts/ELFTToken.sol#427)
- _liquidityFee = 0 (contracts/ELFTToken.sol#423)
- _liquidityFee = 0 (contracts/ELFTToken.sol#415)
- _tokenTransfer(from,to,amount,takeFee,allFee) (contracts/ELFTToken.sol#493)
- _previousCommunityFee = _communityFee (contracts/ELFTToken.sol#413)
- _tokenTransfer(from,to,amount,takeFee,allFee) (contracts/ELFTToken.sol#493)
- _previousLiquidityFee = _liquidityFee (contracts/ELFTToken.sol#421)
- _previousLiquidityFee = _liquidityFee (contracts/ELFTToken.sol#412)
- _tokenTransfer(from,to,amount,takeFee,allFee) (contracts/ELFTToken.sol#493)
- _previousTaxFee = _taxFee (contracts/ELFTToken.sol#411)
- _previousTaxFee = _taxFee (contracts/ELFTToken.sol#420)
- _tokenTransfer(from,to,amount,takeFee,allFee) (contracts/ELFTToken.sol#493)
- _relations[to] = from (contracts/ELFTToken.sol#281)
- _tokenTransfer(from,to,amount,takeFee,allFee) (contracts/ELFTToken.sol#493)
- _tFeeTotal = _tFeeTotal.add(tFee) (contracts/ELFTToken.sol#376)
- _tokenTransfer(from,to,amount,takeFee,allFee) (contracts/ELFTToken.sol#493)
- _taxFee = _previousTaxFee (contracts/ELFTToken.sol#426)
- _taxFee = _previousTaxFee (contracts/ELFTToken.sol#431)
- _taxFee = 0 (contracts/ELFTToken.sol#422)
- _taxFee = 0 (contracts/ELFTToken.sol#414)
Reentrancy in ELFTToken.constructor(address,address,address,address,address,address,uint256) (contracts/ELFTToken.sol#87-126):
External calls:
- uniswapV2Pair = IMdexFactory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (contracts/ELFTToken.sol#114-115)
State variables written after the call(s):
- _isExcludedFromFee[_initAddr] = true (contracts/ELFTToken.sol#121)
- _isExcludedFromFee[address(this)] = true (contracts/ELFTToken.sol#122)
- uniswapV2Router = _uniswapV2Router (contracts/ELFTToken.sol#118)
Reentrancy in ELFTToken.transferFrom(address,address,uint256) (contracts/ELFTToken.sol#298-302):
External calls:
- _transfer(sender,recipient,amount) (contracts/ELFTToken.sol#299)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,swapAddr,block.timestamp) (contracts/ELFTToken.sol#528-534)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (contracts/ELFTToken.sol#300)
- _allowances[owner][spender] = amount (contracts/ELFTToken.sol#443)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in ELFTToken._transfer(address,address,uint256) (contracts/ELFTToken.sol#447-494):
External calls:
- swapAndLiquify(contractTokenBalance) (contracts/ELFTToken.sol#478)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,swapAddr,block.timestamp) (contracts/ELFTToken.sol#528-534)
Event emitted after the call(s):
- Transfer(sender,oneAddr,amount.mul(50).div(100)) (contracts/ELFTToken.sol#271)
- _tokenTransfer(from,to,amount,takeFee,allFee) (contracts/ELFTToken.sol#493)
- Transfer(sender,twoAddr,amount.mul(50).div(100)) (contracts/ELFTToken.sol#275)
- _tokenTransfer(from,to,amount,takeFee,allFee) (contracts/ELFTToken.sol#493)
- Transfer(sender,recipient,tTransferAmount) (contracts/ELFTToken.sol#264)
- _tokenTransfer(from,to,amount,takeFee,allFee) (contracts/ELFTToken.sol#493)
Reentrancy in ELFTToken.constructor(address,address,address,address,address,address,uint256) (contracts/ELFTToken.sol#87-126):
External calls:
- uniswapV2Pair = IMdexFactory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (contracts/ELFTToken.sol#114-115)
Event emitted after the call(s):
- Transfer(address(0),_consultantAddr,consultantAmount) (contracts/ELFTToken.sol#124)
- Transfer(address(0),_initAddr,amount) (contracts/ELFTToken.sol#125)
Reentrancy in ELFTToken.swapAndLiquify(uint256) (contracts/ELFTToken.sol#496-517):
External calls:
- swapTokensForEth(contractTokenBalance) (contracts/ELFTToken.sol#508)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,swapAddr,block.timestamp) (contracts/ELFTToken.sol#528-534)
Event emitted after the call(s):
- SwapAndLiquify(contractTokenBalance,swapAddr) (contracts/ELFTToken.sol#516)
Reentrancy in ELFTToken.transferFrom(address,address,uint256) (contracts/ELFTToken.sol#298-302):
External calls:
- _transfer(sender,recipient,amount) (contracts/ELFTToken.sol#299)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,swapAddr,block.timestamp) (contracts/ELFTToken.sol#528-534)
Event emitted after the call(s):
- Approval(owner,spender,amount) (contracts/ELFTToken.sol#444)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (contracts/ELFTToken.sol#300)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (contracts/lib/address.sol#24-34) uses assembly
- INLINE ASM (contracts/lib/address.sol#30-32)
Address._verifyCallResult(bool,bytes,string) (contracts/lib/address.sol#187-207) uses assembly
- INLINE ASM (contracts/lib/address.sol#199-202)
Do not use evm assembly.

Additional information: link

Different versions of Solidity is used:
- Version used: ['0.7.6', '>=0.5.0', '>=0.6.0<0.8.0']
- 0.7.6 (contracts/ELFTToken.sol#2)
- v2 (contracts/ELFTToken.sol#3)
- >=0.6.0<0.8.0 (contracts/lib/SafeMath.sol#3)
- 0.7.6 (contracts/lib/address.sol#1)
- 0.7.6 (contracts/lib/erc.sol#1)
- 0.7.6 (contracts/lib/owner.sol#1)
- >=0.5.0 (contracts/lib/swap.sol#1)
Use one Solidity version.

Additional information: link

ELFTToken.lockTheSwap() (contracts/ELFTToken.sol#81-85) has costly operations inside a loop:
- inSwapAndLiquify = true (contracts/ELFTToken.sol#82)
ELFTToken.lockTheSwap() (contracts/ELFTToken.sol#81-85) has costly operations inside a loop:
- inSwapAndLiquify = false (contracts/ELFTToken.sol#84)
ELFTToken.removeAllFee() (contracts/ELFTToken.sol#409-417) has costly operations inside a loop:
- _previousTaxFee = _taxFee (contracts/ELFTToken.sol#411)
ELFTToken.removeAllFee() (contracts/ELFTToken.sol#409-417) has costly operations inside a loop:
- _previousLiquidityFee = _liquidityFee (contracts/ELFTToken.sol#412)
ELFTToken.removeAllFee() (contracts/ELFTToken.sol#409-417) has costly operations inside a loop:
- _previousCommunityFee = _communityFee (contracts/ELFTToken.sol#413)
ELFTToken.removeAllFee() (contracts/ELFTToken.sol#409-417) has costly operations inside a loop:
- _taxFee = 0 (contracts/ELFTToken.sol#414)
ELFTToken.removeAllFee() (contracts/ELFTToken.sol#409-417) has costly operations inside a loop:
- _liquidityFee = 0 (contracts/ELFTToken.sol#415)
ELFTToken.removeAllFee() (contracts/ELFTToken.sol#409-417) has costly operations inside a loop:
- _communityFee = 0 (contracts/ELFTToken.sol#416)
ELFTToken._reflectFee(uint256) (contracts/ELFTToken.sol#374-379) has costly operations inside a loop:
- _tFeeTotal = _tFeeTotal.add(tFee) (contracts/ELFTToken.sol#376)
ELFTToken.restoreAllFee() (contracts/ELFTToken.sol#425-429) has costly operations inside a loop:
- _taxFee = _previousTaxFee (contracts/ELFTToken.sol#426)
ELFTToken.restoreAllFee() (contracts/ELFTToken.sol#425-429) has costly operations inside a loop:
- _liquidityFee = _previousLiquidityFee (contracts/ELFTToken.sol#427)
ELFTToken.restoreAllFee() (contracts/ELFTToken.sol#425-429) has costly operations inside a loop:
- _communityFee = _previousCommunityFee (contracts/ELFTToken.sol#428)
ELFTToken.removeTaxandLiquFee() (contracts/ELFTToken.sol#418-424) has costly operations inside a loop:
- _previousTaxFee = _taxFee (contracts/ELFTToken.sol#420)
ELFTToken.removeTaxandLiquFee() (contracts/ELFTToken.sol#418-424) has costly operations inside a loop:
- _previousLiquidityFee = _liquidityFee (contracts/ELFTToken.sol#421)
ELFTToken.removeTaxandLiquFee() (contracts/ELFTToken.sol#418-424) has costly operations inside a loop:
- _taxFee = 0 (contracts/ELFTToken.sol#422)
ELFTToken.removeTaxandLiquFee() (contracts/ELFTToken.sol#418-424) has costly operations inside a loop:
- _liquidityFee = 0 (contracts/ELFTToken.sol#423)
ELFTToken.restoreTaxAndLiqFee() (contracts/ELFTToken.sol#430-433) has costly operations inside a loop:
- _taxFee = _previousTaxFee (contracts/ELFTToken.sol#431)
ELFTToken.restoreTaxAndLiqFee() (contracts/ELFTToken.sol#430-433) has costly operations inside a loop:
- _liquidityFee = _previousLiquidityFee (contracts/ELFTToken.sol#432)
Use a local variable to hold the loop computation result.

Additional information: link

Address._verifyCallResult(bool,bytes,string) (contracts/lib/address.sol#187-207) is never used and should be removed
Address.functionCall(address,bytes) (contracts/lib/address.sol#77-79) is never used and should be removed
Address.functionCall(address,bytes,string) (contracts/lib/address.sol#87-93) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (contracts/lib/address.sol#106-112) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (contracts/lib/address.sol#120-131) is never used and should be removed
Address.functionDelegateCall(address,bytes) (contracts/lib/address.sol#166-168) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (contracts/lib/address.sol#176-185) is never used and should be removed
Address.functionStaticCall(address,bytes) (contracts/lib/address.sol#139-141) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (contracts/lib/address.sol#149-158) is never used and should be removed
Address.isContract(address) (contracts/lib/address.sol#24-34) is never used and should be removed
Address.sendValue(address,uint256) (contracts/lib/address.sol#52-57) is never used and should be removed
Context._msgData() (contracts/lib/owner.sol#8-10) is never used and should be removed
ELFTToken.addLiquidity(uint256,uint256) (contracts/ELFTToken.sol#222-235) is never used and should be removed
SafeMath.div(uint256,uint256,string) (contracts/lib/SafeMath.sol#190-193) is never used and should be removed
SafeMath.mod(uint256,uint256) (contracts/lib/SafeMath.sol#152-155) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (contracts/lib/SafeMath.sol#210-213) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (contracts/lib/SafeMath.sol#24-28) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (contracts/lib/SafeMath.sol#60-63) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (contracts/lib/SafeMath.sol#70-73) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (contracts/lib/SafeMath.sol#45-53) is never used and should be removed
SafeMath.trySub(uint256,uint256) (contracts/lib/SafeMath.sol#35-38) is never used and should be removed
Remove unused functions.

Additional information: link

ELFTToken._previousTaxFee (contracts/ELFTToken.sol#47) is set pre-construction with a non-constant function or state variable:
- _taxFee
ELFTToken._previousLiquidityFee (contracts/ELFTToken.sol#50) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
ELFTToken._previousCommunityFee (contracts/ELFTToken.sol#53) is set pre-construction with a non-constant function or state variable:
- _communityFee
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) (contracts/lib/address.sol#52-57):
- (success) = recipient.call{value: amount}() (contracts/lib/address.sol#55)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (contracts/lib/address.sol#120-131):
- (success,returndata) = target.call{value: value}(data) (contracts/lib/address.sol#129)
Low level call in Address.functionStaticCall(address,bytes,string) (contracts/lib/address.sol#149-158):
- (success,returndata) = target.staticcall(data) (contracts/lib/address.sol#156)
Low level call in Address.functionDelegateCall(address,bytes,string) (contracts/lib/address.sol#176-185):
- (success,returndata) = target.delegatecall(data) (contracts/lib/address.sol#183)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Parameter ELFTToken.setSwapAndLiquifyEnabled(bool)._enabled (contracts/ELFTToken.sol#366) is not in mixedCase
Parameter ELFTToken.calculateTaxFee(uint256)._amount (contracts/ELFTToken.sol#393) is not in mixedCase
Parameter ELFTToken.calculateLiquidityFee(uint256)._amount (contracts/ELFTToken.sol#398) is not in mixedCase
Parameter ELFTToken.calculateCommunityFee(uint256)._amount (contracts/ELFTToken.sol#403) is not in mixedCase
Variable ELFTToken._releaseTeamLoop (contracts/ELFTToken.sol#39) is not in mixedCase
Variable ELFTToken._releaseInvetLoop (contracts/ELFTToken.sol#40) is not in mixedCase
Variable ELFTToken._releaseMarketLoop (contracts/ELFTToken.sol#41) is not in mixedCase
Variable ELFTToken._everyMonthBlocknum (contracts/ELFTToken.sol#43) is not in mixedCase
Variable ELFTToken._taxFee (contracts/ELFTToken.sol#46) is not in mixedCase
Variable ELFTToken._liquidityFee (contracts/ELFTToken.sol#49) is not in mixedCase
Variable ELFTToken._communityFee (contracts/ELFTToken.sol#52) is not in mixedCase
Variable ELFTToken._releaseAll (contracts/ELFTToken.sol#56) is not in mixedCase
Variable ELFTToken._releaseGroups (contracts/ELFTToken.sol#57) is not in mixedCase
Variable ELFTToken._maxTxAmount (contracts/ELFTToken.sol#64) is not in mixedCase
Modifier ELFTToken.IsMinter() (contracts/ELFTToken.sol#77-80) is not in mixedCase
Function IMdexPair.DOMAIN_SEPARATOR() (contracts/lib/swap.sol#69) is not in mixedCase
Function IMdexPair.PERMIT_TYPEHASH() (contracts/lib/swap.sol#71) is not in mixedCase
Function IMdexPair.MINIMUM_LIQUIDITY() (contracts/lib/swap.sol#89) is not in mixedCase
Function IMdexRouter.WETH() (contracts/lib/swap.sol#123) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IMdexRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (contracts/lib/swap.sol#130) is too similar to IMdexRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (contracts/lib/swap.sol#131)
Prevent variables from having similar names.

Additional information: link

ELFTToken.getBurnTotal() (contracts/ELFTToken.sol#209-211) uses literals with too many digits:
- _tFeeTotal.add(_balance[0x000000000000000000000000000000000000dEaD]) (contracts/ELFTToken.sol#210)
ELFTToken.slitherConstructorVariables() (contracts/ELFTToken.sol#9-571) uses literals with too many digits:
- _maxTxAmount = 50000000 * 10 ** 18 (contracts/ELFTToken.sol#64)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Holders:

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


Average 30d PancakeSwap liquidity is low.


Token is deployed only at one blockchain


Token has only one trading pair

No disclosed threats


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

Additional information: link


Unable to find whitepaper link on the website


Unable to find token on CoinHunt

Additional information: link


Young tokens have high risks of scam / price dump / death


Alexa traffic rank is very low

Additional information: link


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


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death

Price for ELFT

News for ELFT