SOULS OF META Token Logo

SOM [SOULS OF META] Token

About SOM

Listings

Token 3 years
CoinMarketCap 3 years
white paper

Souls of Meta is a cross-game multi-chain Fun-2-Earn 3rd-person action RPG Fantasy NFT gaming metaverse of blades and sorcery where you can own, play, and monetize NFT assets through GameFi and SocialFi, and travel through community-created realms, fight monsters, collaborate with other players (PvE and PvP), solve quests and beyond, to have fun playing and earn at the same time!

Social

Laser Scorebeta Last Audit: 13 October 2022

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

Anti-Scam

Links


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


Contract ownership is not renounced (belongs to a wallet)

Reentrancy in SOULSOFMETA._burn(address,uint256) (contracts/SOULSOFMETA.sol#310-325):
External calls:
- _beforeTokenTransfer(account,address(0),amount) (contracts/SOULSOFMETA.sol#313)
- antisnipe.assureCanTransfer(msg.sender,from,to,amount) (contracts/SOULSOFMETA.sol#395)
Event emitted after the call(s):
- Transfer(account,address(0),amount) (contracts/SOULSOFMETA.sol#322)
Reentrancy in SOULSOFMETA._transfer(address,address,uint256) (contracts/SOULSOFMETA.sol#253-276):
External calls:
- _beforeTokenTransfer(from,to,amount) (contracts/SOULSOFMETA.sol#264)
- antisnipe.assureCanTransfer(msg.sender,from,to,amount) (contracts/SOULSOFMETA.sol#395)
Event emitted after the call(s):
- Transfer(from,to,amount) (contracts/SOULSOFMETA.sol#273)
Reentrancy in SOULSOFMETA._mint(address,uint256) (contracts/SOULSOFMETA.sol#287-297):
External calls:
- _beforeTokenTransfer(address(0),account,amount) (contracts/SOULSOFMETA.sol#290)
- antisnipe.assureCanTransfer(msg.sender,from,to,amount) (contracts/SOULSOFMETA.sol#395)
Event emitted after the call(s):
- Transfer(address(0),account,amount) (contracts/SOULSOFMETA.sol#294)
Apply the check-effects-interactions pattern.

Additional information: link

SOULSOFMETA.decreaseAllowance(address,uint256).owner (contracts/SOULSOFMETA.sol#226) shadows:
- Ownable.owner() (@openzeppelin/contracts/access/Ownable.sol#35-37) (function)
SOULSOFMETA.increaseAllowance(address,uint256).owner (contracts/SOULSOFMETA.sol#202) shadows:
- Ownable.owner() (@openzeppelin/contracts/access/Ownable.sol#35-37) (function)
SOULSOFMETA._spendAllowance(address,address,uint256).owner (contracts/SOULSOFMETA.sol#361) shadows:
- Ownable.owner() (@openzeppelin/contracts/access/Ownable.sol#35-37) (function)
SOULSOFMETA.transfer(address,uint256).owner (contracts/SOULSOFMETA.sol#119) shadows:
- Ownable.owner() (@openzeppelin/contracts/access/Ownable.sol#35-37) (function)
SOULSOFMETA._approve(address,address,uint256).owner (contracts/SOULSOFMETA.sol#341) shadows:
- Ownable.owner() (@openzeppelin/contracts/access/Ownable.sol#35-37) (function)
SOULSOFMETA.approve(address,uint256).owner (contracts/SOULSOFMETA.sol#153) shadows:
- Ownable.owner() (@openzeppelin/contracts/access/Ownable.sol#35-37) (function)
SOULSOFMETA.allowance(address,address).owner (contracts/SOULSOFMETA.sol#127) shadows:
- Ownable.owner() (@openzeppelin/contracts/access/Ownable.sol#35-37) (function)
Rename the local variables that shadow another component.

Additional information: link

Reentrancy in SOULSOFMETA._mint(address,uint256) (contracts/SOULSOFMETA.sol#287-297):
External calls:
- _beforeTokenTransfer(address(0),account,amount) (contracts/SOULSOFMETA.sol#290)
- antisnipe.assureCanTransfer(msg.sender,from,to,amount) (contracts/SOULSOFMETA.sol#395)
State variables written after the call(s):
- _balances[account] += amount (contracts/SOULSOFMETA.sol#293)
- _totalSupply += amount (contracts/SOULSOFMETA.sol#292)
Reentrancy in SOULSOFMETA._burn(address,uint256) (contracts/SOULSOFMETA.sol#310-325):
External calls:
- _beforeTokenTransfer(account,address(0),amount) (contracts/SOULSOFMETA.sol#313)
- antisnipe.assureCanTransfer(msg.sender,from,to,amount) (contracts/SOULSOFMETA.sol#395)
State variables written after the call(s):
- _balances[account] = accountBalance - amount (contracts/SOULSOFMETA.sol#318)
- _totalSupply -= amount (contracts/SOULSOFMETA.sol#320)
Reentrancy in SOULSOFMETA._transfer(address,address,uint256) (contracts/SOULSOFMETA.sol#253-276):
External calls:
- _beforeTokenTransfer(from,to,amount) (contracts/SOULSOFMETA.sol#264)
- antisnipe.assureCanTransfer(msg.sender,from,to,amount) (contracts/SOULSOFMETA.sol#395)
State variables written after the call(s):
- _balances[from] = fromBalance - amount (contracts/SOULSOFMETA.sol#269)
- _balances[to] += amount (contracts/SOULSOFMETA.sol#271)
Apply the check-effects-interactions pattern.

Additional information: link

Different versions of Solidity are used:
- Version used: ['^0.8.0', '^0.8.4']
- ^0.8.0 (@openzeppelin/contracts/access/Ownable.sol#4)
- ^0.8.0 (@openzeppelin/contracts/token/ERC20/IERC20.sol#4)
- ^0.8.0 (@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol#4)
- ^0.8.0 (@openzeppelin/contracts/utils/Context.sol#4)
- ^0.8.4 (contracts/SOULSOFMETA.sol#2)
- ^0.8.0 (contracts/Utils/Whitelist.sol#2)
Use one Solidity version.

Additional information: link

SOULSOFMETA._burn(address,uint256) (contracts/SOULSOFMETA.sol#310-325) is never used and should be removed
Context._msgData() (@openzeppelin/contracts/utils/Context.sol#21-23) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version^0.8.0 (@openzeppelin/contracts/token/ERC20/IERC20.sol#4) allows old versions
Pragma version^0.8.0 (contracts/Utils/Whitelist.sol#2) allows old versions
Pragma version^0.8.0 (@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol#4) allows old versions
Pragma version^0.8.0 (@openzeppelin/contracts/access/Ownable.sol#4) allows old versions
Pragma version^0.8.0 (@openzeppelin/contracts/utils/Context.sol#4) 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 Whitelist.removeFromWhitelist(address)._user (contracts/Utils/Whitelist.sol#33) is not in mixedCase
Parameter Whitelist.checkWhitelist(address)._user (contracts/Utils/Whitelist.sol#25) is not in mixedCase
Parameter Whitelist.batchRemoveFromWhitelist(address[])._userAddresses (contracts/Utils/Whitelist.sol#38) is not in mixedCase
Parameter Whitelist.addAddressesToWhitelist(address[])._userAddresses (contracts/Utils/Whitelist.sol#19) is not in mixedCase
Parameter SOULSOFMETA.enableSale(bool)._saleEnabled (contracts/SOULSOFMETA.sol#60) is not in mixedCase
Parameter Whitelist.addToWhitelist(address)._user (contracts/Utils/Whitelist.sol#14) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

SOULSOFMETA.constructor(string,string,address) (contracts/SOULSOFMETA.sol#44-49) uses literals with too many digits:
- _mint(msg.sender,3000000000 * 10 ** decimals()) (contracts/SOULSOFMETA.sol#47)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

increaseAllowance(address,uint256) should be declared external:
- SOULSOFMETA.increaseAllowance(address,uint256) (contracts/SOULSOFMETA.sol#197-205)
balanceOf(address) should be declared external:
- SOULSOFMETA.balanceOf(address) (contracts/SOULSOFMETA.sol#106-108)
transfer(address,uint256) should be declared external:
- SOULSOFMETA.transfer(address,uint256) (contracts/SOULSOFMETA.sol#118-122)
totalSupply() should be declared external:
- SOULSOFMETA.totalSupply() (contracts/SOULSOFMETA.sol#99-101)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (@openzeppelin/contracts/access/Ownable.sol#54-56)
name() should be declared external:
- SOULSOFMETA.name() (contracts/SOULSOFMETA.sol#67-69)
checkWhitelist(address) should be declared external:
- Whitelist.checkWhitelist(address) (contracts/Utils/Whitelist.sol#25-27)
decreaseAllowance(address,uint256) should be declared external:
- SOULSOFMETA.decreaseAllowance(address,uint256) (contracts/SOULSOFMETA.sol#221-237)
batchRemoveFromWhitelist(address[]) should be declared external:
- Whitelist.batchRemoveFromWhitelist(address[]) (contracts/Utils/Whitelist.sol#38-42)
approve(address,uint256) should be declared external:
- SOULSOFMETA.approve(address,uint256) (contracts/SOULSOFMETA.sol#147-156)
symbol() should be declared external:
- SOULSOFMETA.symbol() (contracts/SOULSOFMETA.sol#75-77)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (@openzeppelin/contracts/access/Ownable.sol#62-65)
transferFrom(address,address,uint256) should be declared external:
- SOULSOFMETA.transferFrom(address,address,uint256) (contracts/SOULSOFMETA.sol#174-183)
addAddressesToWhitelist(address[]) should be declared external:
- Whitelist.addAddressesToWhitelist(address[]) (contracts/Utils/Whitelist.sol#19-23)
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.


Token is deployed only at one blockchain


Unable to find Youtube account


Unable to find audit link on the website


Token is not listed at Mobula.Finance

Additional information: link


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


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank

Price for SOM

News for SOM