pyasic
CGMinerRPCAPI
Bases: BaseMinerRPCAPI
An abstraction of the CGMiner API.
Each method corresponds to an API command in GGMiner.
This class abstracts use of the CGMiner API, as well as the methods for sending commands to it. The self.send_command() function handles sending a command to the miner asynchronously, and as such is the base for many of the functions in this class, which rely on it to send the command for them.
Source code in pyasic/rpc/cgminer.py
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 |
|
addpool(url, username, password)
async
Add a pool to the miner.
Expand
Parameters:
Name | Type | Description | Default |
---|---|---|---|
url
|
str
|
The URL of the new pool to add. |
required |
username
|
str
|
The users username on the new pool. |
required |
password
|
str
|
The worker password on the new pool. |
required |
Returns:
Type | Description |
---|---|
dict
|
A confirmation of adding the pool. |
Source code in pyasic/rpc/cgminer.py
asc(n)
async
Get data for ASC device n.
Expand
Parameters:
Name | Type | Description | Default |
---|---|---|---|
n
|
int
|
The device to get data for. |
required |
Returns:
Type | Description |
---|---|
dict
|
The data for ASC device n. |
Source code in pyasic/rpc/cgminer.py
asccount()
async
Get data on the number of ASC devices and their info.
Expand
Returns:
Type | Description |
---|---|
dict
|
Data on all ASC devices. |
ascdisable(n)
async
Disable ASC device n.
Expand
Parameters:
Name | Type | Description | Default |
---|---|---|---|
n
|
int
|
The device to disable. |
required |
Returns:
Type | Description |
---|---|
dict
|
Confirmation of disabling ASC device n. |
Source code in pyasic/rpc/cgminer.py
ascenable(n)
async
Enable ASC device n.
Expand
Parameters:
Name | Type | Description | Default |
---|---|---|---|
n
|
int
|
The device to enable. |
required |
Returns:
Type | Description |
---|---|
dict
|
Confirmation of enabling ASC device n. |
Source code in pyasic/rpc/cgminer.py
ascidentify(n)
async
Identify ASC device n.
Expand
Parameters:
Name | Type | Description | Default |
---|---|---|---|
n
|
int
|
The device to identify. |
required |
Returns:
Type | Description |
---|---|
dict
|
Confirmation of identifying ASC device n. |
Source code in pyasic/rpc/cgminer.py
ascset(n, opt, val=None)
async
Set ASC n option opt to value val.
Expand
Sets an option on the ASC n to a value. Allowed options are: AVA+BTB -
opt: freq
val: 256 - 1024 (chip frequency)
BTB -
opt: millivolts
val: 1000 - 1400 (core voltage)
MBA -
opt: reset
val: 0 - # of chips (reset a chip)
opt: freq
val: 0 - # of chips, 100 - 1400 (chip frequency)
opt: ledcount
val: 0 - 100 (chip count for LED)
opt: ledlimit
val: 0 - 200 (LED off below GH/s)
opt: spidelay
val: 0 - 9999 (SPI per I/O delay)
opt: spireset
val: i or s, 0 - 9999 (SPI regular reset)
opt: spisleep
val: 0 - 9999 (SPI reset sleep in ms)
BMA -
opt: volt
val: 0 - 9
opt: clock
val: 0 - 15
Parameters:
Name | Type | Description | Default |
---|---|---|---|
n
|
int
|
The ASC to set the options on. |
required |
opt
|
str
|
The option to set. Setting this to 'help' returns a help message. |
required |
val
|
int
|
The value to set the option to. |
None
|
Returns:
Type | Description |
---|---|
dict
|
Confirmation of setting option opt to value val. |
Source code in pyasic/rpc/cgminer.py
check(command)
async
Check if the command command exists in CGMiner.
Expand
Parameters:
Name | Type | Description | Default |
---|---|---|---|
command
|
str
|
The command to check. |
required |
Returns:
Type | Description |
---|---|
dict
|
Information about a command:
|
Source code in pyasic/rpc/cgminer.py
coin()
async
Get information on the current coin.
Expand
Returns:
Type | Description |
---|---|
dict
|
Information about the current coin being mined:
|
Source code in pyasic/rpc/cgminer.py
config()
async
Get some basic configuration info.
Expand
Returns:
Type | Description |
---|---|
dict
|
Some miner configuration information:
|
Source code in pyasic/rpc/cgminer.py
debug(setting)
async
Set a debug setting.
Expand
Parameters:
Name | Type | Description | Default |
---|---|---|---|
setting
|
str
|
Which setting to switch to. Options are:
|
required |
Returns:
Type | Description |
---|---|
dict
|
Data on which debug setting was enabled or disabled. |
Source code in pyasic/rpc/cgminer.py
devdetails()
async
Get data on all devices with their static details.
Expand
Returns:
Type | Description |
---|---|
dict
|
Data on all devices with their static details. |
Source code in pyasic/rpc/cgminer.py
devs()
async
Get data on each PGA/ASC with their details.
Expand
Returns:
Type | Description |
---|---|
dict
|
Data on each PGA/ASC with their details. |
disablepool(n)
async
Disable a pool.
Expand
Parameters:
Name | Type | Description | Default |
---|---|---|---|
n
|
int
|
Pool to disable. |
required |
Returns:
Type | Description |
---|---|
dict
|
A confirmation of diabling the pool. |
Source code in pyasic/rpc/cgminer.py
edevs(old=False)
async
Get data on each PGA/ASC with their details, ignoring blacklisted and zombie devices.
Expand
Parameters:
Name | Type | Description | Default |
---|---|---|---|
old
|
bool
|
Include zombie devices that became zombies less than 'old' seconds ago |
False
|
Returns:
Type | Description |
---|---|
dict
|
Data on each PGA/ASC with their details. |
Source code in pyasic/rpc/cgminer.py
enablepool(n)
async
Enable pool n.
Expand
Parameters:
Name | Type | Description | Default |
---|---|---|---|
n
|
int
|
The pool to enable. |
required |
Returns:
Type | Description |
---|---|
dict
|
A confirmation of enabling pool n. |
Source code in pyasic/rpc/cgminer.py
estats(old=False)
async
Get stats of each device/pool with more than 1 getwork, ignoring zombie devices.
Expand
Parameters:
Name | Type | Description | Default |
---|---|---|---|
old
|
bool
|
Include zombie devices that became zombies less than 'old' seconds ago. |
False
|
Returns:
Type | Description |
---|---|
dict
|
Stats of each device/pool with more than 1 getwork, ignoring zombie devices. |
Source code in pyasic/rpc/cgminer.py
failover_only(failover)
async
Set failover-only.
Expand
Parameters:
Name | Type | Description | Default |
---|---|---|---|
failover
|
bool
|
What to set failover-only to. |
required |
Returns:
Type | Description |
---|---|
dict
|
Confirmation of setting failover-only. |
Source code in pyasic/rpc/cgminer.py
hotplug(n)
async
Enable hotplug.
Expand
Parameters:
Name | Type | Description | Default |
---|---|---|---|
n
|
int
|
The device number to set hotplug on. |
required |
Returns:
Type | Description |
---|---|
dict
|
Information on hotplug status. |
Source code in pyasic/rpc/cgminer.py
lcd()
async
Get a general all-in-one status summary of the miner.
Expand
Returns:
Type | Description |
---|---|
dict
|
An all-in-one status summary of the miner. |
Source code in pyasic/rpc/cgminer.py
lockstats()
async
Write lockstats to STDERR.
Expand
Returns:
Type | Description |
---|---|
dict
|
The result of writing the lock stats to STDERR. |
notify()
async
Notify the user of past errors.
Expand
Returns:
Type | Description |
---|---|
dict
|
The last status and count of each devices problem(s). |
pga(n)
async
Get data from PGA n.
Expand
Parameters:
Name | Type | Description | Default |
---|---|---|---|
n
|
int
|
The PGA number to get data from. |
required |
Returns:
Type | Description |
---|---|
dict
|
Data on the PGA n. |
Source code in pyasic/rpc/cgminer.py
pgacount()
async
Get data fon all PGAs.
Expand
Returns:
Type | Description |
---|---|
dict
|
Data on the PGAs connected. |
pgadisable(n)
async
Disable PGA n.
Expand
Parameters:
Name | Type | Description | Default |
---|---|---|---|
n
|
int
|
The PGA to disable. |
required |
Returns:
Type | Description |
---|---|
dict
|
A confirmation of disabling PGA n. |
Source code in pyasic/rpc/cgminer.py
pgaenable(n)
async
Enable PGA n.
Expand
Parameters:
Name | Type | Description | Default |
---|---|---|---|
n
|
int
|
The PGA to enable. |
required |
Returns:
Type | Description |
---|---|
dict
|
A confirmation of enabling PGA n. |
Source code in pyasic/rpc/cgminer.py
pgaidentify(n)
async
Identify PGA n.
Expand
Parameters:
Name | Type | Description | Default |
---|---|---|---|
n
|
int
|
The PGA to identify. |
required |
Returns:
Type | Description |
---|---|
dict
|
A confirmation of identifying PGA n. |
Source code in pyasic/rpc/cgminer.py
pgaset(n, opt, val=None)
async
Set PGA option opt to val on PGA n.
Expand
Options:Parameters:
Name | Type | Description | Default |
---|---|---|---|
n
|
int
|
The PGA to set the options on. |
required |
opt
|
str
|
The option to set. Setting this to 'help' returns a help message. |
required |
val
|
int
|
The value to set the option to. |
None
|
Returns:
Type | Description |
---|---|
dict
|
Confirmation of setting PGA n with opt[,val]. |
Source code in pyasic/rpc/cgminer.py
poolpriority(*n)
async
Set pool priority.
Expand
Parameters:
Name | Type | Description | Default |
---|---|---|---|
*n
|
int
|
Pools in order of priority. |
()
|
Returns:
Type | Description |
---|---|
dict
|
A confirmation of setting pool priority. |
Source code in pyasic/rpc/cgminer.py
poolquota(n, q)
async
Set pool quota.
Expand
Parameters:
Name | Type | Description | Default |
---|---|---|---|
n
|
int
|
Pool number to set quota on. |
required |
q
|
int
|
Quota to set the pool to. |
required |
Returns:
Type | Description |
---|---|
dict
|
A confirmation of setting pool quota. |
Source code in pyasic/rpc/cgminer.py
pools()
async
Get pool information.
Expand
Returns:
Type | Description |
---|---|
dict
|
Miner pool information. |
privileged()
async
Check if you have privileged access.
Expand
Returns:
Type | Description |
---|---|
dict
|
The STATUS section with an error if you have no privileged access, or success if you have privileged access. |
Source code in pyasic/rpc/cgminer.py
quit()
async
Quit CGMiner.
Expand
Returns:
Type | Description |
---|---|
dict
|
A single "BYE" before CGMiner quits. |
removepool(n)
async
Remove a pool.
Expand
Parameters:
Name | Type | Description | Default |
---|---|---|---|
n
|
int
|
Pool to remove. |
required |
Returns:
Type | Description |
---|---|
dict
|
A confirmation of removing the pool. |
Source code in pyasic/rpc/cgminer.py
restart()
async
Restart CGMiner using the API.
Expand
Returns:
Type | Description |
---|---|
dict
|
A reply informing of the restart. |
save(filename=None)
async
Save the config.
Expand
Parameters:
Name | Type | Description | Default |
---|---|---|---|
filename
|
str
|
Filename to save the config as. |
None
|
Returns:
Type | Description |
---|---|
dict
|
A confirmation of saving the config. |
Source code in pyasic/rpc/cgminer.py
setconfig(name, n)
async
Set config of name to value n.
Expand
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str
|
The name of the config setting to set. Options are:
|
required |
n
|
int
|
The value to set the 'name' setting to. |
required |
Returns:
Type | Description |
---|---|
dict
|
The results of setting config of name to n. |
Source code in pyasic/rpc/cgminer.py
stats()
async
Get stats of each device/pool with more than 1 getwork.
Expand
Returns:
Type | Description |
---|---|
dict
|
Stats of each device/pool with more than 1 getwork. |
Source code in pyasic/rpc/cgminer.py
summary()
async
Get the status summary of the miner.
Expand
Returns:
Type | Description |
---|---|
dict
|
The status summary of the miner. |
switchpool(n)
async
Switch pools to pool n.
Expand
Parameters:
Name | Type | Description | Default |
---|---|---|---|
n
|
int
|
The pool to switch to. |
required |
Returns:
Type | Description |
---|---|
dict
|
A confirmation of switching to pool n. |
Source code in pyasic/rpc/cgminer.py
usbstats()
async
Get stats of all USB devices except ztex.
Expand
Returns:
Type | Description |
---|---|
dict
|
The stats of all USB devices except ztex. |
version()
async
Get miner version info.
Expand
Returns:
Type | Description |
---|---|
dict
|
Miner version information. |
zero(which, summary)
async
Zero a device.
Expand
Parameters:
Name | Type | Description | Default |
---|---|---|---|
which
|
str
|
Which device to zero. Setting this to 'all' zeros all devices. Setting this to 'bestshare' zeros only the bestshare values for each pool and global. |
required |
summary
|
bool
|
Whether or not to show a full summary. |
required |
Returns:
Type | Description |
---|---|
dict
|
the STATUS section with info on the zero and optional summary. |