pyasic
LUXMinerRPCAPI
Bases: BaseMinerRPCAPI
An abstraction of the LUXMiner API.
Each method corresponds to an API command in LUXMiner.
This class abstracts use of the LUXMiner 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/luxminer.py
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 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 |
|
addgroup(name, quota)
async
Add a pool group.
Expand
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str
|
The group name. |
required |
quota
|
int
|
The group quota. |
required |
Returns:
Type | Description |
---|---|
dict
|
Confirmation of adding a pool group. |
Source code in pyasic/rpc/luxminer.py
addpool(url, user, pwd='', group_id=None)
async
Add a pool.
Expand
Parameters:
Name | Type | Description | Default |
---|---|---|---|
url
|
str
|
The pool url. |
required |
user
|
str
|
The pool username. |
required |
pwd
|
str
|
The pool password. |
''
|
group_id
|
str
|
The group ID to use. |
None
|
Returns:
Type | Description |
---|---|
dict
|
Confirmation of adding a pool. |
Source code in pyasic/rpc/luxminer.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/luxminer.py
asccount()
async
Get data on the number of ASC devices and their info.
Expand
Returns:
Type | Description |
---|---|
dict
|
Data on all ASC devices. |
atm()
async
Get data for Advanced Thermal Management (ATM) configuration.
Expand
Returns:
Type | Description |
---|---|
dict
|
A dictionary containing ATM configuration data: |
dict
|
|
dict
|
|
Source code in pyasic/rpc/luxminer.py
atmset(enabled=None, startup_minutes=None, post_ramp_minutes=None, temp_window=None, min_profile=None, max_profile=None, prevent_oc=None)
async
Sets the ATM configuration.
Expand
Parameters:
Name | Type | Description | Default |
---|---|---|---|
enabled
|
bool
|
Enable or disable ATM |
None
|
startup_minutes
|
int
|
Minimum time (minutes) before ATM starts at system startup |
None
|
post_ramp_minutes
|
int
|
Minimum time (minutes) before ATM starts after ramping |
None
|
temp_window
|
int
|
Number of degrees below "Hot" temperature where ATM begins adjusting profiles |
None
|
min_profile
|
str
|
Lowest profile to use (e.g. "145MHz", "+1", "-2"). Empty string for unbounded |
None
|
max_profile
|
str
|
Highest profile to use (e.g. "395MHz", "+1", "-2") |
None
|
prevent_oc
|
bool
|
When turning off ATM, revert to default profile if in higher profile |
None
|
Returns:
Type | Description |
---|---|
dict
|
A dictionary containing status information about the ATM configuration update: |
dict
|
|
Source code in pyasic/rpc/luxminer.py
check(command)
async
Check if the command command
exists in LUXMiner.
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/luxminer.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/luxminer.py
config()
async
Get some basic configuration info.
Expand
Returns:
Type | Description |
---|---|
dict
|
Miner configuration information. |
curtail()
async
Put the miner into sleep mode.
Expand
Returns:
Type | Description |
---|---|
dict
|
A confirmation of putting the miner to sleep. |
Source code in pyasic/rpc/luxminer.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/luxminer.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/luxminer.py
edevs()
async
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/luxminer.py
estats()
async
fans()
async
Get fan data.
Expand
Returns:
Type | Description |
---|---|
dict
|
Data on the fans of the miner. |
fanset(speed=None, min_fans=None, power_off_speed=None)
async
Set fan control.
Expand
Parameters:
Name | Type | Description | Default |
---|---|---|---|
speed
|
int
|
The fan speed to set. Use -1 to set automatically. |
None
|
min_fans
|
int
|
The minimum number of fans to use. Optional. |
None
|
Returns:
Type | Description |
---|---|
dict
|
A confirmation of setting fan control values. |
Source code in pyasic/rpc/luxminer.py
frequencyget(board_n, chip_n=None)
async
Get frequency data for a board and chips.
Expand
Parameters:
Name | Type | Description | Default |
---|---|---|---|
board_n
|
int
|
The board number to get frequency info from. |
required |
chip_n
|
int
|
The chip number to get frequency info from. Optional. |
None
|
Returns:
Type | Description |
---|---|
dict
|
Board and/or chip frequency values. |
Source code in pyasic/rpc/luxminer.py
frequencyset(board_n, freq)
async
Set frequency.
Expand
Parameters:
Name | Type | Description | Default |
---|---|---|---|
board_n
|
int
|
The board number to set frequency on. |
required |
freq
|
int
|
The frequency to set. |
required |
Returns:
Type | Description |
---|---|
dict
|
A confirmation of setting frequency values. |
Source code in pyasic/rpc/luxminer.py
frequencystop(board_n)
async
Stop set frequency.
Expand
Parameters:
Name | Type | Description | Default |
---|---|---|---|
board_n
|
int
|
The board number to set frequency on. |
required |
Returns:
Type | Description |
---|---|
dict
|
A confirmation of stopping frequencyset value. |
Source code in pyasic/rpc/luxminer.py
groupquota(group_n, quota)
async
Set a group's quota.
Expand
Parameters:
Name | Type | Description | Default |
---|---|---|---|
group_n
|
int
|
The group number to set quota on. |
required |
quota
|
int
|
The quota to use. |
required |
Returns:
Type | Description |
---|---|
dict
|
A confirmation of setting quota value. |
Source code in pyasic/rpc/luxminer.py
groups()
async
Get pool group data.
Expand
Returns:
Type | Description |
---|---|
dict
|
Data on the pool groups on the miner. |
healthchipget(board_n, chip_n=None)
async
Get chip health.
Expand
Parameters:
Name | Type | Description | Default |
---|---|---|---|
board_n
|
int
|
The board number to get chip health of. |
required |
chip_n
|
int
|
The chip number to get chip health of. Optional. |
None
|
Returns:
Type | Description |
---|---|
dict
|
Chip health data. |
Source code in pyasic/rpc/luxminer.py
healthchipset(board_n, chip_n=None)
async
Select the next chip to have its health checked.
Expand
Parameters:
Name | Type | Description | Default |
---|---|---|---|
board_n
|
int
|
The board number to next get chip health of. |
required |
chip_n
|
int
|
The chip number to next get chip health of. Optional. |
None
|
Returns:
Type | Description |
---|---|
dict
|
Confirmation of selecting the next health check chip. |
Source code in pyasic/rpc/luxminer.py
healthctrl()
async
Get health check config.
Expand
Returns:
Type | Description |
---|---|
dict
|
Health check config. |
healthctrlset(num_readings, amplified_factor)
async
Set health control config.
Expand
Parameters:
Name | Type | Description | Default |
---|---|---|---|
num_readings
|
int
|
The minimum number of readings for evaluation. |
required |
amplified_factor
|
float
|
Performance factor of the evaluation. |
required |
Returns:
Type | Description |
---|---|
dict
|
A confirmation of setting health control config. |
Source code in pyasic/rpc/luxminer.py
kill()
async
Forced session kill. Use logoff instead.
Expand
Returns:
Type | Description |
---|---|
dict
|
A confirmation of killing the active session. |
lcd()
async
Get a general all-in-one status summary of the miner. Always zeros on LUXMiner.
Expand
Returns:
Type | Description |
---|---|
dict
|
An all-in-one status summary of the miner. |
Source code in pyasic/rpc/luxminer.py
ledset(color, state)
async
Set led.
Expand
Parameters:
Name | Type | Description | Default |
---|---|---|---|
color
|
Literal['red']
|
The color LED to set. Can be "red". |
required |
state
|
Literal['on', 'off', 'blink']
|
The state to set the LED to. Can be "on", "off", or "blink". |
required |
Returns:
Type | Description |
---|---|
dict
|
A confirmation of setting LED. |
Source code in pyasic/rpc/luxminer.py
limits()
async
Get max and min values of config parameters.
Expand
Returns:
Type | Description |
---|---|
dict
|
Data on max and min values of config parameters. |
Source code in pyasic/rpc/luxminer.py
logoff()
async
Log off of a session.
Expand
Returns:
Type | Description |
---|---|
dict
|
Confirmation of logging off a session. |
Source code in pyasic/rpc/luxminer.py
logon()
async
Get or create a session.
Expand
Returns:
Type | Description |
---|---|
dict
|
The Session ID to be used. |
pools()
async
Get pool information.
Expand
Returns:
Type | Description |
---|---|
dict
|
Miner pool information. |
power()
async
Get the estimated power usage in watts.
Expand
Returns:
Type | Description |
---|---|
dict
|
Estimated power usage in watts. |
profiles()
async
Get the available profiles.
Expand
Returns:
Type | Description |
---|---|
dict
|
Data on available profiles. |
profileset(profile)
async
Set active profile for the system.
Expand
Parameters:
Name | Type | Description | Default |
---|---|---|---|
profile
|
str
|
The profile name to use. |
required |
Returns:
Type | Description |
---|---|
dict
|
A confirmation of setting the profile. |
Source code in pyasic/rpc/luxminer.py
reboot(board_n, delay_s=None)
async
Reboot a board.
Expand
Parameters:
Name | Type | Description | Default |
---|---|---|---|
board_n
|
int
|
The board to reboot. |
required |
delay_s
|
int
|
The number of seconds to delay until startup. If it is 0, the board will just stop. Optional. |
None
|
Returns:
Type | Description |
---|---|
dict
|
A confirmation of rebooting board_n. |
Source code in pyasic/rpc/luxminer.py
rebootdevice()
async
Reboot the miner.
Expand
Returns:
Type | Description |
---|---|
dict
|
A confirmation of rebooting the miner. |
removegroup(group_id)
async
Remove a pool group.
Expand
Parameters:
Name | Type | Description | Default |
---|---|---|---|
group_id
|
str
|
Group id to remove. |
required |
Returns:
Type | Description |
---|---|
dict
|
A confirmation of removing the pool group. |
Source code in pyasic/rpc/luxminer.py
removepool(pool_id)
async
Remove a pool.
Expand
Parameters:
Name | Type | Description | Default |
---|---|---|---|
pool_id
|
int
|
Pool to remove. |
required |
Returns:
Type | Description |
---|---|
dict
|
A confirmation of removing the pool. |
Source code in pyasic/rpc/luxminer.py
resetminer()
async
Restart the mining process.
Expand
Returns:
Type | Description |
---|---|
dict
|
A confirmation of restarting the mining process. |
Source code in pyasic/rpc/luxminer.py
session()
async
Get the current session.
Expand
Returns:
Type | Description |
---|---|
dict
|
Data on the current session. |
sleep()
async
Put the miner into sleep mode.
Expand
Returns:
Type | Description |
---|---|
dict
|
A confirmation of putting the miner to sleep. |
Source code in pyasic/rpc/luxminer.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/luxminer.py
summary()
async
Get the status summary of the miner.
Expand
Returns:
Type | Description |
---|---|
dict
|
The status summary of the miner. |
switchpool(pool_id)
async
Switch to a pool.
Expand
Parameters:
Name | Type | Description | Default |
---|---|---|---|
pool_id
|
int
|
Pool to switch to. |
required |
Returns:
Type | Description |
---|---|
dict
|
A confirmation of switching to the pool. |
Source code in pyasic/rpc/luxminer.py
tempctrl()
async
Get temperature control data.
Expand
Returns:
Type | Description |
---|---|
dict
|
Data about the temp control settings of the miner. |
tempctrlset(target=None, hot=None, dangerous=None)
async
Set temp control values.
Expand
Parameters:
Name | Type | Description | Default |
---|---|---|---|
target
|
int
|
Target temp. |
None
|
hot
|
int
|
Hot temp. |
None
|
dangerous
|
int
|
Dangerous temp. |
None
|
Returns:
Type | Description |
---|---|
dict
|
A confirmation of setting the temp control config. |
Source code in pyasic/rpc/luxminer.py
temps()
async
Get temperature data.
Expand
Returns:
Type | Description |
---|---|
dict
|
Data on the temps of the miner. |
updaterun()
async
Send the 'updaterun' command to the miner.
Returns:
Type | Description |
---|---|
dict
|
The response from the miner after sending the 'updaterun' command. |
version()
async
Get miner version info.
Expand
Returns:
Type | Description |
---|---|
dict
|
Miner version information. |
voltageget(board_n)
async
Get voltage data for a board.
Expand
Parameters:
Name | Type | Description | Default |
---|---|---|---|
board_n
|
int
|
The board number to get voltage info from. |
required |
Returns:
Type | Description |
---|---|
dict
|
Board voltage values. |
Source code in pyasic/rpc/luxminer.py
voltageset(board_n, voltage)
async
Set voltage values.
Expand
Parameters:
Name | Type | Description | Default |
---|---|---|---|
board_n
|
int
|
The board to set the voltage on. |
required |
voltage
|
float
|
The voltage to use. |
required |
Returns:
Type | Description |
---|---|
dict
|
A confirmation of setting the voltage. |
Source code in pyasic/rpc/luxminer.py
wakeup()
async
Wake the miner up from sleep mode.
Expand
Returns:
Type | Description |
---|---|
dict
|
A confirmation of waking the miner up. |