add ZelCash coin (#631)

This commit is contained in:
TheTrunk 2018-11-04 19:35:28 +01:00 committed by Neil
parent f9e66b721f
commit d460bc3bcb
2 changed files with 32 additions and 0 deletions

View File

@ -1113,6 +1113,23 @@ class Hush(EquihashMixin, Coin):
REORG_LIMIT = 800
class ZelCash(EquihashMixin, Coin):
NAME = "ZelCash"
SHORTNAME = "ZEL"
NET = "mainnet"
P2PKH_VERBYTE = bytes.fromhex("1CB8")
P2SH_VERBYTES = [bytes.fromhex("1CBD")]
WIF_BYTE = bytes.fromhex("80")
GENESIS_HASH = ('00052461a5006c2e3b74ce48992a0869'
'5607912d5604c3eb8da25749b0900444')
DESERIALIZER = lib_tx.DeserializerZcash
TX_COUNT = 450539
TX_COUNT_HEIGHT = 167114
TX_PER_BLOCK = 3
RPC_PORT = 16124
REORG_LIMIT = 800
class Zclassic(EquihashMixin, Coin):
NAME = "Zclassic"
SHORTNAME = "ZCL"

File diff suppressed because one or more lines are too long