Locator was brought to you by minerstat to quickly find all of the ASICs connected to your local network. It allows you to export JSON file that can be imported as a workers list in your minerstat dashboard.
If you want to create your own JSON file to import workers to your minerstat dashboard, you can follow this template.
[
{
"worker": "Rig0001",
"type": "nvidia",
"system": "msos",
"groups": "GTX1080,Claymore",
"ip": "",
"ssh-username": "",
"ssh-password": ""
},
{
"worker": "S90001",
"type": "asic",
"system": "antminer",
"groups": "Area1",
"ip": "192.168.0.5",
"ssh-username": "root",
"ssh-password": "admin"
},
{
"worker": "S90002",
"type": "asic",
"system": "antminer",
"groups": "Area1",
"ip": "192.168.0.7",
"ssh-username": "root",
"ssh-password": "admin"
}
]
Please, if you are using custom templates, follow the next rules:
type
must be one of the following:nvidia
,amd
, orasic
.system
must bemsos
orwindows
if the type isnvidia
oramd
.system
must beantminer
,baikal
, ordragonmint
if the type isasic
.groups
must be divided by a comma. Group name should not exceed the length of 10 characters.worker
should not exceed the length of 15 characters.ssh-username
andssh-password
are used only for typeasic
and are not the same as on web interface. Default username/password forantminer
isroot/admin
, forbaikal
isadmin/root
, and fordragonmint
isadmin/dragonadmin
.