Haven (HVN) Windows node (x86_64) – v0.1.0

Files:
  - hvn-node.exe   → Full node with CPU mining (RandomX) enabled

Basic usage (sync-only, no mining)
----------------------------------
1) Open PowerShell in this folder.
2) Run:

   .\hvn-node.exe `
     --data-dir .\data `
     --rpc-bind 127.0.0.1:5001 `
     --p2p-bind 0.0.0.0:4000 `
     --no-mining `
     --peer seed.hvngim.org:4000

3) To check status (in another PowerShell window):

   curl http://127.0.0.1:5001/status

Mining to your own address
--------------------------
IMPORTANT: Always mine with YOUR OWN HVN address (hvn1...).

1) Replace hvn1YOURADDRESS below with your real HVN address.
2) Run:

   .\hvn-node.exe `
     --data-dir .\data `
     --rpc-bind 127.0.0.1:5001 `
     --p2p-bind 0.0.0.0:4000 `
     --peer seed.hvngim.org:4000 `
     --coinbase-address hvn1YOURADDRESS

3) You can watch your balance (from a Linux box or another node):

   curl http://<your-node-ip>:5001/balance/hvn1YOURADDRESS

Notes
-----
- This is an early testnet-style build.
- Mining uses CPU (RandomX), which is heavy. Don’t run on machines you can’t afford to load.
- Make sure you have good cooling and monitor CPU temps if you mine for long periods.
