CRYPTOHORSE Token Logo

CHORSE [CRYPTOHORSE] Token

About CHORSE

Listings

Token 2 years
CoinMarketCap 2 years
white paper

CryptoHorse is an NFT ecosystem in the horse racing universe developed on Binance Smart Chain. Where you can live the role of jockey, farmer, stable owner. Creating, renting, reproducing or developing your school with other players, joining alliances or nations. The game brings players the wildest horse racing experience by mixing futuristic scenarios with realistic graphics.

Designed to provide a fun player experience where you can choose your racehorse and venture into this new world of the metaverse. Our ambition is to build a NFT sustainable ecosystem in the blockchain space that delivers value to our users and investors, built on Binance Smart Chain is compatible with web3wallets, which will be used to accept transactions.

The project's token consisted of an offer of 100 million coins, 50% of which was destined for play-to-earn. It currently has 7% of the supply in circulation. One of the highlights that will receive greater attention and investment in the project will be the marketing sector, using digital marketing as the main communication, capture, dissemination and promotion channel for the Crypto Horse project.
Conversion strategies such as funnels, marketing influences, paid traffic, and launch formulas will be used to maximize results.

Social

Laser Scorebeta Last Audit: 8 February 2022

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


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains

AntiBotStandardToken.allowance(address,address).owner (#586) shadows:
- Ownable.owner() (#146-148) (function)
AntiBotStandardToken._approve(address,address,uint256).owner (#791) shadows:
- Ownable.owner() (#146-148) (function)
Rename the local variables that shadow another component.

Additional information: link

AntiBotStandardToken.constructor(string,string,uint8,uint256,address,address,uint256).serviceFeeReceiver_ (#487) lacks a zero-check on :
- address(serviceFeeReceiver_).transfer(serviceFee_) (#506)
Check that the address is not zero.

Additional information: link

Reentrancy in AntiBotStandardToken._transfer(address,address,uint256) (#712-732):
External calls:
- pinkAntiBot.onPreTransferCheck(sender,recipient,amount) (#721)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#726-729)
- _balances[recipient] = _balances[recipient].add(amount) (#730)
Reentrancy in AntiBotStandardToken.constructor(string,string,uint8,uint256,address,address,uint256) (#481-507):
External calls:
- pinkAntiBot.setTokenOwner(owner()) (#496)
State variables written after the call(s):
- enableAntiBot = true (#497)
Reentrancy in AntiBotStandardToken.transferFrom(address,address,uint256) (#626-641):
External calls:
- _transfer(sender,recipient,amount) (#631)
- pinkAntiBot.onPreTransferCheck(sender,recipient,amount) (#721)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#632-639)
- _allowances[owner][spender] = amount (#798)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in AntiBotStandardToken._transfer(address,address,uint256) (#712-732):
External calls:
- pinkAntiBot.onPreTransferCheck(sender,recipient,amount) (#721)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#731)
Reentrancy in AntiBotStandardToken.constructor(string,string,uint8,uint256,address,address,uint256) (#481-507):
External calls:
- pinkAntiBot.setTokenOwner(owner()) (#496)
Event emitted after the call(s):
- TokenCreated(owner(),address(this),TokenType.antiBotStandard,VERSION) (#499-504)
Reentrancy in AntiBotStandardToken.transferFrom(address,address,uint256) (#626-641):
External calls:
- _transfer(sender,recipient,amount) (#631)
- pinkAntiBot.onPreTransferCheck(sender,recipient,amount) (#721)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#799)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#632-639)
Apply the check-effects-interactions pattern.

Additional information: link

AntiBotStandardToken._burn(address,uint256) (#764-775) is never used and should be removed
AntiBotStandardToken._setupDecimals(uint8) (#809-811) is never used and should be removed
Context._msgData() (#106-108) is never used and should be removed
SafeMath.div(uint256,uint256) (#320-322) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#376-385) is never used and should be removed
SafeMath.mod(uint256,uint256) (#336-338) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#402-411) is never used and should be removed
SafeMath.mul(uint256,uint256) (#306-308) is never used and should be removed
SafeMath.sub(uint256,uint256) (#292-294) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#207-213) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#249-254) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#261-266) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#232-242) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#220-225) is never used and should be removed
Remove unused functions.

Additional information: link

Parameter AntiBotStandardToken.setEnableAntiBot(bool)._enable (#509) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable AntiBotStandardToken._totalSupply (#476) is too similar to AntiBotStandardToken.constructor(string,string,uint8,uint256,address,address,uint256).totalSupply_ (#485)
Prevent variables from having similar names.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#165-167)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#173-176)
name() should be declared external:
- AntiBotStandardToken.name() (#516-518)
symbol() should be declared external:
- AntiBotStandardToken.symbol() (#524-526)
decimals() should be declared external:
- AntiBotStandardToken.decimals() (#541-543)
totalSupply() should be declared external:
- AntiBotStandardToken.totalSupply() (#548-550)
balanceOf(address) should be declared external:
- AntiBotStandardToken.balanceOf(address) (#555-563)
transfer(address,uint256) should be declared external:
- AntiBotStandardToken.transfer(address,uint256) (#573-581)
allowance(address,address) should be declared external:
- AntiBotStandardToken.allowance(address,address) (#586-594)
approve(address,uint256) should be declared external:
- AntiBotStandardToken.approve(address,uint256) (#603-611)
transferFrom(address,address,uint256) should be declared external:
- AntiBotStandardToken.transferFrom(address,address,uint256) (#626-641)
increaseAllowance(address,uint256) should be declared external:
- AntiBotStandardToken.increaseAllowance(address,uint256) (#655-666)
decreaseAllowance(address,uint256) should be declared external:
- AntiBotStandardToken.decreaseAllowance(address,uint256) (#682-696)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap volume is low.


Number of Binance Smart Chain (BSC) token holders is low.


Average PancakeSwap trading volume, liqudity, number of swaps are low. Token seems to be inactive.


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.


Last post in Twitter was more than 30 days ago


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find whitepaper link on the website


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


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


Token has relatively low CoinMarketCap rank

Price for CHORSE

News for CHORSE