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

How do I find the input and output for the estimate_tx_fee() function?

I'm inconsistently getting this 'ConnectionError('Transaction broadcast failed, or Unspents were already used.')' issue on the mainnet. How do I configure my bitcoin core node to use the connect_to_node() function? I'm...

Is there a way to withdraw a transaction? Is it possible to change the hashing algorithm to SHA3_256?

Hi, We are trying to create OP_RETURN transactions for storing hashes in the blockchain. These types of transactions should not need a a destination address for the ScriptPubKey, nor should...

Traceback (most recent call last): File "C:/Users/Sasha/Desktop/Новая папка (5)/Bot/test/payment.py", line 39, in print(check_payment('123')) File "C:/Users/Sasha/Desktop/Новая папка (5)/Bot/test/payment.py", line 30, in check_payment address.send([(owner_btc_address, 0.000155, 'btc')], unspents=utxos, fee=1) File "C:\Users\Sasha\AppData\Local\Programs\Python\Python38\lib\site-packages\bit\wallet.py", line 385,...

Hi All. Error: File "C:\Program Files\Python39\lib\site-packages\bit\wallet.py", line 227, in get_balance return self.balance_as(currency) File "C:\Program Files\Python39\lib\site-packages\bit\wallet.py", line 215, in balance_as return satoshi_to_currency_cached(self.balance, currency) File "C:\Program Files\Python39\lib\site-packages\bit\network\rates.py", line 674, in satoshi_to_currency_cached Decimal(num...

I am looking at broadcasting a transaction to the blockchain that will never get confirmed because there is no bitcoin to send

I needed to sweep funds from multiple addresses I own (i.e. I have their private keys) to a single address. I did not find a way to do that from...

https://github.com/ofek/bit/issues/106 I have the same need to calculate the fee amount, or deduct the fee amount from the transfer amount. Otherwise, a bug will appear. Let's say you have 1...

Hi, when using the 'message' argument of the prepare_transaction() function I get an Exception. This might be an issue? This works: ```python from bit import PrivateKeyTestnet as Key transaction =...