Advertisement
diyfuturism

ACAB.SH - BAIL BLOC COMMAND LINE

Nov 28th, 2017
574
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.89 KB | None | 0 0
  1. # In the bailbloc repo, you can find the prebuilt XMRig binaries in:
  2. #
  3. #   bailbloc/desktop/miner_binaries/
  4. #
  5. # This command is derived from the file:
  6. #
  7. #   bailbloc/miner.js
  8. #
  9. # Donate level is automatically set to 5% if not specified, but you can reduce it
  10. # to 1% if you want the maximum amount of time going towards bailbloc.
  11. #
  12. ./bailbloc_worker_linux \
  13.   --url mine.xmrpool.net:5555 \
  14.   --user 442uGwAdS8c3mS46h6b7KMPQiJcdqmLjjbuetpCfSKzcgv4S56ASPdvXdySiMizGTJ56ScZUyugpSeV6hx19QohZTmjuWiM \
  15.   --pass persistentID:bailbloc@thenewinquiry.com \
  16.   --keepalive \
  17.   --no-color \
  18.   --max-cpu-usage 25 \
  19.   --print-time 4 \
  20.   --background
  21. # --donate-level 5
  22.  
  23. # This will print how much $$ has been mined:
  24. #
  25. curl https://bb.darkinquiry.com?n=1 | jq '.[0] as $stats | "\((($stats.stats.amtDue + $stats.stats.amtPaid) / 1000000000000) * ($stats.ticker.price | tonumber)) \($stats.ticker.target)"'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement