Every confirmed token with a balance in this wallet appears here, even when someone else created or manages it.
Delete this wallet's encrypted local record from this browser. Blockchain funds are not deleted and can only be accessed again with the seed phrase.
Share your address to receive HLX or custom tokens from anyone on the network.
Browse every confirmed token created on Helix, including tokens made by other wallets. Select one for metadata and market details.
Tokens appear here whenever this wallet has a confirmed balance. You do not need to be the creator or DAD authority.
Like a Solana mint, a new MNT starts with zero supply. Its DAD authority can mint afterward.
Transfer tokens held by this wallet, or mint and manage authority for tokens whose DAD is this wallet.
All confirmed transactions from every wallet, newest first. Select a transaction to view its block, signature, addresses, and token details.
Use the wallet, mine blocks, or join the network.
Helix is an educational proof-of-work network. Start with the wallet guide, or download the software needed to run your own miner or full node.
- Create a wallet, choose a unique local name and password, and save the 12-word recovery phrase offline.
- Use Send to choose HLX or a held custom token, enter the recipient address and amount, then submit the signed transaction.
- A submitted transaction stays pending until a miner confirms it. Its sender may cancel it from Send while it is still pending.
- History shows this wallet's transactions. Activity shows confirmed transactions from every wallet, newest first.
- Open Tokens > Create Token and provide an HTTPS metadata JSON URL with name, symbol, description, and image fields.
- The MNT address identifies the token. The DAD address is the authority allowed to mint more supply, transfer authority, or revoke it permanently.
- After creation is mined, mint supply from Management. Tokens become visible from confirmed blockchain state.
- Discover shows HLX and every confirmed token. A DAD can create a market by locking HLX and its entire confirmed token balance; users can then buy or sell against the pool.
- Install Python 3.11 or newer and extract
helix-node.zip. - Open a terminal in the extracted folder and run
python -m venv .venv. - Install dependencies with
.venv\Scripts\python.exe -m pip install -r requirements.txton Windows, or.venv/bin/python -m pip install -r requirements.txton Linux/macOS. - Set a persistent, private
HELIX_ADMIN_API_KEY, then start with.venv\Scripts\python.exe run_node.py. Do not generate a new key on every launch. - Open
http://127.0.0.1:8000/health. Add synchronized Helix peers in the Nodes tab or inconfig.json.
Other nodes may use different admin keys. The key protects local administrative endpoints and is not part of consensus or shared chain data.
- For temporary testing, run
cloudflared tunnel --url http://127.0.0.1:8000. No port forwarding or personal domain is required. - Put the resulting HTTPS URL in the Pages
HELIX_NODE_URLvariable. Multiple nodes use a JSON array such as["https://node1.example","https://node2.example"]. - Redeploy Pages after changing variables. TryCloudflare URLs expire when the tunnel stops, so replace them when necessary.
- For a permanent public node, use a named tunnel, TLS, firewall rules, backups, rate limits, and trusted peers.
- Extract
helix-miner.zip, install Python 3.11+, then runpython -m pip install -r requirements.txt. - Start it with
python helix_miner.py. - Enter the 40-character reward wallet address and one or more reachable node URLs. The miner needs no admin API key.
- For NVIDIA CUDA 13, install
python -m pip install -r requirements-nvidia.txt, then select NVIDIA CUDA. CUDA 12 users should installcupy-cuda12x[ctk]instead. - Choose the CPU worker count or NVIDIA device and start mining. The first valid submitted proof wins the block and the protocol pays the current reward.
- NVIDIA CUDA-capable GPUs with compute capability 3.0 or newer, provided the installed NVIDIA driver and selected CUDA runtime still support that card.
- Modern GeForce RTX, NVIDIA RTX/Quadro, Tesla, and data-center GPUs are typical compatible families. Your RTX 4050 has been hardware-tested with Helix.
- CUDA 13 uses
cupy-cuda13x[ctk]; CUDA 12 usescupy-cuda12x[ctk]. Runnvidia-smito see the driver-reported CUDA version. - Windows and Linux are supported by the official CuPy wheels. The current miner uses the first NVIDIA GPU and does not combine multiple GPUs.
- AMD, Intel, Apple Silicon, and other non-CUDA GPUs are not supported. CPU mode remains available on those systems.
Difficulty adjusts from confirmed block timing toward a 10-minute average. A solution may take more or less than 10 minutes because proof-of-work is probabilistic.
- Reward schedule: 10 HLX for blocks 0-89, 2 HLX for blocks 90-299, and exactly 3.125 HLX from block 300 onward.
- Maximum native supply: 20,000,000 HLX.
- All nodes must upgrade to protocol 8 and restart before block 300 so they agree on the fractional reward.
- At block 300,
9d7c721b209cee99a8158c524fa433ead9236781becomes the native HLX DAD governance identity. It cannot mint; all new HLX remains mining-only. - Before upgrading or copying chain data, stop the node and back up its database.
- Use
python helixctl.py validateto verify the local chain.
Scans your local network for other Helix nodes and registers them automatically. The background worker does this every 30 seconds.
Every 30 s the node auto-discovers peers, pulls the longest chain, and audits every block's hash.