bit icon indicating copy to clipboard operation
bit copied to clipboard

Bitcoin made easy.

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

Hi ofek! Your peoject use`logging.debug` directly to print debug log, if I defind a logger in my project using code ``` logger = logging.getLogger("MyLog") handler = logging.StreamHandler() handler.setFormatter(logging.Formatter("%(asctime)s|%(levelname)s|%(name)s|%(message)s")) logger.addHandler(handler) logger.setLevel(logging.DEBUG)...

Hello, Is there a way to get the status of a transaction with bit? Let's say I sent 0.001 BTC using bit. Could I check when the amount of validations?...

In the official documentation they do not address the issue of creating a multisignature in depth. For example, they only show these 2 lines of code: `tx_1 = multisig1.create_transaction([('1Archive1n2C579dMsAu3iC6tWzuQJz8dN', 190,...

My btc addres : 1GwLg3QmpcdTj3DiQB6tsLeaiRoRtoNTgS My code : `from bit import PrivateKey` `my_key = PrivateKey(wif="***")` `money=1` `wallet='1MfnucMaYJ5P81TUYTB9zzeThiHNXdBrvH` `fee=2000` `utxos = my_key.get_unspents()` `print(utxos)` `tx_hash = my_key.create_transaction([(wallet, money, 'usd')],fee=fee,unspents=utxos)` `print(tx_hash)`

Hello i am using `Key.from_hex('hexdata').address` return compressed address your python lib work fastest then any other. but what is solution for getting uncompressed as i seen all source not found...

I am quite new to this but the documentation seemed quite straightforward so I don't understand where did I mess up or what's happening here. ``` from bit import PrivateKey...

Hello everyone, i am trying to broadcast a testnet transaction using networkAPI.broadcast_tx_testnet but this method doesnt return anything, so i wanted to know if is there a way to obtain...

I was wondering if you can ever run this lib on a gpu? I tried `@cuda.jit` but has not worked unfortunately 🥲

Support for P2TR (as well as bech32m encoding/decoding) would be good to have in this library. A lot of implementation details can probably be taken from the bitcoin functional tests....

Currently Bit has all the logic to support generating (receiving) Bech32 addresses and this could be added relatively easily. The reason Bit does not yet support it is because two...