70 lines
1.8 KiB
Python
70 lines
1.8 KiB
Python
from electrumx.lib.coins import Bitcoin
|
|
from electrumx.lib import tx as lib_tx
|
|
|
|
class Palladium(Bitcoin):
|
|
NAME = "Palladium"
|
|
SHORTNAME = "PLM"
|
|
NET = "mainnet"
|
|
|
|
# === Prefix address ===
|
|
P2PKH_VERBYTE = bytes([0x00])
|
|
P2SH_VERBYTE = bytes([0x05])
|
|
WIF_BYTE = bytes([0x80])
|
|
|
|
# === bech32 prefix ===
|
|
HRP = "plm"
|
|
|
|
# === Genesis hash (Bitcoin mainnet) ===
|
|
GENESIS_HASH = "000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f"
|
|
|
|
# === Checkpoints ===
|
|
# Since we share Genesis with Bitcoin, we must clear inherited checkpoints
|
|
CHECKPOINTS = []
|
|
|
|
# === Network statistics (required by ElectrumX) ===
|
|
TX_COUNT = 457478
|
|
TX_COUNT_HEIGHT = 382404
|
|
TX_PER_BLOCK = 2
|
|
|
|
# === Default ports ===
|
|
RPC_PORT = 2332
|
|
PEER_DEFAULT_PORTS = {'t': '50001', 's': '50002'}
|
|
|
|
# === Seed peers for discovery ===
|
|
PEERS = [
|
|
'66.94.115.80 t',
|
|
'89.117.149.130 t',
|
|
'173.212.224.67 t',
|
|
'82.165.218.152 t',
|
|
]
|
|
|
|
# === Deserializer ===
|
|
DESERIALIZER = lib_tx.DeserializerSegWit
|
|
|
|
|
|
class PalladiumTestnet(Palladium):
|
|
NAME = "Palladium"
|
|
SHORTNAME = "tPLM"
|
|
NET = "testnet"
|
|
|
|
# === Testnet address prefixes ===
|
|
P2PKH_VERBYTE = bytes([0x7f]) # 127 decimal - addresses start with 't'
|
|
P2SH_VERBYTE = bytes([0x73]) # 115 decimal
|
|
WIF_BYTE = bytes([0xff]) # 255 decimal
|
|
|
|
# === Bech32 prefix for testnet ===
|
|
HRP = "tplm"
|
|
|
|
# === Genesis hash (Bitcoin testnet) ===
|
|
GENESIS_HASH = "000000000933ea01ad0ee984209779baaec3ced90fa3f408719526f8d77f4943"
|
|
|
|
# === Network statistics (required by ElectrumX) ===
|
|
TX_COUNT = 500
|
|
TX_COUNT_HEIGHT = 1
|
|
TX_PER_BLOCK = 2
|
|
|
|
# === Testnet ports ===
|
|
RPC_PORT = 12332
|
|
PEER_DEFAULT_PORTS = {'t': '60001', 's': '60002'}
|
|
|