BitcoinPoW Core
31.1.0 release · tag btcw_v31.0
Synchronize the BTCW chain, manage your wallet, and prepare mining work.
btcw explorerBITCOINPOW NETWORKGet the BitcoinPoW desktop and Android wallets, plus the NVIDIA CUDA miner, from the bitcoin-pow repositories.
31.1.0 release · tag btcw_v31.0
Synchronize the BTCW chain, manage your wallet, and prepare mining work.
v1.0.0 · NEWFORK
Use bitcoin-pow/cuda_btcw_miner for the CUDA worker. Published binaries are for Linux x86-64 and the GPUs listed below.
v1.0.0 · Android 8.0+
Create or restore a wallet, send and receive BTCW, and synchronize directly with BTCW peers.
Requires an enrolled strong biometric, such as a fingerprint, for wallet access and signing.
Use a synchronized BTCW node and a loaded wallet with private keys. Mining needs an eligible P2PK or legacy P2PKH output with at least six confirmations. Unlock encrypted wallets before enabling mining.
The CUDA worker requires Linux and an NVIDIA GPU with a compatible driver. CUDA does not support AMD GPUs. Node wallet packages for Windows and macOS do not imply CUDA worker support on those platforms.
Run the node and worker under the same operating-system account. They exchange work through /shared_mem. Use one node/worker pair for that shared-memory object.
The worker handles mining key material. Use trusted builds, protect access to the mining account, and back up your wallet before upgrading.
These examples use bitcoin-cli from your node installation. Replace WALLET_NAME with your loaded wallet name and use your usual node configuration.
Open the Qt wallet or start the daemon. Enable its RPC server for CLI access. Keep BTCW data separate from Bitcoin data.
bitcoin-cli getblockchaininfo
bitcoin-cli listwalletsCreate a legacy receiving address, send BTCW to it, and wait for six confirmations. Replace LEGACY_ADDRESS below with the returned address. SegWit and Taproot outputs are not selected for this mining stage.
bitcoin-cli -rpcwallet=WALLET_NAME getnewaddress "mining" legacy
bitcoin-cli -rpcwallet=WALLET_NAME listunspent 6 9999999 '["LEGACY_ADDRESS"]'Unlock an encrypted wallet through the wallet UI, then enable continuous mining before starting the CUDA worker. The 30-second timeout lets the node refresh work between attempts.
bitcoin-cli -rpcwallet=WALLET_NAME setstaking true 30
bitcoin-cli -rpcwallet=WALLET_NAME getstakinginfoIn Qt’s Window → Console, use setstaking true 30 and getstakinginfo directly.
Once mining is enabled in the wallet, start the worker. For the published RTX 4070 SUPER Linux binary, run these commands in your download folder. Use the 4080 SUPER filename for that build. Check GPU memory requirements in its release notes.
chmod +x btcw_cuda_miner_4070_super
./btcw_cuda_miner_4070_superbitcoin-cli -rpcwallet=WALLET_NAME setstaking falseStop the CUDA worker with Ctrl+C. Mining must be enabled again after restarting the node.
The repository’s default README describes an RTX 4060 build with roughly 4 GiB of free GPU memory. Install the NVIDIA driver, CUDA Toolkit with nvcc, and a C++ build toolchain first. Other GPU profiles can have substantially different memory requirements.
git clone https://github.com/bitcoin-pow/cuda_btcw_miner.git
cd cuda_btcw_miner
nvidia-smi
nvcc --version
chmod +x build_cuda.sh
./build_cuda.sh
./release/btcw_cuda_miner_batch128The default architecture is sm_89. Set CUDA_ARCH for your GPU when building. The source-build GPU index is zero-based; start with the default invocation above. Confirm that the startup self-test passes.
getstakinginfo.