-
Address Prefix:
- Go to: http://lenschulwitz.com/base58
- Enter wallet address into Base 58 Decoder
- First 2 digits of HEX copy into: http://www.binaryhexconverter.com/hex-to-decimal-converter
- Decimal value = address prefix
-
Script Prefix:
- Go to wallet console
- Type
validateaddress <wallet address> - Copy
pubkey - If it says something about locked wallet go
walletpassphrase <walletpassword> <pick a number in seconds>example:walletpassphrase password 10000 - Type
decodescript <enter copied pubkey from step iii> - Take the p2sh output and decode that to HEX on the base58 website
- Then convert first 2 digits of hex. decimal value = script prefix
-
Secret Prefix:
- Go to wallet console
- Type
dumpprivkey <wallet address> - Copy the
privkey - Decode the privkey to HEX on the base 58 website
- Then convert first 2 digits of hex. decimal value = secret prefix
-
RPC Port:
- Search wallet’s GitHub, official webpage, bitcointalk, general google searches
- Try some of the website sources listed below on the next page
- Under the wallets Debug or Tool menu, click the Peers tab. The IP address port is sometimes 1 below what is listed. This only works sometimes.
- From command line (windows:
netstat -an/ linux:netstat -anp) That should show open ports (on windows it wont’ show the process, but there is a GUI that does)
Thanks @86b (Slack) for figuring this method out