hemp0x

A fair-launch proof-of-work blockchain

about

hemp0x is a proof-of-work blockchain launched fairly at block 0. There is no premine. There was no presale. No tokens were allocated to founders, VCs, or insiders.

Every coin in circulation was mined by independent miners using computational work. The network is decentralized, permissionless, and maintained by its community.

hemp0x follows the principles of early cryptocurrency projects: fair distribution, transparent consensus, and resistance to centralized control.

chain specs

Consensus Proof-of-Work (KAWPOW)
Block Time ~5 seconds
Max Supply 420,000,000 HEMP
Premine None
Presale None
Launch Date Block 0

mining

hemp0x uses the KAWPOW mining algorithm. Mining is open to anyone with GPU hardware and compatible mining software.

Example mining commands:

# Using nbminer
./nbminer -a kawpow -o stratum+tcp://pool.example.com:4444 -u YOUR_WALLET_ADDRESS

# Using t-rex
./t-rex -a kawpow -o stratum+tcp://pool.example.com:4444 -u YOUR_WALLET_ADDRESS

# Solo mining
./hemp0x-cli setgenerate true 4
        

Join a mining pool or solo mine directly. Block rewards are distributed to miners according to the emission schedule defined in the protocol.

wallets

hemp0x provides two wallet implementations:

Both wallets support full node operation, transaction creation, and asset management. Download from the official GitHub repository.

assets & nfts

hemp0x supports native on-chain assets and NFTs. All asset data is stored directly on the blockchain. No IPFS. No external storage.

Create tokens, issue unique assets, and transfer ownership using the built-in asset layer. Asset creation requires burning a small amount of HEMP.

# Create an asset
./hemp0x-cli issue "ASSET_NAME" 1000000

# Transfer asset
./hemp0x-cli transfer "ASSET_NAME" 100 RECIPIENT_ADDRESS

# Create unique NFT
./hemp0x-cli issueunique "NFT_NAME" ipfs_hash=false data="on-chain data"