Ashward Coin Token Logo

ASC [Ashward Coin] Token

About ASC

Listings

Token 2 years
CoinGecko 2 years
CoinMarketCap 2 years

Website

[CoinGecko] alert: The following token has a variable tax function on the smart contract - which allows contract owners to change tax rates post deployment.
Do your own research and be careful if you are trading this token.
white paper

Ashward is a strategy game set in the medieval age, with collectible NFTs and pixel graphics. We plan to set Ashward as our first game and lay the foundation for our upcoming products. What we offer in Ashward will give you a glimpse into the Metaverse we plan to build in the future.

Laser Scorebeta Last Audit: 28 June 2022

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

Token._taxCalculation() (#1705-1710) uses timestamp for comparisons
Dangerous comparisons:
- block.timestamp <= TGE_PLUS_1_HOUR (#1706)
Avoid relying on block.timestamp.

Additional information: link

Address.verifyCallResult(bool,bytes,string) (#1252-1272) uses assembly
- INLINE ASM (#1264-1267)
Do not use evm assembly.

Additional information: link

Different versions of Solidity is used:
- Version used: ['0.8.9', '^0.8.0', '^0.8.1']
- ^0.8.0 (#5)
- ^0.8.0 (#89)
- ^0.8.0 (#117)
- ^0.8.0 (#143)
- ^0.8.0 (#526)
- ^0.8.0 (#617)
- ^0.8.0 (#707)
- ^0.8.0 (#776)
- ^0.8.0 (#803)
- ^0.8.0 (#832)
- ^0.8.1 (#1055)
- ^0.8.0 (#1278)
- ^0.8.0 (#1370)
- ^0.8.0 (#1404)
- ^0.8.0 (#1436)
- 0.8.9 (#1591)
Use one Solidity version.

Additional information: link

Token.constructor(string,string).name (#1617) shadows:
- ERC20.name() (#199-201) (function)
- IERC20Metadata.name() (#100) (function)
Token.constructor(string,string).symbol (#1617) shadows:
- ERC20.symbol() (#207-209) (function)
- IERC20Metadata.symbol() (#105) (function)
Rename the local variables that shadow another component.

Additional information: link

Token.setGovernor(address).addr (#1637) lacks a zero-check on :
- _governor = addr (#1638)
Check that the address is not zero.

Additional information: link

AccessControl._setRoleAdmin(bytes32,bytes32) (#1020-1024) is never used and should be removed
AccessControl._setupRole(bytes32,address) (#1011-1013) is never used and should be removed
Address.functionCall(address,bytes) (#1136-1138) is never used and should be removed
Address.functionCall(address,bytes,string) (#1146-1152) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#1165-1171) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#1179-1190) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#1225-1227) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#1235-1244) is never used and should be removed
Address.functionStaticCall(address,bytes) (#1198-1200) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#1208-1217) is never used and should be removed
Address.sendValue(address,uint256) (#1111-1116) is never used and should be removed
Address.verifyCallResult(bool,bytes,string) (#1252-1272) is never used and should be removed
Context._msgData() (#134-136) is never used and should be removed
ERC20._burn(address,uint256) (#417-432) is never used and should be removed
Strings.toHexString(uint256) (#743-754) is never used and should be removed
Strings.toString(uint256) (#718-738) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version^0.8.0 (#5) allows old versions
Pragma version^0.8.0 (#89) allows old versions
Pragma version^0.8.0 (#117) allows old versions
Pragma version^0.8.0 (#143) allows old versions
Pragma version^0.8.0 (#526) allows old versions
Pragma version^0.8.0 (#617) allows old versions
Pragma version^0.8.0 (#707) allows old versions
Pragma version^0.8.0 (#776) allows old versions
Pragma version^0.8.0 (#803) allows old versions
Pragma version^0.8.0 (#832) allows old versions
Pragma version^0.8.1 (#1055) allows old versions
Pragma version^0.8.0 (#1278) allows old versions
Pragma version^0.8.0 (#1370) allows old versions
Pragma version^0.8.0 (#1404) allows old versions
Pragma version^0.8.0 (#1436) allows old versions
Pragma version0.8.9 (#1591) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.9 is not recommended for deployment
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

Low level call in Address.sendValue(address,uint256) (#1111-1116):
- (success) = recipient.call{value: amount}() (#1114)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#1179-1190):
- (success,returndata) = target.call{value: value}(data) (#1188)
Low level call in Address.functionStaticCall(address,bytes,string) (#1208-1217):
- (success,returndata) = target.staticcall(data) (#1215)
Low level call in Address.functionDelegateCall(address,bytes,string) (#1235-1244):
- (success,returndata) = target.delegatecall(data) (#1242)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Constant Token.cap (#1593) is not in UPPER_CASE_WITH_UNDERSCORES
Variable Token._governor (#1596) is not in mixedCase
Variable Token._tax (#1597) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

name() should be declared external:
- ERC20.name() (#199-201)
symbol() should be declared external:
- ERC20.symbol() (#207-209)
decimals() should be declared external:
- ERC20.decimals() (#224-226)
totalSupply() should be declared external:
- ERC20.totalSupply() (#231-233)
balanceOf(address) should be declared external:
- ERC20.balanceOf(address) (#238-240)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#318-322)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#338-347)
renounceRole(bytes32,address) should be declared external:
- AccessControl.renounceRole(bytes32,address) (#987-991)
transferAndCall(address,uint256) should be declared external:
- ERC1363.transferAndCall(address,uint256) (#1463-1465)
transferFromAndCall(address,address,uint256) should be declared external:
- ERC1363.transferFromAndCall(address,address,uint256) (#1491-1497)
approveAndCall(address,uint256) should be declared external:
- ERC1363.approveAndCall(address,uint256) (#1524-1526)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token is deployed only at one blockchain


Average 30d PancakeSwap volume is low.


Average 30d number of PancakeSwap swaps is low.

No disclosed threats


Unable to find KYC or doxxing proof


Unable to find audit link on the website


Unable to find Twitter link on the website


Unable to find token on CoinHunt

Additional information: link


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinMarketCap rank


Token has relatively low CoinGecko rank


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death

Price for ASC

News for ASC