Open nandubatchu opened 5 years ago
@richardkiss I see that BCH and XCH are missing in the _NETWORK_PREFIXES variable.
I guess this part of code is not release to pypi package version 0.80. Can you validate?
Try now. I get
>>> from pycoin.symbols.xch import network
>>> network.keys.private(1).wif()
'cMahea7zqjxrtgAbB7LSGbcQUr1uX1ojuat9jZodMN87JcbXMTcA'
>>> network.keys.private(1).address()
'mrCDrCybB6J1vRfbwM5hemdJz73FwDBC8r'
>>> from pycoin.symbols.bch import network
>>> network.keys.private(1).address()
'1BgGZ9tcN4rm9KBzDn7KprQz87SZ26SAMH'
>>> network.keys.private(1).wif()
'KwDiBf89QgGbjEhKnhXJuH7LrciVrZi3qYjgd9M7rFU73sVHnoWn'
Are XCH and BCH still using base58 or have they switched to bech32?
Hi,
Thank you for making this package.
Bitcoin Cash uses a variant of bech32 called CashAddress. The specification can be found, for example, here: https://flowee.org/docs/spec/blockchain/encoding/cashaddr/
A Python implementation handling conversion between base58 and CashAddress can be found here: https://github.com/oskyk/cashaddress
Using those resources as reference, implementing CashAddress in pycoin should be fairly straightforward.
Thanks again, and looking forward towards using your package in my future projects!
@richardkiss Not working for both mainnet (BCH) and testnet (XCH).