"Neo_HIT: Follow The White Rabbit" Genesis Block Message
This software is NOT standard open source. Commercial use requires a license.
- See COMMERCIAL_LICENSE.md for full terms
- Non-commercial use is permitted for learning, research, and personal use
- Commercial use is prohibited without written agreement from NeoCoin Protocol
bash -c "$(curl -s https://raw.githubusercontent.com/Neo4717/NeoCoin/main/join.sh)"Ask in our community for a peer address, or run solo first!
Your node will start automatically and begin mining.
# Just run this script - never deletes anything!
./start-node.shYour node will start and keep the same onion address forever!
git clone https://github.com/Neo4717/NeoCoin.git
cd NeoCoin/blockchain
go build -o neocoin ../neocoin create_walletSave your wallet address!
# Solo (no peers yet)
MINER_ADDRESS=YOUR_ADDRESS \
GENESIS_PATH=../genesis/smoke.json \
CHAIN_ID=3 \
AUTO_MINE=true \
ADMIN_TOKEN=test \
./neocoin server
# With Peer
MINER_ADDRESS=YOUR_ADDRESS \
P2P_PEERS=PEER_ADDRESS:9090 \
GENESIS_PATH=../genesis/smoke.json \
CHAIN_ID=3 \
AUTO_MINE=true \
ADMIN_TOKEN=test \
./neocoin server| Chain ID | 3 |
| Genesis | Neo_HIT: Follow The White Rabbit |
| Supply | 500 NEO (fair launch) |
| Block Reward | 50 NEO |
| Halving | Every 100 blocks |
Run your node as a Tor hidden service for anonymous P2P connections.
# Install Tor (if not installed)
sudo apt install tor
# Configure Tor hidden service
cat > /tmp/tor-onionrc << 'EOF'
SocksPort 9050
ControlPort 9051
HiddenServiceDir /tmp/tor-onion-data
HiddenServicePort 80 127.0.0.1:8080
HiddenServicePort 443 127.0.0.1:9090
HiddenServiceVersion 3
RunAsDaemon 1
EOF
# Start Tor
tor -f /tmp/tor-onionrc &
sleep 15cat /tmp/tor-onion-data/hostname# Replace with actual onion address
P2P_PEERS=your-onion-address.onion:9090 \
MINER_ADDRESS=YOUR_ADDRESS \
GENESIS_PATH=../genesis/smoke.json \
CHAIN_ID=3 \
AUTO_MINE=true \
ADMIN_TOKEN=test \
./neocoin server- Discord: Join
- Twitter: @NeoCoin
- GitHub: Discussions
Neo_HIT 🐰