# ============================================================================= # epic-miner configuration -- Epic Cash FLOONET, BT Labs test network # Full instructions: https://floo-node.btlabs.uk/ # # Complete and ready to use. Save as epic-miner.toml next to the binary, or pass # it with -c. # # Build the miner first, applying the patch: # # git clone -b develop https://github.com/EpicCash/epic-miner.git # cd epic-miner # curl -O https://floo-node.btlabs.uk/connect/epic-miner-buildable.diff # git apply epic-miner-buildable.diff # cargo build --release # # The patch produces a RandomX-only CPU miner and adds the `full_mem` option used # below. Run it with: # # ./target/release/epic-miner -c epic-miner.floonet.toml # # TO KEEP THE COINS YOU MINE, MINE AGAINST YOUR OWN NODE. # The coinbase of each block goes to the wallet configured on the node that built # it, and Epic's stratum is not a pool -- there is no share accounting or payout. # Set stratum_server_addr to your own node (127.0.0.1:13416) and use # 147.93.107.186:13414 as a P2P seed instead. Our stratum is useful for checking # that your build hashes correctly and its shares are accepted. # ============================================================================= [logging] log_to_stdout = true stdout_log_level = "Info" log_to_file = true file_log_level = "Debug" log_file_path = "./epic-miner.log" log_file_append = true [mining] # This network is RandomX-only. algorithm = "RandomX" run_tui = false # Our public stratum. Change to "127.0.0.1:13416" to mine against your own node # and keep the rewards. stratum_server_addr = "147.93.107.186:13416" # Accepted but not used; the stratum server does not require credentials. #stratum_server_login = "" #stratum_server_password = "" stratum_server_tls_enabled = false [mining.randomx_config] # One thread is enough to keep this network moving. Each additional thread costs # roughly another 256 MB in light mode. threads = 1 jit = true hard_aes = true # Huge pages. Requires vm.nr_hugepages to be configured; leave false otherwise. large_pages = false # RandomX light mode (~256 MB per thread). Set true for fast mode only if you have # several GB free: it allocates a ~2 GB dataset per epoch and pre-builds the next # one. Requires the patch above. full_mem = false # On a shared or memory-constrained host, cap the miner: # # systemd-run --scope -p MemoryMax=700M -p MemorySwapMax=0 \ # ./target/release/epic-miner -c epic-miner.floonet.toml