80 lines
2.0 KiB
Python
80 lines
2.0 KiB
Python
# ------------------------------------------------------------------------------
|
|
# 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.miners.backends import M3X
|
|
from pyasic.miners.types import (
|
|
M31SV10,
|
|
M31SV20,
|
|
M31SV30,
|
|
M31SV40,
|
|
M31SV50,
|
|
M31SV60,
|
|
M31SV70,
|
|
M31SV80,
|
|
M31SV90,
|
|
M31SVE10,
|
|
M31SVE20,
|
|
M31SVE30,
|
|
)
|
|
|
|
|
|
class BTMinerM31SV10(M3X, M31SV10):
|
|
pass
|
|
|
|
|
|
class BTMinerM31SV20(M3X, M31SV20):
|
|
pass
|
|
|
|
|
|
class BTMinerM31SV30(M3X, M31SV30):
|
|
pass
|
|
|
|
|
|
class BTMinerM31SV40(M3X, M31SV40):
|
|
pass
|
|
|
|
|
|
class BTMinerM31SV50(M3X, M31SV50):
|
|
pass
|
|
|
|
|
|
class BTMinerM31SV60(M3X, M31SV60):
|
|
pass
|
|
|
|
|
|
class BTMinerM31SV70(M3X, M31SV70):
|
|
pass
|
|
|
|
|
|
class BTMinerM31SV80(M3X, M31SV80):
|
|
pass
|
|
|
|
|
|
class BTMinerM31SV90(M3X, M31SV90):
|
|
pass
|
|
|
|
|
|
class BTMinerM31SVE10(M3X, M31SVE10):
|
|
pass
|
|
|
|
|
|
class BTMinerM31SVE20(M3X, M31SVE20):
|
|
pass
|
|
|
|
|
|
class BTMinerM31SVE30(M3X, M31SVE30):
|
|
pass
|