Skip to content

software.json

wargo32 edited this page Dec 21, 2014 · 5 revisions

software.json contains configuration for miner software.

Miner software configuration

Contains an array of known miner software.

{
    "miner": [
        {
            "name": "CGMiner",
            "version": "3.7.2",
            "platforms": [ "ati", "asic", "cpu" ],
            "algorithms": [ "sha256", "scrypt" ],
            "site": "https://bitcointalk.org/index.php?topic=28402.0",
            "download": {
                "windows": "http://ck.kolivas.org/apps/cgminer/",
                "linux": "http://ck.kolivas.org/apps/cgminer/"
            }
        }
    ]
}
  • name: name of the mining software.**
  • version: version of the software (optional).
  • platforms: Supported platforms by the software.
    • ati: ATI graphics card support.
    • asic: ASIC support.
    • cpu: CPU mining support.
    • nvidia: NVidia graphics card support.
  • site: Official site of the software.
  • download: Download url per platforms
    • windows: Windows download url (optional)
    • linux: Linux download url (optional)
    • macos: MacOS download url (optional)