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: 24 June 2024

report
Token is either risky or in presale. For presale 30+ is a fine score.

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

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

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.sendValue(address,uint256) (#1111-1116):
- (success) = recipient.call{value: amount}() (#1114)
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

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

Additional information: link

Different versions of Solidity are 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

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

Additional information: link

Pragma version^0.8.0 (#526) allows old versions
Pragma version^0.8.0 (#832) allows old versions
Pragma version^0.8.0 (#707) allows old versions
Pragma version^0.8.0 (#5) allows old versions
Pragma version^0.8.0 (#803) allows old versions
Pragma version^0.8.0 (#1370) allows old versions
Pragma version^0.8.0 (#1436) 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 (#1404) 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
Pragma version^0.8.1 (#1055) allows old versions
Pragma version^0.8.0 (#776) allows old versions
Pragma version^0.8.0 (#617) allows old versions
Pragma version^0.8.0 (#1278) allows old versions
Pragma version^0.8.0 (#89) allows old versions
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

decimals() should be declared external:
- ERC20.decimals() (#224-226)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#338-347)
symbol() should be declared external:
- ERC20.symbol() (#207-209)
balanceOf(address) should be declared external:
- ERC20.balanceOf(address) (#238-240)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#318-322)
transferFromAndCall(address,address,uint256) should be declared external:
- ERC1363.transferFromAndCall(address,address,uint256) (#1491-1497)
transferAndCall(address,uint256) should be declared external:
- ERC1363.transferAndCall(address,uint256) (#1463-1465)
name() should be declared external:
- ERC20.name() (#199-201)
approveAndCall(address,uint256) should be declared external:
- ERC1363.approveAndCall(address,uint256) (#1524-1526)
totalSupply() should be declared external:
- ERC20.totalSupply() (#231-233)
renounceRole(bytes32,address) should be declared external:
- AccessControl.renounceRole(bytes32,address) (#987-991)
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


Twitter account link seems to be invalid


Token was delisted from CoinGecko

Additional information: link


Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap

Additional information: link


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


Unable to find whitepaper link on the website


Unable to find Telegram link on the website


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


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

Price for ASC