Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions electrumx/lib/coins.py
Original file line number Diff line number Diff line change
Expand Up @@ -4074,3 +4074,23 @@ class Lbry(Coin):
TX_PER_BLOCK = 43
RPC_PORT = 9245
REORG_LIMIT = 5000


class LNC(Coin):
NAME = "LightningCash"
SHORTNAME = "LNC"
NET = "mainnet"
XPUB_VERBYTES = bytes.fromhex("0488b21e")
XPRV_VERBYTES = bytes.fromhex("0488ade4")
P2PKH_VERBYTE = bytes.fromhex("1c")
P2SH_VERBYTES = [bytes.fromhex("05")]
WIF_BYTE = bytes.fromhex("b0")
GENESIS_HASH = ('a1d8b56639865905eef9205e148bad0c'
'6a4b2026b1753c76558bb735c3e9735c')
DESERIALIZER = lib_tx.DeserializerSegWit
TX_COUNT = 1
TX_COUNT_HEIGHT = 1
TX_PER_BLOCK = 1
RPC_PORT = 9110
REORG_LIMIT = 5000
PEERS = []