Wall Street Games Token Logo

WSG [Wall Street Games] Token

About WSG

Listings

Token 2 years
CoinGecko 2 years
CoinMarketCap 2 years

Website

white paper

Wall Street Games is a hybrid blockchain-based online gaming platform where players battle each other in fun simple games for rewards in cryptocurrencies.

Social

Laser Scorebeta Last Audit: 15 February 2024

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

ERC20Detailed.______gap (#658) shadows:
- Initializable.______gap (#63)
Pausable.______gap (#913) shadows:
- PauserRole.______gap (#832)
- Initializable.______gap (#63)
Ownable.______gap (#1038) shadows:
- Initializable.______gap (#63)
ERC20Burnable.______gap (#599) shadows:
- ERC20.______gap (#567)
- Initializable.______gap (#63)
MinterRole.______gap (#748) shadows:
- Initializable.______gap (#63)
ERC20Pausable.______gap (#956) shadows:
- Pausable.______gap (#913)
- PauserRole.______gap (#832)
- ERC20.______gap (#567)
- Initializable.______gap (#63)
PauserRole.______gap (#832) shadows:
- Initializable.______gap (#63)
ERC20Mintable.______gap (#781) shadows:
- MinterRole.______gap (#748)
- ERC20.______gap (#567)
- Initializable.______gap (#63)
ERC20.______gap (#567) shadows:
- Initializable.______gap (#63)
Remove the state variable shadowing.

Additional information: link

Contract locking ether found:
Contract JulPadToken (#1052-1097) has payable functions:
- JulPadToken.fallback() (#1062)
But does not have a function to withdraw the ether
Remove the payable attribute or add a withdraw function.

Additional information: link

Redundant expression "this (#92)" inContext (#81-95)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Ownable.______gap (#1038) is never used in JulPadToken (#1052-1097)
Remove unused state variables.

Additional information: link

Initializable.isConstructor() (#50-60) uses assembly
- INLINE ASM (#58)
Do not use evm assembly.

Additional information: link

JulPadToken.initialize(string,string,uint8,address)._tokenOwner (#1068) lacks a zero-check on :
- tokenOwner = _tokenOwner (#1072)
JulPadToken.setOwner(address)._tokenOwner (#1087) lacks a zero-check on :
- tokenOwner = _tokenOwner (#1091)
Ownable.initialize(address).sender (#982) lacks a zero-check on :
- _owner = sender (#983)
Check that the address is not zero.

Additional information: link

ERC20Detailed.initialize(string,string,uint8).decimals (#621) shadows:
- ERC20Detailed.decimals() (#654-656) (function)
JulPadToken.initialize(string,string,uint8,address).decimals (#1067) shadows:
- ERC20Detailed.decimals() (#654-656) (function)
ERC20Detailed.initialize(string,string,uint8).symbol (#621) shadows:
- ERC20Detailed.symbol() (#638-640) (function)
JulPadToken.initialize(string,string,uint8,address).symbol (#1066) shadows:
- ERC20Detailed.symbol() (#638-640) (function)
JulPadToken.initialize(string,string,uint8,address).name (#1065) shadows:
- ERC20Detailed.name() (#630-632) (function)
ERC20Detailed.initialize(string,string,uint8).name (#621) shadows:
- ERC20Detailed.name() (#630-632) (function)
Rename the local variables that shadow another component.

Additional information: link

Different versions of Solidity are used:
- Version used: ['0.5.16', '>=0.4.24<0.7.0', '^0.5.0']
- >=0.4.24<0.7.0 (#3)
- ^0.5.0 (#68)
- ^0.5.0 (#99)
- ^0.5.0 (#178)
- ^0.5.0 (#337)
- ^0.5.0 (#572)
- ^0.5.0 (#604)
- ^0.5.0 (#663)
- ^0.5.0 (#702)
- ^0.5.0 (#753)
- ^0.5.0 (#786)
- ^0.5.0 (#837)
- ^0.5.0 (#918)
- ^0.5.0 (#961)
- 0.5.16 (#1043)
Use one Solidity version.

Additional information: link

SafeMath.mul(uint256,uint256) (#250-262) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#329-332) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#292-299) is never used and should be removed
Context._msgData() (#91-94) is never used and should be removed
SafeMath.mod(uint256,uint256) (#312-314) is never used and should be removed
SafeMath.div(uint256,uint256) (#275-277) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version^0.5.0 (#337) allows old versions
Pragma version^0.5.0 (#753) allows old versions
Pragma version^0.5.0 (#604) allows old versions
Pragma version^0.5.0 (#178) allows old versions
Pragma version^0.5.0 (#99) allows old versions
Pragma version>=0.4.24<0.7.0 (#3) allows old versions
Pragma version^0.5.0 (#702) allows old versions
Pragma version^0.5.0 (#786) allows old versions
Pragma version^0.5.0 (#572) allows old versions
Pragma version^0.5.0 (#837) allows old versions
Pragma version^0.5.0 (#961) allows old versions
Pragma version^0.5.0 (#663) allows old versions
Pragma version^0.5.0 (#918) allows old versions
Pragma version^0.5.0 (#68) 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

Variable ERC20.______gap (#567) is not in mixedCase
Parameter JulPadToken.setOwner(address)._tokenOwner (#1087) is not in mixedCase
Parameter JulPadToken.initialize(string,string,uint8,address)._tokenOwner (#1068) is not in mixedCase
Variable PauserRole.______gap (#832) is not in mixedCase
Variable ERC20Detailed.______gap (#658) is not in mixedCase
Variable Ownable.______gap (#1038) is not in mixedCase
Variable ERC20Mintable.______gap (#781) is not in mixedCase
Variable Initializable.______gap (#63) is not in mixedCase
Variable ERC20Burnable.______gap (#599) is not in mixedCase
Variable MinterRole.______gap (#748) is not in mixedCase
Variable ERC20Pausable.______gap (#956) is not in mixedCase
Variable Pausable.______gap (#913) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

decimals() should be declared external:
- ERC20Detailed.decimals() (#654-656)
symbol() should be declared external:
- ERC20Detailed.symbol() (#638-640)
name() should be declared external:
- ERC20Detailed.name() (#630-632)
burnFrom(address,uint256) should be declared external:
- ERC20Burnable.burnFrom(address,uint256) (#595-597)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#1016-1019)
renounceMinter() should be declared external:
- MinterRole.renounceMinter() (#734-736)
pause() should be declared external:
- Pausable.pause() (#900-903)
addPauser(address) should be declared external:
- PauserRole.addPauser(address) (#814-816)
balanceOf(address) should be declared external:
- ERC20.balanceOf(address) (#386-388)
owner() should be declared external:
- Ownable.owner() (#990-992)
addMinter(address) should be declared external:
- MinterRole.addMinter(address) (#730-732)
renouncePauser() should be declared external:
- PauserRole.renouncePauser() (#818-820)
mint(address,uint256) should be declared external:
- ERC20Mintable.mint(address,uint256) (#776-779)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#1025-1027)
unpause() should be declared external:
- Pausable.unpause() (#908-911)
totalSupply() should be declared external:
- ERC20.totalSupply() (#379-381)
burn(uint256) should be declared external:
- ERC20Burnable.burn(uint256) (#588-590)
paused() should be declared external:
- Pausable.paused() (#877-879)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#406-408)
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 number of PancakeSwap swaps is less than 1. Token is either dead or inactive.


Twitter account link seems to be invalid


Unable to find Discord account


Unable to find whitepaper link on the website


Unable to find audit link on the website


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


Token has no active CoinGecko listing / rank

Price for WSG