repo
stringlengths
7
90
file_url
stringlengths
81
315
file_path
stringlengths
4
228
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 14:38:15
2026-01-05 02:33:18
truncated
bool
2 classes
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/iceriver/__init__.py
pyasic/miners/device/models/iceriver/__init__.py
from .ALX import * from .KSX import * # Define what gets exported with wildcard to exclude KS3 and KS5 # which conflict with antminer models __all__ = [ # From ALX "AL3", # From KSX "KS0", "KS1", "KS2", "KS3L", "KS3M", "KS5L", "KS5M", # Note: KS3 and KS5 are excluded to avoid conflicts with antminer ]
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/iceriver/ALX/AL3.py
pyasic/miners/device/models/iceriver/ALX/AL3.py
# ------------------------------------------------------------------------------ # Copyright 2024 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import IceRiverMake class AL3(IceRiverMake): raw_model = MinerModel.ICERIVER.AL3 expected_chips = 156 expected_fans = 4 expected_hashboards = 3 algo = MinerAlgo.BLOCKFLOW
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/iceriver/ALX/__init__.py
pyasic/miners/device/models/iceriver/ALX/__init__.py
from .AL3 import AL3
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/iceriver/KSX/KS2.py
pyasic/miners/device/models/iceriver/KSX/KS2.py
# ------------------------------------------------------------------------------ # Copyright 2024 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import IceRiverMake class KS2(IceRiverMake): raw_model = MinerModel.ICERIVER.KS2 expected_fans = 4 expected_chips = 18 expected_hashboards = 3 algo = MinerAlgo.KHEAVYHASH
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/iceriver/KSX/KS3.py
pyasic/miners/device/models/iceriver/KSX/KS3.py
# ------------------------------------------------------------------------------ # Copyright 2024 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import IceRiverMake class KS3(IceRiverMake): raw_model = MinerModel.ICERIVER.KS3 expected_fans = 4 expected_hashboards = 3 algo = MinerAlgo.KHEAVYHASH class KS3L(IceRiverMake): raw_model = MinerModel.ICERIVER.KS3L expected_fans = 4 expected_hashboards = 3 algo = MinerAlgo.KHEAVYHASH class KS3M(IceRiverMake): raw_model = MinerModel.ICERIVER.KS3M expected_fans = 4 expected_chips = 18 expected_hashboards = 3 algo = MinerAlgo.KHEAVYHASH
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/iceriver/KSX/KS0.py
pyasic/miners/device/models/iceriver/KSX/KS0.py
# ------------------------------------------------------------------------------ # Copyright 2024 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import IceRiverMake class KS0(IceRiverMake): raw_model = MinerModel.ICERIVER.KS0 expected_fans = 0 expected_hashboards = 3 algo = MinerAlgo.KHEAVYHASH
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/iceriver/KSX/KS1.py
pyasic/miners/device/models/iceriver/KSX/KS1.py
# ------------------------------------------------------------------------------ # Copyright 2024 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import IceRiverMake class KS1(IceRiverMake): raw_model = MinerModel.ICERIVER.KS1 expected_fans = 4 expected_hashboards = 3 algo = MinerAlgo.KHEAVYHASH
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/iceriver/KSX/__init__.py
pyasic/miners/device/models/iceriver/KSX/__init__.py
from .KS0 import KS0 from .KS1 import KS1 from .KS2 import KS2 from .KS3 import KS3, KS3L, KS3M from .KS5 import KS5, KS5L, KS5M
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/iceriver/KSX/KS5.py
pyasic/miners/device/models/iceriver/KSX/KS5.py
# ------------------------------------------------------------------------------ # Copyright 2024 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import IceRiverMake class KS5(IceRiverMake): raw_model = MinerModel.ICERIVER.KS5 expected_fans = 4 expected_chips = 92 expected_hashboards = 3 algo = MinerAlgo.KHEAVYHASH class KS5L(IceRiverMake): raw_model = MinerModel.ICERIVER.KS5L expected_fans = 4 expected_chips = 18 expected_hashboards = 3 algo = MinerAlgo.KHEAVYHASH class KS5M(IceRiverMake): raw_model = MinerModel.ICERIVER.KS5M expected_fans = 4 expected_chips = 18 expected_hashboards = 3 algo = MinerAlgo.KHEAVYHASH
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/epic/__init__.py
pyasic/miners/device/models/epic/__init__.py
from .blockminer import *
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/epic/blockminer/blockminer.py
pyasic/miners/device/models/epic/blockminer/blockminer.py
from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import ePICMake class BlockMiner520i(ePICMake): raw_model = MinerModel.EPIC.BM520i expected_chips = 124 expected_fans = 4 expected_hashboards = 3 algo = MinerAlgo.SHA256 class BlockMiner720i(ePICMake): raw_model = MinerModel.EPIC.BM720i expected_chips = 180 expected_fans = 4 expected_hashboards = 3 algo = MinerAlgo.SHA256 class BlockMinerELITE1(ePICMake): raw_model = MinerModel.EPIC.eLITE1 expected_chips = 105 expected_fans = 4 expected_hashboards = 3 algo = MinerAlgo.SCRYPT
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/epic/blockminer/__init__.py
pyasic/miners/device/models/epic/blockminer/__init__.py
from .blockminer import *
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/antminer/__init__.py
pyasic/miners/device/models/antminer/__init__.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from .X3 import * from .X5 import * from .X7 import * from .X9 import * from .X15 import * from .X17 import * from .X19 import * from .X21 import *
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/antminer/X9/L9.py
pyasic/miners/device/models/antminer/X9/L9.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import AntMinerMake class L9(AntMinerMake): raw_model = MinerModel.ANTMINER.L9 expected_chips = 110 expected_hashboards = 3 expected_fans = 4 algo = MinerAlgo.SCRYPT
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/antminer/X9/E9.py
pyasic/miners/device/models/antminer/X9/E9.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import AntMinerMake class E9Pro(AntMinerMake): raw_model = MinerModel.ANTMINER.E9Pro expected_chips = 8 expected_hashboards = 2 expected_fans = 4 algo = MinerAlgo.ETHASH
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/antminer/X9/S9.py
pyasic/miners/device/models/antminer/X9/S9.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import AntMinerMake class S9(AntMinerMake): raw_model = MinerModel.ANTMINER.S9 expected_chips = 63 expected_hashboards = 3 expected_fans = 2 algo = MinerAlgo.SHA256 class S9i(AntMinerMake): raw_model = MinerModel.ANTMINER.S9i expected_chips = 63 expected_hashboards = 3 expected_fans = 2 algo = MinerAlgo.SHA256 class S9j(AntMinerMake): raw_model = MinerModel.ANTMINER.S9j expected_chips = 63 expected_hashboards = 3 expected_fans = 2 algo = MinerAlgo.SHA256
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/antminer/X9/T9.py
pyasic/miners/device/models/antminer/X9/T9.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import AntMinerMake class T9(AntMinerMake): raw_model = MinerModel.ANTMINER.T9 expected_chips = 54 expected_hashboards = 3 expected_fans = 2 algo = MinerAlgo.SHA256
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/antminer/X9/__init__.py
pyasic/miners/device/models/antminer/X9/__init__.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from .D9 import D9 from .E9 import E9Pro from .L9 import L9 from .S9 import S9, S9i, S9j from .T9 import T9
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/antminer/X9/D9.py
pyasic/miners/device/models/antminer/X9/D9.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import AntMinerMake class D9(AntMinerMake): raw_model = MinerModel.ANTMINER.D9 expected_chips = 126 expected_hashboards = 3 expected_fans = 4 algo = MinerAlgo.X11
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/antminer/X17/T17.py
pyasic/miners/device/models/antminer/X17/T17.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import AntMinerMake class T17(AntMinerMake): raw_model = MinerModel.ANTMINER.T17 expected_chips = 30 expected_fans = 4 expected_hashboards = 3 algo = MinerAlgo.SHA256 class T17Plus(AntMinerMake): raw_model = MinerModel.ANTMINER.T17Plus expected_chips = 44 expected_fans = 4 expected_hashboards = 3 algo = MinerAlgo.SHA256 class T17e(AntMinerMake): raw_model = MinerModel.ANTMINER.T17e expected_chips = 78 expected_fans = 4 expected_hashboards = 3 algo = MinerAlgo.SHA256
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/antminer/X17/__init__.py
pyasic/miners/device/models/antminer/X17/__init__.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from .S17 import S17, S17e, S17Plus, S17Pro from .T17 import T17, T17e, T17Plus
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/antminer/X17/S17.py
pyasic/miners/device/models/antminer/X17/S17.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import AntMinerMake class S17(AntMinerMake): raw_model = MinerModel.ANTMINER.S17 expected_chips = 48 expected_fans = 4 expected_hashboards = 3 algo = MinerAlgo.SHA256 class S17Plus(AntMinerMake): raw_model = MinerModel.ANTMINER.S17Plus expected_chips = 65 expected_fans = 4 expected_hashboards = 3 algo = MinerAlgo.SHA256 class S17Pro(AntMinerMake): raw_model = MinerModel.ANTMINER.S17Pro expected_chips = 48 expected_fans = 4 expected_hashboards = 3 algo = MinerAlgo.SHA256 class S17e(AntMinerMake): raw_model = MinerModel.ANTMINER.S17e expected_chips = 135 expected_fans = 4 expected_hashboards = 3 algo = MinerAlgo.SHA256
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/antminer/X5/DR5.py
pyasic/miners/device/models/antminer/X5/DR5.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import AntMinerMake class DR5(AntMinerMake): raw_model = MinerModel.ANTMINER.DR5 expected_chips = 72 expected_fans = 2 expected_hashboards = 3 algo = MinerAlgo.BLAKE256
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/antminer/X5/__init__.py
pyasic/miners/device/models/antminer/X5/__init__.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from .DR5 import DR5 from .KS5 import KS5, KS5Pro
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/antminer/X5/KS5.py
pyasic/miners/device/models/antminer/X5/KS5.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import AntMinerMake class KS5(AntMinerMake): raw_model = MinerModel.ANTMINER.KS5 expected_chips = 92 expected_hashboards = 3 expected_fans = 4 algo = MinerAlgo.KHEAVYHASH class KS5Pro(AntMinerMake): raw_model = MinerModel.ANTMINER.KS5 expected_chips = 92 expected_hashboards = 3 expected_fans = 4 algo = MinerAlgo.KHEAVYHASH
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/antminer/X19/S19.py
pyasic/miners/device/models/antminer/X19/S19.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel, MinerModelType from pyasic.miners.device.makes import AntMinerMake class S19(AntMinerMake): raw_model = MinerModel.ANTMINER.S19 expected_chips = 76 expected_fans = 4 expected_hashboards = 3 algo = MinerAlgo.SHA256 class S19NoPIC(AntMinerMake): raw_model = MinerModel.ANTMINER.S19NoPIC expected_chips = 88 expected_fans = 4 expected_hashboards = 3 algo = MinerAlgo.SHA256 class S19Pro(AntMinerMake): raw_model = MinerModel.ANTMINER.S19Pro expected_chips = 114 expected_fans = 4 expected_hashboards = 3 algo = MinerAlgo.SHA256 class S19i(AntMinerMake): raw_model = MinerModel.ANTMINER.S19i expected_chips = 80 expected_fans = 4 expected_hashboards = 3 algo = MinerAlgo.SHA256 class S19Plus(AntMinerMake): raw_model = MinerModel.ANTMINER.S19Plus expected_chips = 80 expected_fans = 4 expected_hashboards = 3 algo = MinerAlgo.SHA256 class S19ProPlus(AntMinerMake): raw_model = MinerModel.ANTMINER.S19ProPlus expected_chips = 120 expected_fans = 4 expected_hashboards = 3 algo = MinerAlgo.SHA256 class S19XP(AntMinerMake): raw_model = MinerModel.ANTMINER.S19XP expected_chips = 110 expected_fans = 4 expected_hashboards = 3 algo = MinerAlgo.SHA256 class S19a(AntMinerMake): raw_model = MinerModel.ANTMINER.S19a expected_chips = 72 expected_fans = 4 expected_hashboards = 3 algo = MinerAlgo.SHA256 class S19aPro(AntMinerMake): raw_model = MinerModel.ANTMINER.S19aPro expected_chips = 100 expected_fans = 4 expected_hashboards = 3 algo = MinerAlgo.SHA256 class S19j(AntMinerMake): raw_model = MinerModel.ANTMINER.S19j expected_chips = 114 expected_fans = 4 expected_hashboards = 3 algo = MinerAlgo.SHA256 class S19jNoPIC(AntMinerMake): raw_model = MinerModel.ANTMINER.S19jNoPIC expected_chips = 88 expected_fans = 4 expected_hashboards = 3 algo = MinerAlgo.SHA256 class S19jPro(AntMinerMake): raw_model: MinerModelType = MinerModel.ANTMINER.S19jPro expected_chips = 126 expected_fans = 4 expected_hashboards = 3 algo = MinerAlgo.SHA256 class S19jPlus(AntMinerMake): raw_model = MinerModel.ANTMINER.S19jPlus expected_chips = 108 expected_fans = 4 expected_hashboards = 3 algo = MinerAlgo.SHA256 class S19jProNoPIC(AntMinerMake): raw_model = MinerModel.ANTMINER.S19jProNoPIC expected_chips = 126 expected_fans = 4 expected_hashboards = 3 algo = MinerAlgo.SHA256 class S19jProPlus(AntMinerMake): raw_model = MinerModel.ANTMINER.S19jProPlus expected_chips = 120 expected_fans = 4 expected_hashboards = 3 algo = MinerAlgo.SHA256 class S19jProPlusNoPIC(AntMinerMake): raw_model = MinerModel.ANTMINER.S19jProPlusNoPIC expected_chips = 120 expected_fans = 4 expected_hashboards = 3 algo = MinerAlgo.SHA256 class S19kPro(AntMinerMake): raw_model: MinerModelType = MinerModel.ANTMINER.S19kPro expected_chips = 77 expected_fans = 4 expected_hashboards = 3 algo = MinerAlgo.SHA256 class S19kProNoPIC(AntMinerMake): raw_model = MinerModel.ANTMINER.S19kProNoPIC expected_chips = 77 expected_fans = 4 expected_hashboards = 3 algo = MinerAlgo.SHA256 class S19L(AntMinerMake): raw_model = MinerModel.ANTMINER.S19L expected_chips = 76 expected_fans = 4 expected_hashboards = 3 algo = MinerAlgo.SHA256 class S19Hydro(AntMinerMake): raw_model = MinerModel.ANTMINER.S19Hydro expected_chips = 104 expected_hashboards = 4 expected_fans = 0 algo = MinerAlgo.SHA256 class S19ProHydro(AntMinerMake): raw_model = MinerModel.ANTMINER.S19ProHydro expected_chips = 180 expected_hashboards = 4 expected_fans = 0 algo = MinerAlgo.SHA256 class S19ProPlusHydro(AntMinerMake): raw_model = MinerModel.ANTMINER.S19ProPlusHydro expected_chips = 180 expected_hashboards = 4 expected_fans = 0 algo = MinerAlgo.SHA256 class S19KPro(AntMinerMake): raw_model = MinerModel.ANTMINER.S19KPro expected_chips = 77 expected_fans = 4 expected_hashboards = 3 algo = MinerAlgo.SHA256 class S19ProA(AntMinerMake): raw_model = MinerModel.ANTMINER.S19ProA expected_chips = 114 expected_fans = 4 expected_hashboards = 3 algo = MinerAlgo.SHA256 class S19jXP(AntMinerMake): raw_model = MinerModel.ANTMINER.S19jXP expected_chips = 110 expected_fans = 4 expected_hashboards = 3 algo = MinerAlgo.SHA256 class S19XPHydro(AntMinerMake): raw_model = MinerModel.ANTMINER.S19XPHydro expected_chips = 204 expected_fans = 0 expected_hashboards = 3 algo = MinerAlgo.SHA256 class S19XPPlus(AntMinerMake): raw_model = MinerModel.ANTMINER.S19XPPlus expected_chips = 108 expected_fans = 4 expected_hashboards = 3 algo = MinerAlgo.SHA256
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/antminer/X19/__init__.py
pyasic/miners/device/models/antminer/X19/__init__.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from .S19 import ( S19, S19L, S19XP, S19a, S19aPro, S19Hydro, S19i, S19j, S19jNoPIC, S19jPlus, S19jPro, S19jProNoPIC, S19jProPlus, S19jProPlusNoPIC, S19jXP, S19KPro, S19kPro, S19kProNoPIC, S19NoPIC, S19Plus, S19Pro, S19ProA, S19ProHydro, S19ProPlus, S19ProPlusHydro, S19XPHydro, S19XPPlus, ) from .T19 import T19
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/antminer/X19/T19.py
pyasic/miners/device/models/antminer/X19/T19.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import AntMinerMake class T19(AntMinerMake): raw_model = MinerModel.ANTMINER.T19 expected_chips = 76 expected_fans = 4 expected_hashboards = 3 algo = MinerAlgo.SHA256
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/antminer/X7/L7.py
pyasic/miners/device/models/antminer/X7/L7.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import AntMinerMake class L7(AntMinerMake): raw_model = MinerModel.ANTMINER.L7 expected_chips = 120 expected_fans = 4 expected_hashboards = 3 algo = MinerAlgo.SCRYPT
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/antminer/X7/K7.py
pyasic/miners/device/models/antminer/X7/K7.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import AntMinerMake class K7(AntMinerMake): raw_model = MinerModel.ANTMINER.K7 expected_chips = 92 expected_fans = 2 expected_hashboards = 3 algo = MinerAlgo.EAGLESONG
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/antminer/X7/D7.py
pyasic/miners/device/models/antminer/X7/D7.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import AntMinerMake class D7(AntMinerMake): raw_model = MinerModel.ANTMINER.D7 expected_fans = 4 expected_chips = 70 expected_hashboards = 3 algo = MinerAlgo.X11
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/antminer/X7/__init__.py
pyasic/miners/device/models/antminer/X7/__init__.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from .D7 import D7 from .K7 import K7 from .L7 import L7
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/antminer/X21/S21.py
pyasic/miners/device/models/antminer/X21/S21.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import AntMinerMake class S21(AntMinerMake): raw_model = MinerModel.ANTMINER.S21 expected_chips = 108 expected_fans = 4 expected_hashboards = 3 algo = MinerAlgo.SHA256 class S21Plus(AntMinerMake): raw_model = MinerModel.ANTMINER.S21Plus expected_chips = 55 expected_fans = 4 expected_hashboards = 3 algo = MinerAlgo.SHA256 class S21PlusHydro(AntMinerMake): raw_model = MinerModel.ANTMINER.S21PlusHydro expected_chips = 95 expected_fans = 0 expected_hashboards = 3 algo = MinerAlgo.SHA256 class S21Pro(AntMinerMake): raw_model = MinerModel.ANTMINER.S21Pro expected_chips = 65 expected_fans = 4 expected_hashboards = 3 algo = MinerAlgo.SHA256 class S21Hydro(AntMinerMake): raw_model = MinerModel.ANTMINER.S21Hydro expected_chips = 216 expected_hashboards = 3 expected_fans = 0 algo = MinerAlgo.SHA256 class S21XP(AntMinerMake): raw_model = MinerModel.ANTMINER.S21XP expected_chips = 91 expected_hashboards = 3 expected_fans = 4 algo = MinerAlgo.SHA256
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/antminer/X21/T21.py
pyasic/miners/device/models/antminer/X21/T21.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import AntMinerMake class T21(AntMinerMake): raw_model = MinerModel.ANTMINER.T21 expected_chips = 108 expected_fans = 4 expected_hashboards = 3 algo = MinerAlgo.SHA256
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/antminer/X21/__init__.py
pyasic/miners/device/models/antminer/X21/__init__.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from .S21 import S21, S21XP, S21Hydro, S21Plus, S21PlusHydro, S21Pro from .T21 import T21
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/antminer/X15/Z15.py
pyasic/miners/device/models/antminer/X15/Z15.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import AntMinerMake class Z15(AntMinerMake): raw_model = MinerModel.ANTMINER.Z15 expected_chips = 3 expected_hashboards = 3 expected_fans = 2 algo = MinerAlgo.EQUIHASH class Z15Pro(AntMinerMake): raw_model = MinerModel.ANTMINER.Z15Pro expected_chips = 6 expected_hashboards = 3 expected_fans = 2 algo = MinerAlgo.EQUIHASH
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/antminer/X15/__init__.py
pyasic/miners/device/models/antminer/X15/__init__.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from .Z15 import Z15, Z15Pro
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/antminer/X3/D3.py
pyasic/miners/device/models/antminer/X3/D3.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import AntMinerMake class D3(AntMinerMake): raw_model = MinerModel.ANTMINER.D3 expected_chips = 60 expected_hashboards = 3 expected_fans = 4 algo = MinerAlgo.X11
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/antminer/X3/KA3.py
pyasic/miners/device/models/antminer/X3/KA3.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import AntMinerMake class KA3(AntMinerMake): raw_model = MinerModel.ANTMINER.KA3 expected_chips = 92 expected_hashboards = 3 expected_fans = 4 algo = MinerAlgo.KADENA
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/antminer/X3/L3.py
pyasic/miners/device/models/antminer/X3/L3.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import AntMinerMake class L3Plus(AntMinerMake): raw_model = MinerModel.ANTMINER.L3Plus expected_chips = 72 expected_hashboards = 4 expected_fans = 2 algo = MinerAlgo.SCRYPT
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/antminer/X3/KS3.py
pyasic/miners/device/models/antminer/X3/KS3.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import AntMinerMake class KS3(AntMinerMake): raw_model = MinerModel.ANTMINER.KS3 expected_chips = 92 expected_fans = 2 expected_hashboards = 3 algo = MinerAlgo.KHEAVYHASH
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/antminer/X3/__init__.py
pyasic/miners/device/models/antminer/X3/__init__.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from .D3 import D3 from .HS3 import HS3 from .KA3 import KA3 from .KS3 import KS3 from .L3 import L3Plus
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/antminer/X3/HS3.py
pyasic/miners/device/models/antminer/X3/HS3.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import AntMinerMake class HS3(AntMinerMake): raw_model = MinerModel.ANTMINER.HS3 expected_chips = 92 expected_hashboards = 3 expected_fans = 4 algo = MinerAlgo.HANDSHAKE
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/luckyminer/__init__.py
pyasic/miners/device/models/luckyminer/__init__.py
from .LV import *
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/luckyminer/LV/LV07.py
pyasic/miners/device/models/luckyminer/LV/LV07.py
from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import LuckyMinerMake class LV07(LuckyMinerMake): raw_model = MinerModel.LUCKYMINER.LV07 expected_hashboards = 1 expected_chips = 1 expected_fans = 1 algo = MinerAlgo.SHA256
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/luckyminer/LV/LV08.py
pyasic/miners/device/models/luckyminer/LV/LV08.py
from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import LuckyMinerMake class LV08(LuckyMinerMake): raw_model = MinerModel.LUCKYMINER.LV08 expected_hashboards = 1 expected_chips = 1 expected_fans = 1 algo = MinerAlgo.SHA256
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/luckyminer/LV/__init__.py
pyasic/miners/device/models/luckyminer/LV/__init__.py
from .LV07 import LV07 from .LV08 import LV08
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/auradine/__init__.py
pyasic/miners/device/models/auradine/__init__.py
from .AD import * from .AI import * from .AT import *
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/auradine/AD/AD3.py
pyasic/miners/device/models/auradine/AD/AD3.py
from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import AuradineMake class AuradineAD3500(AuradineMake): raw_model = MinerModel.AURADINE.AD3500 expected_fans = 0 expected_hashboards = 3 algo = MinerAlgo.SHA256
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/auradine/AD/AD2.py
pyasic/miners/device/models/auradine/AD/AD2.py
from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import AuradineMake class AuradineAD2500(AuradineMake): raw_model = MinerModel.AURADINE.AD2500 expected_fans = 0 expected_hashboards = 3 algo = MinerAlgo.SHA256
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/auradine/AD/__init__.py
pyasic/miners/device/models/auradine/AD/__init__.py
from .AD2 import AuradineAD2500 from .AD3 import AuradineAD3500
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/auradine/AT/AT2.py
pyasic/miners/device/models/auradine/AT/AT2.py
from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import AuradineMake class AuradineAT2860(AuradineMake): raw_model = MinerModel.AURADINE.AT2860 expected_fans = 4 expected_hashboards = 3 algo = MinerAlgo.SHA256 class AuradineAT2880(AuradineMake): raw_model = MinerModel.AURADINE.AT2880 expected_fans = 4 expected_hashboards = 3 algo = MinerAlgo.SHA256
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/auradine/AT/AT1.py
pyasic/miners/device/models/auradine/AT/AT1.py
from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import AuradineMake class AuradineAT1500(AuradineMake): raw_model = MinerModel.AURADINE.AT1500 expected_chips = 132 expected_fans = 4 expected_hashboards = 3 algo = MinerAlgo.SHA256
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/auradine/AT/__init__.py
pyasic/miners/device/models/auradine/AT/__init__.py
from .AT1 import AuradineAT1500 from .AT2 import AuradineAT2860, AuradineAT2880
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/auradine/AI/__init__.py
pyasic/miners/device/models/auradine/AI/__init__.py
from .AI2 import AuradineAI2500 from .AI3 import AuradineAI3680
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/auradine/AI/AI3.py
pyasic/miners/device/models/auradine/AI/AI3.py
from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import AuradineMake class AuradineAI3680(AuradineMake): raw_model = MinerModel.AURADINE.AI3680 expected_fans = 0 expected_hashboards = 3 algo = MinerAlgo.SHA256
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/auradine/AI/AI2.py
pyasic/miners/device/models/auradine/AI/AI2.py
from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import AuradineMake class AuradineAI2500(AuradineMake): raw_model = MinerModel.AURADINE.AI2500 expected_fans = 0 expected_hashboards = 3 algo = MinerAlgo.SHA256
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/volcminer/__init__.py
pyasic/miners/device/models/volcminer/__init__.py
from .DX import *
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/volcminer/DX/D1.py
pyasic/miners/device/models/volcminer/DX/D1.py
# ------------------------------------------------------------------------------ # Copyright 2024 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import VolcMinerMake class D1(VolcMinerMake): raw_model = MinerModel.VOLCMINER.D1 expected_chips = 105 expected_hashboards = 3 expected_fans = 4 algo = MinerAlgo.SCRYPT
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/volcminer/DX/__init__.py
pyasic/miners/device/models/volcminer/DX/__init__.py
from .D1 import D1
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/braiins/__init__.py
pyasic/miners/device/models/braiins/__init__.py
from .BMM import *
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/braiins/BMM/BMM1.py
pyasic/miners/device/models/braiins/BMM/BMM1.py
from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import BraiinsMake class BMM100(BraiinsMake): raw_model = MinerModel.BRAIINS.BMM100 expected_chips = 1 expected_hashboards = 1 expected_fans = 1 algo = MinerAlgo.SHA256 class BMM101(BraiinsMake): raw_model = MinerModel.BRAIINS.BMM101 expected_chips = 1 expected_hashboards = 1 expected_fans = 1 algo = MinerAlgo.SHA256
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/braiins/BMM/__init__.py
pyasic/miners/device/models/braiins/BMM/__init__.py
from .BMM1 import *
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/innosilicon/__init__.py
pyasic/miners/device/models/innosilicon/__init__.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from .A10X import * from .A11X import * from .T3X import *
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/innosilicon/A11X/A11M.py
pyasic/miners/device/models/innosilicon/A11X/A11M.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import InnosiliconMake class A11MX(InnosiliconMake): raw_model = MinerModel.INNOSILICON.A11MX expected_hashboards = 4 expected_chips = 8 expected_fans = 2 algo = MinerAlgo.ETHASH
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/innosilicon/A11X/A11.py
pyasic/miners/device/models/innosilicon/A11X/A11.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import InnosiliconMake class A11(InnosiliconMake): raw_model = MinerModel.INNOSILICON.A11 expected_hashboards = 4 expected_chips = 8 expected_fans = 2 algo = MinerAlgo.ETHASH
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/innosilicon/A11X/__init__.py
pyasic/miners/device/models/innosilicon/A11X/__init__.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from .A11 import * from .A11M import *
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/innosilicon/A10X/__init__.py
pyasic/miners/device/models/innosilicon/A10X/__init__.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from .A10X import *
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/innosilicon/A10X/A10X.py
pyasic/miners/device/models/innosilicon/A10X/A10X.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import InnosiliconMake class A10X(InnosiliconMake): raw_model = MinerModel.INNOSILICON.A10X expected_hashboards = 3 expected_fans = 2 algo = MinerAlgo.ETHASH
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/innosilicon/T3X/T3H.py
pyasic/miners/device/models/innosilicon/T3X/T3H.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import InnosiliconMake class T3HPlus(InnosiliconMake): raw_model = MinerModel.INNOSILICON.T3HPlus expected_chips = 114 expected_fans = 4 expected_hashboards = 3 algo = MinerAlgo.SHA256
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/innosilicon/T3X/__init__.py
pyasic/miners/device/models/innosilicon/T3X/__init__.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from .T3H import T3HPlus
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/avalonminer/__init__.py
pyasic/miners/device/models/avalonminer/__init__.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from .A7X import * from .A8X import * from .A9X import * from .A10X import * from .A11X import * from .A12X import * from .A15X import * from .mini import * from .nano import * from .Q import *
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/avalonminer/mini/mini3.py
pyasic/miners/device/models/avalonminer/mini/mini3.py
from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import AvalonMinerMake class AvalonMini3(AvalonMinerMake): raw_model = MinerModel.AVALONMINER.AvalonMini3 expected_hashboards = 1 expected_chips = 66 expected_fans = 1 algo = MinerAlgo.SHA256
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/avalonminer/mini/__init__.py
pyasic/miners/device/models/avalonminer/mini/__init__.py
from .mini3 import AvalonMini3
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/avalonminer/A11X/A1126.py
pyasic/miners/device/models/avalonminer/A11X/A1126.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import AvalonMinerMake class Avalon1126Pro(AvalonMinerMake): raw_model = MinerModel.AVALONMINER.Avalon1126Pro expected_chips = 120 expected_fans = 4 expected_hashboards = 3 algo = MinerAlgo.SHA256
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/avalonminer/A11X/__init__.py
pyasic/miners/device/models/avalonminer/A11X/__init__.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from .A1126 import Avalon1126Pro from .A1166 import Avalon1166Pro
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/avalonminer/A11X/A1166.py
pyasic/miners/device/models/avalonminer/A11X/A1166.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import AvalonMinerMake class Avalon1166Pro(AvalonMinerMake): raw_model = MinerModel.AVALONMINER.Avalon1166Pro expected_chips = 120 expected_fans = 4 expected_hashboards = 3 algo = MinerAlgo.SHA256
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/avalonminer/A7X/A761.py
pyasic/miners/device/models/avalonminer/A7X/A761.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import AvalonMinerMake class Avalon761(AvalonMinerMake): raw_model = MinerModel.AVALONMINER.Avalon761 expected_hashboards = 4 expected_chips = 18 expected_fans = 1 algo = MinerAlgo.SHA256
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/avalonminer/A7X/A741.py
pyasic/miners/device/models/avalonminer/A7X/A741.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import AvalonMinerMake class Avalon741(AvalonMinerMake): raw_model = MinerModel.AVALONMINER.Avalon741 expected_hashboards = 4 expected_chips = 22 expected_fans = 1 algo = MinerAlgo.SHA256
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/avalonminer/A7X/__init__.py
pyasic/miners/device/models/avalonminer/A7X/__init__.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from .A721 import Avalon721 from .A741 import Avalon741 from .A761 import Avalon761
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/avalonminer/A7X/A721.py
pyasic/miners/device/models/avalonminer/A7X/A721.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import AvalonMinerMake class Avalon721(AvalonMinerMake): raw_model = MinerModel.AVALONMINER.Avalon721 expected_hashboards = 4 expected_chips = 18 expected_fans = 1 algo = MinerAlgo.SHA256
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/avalonminer/A10X/A1066.py
pyasic/miners/device/models/avalonminer/A10X/A1066.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import AvalonMinerMake class Avalon1066(AvalonMinerMake): raw_model = MinerModel.AVALONMINER.Avalon1066 expected_chips = 114 expected_fans = 4 expected_hashboards = 3 algo = MinerAlgo.SHA256
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/avalonminer/A10X/A1047.py
pyasic/miners/device/models/avalonminer/A10X/A1047.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import AvalonMinerMake class Avalon1047(AvalonMinerMake): raw_model = MinerModel.AVALONMINER.Avalon1047 expected_chips = 80 expected_hashboards = 3 expected_fans = 2 algo = MinerAlgo.SHA256
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/avalonminer/A10X/A1026.py
pyasic/miners/device/models/avalonminer/A10X/A1026.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import AvalonMinerMake class Avalon1026(AvalonMinerMake): raw_model = MinerModel.AVALONMINER.Avalon1026 expected_chips = 80 expected_hashboards = 3 expected_fans = 2 algo = MinerAlgo.SHA256
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/avalonminer/A10X/__init__.py
pyasic/miners/device/models/avalonminer/A10X/__init__.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from .A1026 import Avalon1026 from .A1047 import Avalon1047 from .A1066 import Avalon1066
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/avalonminer/A8X/A821.py
pyasic/miners/device/models/avalonminer/A8X/A821.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import AvalonMinerMake class Avalon821(AvalonMinerMake): raw_model = MinerModel.AVALONMINER.Avalon821 expected_hashboards = 4 expected_chips = 26 expected_fans = 1 algo = MinerAlgo.SHA256
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/avalonminer/A8X/A851.py
pyasic/miners/device/models/avalonminer/A8X/A851.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import AvalonMinerMake class Avalon851(AvalonMinerMake): raw_model = MinerModel.AVALONMINER.Avalon851 expected_hashboards = 4 expected_chips = 26 expected_fans = 1 algo = MinerAlgo.SHA256
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/avalonminer/A8X/__init__.py
pyasic/miners/device/models/avalonminer/A8X/__init__.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from .A821 import Avalon821 from .A841 import Avalon841 from .A851 import Avalon851
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/avalonminer/A8X/A841.py
pyasic/miners/device/models/avalonminer/A8X/A841.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import AvalonMinerMake class Avalon841(AvalonMinerMake): raw_model = MinerModel.AVALONMINER.Avalon841 expected_hashboards = 4 expected_chips = 26 expected_fans = 1 algo = MinerAlgo.SHA256
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/avalonminer/A9X/A921.py
pyasic/miners/device/models/avalonminer/A9X/A921.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import AvalonMinerMake class Avalon921(AvalonMinerMake): raw_model = MinerModel.AVALONMINER.Avalon921 expected_hashboards = 4 expected_chips = 26 expected_fans = 1 algo = MinerAlgo.SHA256
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/avalonminer/A9X/__init__.py
pyasic/miners/device/models/avalonminer/A9X/__init__.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from .A921 import Avalon921
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/avalonminer/A12X/A1246.py
pyasic/miners/device/models/avalonminer/A12X/A1246.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import AvalonMinerMake class Avalon1246(AvalonMinerMake): raw_model = MinerModel.AVALONMINER.Avalon1246 expected_chips = 120 expected_fans = 4 expected_hashboards = 3 algo = MinerAlgo.SHA256
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/avalonminer/A12X/__init__.py
pyasic/miners/device/models/avalonminer/A12X/__init__.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from .A1246 import Avalon1246
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/avalonminer/A15X/A1566.py
pyasic/miners/device/models/avalonminer/A15X/A1566.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import AvalonMinerMake class Avalon1566(AvalonMinerMake): raw_model = MinerModel.AVALONMINER.Avalon1566 expected_chips = 160 expected_fans = 2 expected_hashboards = 3 algo = MinerAlgo.SHA256
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/avalonminer/A15X/__init__.py
pyasic/miners/device/models/avalonminer/A15X/__init__.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from .A1566 import Avalon1566
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/avalonminer/Q/Q.py
pyasic/miners/device/models/avalonminer/Q/Q.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import AvalonMinerMake class AvalonQHome(AvalonMinerMake): raw_model = MinerModel.AVALONMINER.AvalonQHome expected_chips = 160 expected_fans = 2 expected_hashboards = 1 algo = MinerAlgo.SHA256
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/avalonminer/Q/__init__.py
pyasic/miners/device/models/avalonminer/Q/__init__.py
# ------------------------------------------------------------------------------ # Copyright 2022 Upstream Data Inc - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ from .Q import AvalonQHome
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/avalonminer/nano/nano3.py
pyasic/miners/device/models/avalonminer/nano/nano3.py
from pyasic.device.algorithm import MinerAlgo from pyasic.device.models import MinerModel from pyasic.miners.device.makes import AvalonMinerMake class AvalonNano3(AvalonMinerMake): raw_model = MinerModel.AVALONMINER.AvalonNano3 expected_hashboards = 1 expected_chips = 10 expected_fans = 1 algo = MinerAlgo.SHA256 class AvalonNano3s(AvalonMinerMake): raw_model = MinerModel.AVALONMINER.AvalonNano3s expected_hashboards = 1 expected_chips = 12 expected_fans = 1 algo = MinerAlgo.SHA256
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/avalonminer/nano/__init__.py
pyasic/miners/device/models/avalonminer/nano/__init__.py
from .nano3 import AvalonNano3, AvalonNano3s
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/device/models/whatsminer/__init__.py
pyasic/miners/device/models/whatsminer/__init__.py
from .M2X import * from .M3X import * from .M5X import * from .M6X import * from .M7X import *
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false