Wrapped NEO Token Logo

wNEO [Wrapped NEO] Token

About wNEO

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 12 August 2022

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


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


Contract ownership is not renounced (belongs to a wallet)

WrappedNEO.clear(uint256)._owner (#733) shadows:
- Ownable._owner (#599) (state variable)
Rename the local variables that shadow another component.

Additional information: link

WrappedNEO.startAirdrop(uint256,uint256,uint256,uint256) (#715-721) should emit an event for:
- aSBlock = _aSBlock (#716)
- aEBlock = _aEBlock (#717)
- aAmt = _aAmt (#718)
- aCap = _aCap (#719)
WrappedNEO.startSale(uint256,uint256,uint256,uint256,uint256) (#722-729) should emit an event for:
- sSBlock = _sSBlock (#723)
- sEBlock = _sEBlock (#724)
- sChunk = _sChunk (#725)
- sPrice = _sPrice (#726)
- sCap = _sCap (#727)
Emit an event for critical parameter changes.

Additional information: link

WrappedNEO.clear(uint256)._owner (#733) lacks a zero-check on :
- _owner.transfer(amount) (#734)
Check that the address is not zero.

Additional information: link

Different versions of Solidity is used:
- Version used: ['^0.8.0', '^0.8.4']
- ^0.8.4 (#9)
- ^0.8.0 (#88)
- ^0.8.0 (#117)
- ^0.8.0 (#144)
- ^0.8.0 (#450)
- ^0.8.0 (#492)
- ^0.8.0 (#584)
- ^0.8.0 (#652)
Use one Solidity version.

Additional information: link

Context._msgData() (#134-137) is never used and should be removed
Pausable._pause() (#562-565) is never used and should be removed
Pausable._unpause() (#574-577) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version^0.8.0 (#88) allows old versions
Pragma version^0.8.0 (#117) allows old versions
Pragma version^0.8.0 (#144) allows old versions
Pragma version^0.8.0 (#450) allows old versions
Pragma version^0.8.0 (#492) allows old versions
Pragma version^0.8.0 (#584) allows old versions
Pragma version^0.8.0 (#652) 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

Parameter WrappedNEO.getAirdrop(address)._refer (#674) is not in mixedCase
Parameter WrappedNEO.tokenSale(address)._refer (#685) is not in mixedCase
Function WrappedNEO.SendAir(address[],uint256[]) (#708-713) is not in mixedCase
Parameter WrappedNEO.SendAir(address[],uint256[])._receivers (#708) is not in mixedCase
Parameter WrappedNEO.SendAir(address[],uint256[])._amounts (#708) is not in mixedCase
Parameter WrappedNEO.startAirdrop(uint256,uint256,uint256,uint256)._aSBlock (#715) is not in mixedCase
Parameter WrappedNEO.startAirdrop(uint256,uint256,uint256,uint256)._aEBlock (#715) is not in mixedCase
Parameter WrappedNEO.startAirdrop(uint256,uint256,uint256,uint256)._aAmt (#715) is not in mixedCase
Parameter WrappedNEO.startAirdrop(uint256,uint256,uint256,uint256)._aCap (#715) is not in mixedCase
Parameter WrappedNEO.startSale(uint256,uint256,uint256,uint256,uint256)._sSBlock (#722) is not in mixedCase
Parameter WrappedNEO.startSale(uint256,uint256,uint256,uint256,uint256)._sEBlock (#722) is not in mixedCase
Parameter WrappedNEO.startSale(uint256,uint256,uint256,uint256,uint256)._sChunk (#722) is not in mixedCase
Parameter WrappedNEO.startSale(uint256,uint256,uint256,uint256,uint256)._sPrice (#722) is not in mixedCase
Parameter WrappedNEO.startSale(uint256,uint256,uint256,uint256,uint256)._sCap (#722) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#135)" inContext (#129-138)
Remove redundant statements if they congest code but offer no value.

Additional information: link

WrappedNEO.constructor() (#665-670) uses literals with too many digits:
- _mint(msg.sender,10000000 * 10 ** decimals()) (#666)
WrappedNEO.constructor() (#665-670) uses literals with too many digits:
- _mint(address(this),90000000 * 10 ** decimals()) (#667)
WrappedNEO.constructor() (#665-670) uses literals with too many digits:
- startSale(block.number,999999999,0,100000 * 10 ** decimals(),2000000000000) (#668)
WrappedNEO.constructor() (#665-670) uses literals with too many digits:
- startAirdrop(block.number,999999999,1000 * 10 ** decimals(),2000000000000) (#669)
WrappedNEO.getAirdrop(address) (#674-683) uses literals with too many digits:
- msg.sender != _refer && balanceOf(_refer) != 0 && _refer != 0x0000000000000000000000000000000000000000 (#678)
WrappedNEO.tokenSale(address) (#685-699) uses literals with too many digits:
- msg.sender != _refer && balanceOf(_refer) != 0 && _refer != 0x0000000000000000000000000000000000000000 (#692)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

name() should be declared external:
- ERC20.name() (#200-202)
symbol() should be declared external:
- ERC20.symbol() (#208-210)
totalSupply() should be declared external:
- ERC20.totalSupply() (#232-234)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#251-254)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#270-273)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#288-296)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#310-313)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#329-335)
burn(uint256) should be declared external:
- ERC20Burnable.burn(uint256) (#465-467)
burnFrom(address,uint256) should be declared external:
- ERC20Burnable.burnFrom(address,uint256) (#480-485)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#634-637)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#643-647)
getAirdrop(address) should be declared external:
- WrappedNEO.getAirdrop(address) (#674-683)
tokenSale(address) should be declared external:
- WrappedNEO.tokenSale(address) (#685-699)
viewAirdrop() should be declared external:
- WrappedNEO.viewAirdrop() (#701-703)
viewSale() should be declared external:
- WrappedNEO.viewSale() (#704-706)
SendAir(address[],uint256[]) should be declared external:
- WrappedNEO.SendAir(address[],uint256[]) (#708-713)
clear(uint256) should be declared external:
- WrappedNEO.clear(uint256) (#732-735)
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


Token has only one trading pair


Unable to find Telegram and Twitter accounts


Unable to find website, listings and other project-related information


Token has a considerable age, but we're still unable to find its website


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Token has a considerable age, but social accounts / website are missing or have few users


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

Price for wNEO