pull down to refresh
@bren
stacking since: #768425longest cowboy streak: 1
30 sats \ 0 replies \ @bren 16h \ on: I Exposed Crypto Scams at an Ordinals Conf in Hong Kong bitcoin
Great coverage!
I think it is kind of cool some of us simple stackers are famous now. Its cool hearing @k00b casually talk about @DarthCoin and others that have been posting here for a couple years. Great job everyone.
By the way, for future reference, the only way I could get Armory running was running Debian and install Wine, and run the Armory windows version that way.
Well I just learned the private key is not derived from HASH160, instead the HASH160 is derived from the public key.
import hashlib def hash160_to_base58(hash160): # Step 1: Add version byte (0x00 for mainnet) versioned_payload = b'\x00' + hash160 # Step 2: Calculate checksum checksum = hashlib.sha256(hashlib.sha256(versioned_payload).digest()).digest()[:4] # Step 3: Concatenate versioned payload and checksum binary_address = versioned_payload + checksum # Step 4: Convert to Base58 base58_alphabet = '123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz' num = int.from_bytes(binary_address, 'big') base58 = '' while num > 0: num, remainder = divmod(num, 58) base58 = base58_alphabet[remainder] + base58 # Add leading '1's for each leading 0 byte in the binary address for byte in binary_address: if byte == 0: base58 = '1' + base58 else: break return base58 hash160 = bytes.fromhex('2cf75d92e22635a46e181b1c7b355252dd08fa28') # Replace with your actual HASH160 base58_address = hash160_to_base58(hash160) print(base58_address)
I got Armory running thanks. Do you know how I can convert the backup format I saved as Hash160 to PrivBase58, or restore the wallet from my Hash160 backup. @DarthCoin @jimmysong
All I have is the format the backup key was stored in Armory's style, so I need that to get the private key for another wallet.
I've tried old versions of Debian and within a python virtual environment, but keep getting dependency errors.
Do you know which apps and programs are most commonly used with Bolt12 on your platform, or that you would recommend. Do you have to run your own node to use it?
100 sats \ 1 reply \ @bren 20 Dec 2024 \ parent \ on: What does this evoke in you? #2 mostly_harmless
The pendulum always points to the center of the Earth.