Skip to content

Commit

Permalink
constants: add BLK values
Browse files Browse the repository at this point in the history
  • Loading branch information
BlackcoinDev committed Sep 26, 2024
1 parent 0cdb53d commit de2e2cb
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions blackcoinutils/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@

NETWORK_WIF_PREFIXES = {
"mainnet": b"\x99",
"signet": b"\xef",
"testnet": b"\xef",
"regtest": b"\xef",
"signet": b"\x64",
"testnet": b"\x64",
"regtest": b"\x64",
}

NETWORK_P2PKH_PREFIXES = {
Expand All @@ -40,7 +40,7 @@

NETWORK_SEGWIT_PREFIXES = {
"mainnet": "blk",
"signet": "tb",
"signet": "tblk",
"testnet": "tblk",
"regtest": "blrt",
}
Expand Down Expand Up @@ -93,8 +93,8 @@
HEADER_SIZE = 80

BLOCK_MAGIC_NUMBER = {
"f9beb4d9" : "mainnet",
"0b110907" : "testnet",
"fabfb5da" : "regtest",
"70352205" : "mainnet",
"cdf2c0ef" : "testnet",
"70352206" : "regtest",
"0a03cf40" : "signet"
}

0 comments on commit de2e2cb

Please sign in to comment.