Skip to main content
The 2024 Developer Survey results are live! See the results

All Questions

Tagged with
0 votes
0 answers
76 views

Old encrypted wallet + bitcoin core

I got desperate, I tried all the instructions I could find on the Internet - nothing helps. What I have: wallet.dat from bitcoin-core encrypted from 2015 (in four different places) the password I ...
LamoSS's user avatar
  • 1
-3 votes
1 answer
678 views

Order 12 phrase for trust wallet

I have 12 phrases for trust wallet but he is not arranged in the right way. What is the solution? Code python with bip39!! How !?
user avatar
3 votes
1 answer
646 views

How to get the derivation path of a multi-wallet seed phrase?

I only have the seed phrase. When I enter the seed phrase into, for example, Exodus or Trust Wallet, I can fully recover my Bitcoin in seconds. But how to do this using Python or Node.js?
FledDev's user avatar
  • 151
0 votes
1 answer
267 views

How to get information from electrum wallet?

I have my wallet file and it is encrypted with a password. How to decrypt wallet file using code? Encryption seems similar to Fernet.
Maxim Bogush's user avatar
0 votes
1 answer
324 views

How to "Autoforward" incoming BTC using Electrum

We would like to generate multiple addresses in Electrum, receive BTC to these addresses on a daily basis and auto-forward them to another address automatically. So the flow would be this: BTC Sent ...
electrumhelp's user avatar
4 votes
1 answer
194 views

Problems with multiple wallets on RPC in bitcoin-core

I have been playing around a bit with Bitcoin Core (version 23.0), more specifically connecting to different wallets in Bitcoin Core through RPC in Python. I have found this library and tried to ...
chilixxd's user avatar
1 vote
2 answers
305 views

Can't get the bip32masterkey from mnemonic seed (Python)

I'm trying to understandand implement the functioning of Hierarchical deterministic wallets. But I can't get the bip32masterkey based on this tutorial : https://medium.com/mycrypto/the-journey-from-...
leslie's user avatar
  • 52
1 vote
1 answer
166 views

BIP 32 CKDpriv not working in my python implementation

I have been working on implementing BIP 32 in Python. This is my code for deriving normal (not hardened) child keys as part of an HD_Key class: def CKDpriv(self, index): key = bytes.fromhex(self.c)...
ana408's user avatar
  • 47
0 votes
1 answer
144 views

How many python bitcoin wallets are there? [closed]

Is there a list of legit Python Bitcoin wallets or even other cryptocurrencies? I did a Google search and got no clear results.
AirGap's user avatar
  • 25
0 votes
1 answer
2k views

How convert Bitcoin Privat Key Compression to public address?

This script gets the public address from the uncompressed private key. import ecdsa import hashlib import base58 private_key = input("privatekey: ") # ...
Jon Do's user avatar
  • 9
1 vote
1 answer
175 views

Address generator error with python

I had created a script that creates a bitcoin private key, public key and address, for checking if all works fine I create one and check the private key on https://walletgenerator.net/, and it outputs ...
Stack's user avatar
  • 127
0 votes
1 answer
5k views

Help needed with PyWallet and wallet dump using MacOS

Could anyone please give me some guidance on how to perform a wallet dump using PyWallet on a MacBook (macOS 10.12 Sierra)? I’m not very savvy with this stuff at all. Have an old wallet.dat file from ...
Brian's user avatar
  • 1
1 vote
1 answer
6k views

Get Bitcoin Wallet balance with Python

On a tutorial in Youtube it uses pybitcointools. Upon searching it's github repository, I have found that it was not maintained anymore. Are there any alternative to this library which can get wallet ...
CodeJammer's user avatar
2 votes
4 answers
2k views

pycoin command line transaction

Is there a quick way to do transactions knowing only the private key(secret exponent) and the destination address, preferably from a command line utility such as pycoin? I am using Debian/Ubuntu and ...
Sebi's user avatar
  • 151