**** C64 CHAIN V1.0 ****
64K RAM SYSTEM 38911 BASIC BYTES FREE
 
READY.
LOAD "C64CHAIN",8,1
 
SEARCHING FOR C64CHAIN...
LOADING...
RUN_

C64 Chain

The Commodore 64 of Crypto

Privacy-first, CPU-mineable, fair launch. Built on Monero/CryptoNote technology.
No premine, no ICO — anyone can mine from home.

BLOCK HEIGHT
NETWORK HASHRATE
ACTIVE PEERS
C64s WORKING

Download. Launch. Mine.
Built-in miner — start earning C64 in seconds, no setup required.

🍎 MacOS 🪟 Windows 🐧 Ubuntu 22 🐧 Ubuntu 24 📱 Android

🍎 macOS Notes

⚠️ "App is damaged" warning — macOS Gatekeeper blocks unsigned apps. This is normal for open-source software. To fix it, open Terminal and run:

xattr -cr /Applications/C64\ Chain\ Wallet.app

Then launch the app normally.

🛠 Installing Required Dependencies

If the wallet won't open or the daemon stops immediately, some required libraries are likely missing. Follow these steps:

1. Install Homebrew — the essential Mac package manager:

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

2. Install required libraries (Boost, ZeroMQ, HIDAPI, Unbound):

brew install boost zeromq hidapi unbound

3. Relaunch the C64 Chain Wallet. The daemon should now start correctly.

🔍 Troubleshooting — if it still won't start, check the logs:

tail -n 50 ~/Library/Application\ Support/c64chain-wallet/logs/daemon.log

Look for dyld[xxxx]: Library not loaded: — the name after .../lib/ tells you which package to install (e.g. libhidapi.0.dylibbrew install hidapi).

📝 Apple Silicon users (M1/M2/M3/M4): Make sure Homebrew is installed in /opt/homebrew (default) so the wallet can find the required files.

🪲 Windows Notes

⚠️ Windows Security warning — The miner may trigger Windows Defender. This is a false positive common to all RandomX miners. Add an exception in Windows Security Center for best performance.

💡 Run as Administrator recommended for best mining performance (allows MSR register optimization).

🐧 Linux Notes

📦 AppImage requires FUSE2. Install it first if not already present:

sudo apt install libfuse2

💡 Launch with --no-sandbox flag if needed:

./C64\ Chain\ Wallet-1.1.1-ubuntu24.AppImage --no-sandbox

Why C64 Chain?

⛏️

CPU Mining Only

rx/c64 algorithm (RandomX variant) ensures fair mining. No GPUs, no ASICs — anyone can mine from home with just a processor.

🔒

Privacy by Default

Built on Monero's CryptoNote technology with ring signatures, stealth addresses, and RingCT. All transactions are private.

🛡️

Anti-Dump Vesting

Block rewards unlock over 90 days in 4 equal portions. This prevents early miners from crashing the price at listing.

⚖️

Fair Launch

No premine, no ICO, no VC funding, no insider allocation. Every coin is mined by the community.

🔍

Security Audited

Full code audit completed with all critical fixes applied. Consensus-enforced dev fund and vesting validation.

🕹️

C64 Spirit

A love letter to the Commodore 64. Retro TUI, Datasette loading animation, PETSCII fonts, and BASIC-style display.

Tokenomics

Max Supply19,640,000 C641964 = year the MOS 6502 CPU was designed
Algorithmrx/c64 (RandomX)CPU-only, ASIC-resistant
Block Time5 minutes300 seconds target
Initial Block Reward~149 C64Smooth exponential decay
Dev Fund2%Consensus-enforced per block
EmissionStill early — mining for yearsSmooth decay, no brutal halvings like Bitcoin

The emission follows Monero's smooth curve formula: reward = (supply_cap - already_mined) >> ESF. Block rewards decrease gradually with every block, unlike Bitcoin's sudden halvings.

Vesting — Anti-Dump Protection

Every block reward is split into 4 equal outputs with staggered unlock times, preventing miners from dumping all rewards at once.

25%
~24 hours288 blocks
25%
~30 days8,640 blocks
25%
~60 days17,280 blocks
25%
~90 days25,920 blocks

How We Compare

FeatureC64 ChainMoneroWownero
Algorithmrx/c64RandomXRandomWOW
Max Supply19.64M18.4M + tailUnlimited
Block Time5 min2 min5 min
Dev Fund2% consensusCommunityNone
Vesting90-day 4-tierNoneNone
PrivacyFull CryptoNoteFull CryptoNoteFull CryptoNote
DifficultyLWMA-1LWMA-1LWMA-1

Build from Source (Advanced)

💡 Most users should use the ready-made wallets above — they include a built-in miner and work out of the box. The instructions below are for developers or advanced users who want to compile the node and miner manually.

1

Build the Node

# Install dependencies (Ubuntu 22.04/24.04)
sudo apt update
sudo apt install -y build-essential cmake pkg-config \
  libboost-all-dev libssl-dev libzmq3-dev libsodium-dev \
  libunwind-dev liblzma-dev libreadline-dev libexpat1-dev \
  libpgm-dev libhidapi-dev libusb-1.0-0-dev libprotobuf-dev \
  protobuf-compiler libudev-dev libncurses5-dev \
  libncursesw5-dev libunbound-dev liblmdb-dev \
  libminiupnpc-dev libuv1-dev git screen

git clone https://github.com/oxynaz/c64chain-mainnet.git
cd c64chain-mainnet && mkdir build && cd build
cmake .. && make -j$(nproc)
2

Run the Node

./bin/c64chaind-mainnet --non-interactive --log-level=1
3

Create a Wallet

./bin/c64wallet-mainnet --generate-new-wallet=~/.c64chain_mainnet/mywallet
4

Build & Run the Miner

git clone https://github.com/oxynaz/c64miner.git
cd c64miner && mkdir build && cd build
cmake .. -DWITH_OPENCL=OFF -DWITH_CUDA=OFF && make -j$(nproc)
sudo ./c64miner -c config.json -t $(nproc)

Pool mining available on rplant.xyz and suprnova.cc. See the full guide on GitHub for detailed instructions.

Join the Community