Skip to content
This repository has been archived by the owner on Aug 7, 2024. It is now read-only.

Commit

Permalink
Update: Qtum-BIP38 examples and docs
Browse files Browse the repository at this point in the history
  • Loading branch information
meherett committed Nov 1, 2023
1 parent c572fa4 commit e414f0f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ PASSPHRASE: str = "qtum123" # u"\u03D2\u0301\u0000\U00010400\U0001F4A9"
NETWORK: Literal["mainnet", "testnet"] = "mainnet"
# To show detail
DETAIL: bool = True
# Wallet important format's
# Wallet Important Format's
WIFs: List[str] = [
private_key_to_wif(private_key=PRIVATE_KEY, wif_type="wif"), # No compression
private_key_to_wif(private_key=PRIVATE_KEY, wif_type="wif-compressed") # Compression
private_key_to_wif(private_key=PRIVATE_KEY, wif_type="wif", network=NETWORK), # No compression
private_key_to_wif(private_key=PRIVATE_KEY, wif_type="wif-compressed", network=NETWORK) # Compression
]

for WIF in WIFs:
Expand Down
2 changes: 1 addition & 1 deletion examples/no-ec-multiply, compression.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

# Passphrase / password
PASSPHRASE: str = "qtum123"
# Wallet important format
# Wallet Important Format
WIF: str = "L44B5gGEpqEDRS9vVPz7QT35jcBG2r3CZwSwQ4fCewXAhAhqGVpP"
# Network type
NETWORK: Literal["mainnet", "testnet"] = "mainnet"
Expand Down
4 changes: 2 additions & 2 deletions examples/no-ec-multiply, no-compression.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@

# Passphrase / password
PASSPHRASE: str = "qtum123"
# Wallet important format
WIF: str = "5KN7MzqK5wt2TP1fQCYyHBtDrXdJuXbUzm4A9rKAteGu3Qi5CVR"
# Wallet Important Format
WIF: str = "938jwjergAxARSWx2YSt9nSBWBz24h8gLhv7EUfgEP1wpMLg6iX"
# Network type
NETWORK: Literal["mainnet", "testnet"] = "testnet"
# To show detail
Expand Down

0 comments on commit e414f0f

Please sign in to comment.