如何使用pycoin库创建litecoin的地址?

时间:2018-04-19 05:59:44

标签: python blockchain bitcoin

我使用python脚本生成比特币的地址。如何生成Litecoin的地址。

这是我生成比特币地址的代码

import hashlib
from pycoin import ecdsa, encoding
import os
import codecs
for i in range(10):
    rand = codecs.encode(os.urandom(32), 'hex').decode()
    secret_exponent= int('0x'+rand, 0)
    print ('WIF: ' + encoding.secret_exponent_to_wif(secret_exponent, compressed=False))
    public_pair = ecdsa.public_pair_for_secret_exponent(ecdsa.secp256k1.generator_secp256k1, secret_exponent)
    hash160 = encoding.public_pair_to_hash160_sec(public_pair, compressed=True)
    print('Bitcoin address: %s' % encoding.hash160_sec_to_bitcoin_address(hash160))

1 个答案:

答案 0 :(得分:0)

此函数中包含secret_exponent_to_wif

def secret_exponent_to_wif(se, compressed):
    blob = to_bytes_32(se)
    if compressed:
        blob += b'\01'
    return BitcoinMainnet.ui.wif_for_blob(blob)

这里使用BitcoinMainnet生成比特币地址。您只需使用LitecoinMannet生成Litecoin地址。它已经存在于pycoin.coins.litecoin库中。通过更改相应的网络值,您可以生成任何加密密钥的地址