BlackHat Token Logo

BLKC [BlackHat] Token

About BLKC

Listings

Token 3 years
CoinGecko 4 years
CoinMarketCap 4 years
white paper

Privacy focused decentralized cryptocurrency providing truly anonymous untraceable transactions based on PoS consensus and zk-SNARKs data protection protocol (Zero Knowledge Proof)

Social

Laser Scorebeta Last Audit: 28 June 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)

ERC20Permit.constructor(string).name (#1262) shadows:
- ERC20.name() (#895-897) (function)
- IERC20Metadata.name() (#820) (function)
BlackHat.burn(address,uint256,uint8,bytes32,bytes32).owner (#1356) shadows:
- Ownable.owner() (#582-584) (function)
Rename the local variables that shadow another component.

Additional information: link

Variable 'ECDSA.tryRecover(bytes32,bytes).r (#181)' in ECDSA.tryRecover(bytes32,bytes) (#176-205) potentially used before declaration: r = mload(uint256)(signature + 0x20) (#198)
Move all variable declarations prior to any usage of the variable, and ensure that reaching a variable declaration does not depend on some conditional if it is used unconditionally.

Additional information: link

ERC20Permit.permit(address,address,uint256,uint256,uint8,bytes32,bytes32) (#1267-1286) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp <= deadline,ERC20Permit: expired deadline) (#1276)
Avoid relying on block.timestamp.

Additional information: link

ECDSA.tryRecover(bytes32,bytes) (#176-205) uses assembly
- INLINE ASM (#186-190)
- INLINE ASM (#197-200)
Do not use evm assembly.

Additional information: link

Different versions of Solidity is used:
- Version used: ['^0.8.0', '^0.8.4']
- ^0.8.0 (#8)
- ^0.8.0 (#54)
- ^0.8.0 (#124)
- ^0.8.0 (#356)
- ^0.8.0 (#462)
- ^0.8.0 (#525)
- ^0.8.0 (#552)
- ^0.8.0 (#630)
- ^0.8.0 (#723)
- ^0.8.0 (#808)
- ^0.8.0 (#838)
- ^0.8.0 (#1223)
- ^0.8.4 (#1318)
Use one Solidity version.

Additional information: link

Context._msgData() (#542-544) is never used and should be removed
Counters.decrement(Counters.Counter) (#36-42) is never used and should be removed
Counters.reset(Counters.Counter) (#44-46) is never used and should be removed
ECDSA.recover(bytes32,bytes) (#221-225) is never used and should be removed
ECDSA.recover(bytes32,bytes32,bytes32) (#249-257) is never used and should be removed
ECDSA.toEthSignedMessageHash(bytes) (#333-335) is never used and should be removed
ECDSA.toEthSignedMessageHash(bytes32) (#319-323) is never used and should be removed
ECDSA.tryRecover(bytes32,bytes) (#176-205) is never used and should be removed
ECDSA.tryRecover(bytes32,bytes32,bytes32) (#234-242) is never used and should be removed
Strings.toHexString(uint256) (#90-101) is never used and should be removed
Strings.toHexString(uint256,uint256) (#106-116) is never used and should be removed
Strings.toString(uint256) (#65-85) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version^0.8.0 (#8) allows old versions
Pragma version^0.8.0 (#54) allows old versions
Pragma version^0.8.0 (#124) allows old versions
Pragma version^0.8.0 (#356) allows old versions
Pragma version^0.8.0 (#462) allows old versions
Pragma version^0.8.0 (#525) allows old versions
Pragma version^0.8.0 (#552) allows old versions
Pragma version^0.8.0 (#630) allows old versions
Pragma version^0.8.0 (#723) allows old versions
Pragma version^0.8.0 (#808) allows old versions
Pragma version^0.8.0 (#838) allows old versions
Pragma version^0.8.0 (#1223) allows old versions
solc-0.8.15 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

Variable EIP712._CACHED_DOMAIN_SEPARATOR (#382) is not in mixedCase
Variable EIP712._CACHED_CHAIN_ID (#383) is not in mixedCase
Variable EIP712._CACHED_THIS (#384) is not in mixedCase
Variable EIP712._HASHED_NAME (#386) is not in mixedCase
Variable EIP712._HASHED_VERSION (#387) is not in mixedCase
Variable EIP712._TYPE_HASH (#388) is not in mixedCase
Function IERC20Permit.DOMAIN_SEPARATOR() (#517) is not in mixedCase
Function ERC20Permit.DOMAIN_SEPARATOR() (#1299-1301) is not in mixedCase
Variable ERC20Permit._PERMIT_TYPEHASH_DEPRECATED_SLOT (#1255) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

ERC20Permit._PERMIT_TYPEHASH_DEPRECATED_SLOT (#1255) is never used in BlackHat (#1326-1364)
Remove unused state variables.

Additional information: link

ERC20Permit._PERMIT_TYPEHASH_DEPRECATED_SLOT (#1255) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#601-603)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#609-612)
name() should be declared external:
- ERC20.name() (#895-897)
symbol() should be declared external:
- ERC20.symbol() (#903-905)
decimals() should be declared external:
- BlackHat.decimals() (#1332-1334)
- ERC20.decimals() (#920-922)
totalSupply() should be declared external:
- ERC20.totalSupply() (#927-929)
balanceOf(address) should be declared external:
- ERC20.balanceOf(address) (#934-936)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#946-950)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#969-973)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#991-1000)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#1014-1018)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#1034-1043)
permit(address,address,uint256,uint256,uint8,bytes32,bytes32) should be declared external:
- ERC20Permit.permit(address,address,uint256,uint256,uint8,bytes32,bytes32) (#1267-1286)
nonces(address) should be declared external:
- ERC20Permit.nonces(address) (#1291-1293)
pause() should be declared external:
- BlackHat.pause() (#1336-1338)
unpause() should be declared external:
- BlackHat.unpause() (#1340-1342)
mint(address,uint256) should be declared external:
- BlackHat.mint(address,uint256) (#1344-1346)
burn(address,uint256,uint8,bytes32,bytes32) should be declared external:
- BlackHat.burn(address,uint256,uint8,bytes32,bytes32) (#1356-1362)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


Token is deployed only at one blockchain


Unable to find PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute number of swaps.


Unable to find Youtube account


Unable to find Discord account


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


Unable to find token contract audit


Unable to find KYC or doxxing proof


Unable to verify token contract address on the website


Unable to find audit link on the website


Token is not listed at Mobula.Finance

Additional information: link


Unable to find token on CoinHunt

Additional information: link


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

Price for BLKC

News for BLKC