bitcoinlib icon indicating copy to clipboard operation
bitcoinlib copied to clipboard

Bitcoin and other Cryptocurrencies Library for Python. Includes a fully functional wallet, Mnemonic key generation and management and connection with various service providers to receive and send blo...

Results 49 bitcoinlib issues
Sort by recently updated
recently updated
newest added

I know you can store the wallet keys in a separate database but where is the actual wallet stored ? What size are the wallets created if they are created?...

https://github.com/1200wd/bitcoinlib/blob/777e06695cd9d963796afa5ab890e58d140de784/bitcoinlib/wallets.py#L2568-L2582 (function `balance_update_from_serviceprovider`) When balance is zero this if body is not executed and _balances object is not updated. This happens for example after `sweep`-ing all funds to another wallet,...

needs_testing

Can this lib read/open legacy `wallet.dat` files created by `bitcoin-core`? It seems that all wallets created and later opened, are saved in the ` ~/.bitcoinlib/database/` proprietary format.

Hello - I'm trying to import btc transactions into a wallet using a connection to my electrumx server. The relevant code I'm using is straight forward: ``` w = Wallet(1)...

I'm trying to use `bitcoinlib` to sign a multisig transaction formatted in a .psbt file (output from the Specter desktop app), but it looks like you don't have this feature...

feature_request

For projects that depend on the libraries that bitconlib uses, it is very possible that there are conflicting dependencies causing the project to fail to install. With pip install usually...

despite having unspent funds, confirmed from service providers i still get error saying i don't have enough unspent output for transaction. What could i be doing wrongly.

needs_testing

Hi, Is there any plan to protect privatekeys (and maybe wif) Columns in Databases? There is a good way [SymmectricClientEncyprtion](https://github.com/sqlalchemy/sqlalchemy/wiki/SymmetricEncryptionClientSide) for postgresql. I think we can add this feature by...

enhancement

after running 'python setup.py test' I get this error: Locale is currently set to 'ANSI_X3.4-1968'. This library needs the locale set to UTF-8 to function properly. When I manually call...

Add support for replace-by-fee according to [BIP 125](https://github.com/bitcoin/bips/blob/master/bip-0125.mediawiki9). Transaction need to be flagged as RBF transactions, if there should be a possibility to RBF them later.

enhancement