Skip to content

exoboosters/fts-booster

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

webturtle

A web miner for FTSCoin (based on TurtleCoin Webminer)

How to include to your website

In order to implement the miner to your website you have to do the following, easy steps:

  • Download our script and add it to your website
    <script src='turtleminer.js'></script>

  • Edit the configuration

const config = {
  pool: "www.ftscoinpool.xyz",	// pool url
  port: 3333,	// pool port
  wallet: "fts1QBRNsfv4WwC3X25C8zBJt2ek6bxkPc4kEz7uhcFMe4YQ8w9v474LmTeXdFmMH8VYPMVYYhVtsZ9LGMZ1va5P7D22QUqV8f", // your wallet address
  speed: 100,		// cpu speed/usage in %
  threads: 4,		// number of threads using for mining
  workerName: "WebMiner"	// the miner name also knows as 'password' for the pool, default 'x'
}
  • Initialize a new miner instance
    const miner = new TurtleMiner(minerConfig);

  • Start mining whenever you want:
    miner.start();

  • Stop mining whenever you want:
    miner.stop();

Releases

No releases published

Packages

No packages published

Languages

  • CSS 78.0%
  • JavaScript 19.1%
  • HTML 2.9%