Hi, there is no need to write in Spanish i can read English without need to translate it, so if you want to speak in Spanish you can do it in PM or telegram.
Regards
It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency, since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site; Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in - your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
import hashlib
import base58
# uncompressed public key
public_key = "04ce42244bfa7731d7088ee2f20a72b0dd834a723d2b8f563bc58cfa5d5dc4911a2f8aae5c5b"
# step 1: compute SHA-256 hash of public key
sha256 = hashlib.sha256(bytes.fromhex(public_key)).digest()
# step 2: compute RIPEMD-160 hash of SHA-256 result
ripemd160 = hashlib.new("ripemd160")
ripemd160.update(sha256)
hash160 = ripemd160.digest()
# step 3: add version byte (0x00 for MainNet or 0x6f for TestNet) to hash160
version = "00"
hash160_version = version + hash160.hex()
# step 4: compute double-SHA-256 checksum of hash160_version
checksum = hashlib.sha256(hashlib.sha256(bytes.fromhex(hash160_version)).digest()).digest()
# step 5: append the first 4 bytes of the checksum to hash160_version
btc_address_hex = hash160_version + checksum.hex()[:8]
# step 6: encode the result using Base58Check encoding
btc_address = base58.b58encode(bytes.fromhex(btc_address_hex)).decode()
print("BTC public address: ", btc_address)
#66 ranges between
3b320044788A17DA0 - 3BC0ABFC3654BAE80
3475FBD690F7B3880 - 34B85C9495BA98840
30389466D233BCDE0 - 305E58789566D2EA0
2E1325EAAC24E8A40 - 2E6917C76BF8F5340
#67 would be
76650288f113CE0C0 - 778157F86CA914280
67EBF7AD21EF67100 - 69cb0874000C96B00
60020C853D2F282C0 - 60BCB0F12ACD13580
5C264BD668493ECC0 - 455DB0955BB3E3100