Conflux Network is an open protocol for a new world of DApps, finance, and Web 3.0. As a fast and secure public blockchain, Conflux Network combines Proof of Work and a Tree-Graph structure to power a new generation of decentralized commerce.
Conflux will complete upgrading their mainnet Tethys today at 22:00 (UTC+8), but we can start mining now.
Website: https://confluxnetwork.org/
Explorer: https://confluxscan.io/
Economic paper: https://confluxnetwork.org/files/Conflux_Economic_Paper.pdf
Exchange: https://moondex.io/ <- their own DEX, FC is token mined on testnet phase, will be swapped to CFX after mainnet with 1:1 ratio, so we can consider this is CFX's price now.
Wallet: https://chrome.google.com/webstore/detail/confluxportal/opafkgfpaamecojfkaialabagfofilmg
Mining Tutorial: https://forum.conflux.fun/t/topic/3775
Pool: https://poolflare.com/coin/cfx/pool
Discord: https://discord.com/invite/aCZkf2C
---
Requirements
Network: Conflux Tethys
Version: v1.0.0
Graphics Card Type: NVIDIA GPU
Graphics Memory: 6G or more
NVIDIA Drivers: Use the latest driver version.
OS: Windows 10 version 1903 and above or Linux
Mining Instruction
Run Files
- Mining program: Click to see Conflux PoW mining algorithm
- Fullnode program: Click to see fullnode program
Prepare to Run conflux
- Create a directory: conflux
- Unzip the download package to the directory respectively
The directory structure is:
Quote
conflux
└── run
└── conflux.exe
└── tethys.toml
└── cfxmine.exe
└── run
└── conflux.exe
└── tethys.toml
└── cfxmine.exe
Configuration Instructions
Open the run/tethys.toml file with a text editor and configure mining related parameters:
Code:
mining_author="Personal wallet address (without 0x prefix)"
for example, your CFX wallet is: 0x18AbC7131c51640a8921dbd0eA4461CF2C73e853, then you config it to:Code:
mining_author="18AbC7131c51640a8921dbd0eA4461CF2C73e853"
Run GPU Mining Program
Conflux GPU Mining Program cfxmine needs to run with the Conflux node program. Follow the steps below to start:
- Open the directory of the run executable file in cmd, and start the fullnode:
Code:
cd conflux\run
conflux --config tethys.toml --full 2>stderr.txt
conflux --config tethys.toml --full 2>stderr.txt
- For Linux, In bash(or any POSIX compliant Shell), start the fullnode:
Code:
cd conflux/run
./conflux --config tethys.toml --full 2>stderr.txt
./conflux --config tethys.toml --full 2>stderr.txt

After the fullnode synchronization is completed (catch-up mode: false), then you can start mining:
- Open the cfxmine executable file in cmd, and start the Conflux GPU Mining Program:
Code:
cd conflux
cfxmine --gpu 1
cfxmine --gpu 1
- For Linux, open the directory of the cfxmine executable file in bash(or any POSIX compliant Shell), and start the Conflux GPU miningprogram:
Code:
cd conflux
./cfxmine --gpu 1
./cfxmine --gpu 1
Note: The GPU command line is executed after the fullnode synchronization is completed.
#Tips for runing Node and cfxmine on different computers
If the Conflux node program and cfxmine are not on the same computer, you can specify the IP address and the port (the default is 32525) of the remote Conflux node program when starting cfxmine.
Code:
./cfxmine --gpu --addr A.B.C.D
orCode:
./cfxmine --gpu --addr A.B.C.D --port xxxx
If you want to designate remote node, you need to change the configuration of the node into:
stratum_listen_address=“0.0.0.0”, and delete #
You can use many miners remote to a node to increase your hashrate.
How to mining with multiple graphics
We can select a PC with a stable network connection as the central node program (Master), and running with the conflux.exe node synchronization program.
The other mining machines equipped with multiple graphic cards need to connect to the central node program to provide the computing power for it.
In general, a Master can provide synchronization services for multiple Slaves, and the Slaves can just perform graphics calculations.

Modify the configuration file of the Node program (Master)
Open the tethys.toml, remove the # before the mining_type, stratum_listen_address, stratum_port, set the stratum_listen_address=0, and the stratum_port need specify the port related with the graphic miner. The example shown as follow:

The start command of the mining program (Slave)
Examples are as follows:
Code:
./cfxmine --gpu -d 0,1,2,3 --addr 27.36.224.198 -p 11526
-dThe -d refers to your graphics card, if you have 1 graphics card, enter -d 0, and if you have 2 graphics cards, enter -d 0, 1
–addr
Node program’s address
-p
Port number, the value of stratum_port in the configuration file
Disclaimer: I'm just a miner and create this thread to introduce and discuss about Conflux mining.