Add Zclassic (#337)

* Add Zclassic with EquihashMixin
This commit is contained in:
Rhett Creighton 2018-01-01 18:23:30 -06:00 committed by Neil
parent 14a12e8842
commit 4dd226f9c0
2 changed files with 35 additions and 0 deletions

View File

@ -882,6 +882,22 @@ class Hush(EquihashMixin, Coin):
RPC_PORT = 8822
REORG_LIMIT = 800
class Zclassic(EquihashMixin, Coin):
NAME = "Zclassic"
SHORTNAME = "ZCL"
NET = "mainnet"
P2PKH_VERBYTE = bytes.fromhex("1CB8")
P2SH_VERBYTES = [bytes.fromhex("1CBD")]
WIF_BYTE = bytes.fromhex("80")
GENESIS_HASH = ( '0007104ccda289427919efc39dc9e4d4'
'99804b7bebc22df55f8b834301260602')
DESERIALIZER = lib_tx.DeserializerZcash
TX_COUNT = 329196
TX_COUNT_HEIGHT = 68379
TX_PER_BLOCK = 5
RPC_PORT = 8023
REORG_LIMIT = 800
class Komodo(KomodoMixin, EquihashMixin, Coin):
NAME = "Komodo"
SHORTNAME = "KMD"

File diff suppressed because one or more lines are too long