Add Feathercoin (#336)
This commit is contained in:
parent
1bbdf5f1e9
commit
14a12e8842
19
lib/coins.py
19
lib/coins.py
@ -1217,3 +1217,22 @@ class Chips(Coin):
|
||||
REORG_LIMIT = 800
|
||||
|
||||
|
||||
class Feathercoin(Coin):
|
||||
NAME = "Feathercoin"
|
||||
SHORTNAME = "FTC"
|
||||
NET = "mainnet"
|
||||
XPUB_VERBYTES = bytes.fromhex("0488BC26")
|
||||
XPRV_VERBYTES = bytes.fromhex("0488DAEE")
|
||||
P2PKH_VERBYTE = bytes.fromhex("0E")
|
||||
P2SH_VERBYTES = [bytes.fromhex("32"), bytes.fromhex("05")]
|
||||
WIF_BYTE = bytes.fromhex("8E")
|
||||
GENESIS_HASH = ('12a765e31ffd4059bada1e25190f6e98'
|
||||
'c99d9714d334efa41a195a7e7e04bfe2')
|
||||
TX_COUNT = 3170843
|
||||
TX_COUNT_HEIGHT = 1981777
|
||||
TX_PER_BLOCK = 2
|
||||
RPC_PORT = 9337
|
||||
REORG_LIMIT = 2000
|
||||
PEERS = [
|
||||
'electrumx-ch-1.feathercoin.ch s t',
|
||||
]
|
||||
|
||||
Loading…
Reference in New Issue
Block a user