bit icon indicating copy to clipboard operation
bit copied to clipboard

Bitcoin made easy.

Results 67 bit issues
Sort by recently updated
recently updated
newest added

from bit import Key from bit.format import verify_sig import base64 from hashlib import sha256 # Use WIF format private key wif_private_key = 'Kxb19KFrrqrmT79bvG4tnKibVcgppavcvjkP1iBGGjnH787H39QG' key = Key(wif_private_key) # Message to be...

Tried sending bitcoin from a 3 signature multisig wallet but I'm almost lost on my steps. multisig = MultiSigTestnet(sig_x, {sig_x.public_key, sig_y.public_key, sig_z.public_key}, 3) Can someone help with how to go...

This pull request adds type hints to various Bech32 encoding/decoding functions in the provided codebase. These changes aim to improve code readability and make it easier for developers to understand...

Hi ofek, I'm getting the following error when trying to use the bit library in Termux: `Traceback (most recent call last): File "", line 1, in File "/data/data/com.termux/files/usr/lib/python3.12/site-packages/bit/__init__.py", line 1,...

Hi ! first at all, thank you for your work, it is very appreciated :)) It seems there is movement on testnet (testnet3 => testnet4) because the package didn't work...

newbie here. I have a WIFs from a testnet4 wallet (sparrow) that has sats in it, but the balance and key.get_balance() is always zero. looking at the code, I see...

JSON-RPC calls return an HTTP 204 (No Content) response with an empty body when the "id" field is not present in the request: ```bash bit.exceptions.BitcoinNodeException: RPC connection failure: 204 No...