IntroductionConflux 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.pdfExchange:
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/opafkgfpaamecojfkaialabagfofilmgMining Tutorial:
https://forum.conflux.fun/t/topic/3775Pool:
https://poolflare.com/coin/cfx/poolDiscord:
https://discord.com/invite/aCZkf2C---
RequirementsNetwork: 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 InstructionRun FilesPrepare to Run conflux- Create a directory: conflux
- Unzip the download package to the directory respectively
The directory structure is:
conflux
└── run
└── conflux.exe
└── tethys.toml
└── cfxmine.exe
Configuration InstructionsOpen the
run/tethys.toml file with a text editor and configure mining related parameters:
mining_author="Personal wallet address (without 0x prefix)"
for example, your CFX wallet is: 0x18AbC7131c51640a8921dbd0eA4461CF2C73e853, then you config it to:
mining_author="18AbC7131c51640a8921dbd0eA4461CF2C73e853"
Run GPU Mining ProgramConflux 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:
cd conflux\run
conflux --config tethys.toml --full 2>stderr.txt
- For Linux, In bash(or any POSIX compliant Shell), start the fullnode:
cd conflux/run
./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:
cd conflux
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:
cd conflux
./cfxmine --gpu 1
Note: The GPU command line is executed after the fullnode synchronization is completed.
#Tips for runing Node and cfxmine on different computersIf 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.
./cfxmine --gpu --addr A.B.C.D
or
./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 graphicsWe 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:
./cfxmine --gpu -d 0,1,2,3 --addr 27.36.224.198 -p 11526
-d
The -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.